0

Does anyone know if there are any issues with running the whenever gem on ruby 2.0.0? Since I updated ruby, terminal won't recognize the whenever or wheneverize commands.

Paulo Fidalgo
  • 21,709
  • 7
  • 99
  • 115
Zachary Nicoll
  • 339
  • 1
  • 4
  • 14

1 Answers1

0

As for the commit history at github there's support for ruby 2.0. Try to run the tests and check if they fail or succeed.

To run the tests clone the repo:

$ git clone https://github.com/javan/whenever.git

run bundle to install dependencies:

$ cd whenever

$ bundle

and then run the tests:

$ rake test

I'm using ruby 1.9.3p392 and got this result (only useful to compare the result):

215 tests, 464 assertions, 0 failures, 0 errors, 0 skips

Paulo Fidalgo
  • 21,709
  • 7
  • 99
  • 115
  • Interesting. All the tests pass and the whenever terminal commands seem to be working just fine. But only in that project. – Zachary Nicoll May 20 '13 at 18:33
  • Oddly enough, seems it took restarting terminal to make it know about the whenever commands. Thanks for the help with the tests. – Zachary Nicoll May 20 '13 at 18:52