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
|
|
|
|
2011-05-24 22:02:00 +02:00
|
|
|
module ::Nineminutes
|
|
|
|
|
class Application
|
|
|
|
|
include Rake::DSL
|
2011-06-12 16:56:39 +02:00
|
|
|
# Jammit.package!
|
2011-05-24 22:02:00 +02:00
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
module ::RakeFileUtils
|
|
|
|
|
extend Rake::FileUtilsExt
|
|
|
|
|
end
|
|
|
|
|
|
2011-04-20 15:56:04 +02:00
|
|
|
Nineminutes::Application.load_tasks
|