-
Notifications
You must be signed in to change notification settings - Fork 33
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
next_rails requires actionview, which depends on activesupport #18
Comments
@etagwerker It was version 1.0.2 from rubygems. In the recent project (Rails 3.2), I ended up forking the fastruby/next_rails repo here (https://github.com/geetfun/next_rails) and removed the Here is the relevant lines in the codebase: next_rails/lib/next_rails/gem_info.rb Lines 54 to 60 in 38dd580
I think the reason it didn't work is because |
@geetfun I think I know what the problem is, it seems that we haven't pushed v1.0.3 which declares v1.0.2 declared Could you please try running |
Works as you suggested.
|
Problem:
next_rails
requiresactionview
, of which the minimum attainable version is 4.1.0: https://rubygems.org/gems/actionview/versionsIn this version, it depends on
activesupport
version 4.1.2rc:As a result,
next_rails
cannot be used for Rails 3 upgrade projects.The text was updated successfully, but these errors were encountered: