Skip to content

Commit

Permalink
ignore files created by rbi, slight tweaks to multispec runner
Browse files Browse the repository at this point in the history
  • Loading branch information
olbrich committed Oct 10, 2011
1 parent c8a1173 commit 1fbafcf
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -5,3 +5,4 @@ Gemfile.lock
*.rbc
.rspec
.rvmrc
.rbx
5 changes: 5 additions & 0 deletions CHANGELOG.txt
@@ -1,5 +1,10 @@
Change Log for Ruby-units
=========================
2011-10-09 1.3.2 * Farads are not a base unit
* CFM added to default units
* multi specs run against ruby-1.9.3
*

2011-04-23 1.3.0.a * Some internal restructuring
* Implement specs for core behaviors
* fixed several bugs found by specs
Expand Down
10 changes: 7 additions & 3 deletions RakeFile
Expand Up @@ -33,7 +33,11 @@ begin
require 'rspec/core/rake_task'

desc "Run specs"
RSpec::Core::RakeTask.new
RSpec::Core::RakeTask.new do
puts
puts %x{rvm current}
puts
end

desc "Run all specs with rcov"
RSpec::Core::RakeTask.new("spec:rcov") do |t|
Expand Down Expand Up @@ -61,7 +65,7 @@ task :multitest do
ruby-1.9.2@ruby-units-with-chronic
ruby-1.9.3@ruby-units
rbx@ruby-units
jruby-1.6.1@ruby-units
jruby-1.6.4@ruby-units
}
exec "rvm #{rubies.join(',')} tests"
end
Expand All @@ -75,7 +79,7 @@ task :multispec do
ruby-1.9.2@ruby-units-with-chronic
ruby-1.9.3@ruby-units
rbx@ruby-units
jruby-1.6.1@ruby-units
jruby-1.6.4@ruby-units
}
exec "rvm #{rubies.join(',')} specs"
end
Expand Down

0 comments on commit 1fbafcf

Please sign in to comment.