-
-
Notifications
You must be signed in to change notification settings - Fork 9
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
Possible to Require Old Versions #8
Comments
It does not make much sense to me, can you include How do you think Why can you not update your environments, I see you are using unpatched ruby ( As for your application, you should put all the gems you use in |
Yeah, the problem exists when running When requiring |
can you show me example of requiring |
also I'm not sure that gem rvm 1.11.3 is compatible with older versions of rvm, please update rvm to at least |
Requiring So you're saying that the rvm gem needs to match the version of rvm installed on a local machine? Interesting but seems like an unrelated issue. The problem I have is that it loads the older version of the gem after requiring it in that way, it does not include the latest installed. |
rvm 1.11.3 was a breaking point for the gem integration, |
Upgrading caused the problem, it will not fix the problem. When calling:
|
I'm sorry I was not clear about it, please update RVM |
This will not fix the problem. |
will not or did not fixed ? have you tried ? |
This is a problem with the gem, not the integration with rvm or rvm itself. Do you understand the bug I'm reporting, or have I done a poor job of describing the problem? |
|
closing as there is not enough information to continue, let me know if there is more information and I will reopen |
I provided an example in irb that reproduces the problem, and presented a solution that would fix it. I don't see how jumping through unrelated hoops will help you diagnose the problem, as I've already explained exactly what the cause is. If you do not agree the output in irb is a bug, that's fine to close a ticket. |
@kenmazaika the irb output does not provide me enough information, please answer #8 (comment) so I can understand the problem better. |
Not sure if this is a bug, but it caused some inconsistencies in our deploy process with different team members (we ran
cap deploy
instead ofbundle exec cap deploy
)This caused some members on our team who had the old version of the rvm gem on their machine to be able to deploy successfully (because it would fallback to the old version), but users who did not have the old version of the gem to see an error message.
It might make sense to add a file into rvm such that:
require 'capistrano/rvm'
will raise an error (instead of falling back to 1.9.2).The text was updated successfully, but these errors were encountered: