I was having troubles getting beaker to run out of the box on a freshly generated module. I was using a newer version of Ruby than is supported.
Per beaker's README we can use:
- Ruby 1.9+(should probably be reworded, implies anything greater than 1.9)
- 2.0.0p481
- or 2.1.1
This creates problems because in the development group of the Gemfile, "guard-rake" is required.
guard-rake
requires guard
which requires listen
which requires ruby_dep
which requires Ruby 2.2.3 or greater and this causes bundle install to fail because of beaker's version dependencies.
The workaround for me has been to remove guard from the gem file and use Ruby 2.1.1
I was having troubles getting
beakerto run out of the box on a freshly generated module. I was using a newer version of Ruby than is supported.Per beaker's README we can use:
This creates problems because in the development group of the
Gemfile,"guard-rake"is required.guard-rakerequires
guardwhich requires
listenwhich requires
ruby_depwhich requires
Ruby 2.2.3 or greaterand this causesbundle installto fail because of beaker's version dependencies.The workaround for me has been to remove guard from the gem file and use Ruby 2.1.1