0.01
Low commit activity in last 3 years
No release in over a year
Tool to add version to your Gemfile's gems.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 13.0.6
~> 3.10.0
~> 1.7.0
 Project Readme

Version Gemfile

Build Status

Version Gemfile is a simple gem to add version numbers to your Gemfile gems.

The problem is that most people don't add that simple '~> x.x.x' part at the end and that makes it horrible to run bundle update. Well, at least, you can't trust that!

How does it work?

Version Gemfile will go through your Gemfile looking for unversioned gems, then will query your Gemfile.lock to get the current version of each gem you're using and update your Gemfile.

Installation

Add this line to your application's Gemfile:

gem 'version_gemfile'

And then execute:

$ bundle

Or install it yourself as:

$ gem install version_gemfile

Usage

Simply type $ version_gemfile and you're done.

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request