When I run these commands:
git clone http://git.apache.org/ode.git ode-gemfile-test
cd ode-gemfile-test
git revert f3beffe
buildr package test=no
I get this:
Buildr aborted!
RuntimeError : check() method invoked in buildfile but RSpec has not
been loaded.
Buildr prior to version 1.4.22, included rspec as a dependency but as
of version 1.4.22, it is expected users manually add RSpec to their
Gemfile. The following lines should be added to restore the version
of rspec included in 1.4.22:
gem 'rspec-expectations', '= 2.14.3'
gem 'rspec-mocks', '= 2.14.3'
gem 'rspec-core', '= 2.14.5'
gem 'rspec', '= 2.14.1'
/home/bassjoe/ode-gemfile-test/Rakefile:680:in `block (2 levels) in distro'
/home/bassjoe/ode-gemfile-test/Rakefile:648:in `tap'
/home/bassjoe/ode-gemfile-test/Rakefile:648:in `block in distro'
So I add these lines to Gemfile and run the buildr command again. Then
it works.
BTW: Buildr may be a great build tool but for Java programmers who don't
know Ruby it's first of all just another hurdle to work with the code.