Files
9minutes/Rakefile
T

20 lines
487 B
Ruby
Raw Normal View History

2011-04-20 15:56:04 +02:00
# 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.expand_path('../config/application', __FILE__)
require 'rake'
2011-06-12 16:56:39 +02:00
# require 'jammit'
2011-04-20 15:56:04 +02:00
module ::Nineminutes
class Application
include Rake::DSL if Rails.env.development? or Rails.env.test?
2011-06-12 16:56:39 +02:00
# Jammit.package!
end
end
module ::RakeFileUtils
extend Rake::FileUtilsExt
end
2011-04-20 15:56:04 +02:00
Nineminutes::Application.load_tasks