guard / guard-bundler

Guard::Bundler automatically install/update your gem bundle when needed
https://rubygems.org/gems/guard-bundler
MIT License
117 stars 22 forks source link

Relax bundler dependency to >= 1.3.0 #35

Closed rymai closed 5 years ago

rymai commented 5 years ago

Closes https://github.com/guard/guard-bundler/issues/34.

AlexWayfer commented 5 years ago

Please, don't relax this way. You may not what changes the 3 version will include. For example: https://github.com/bundler/bundler/issues/694

I recommend to use something like '>= 1.3.0', '< 3'

rymai commented 5 years ago

Please, don't relax this way. You may not what changes the 3 version will include. For example: bundler/bundler#694

I recommend to use something like '>= 1.3.0', '< 3'

You're right, I mimicked what Rails does but it's not the same use case here.

rymai commented 5 years ago

@AlexWayfer FYI guard-bundler 2.2.1 has been released with this bundler restriction.

AlexWayfer commented 5 years ago

@AlexWayfer FYI guard-bundler 2.2.1 has been released with this bundler restriction.

Thank you!