forked from spot-us/spot-us
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRakefile
27 lines (20 loc) · 872 Bytes
/
Rakefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# 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.
require(File.join(File.dirname(__FILE__), 'config', 'boot'))
require 'rake'
require 'rake/testtask'
require 'rake/rdoctask'
require 'tasks/rails'
#require 'thinking_sphinx/tasks'
desc "Copy application sample config for dev/test purposes"
task :copy_sample_config do
if Rails.env.development? or Rails.env.test?
settings_file = File.join(Rails.root, *%w(config settings.yml))
settings_file_example = File.join(Rails.root, *%w(config settings.example.yml))
unless File.exist?(settings_file)
puts "Setting up config/setting.yml from config/settings.example.yml..."
FileUtils.cp(settings_file_example, settings_file)
end
end
end
task :environment => :copy_sample_config