Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions bin/sandbox
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,13 @@ function unbundled {
echo "~~~> Removing the old sandbox"
rm -rf ./sandbox

mkdir -p sandbox/app/assets/config
cat <<MANIFEST > sandbox/app/assets/config/manifest.js
//= link_tree ../images
//= link_directory ../javascripts .js
//= link_directory ../stylesheets .css
MANIFEST

echo "~~~> Creating a pristine Rails app"
rails_version=`bundle exec ruby -e'require "rails"; puts Rails.version'`
bundle exec rails _${rails_version}_ new sandbox \
Expand Down
Loading