-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathRakefile
31 lines (26 loc) · 880 Bytes
/
Rakefile
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
27
28
29
30
31
#!/usr/bin/env rake
require 'fileutils'
begin
require 'bundler/setup'
rescue LoadError
puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
end
# Dummy App
# -----------------------------------------------------------------------------
APP_RAKEFILE = File.expand_path("../spec/dummy/Rakefile", __FILE__)
load 'rails/tasks/engine.rake'
Bundler::GemHelper.install_tasks
# Teabag
# -----------------------------------------------------------------------------
desc "Run the javascript specs"
task :teaspoon => "app:teaspoon"
# Docomo
# -----------------------------------------------------------------------------
namespace :utensils do
desc "Generate documentation for asset libraries"
task :document => :environment do
Docomo.configuration.use_pygments = true
Docomo::Processor.new.render_to_file
end
end
task :default => [:teaspoon]