forked from documentcloud/jammit
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathRakefile
39 lines (32 loc) · 847 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
32
33
34
35
36
37
38
39
require 'rake/testtask'
desc 'Run all tests'
task :test, [:path] do |task, args|
ENV['RAILS_ENV'] = 'test'
$LOAD_PATH.unshift(File.expand_path('test'))
require 'redgreen' unless Gem::Specification.find_all_by_name('redgreen').empty?
require 'test/unit'
if args[:path]
require args[:path]
else
Dir['test/*/**/test_*.rb'].each {|test| require "./#{test}" }
end
end
desc 'Generate YARD Documentation'
task :doc do
sh "mv README TEMPME"
sh "rm -rf doc"
sh "yardoc"
sh "mv TEMPME README"
end
namespace :gem do
desc 'Build and install the jammit gem'
task :install do
sh "gem build jammit.gemspec"
sh "sudo gem install #{Dir['*.gem'].join(' ')} --local --no-ri --no-rdoc"
end
desc 'Uninstall the jammit gem'
task :uninstall do
sh "sudo gem uninstall -x jammit"
end
end
task :default => :test