aboutsummaryrefslogtreecommitdiffstats
path: root/lib/tasks/warbler.rake
blob: e69457583490c91db6f9c216e1e108d686197b8a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
begin
  require 'warbler'
  Warbler::Task.new

  task "war:setup" do
    ENV['RAILS_RELATIVE_URL_ROOT'] ||= "/chouette2"
  end

  task :war => ["war:setup", "assets:precompile"]
rescue LoadError => e
  puts "Failed to load Warbler. Make sure it's installed."
end