Rykian / clockwork

A scheduler process to replace cron.
MIT License
544 stars 66 forks source link

remove activesupport dependency #18

Closed phoffer closed 7 years ago

phoffer commented 7 years ago

This removes the dependency on ActiveSupport. It won't affect any existing projects, but will be helpful to any non Rails projects which want to avoid adding ActiveSupport. (I'm in this situation myself, and prefer clockwork over similar tools)

Also, I had issues running the tests locally; changing require 'mocha/setup' to require 'mocha' and moving it above require 'mini_test/autorun'/require 'test/unit' seemed to fix it. Travis appears to be working fine though, so I didn't want to commit anything related to that.