spot-us / spot-us

Community Funded Reporting

This URL has Read+Write access

spot-us / Rakefile
100644 26 lines (19 sloc) 0.838 kb
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'
 
 
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