aboutsummaryrefslogtreecommitdiffstats
path: root/spec/dummy/Rakefile
diff options
context:
space:
mode:
authorJamie Winsor <jamie@enmasse.com>2011-10-26 13:11:54 -0700
committerJamie Winsor <jamie@enmasse.com>2011-10-26 13:11:54 -0700
commit1b3195bf30ac0b6803525e1a4629cb2a5e60ce8b (patch)
tree5e88a516bb86e46f5c7fc945a848dea47b48d258 /spec/dummy/Rakefile
parent4ab9eccdee10b1f0612822d92d23a925b9c84535 (diff)
downloadrefinerycms-blog-1b3195bf30ac0b6803525e1a4629cb2a5e60ce8b.tar.gz
refinerycms-blog-1b3195bf30ac0b6803525e1a4629cb2a5e60ce8b.tar.bz2
refinerycms-blog-1b3195bf30ac0b6803525e1a4629cb2a5e60ce8b.zip
Remove dummy application for testing
Diffstat (limited to 'spec/dummy/Rakefile')
-rw-r--r--spec/dummy/Rakefile13
1 files changed, 0 insertions, 13 deletions
diff --git a/spec/dummy/Rakefile b/spec/dummy/Rakefile
deleted file mode 100644
index 852eb68..0000000
--- a/spec/dummy/Rakefile
+++ /dev/null
@@ -1,13 +0,0 @@
-#!/usr/bin/env rake
-# Add your own tasks in files placed in lib/tasks ending in .rake,
-# for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
-
-unless File.exist?(db_yml = File.expand_path('../config/database.yml', __FILE__))
- require 'fileutils'
- FileUtils.cp "#{db_yml}.sqlite3", db_yml
- puts "Copied #{db_yml}.sqlite3 to #{db_yml}"
-end
-
-require File.expand_path('../config/application', __FILE__)
-
-Dummy::Application.load_tasks