isaacseymour / activejob-retry

Automatic retries for ActiveJob
MIT License
138 stars 14 forks source link

needed 'require' #26

Closed fstybel closed 9 years ago

fstybel commented 9 years ago

To use this gem I had to add 'require active_job/retry in my job.

isaacseymour commented 9 years ago

Hi @fist28, you can get around this by doing:

gem 'activejob-retry', '~> 0.4.0', require: 'active_job/retry'

in your gemfile, but it's kinda annoying. The problem is that active_job-retry is a well ugly gem name, but is the correct name for the module. I'm tempted to add a file at lib/activejob/retry.rb which requires lib/active_job/retry.rb, but it's kinda grim too :(

isaacseymour commented 9 years ago

27 will resolve this

isaacseymour commented 9 years ago

@fist28 this is now pushed to RubyGems in 0.4.1 :)

fstybel commented 9 years ago

thanks