You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
devdocs/Rakefile

15 lines
223 B

11 years ago
#!/usr/bin/env rake
require 'bundler/setup'
require 'thor'
$LOAD_PATH.unshift 'lib'
namespace :assets do
desc 'Compile all assets'
task :precompile do
load 'tasks/assets.thor'
AssetsCLI.new.compile
end
end