Can't seem to find docs on it, like what the gemspec should look like, etc.
When you first call bundle install, it will create this Gemfile. lock and uses this file in all subsequent calls to bundle install, which ensures that you have all the dependencies installed and will skip dependency installation.
Developer file that specifies the attributes of a RubyGems . GEM package; saves information such as the author, a description, an example usage, and the usage license; saved in a simple plain text format.
Just add '.pre' to the version.
'pre' seems to be the convention but any text is fine, you just add any text characters to the version number and it's then considered a pre-release version.
gem.version = "1.0.0.pre" # convention used by rubygems itself
gem.version = "1.0.0.beta"
gem.version = "1.0.0.rc1"
gem.version = "1.0.0.bacon"
Reference: http://guides.rubygems.org/patterns/#prerelease-gems
Any Gem whose version number contains a letter is a pre-release Gem.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With