From 3fe34d64a93d1669eee0d25152cb804324e40539 Mon Sep 17 00:00:00 2001 From: Ryan Bigg Date: Tue, 22 May 2012 16:29:54 +1000 Subject: [PATCH] Move sandbox.rb to lib/sandbox.rb --- Rakefile | 2 +- sandbox.rb => lib/sandbox.rb | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename sandbox.rb => lib/sandbox.rb (100%) diff --git a/Rakefile b/Rakefile index 040b6d0b141..8925cf930df 100644 --- a/Rakefile +++ b/Rakefile @@ -98,5 +98,5 @@ desc "Creates a sandbox application for simulating the Spree code in a deployed task :sandbox do FileUtils.rm_r("sandbox") puts "Running Sandbox generator..." - exec("rails new sandbox -m sandbox.rb") + exec("rails new sandbox -m lib/sandbox.rb") end diff --git a/sandbox.rb b/lib/sandbox.rb similarity index 100% rename from sandbox.rb rename to lib/sandbox.rb