weppos / breadcrumbs_on_rails

A simple Ruby on Rails plugin for creating and managing a breadcrumb navigation.
https://simonecarletti.com/code/breadcrumbs-on-rails
MIT License
942 stars 187 forks source link

Put dependencies on the right place on gemspec #109

Closed michelboaventura closed 4 years ago

michelboaventura commented 7 years ago

Hi,

I'm having trouble with this gem and rails 3.x. The issue is that newer versions of this gems aren't compatible with rails 3.x but this is not defined on gemspec, since rails is only a development dependency. Because of that if I do a bundle update on a rails 3.x app it will update the gem to 3.0.1 and broke the app. Shouldn't you put rails > 4 as a "regular" dependency?

Thanks!

raphaottoni commented 7 years ago

Just a +1 on this issue.

I had the same problem.

weppos commented 6 years ago

That's a valid argument. I will consider that.

michelboaventura commented 4 years ago

Thank you @weppos!