-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathRakeFile
83 lines (71 loc) · 2 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
require 'rubygems'
require 'rake'
require 'rake/testtask'
require './lib/rails-units'
begin
require 'jeweler'
Jeweler::Tasks.new do |gem|
gem.name = "rails-units"
gem.summary = %Q{A class that performs unit conversions and unit math}
gem.description = %Q{Provides classes and methods to perform unit math and conversions}
gem.authors = ["Kevin Olbrich, Ph.D."]
gem.email = ["spike@scpike.net"]
gem.homepage = "https://github.com/scpike/rails-units"
gem.files.exclude(".*")
end
Jeweler::GemcutterTasks.new
rescue LoadError
puts "Jeweler (or a dependency) not available. Install it with: gem install jeweler"
end
begin
require 'rcov/rcovtask'
desc "Generate code coverage"
Rcov::RcovTask.new do |t|
t.test_files = FileList['test/test*.rb']
#t.verbose = true # uncomment to see the executed command
end
rescue LoadError
end
begin
require 'rspec/core/rake_task'
desc "Run specs"
RSpec::Core::RakeTask.new
desc "Run all specs with rcov"
RSpec::Core::RakeTask.new("spec:rcov") do |t|
t.rcov = true
t.rcov_opts = %w{--exclude osx\/objc,gems\/,spec\/,features\/}
end
rescue LoadError
end
desc "Run unit tests"
Rake::TestTask.new do |t|
t.libs << "test"
t.test_files = FileList['test/test*.rb']
end
task :specs => :spec
desc "Run tests against several ruby versions, requires rvm"
task :multitest do
rubies = %w{
ruby-1.8.7@ruby-units
ruby-1.8.7@ruby-units-with-chronic
ruby-1.9.2-head@ruby-units
ruby-1.9.2-head@ruby-units-with-chronic
rbx-head@ruby-units
jruby-head@ruby-units
}
exec "rvm #{rubies.join(',')} tests"
end
desc "Run specs against several ruby versions, requires rvm"
task :multispec do
rubies = %w{
ruby-1.8.7@ruby-units
ruby-1.8.7@ruby-units-with-chronic
ruby-1.9.2-head@ruby-units
ruby-1.9.2-head@ruby-units-with-chronic
rbx-head@ruby-units
jruby-head@ruby-units
}
exec "rvm #{rubies.join(',')} specs"
end
task :default => :test
task :tests => :test