-
Notifications
You must be signed in to change notification settings - Fork 1.4k
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
please add .ruby-version support #199
Comments
I'm more than happy to write up a pull request or a candidate implementation. Best case is it's about an additional 3-4 lines code code. I'm mostly curious if this is an idea with merit or if I've missed the boat. Thanks as always! |
+1. Providing a tool-agnostic way to specify the version would help reduce the choice of tool from a holy war to a personal preference. |
This is definitely of merit. If we all work together for a bit of unification and forget the bravado, pissing contests, and holy wars we might actually be able to help the ruby community! |
This is a very good idea. |
+1 Maybe the easiest way is just to drop support for .rbenv-version and use .ruby-version instead? |
+1 |
Definitely 👍 for |
any progress on merging #201 ? |
Bundler 1.2 is going to support a |
The bundler support is going to be great on Heroku and possibly good with RVM but I don't see how that attribute can be used out-of-the-box with rbenv. The build pack calls I'd imagine that in a
Having said all that, I'm happy to help 😄 |
@fnichol Good idea on having the Gemfile read the def ruby_version(file = ".rbenv-version")
file = File.join(File.dirname(__FILE__), file)
IO.read(file).chomp.sub(/-p.*$/, "")
end
ruby ruby_version |
👍 |
👍 |
@sstephenson I've looked into
|
We want to support reading from |
Hi,
@fnichol come with very nice idea to support one project file that could be used by all the ruby managers/switchers.
rbfu and RVM already support it, could you add it to rbenv too ?
Thanks,
Michal
The text was updated successfully, but these errors were encountered: