Project

gitver

0.0
No commit activity in last 3 years
No release in over 3 years
Does versioning, releasing and testing of rubygems with git
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
 Dependencies
 Project Readme

GitVer - Ruby Gem Auto Versioning

Usage

I got tired of messing with ruby gem versioning, so in my normal fashion I automated it. Now when I want to make a ruby gem I do the following.

git clone https://github.com/floomby/gemness.git
cd gemness
gitver install
  • Then edit the Rakefile to suit you needs
  • Code your gem
git add <files>
git commit -m "Release 1.0.0"
rake package && gem install pkg/gemness-1.0.0.gem

TODO

  • Using the github api to grab the description and website for the gem would be neat
  • Add install target to Rakefile