Iam using Delayed Jobs in my Rails application deployed on Heroku and want to integrate the Delayed Job web view in my app. Iam refrencing the DelayedJobWebView to integrate the delayed job overview.
I have installed the gem in Gemfile as:
gem "delayed_job_web"
My routes file consists the route for delayed job overview:
match "/delayed_job" => DelayedJobWeb, :anchor => false
But I get the following error when try to go to localhost:3000/delayed_job/overview
NoMethodError at /delayed_job/overview
undefined method `process_route' for #<DelayedJobWeb:0xb52ed104>
I digged deeply into into it and found that when I run bundle install I get the following error message:
In Gemfile:
taps (>= 0) ruby depends on
sinatra (~> 0.9.0) ruby
delayed_job_web (>= 0) ruby depends on
sinatra (1.3.4)
Thus this concludes that taps and delayed_job_web needs different sinatra versions to to run. Does that mean we cannot use delayed_job_web with heroku?
Please help me find a solution to this.
Many Thanks!!