Repository URL to install this package:
|
Version:
0.0.5 ▾
|
| bin |
| config |
| features |
| lib |
| script |
| spec |
| .gitignore |
| .rspec |
| .rvmrc |
| Gemfile |
| LICENSE.txt |
| README.md |
| Rakefile |
| buildgem.gemspec |
For now, read the .feature files here:
$ buildgem
#=> bumps your gem's version.rb patch verion
#=> Example, 3.0.2 bumps to 3.0.3
$ buildgem minor
#=> bumps your gem's version.rb minor verion
#=> Example, 3.0.2 bumps to 3.1.0
$ buildgem major
#=> bumps your gem's version.rb major verion
#=> Example, 4.0.0 bumps to 4.0.0
There is no gem to install yet, but here's the idea:
# in your example_gem root path... # Gemfile gem 'buildgem', '~> 0.0.1' # config/buildgem.rb require 'buildgem' Buildgem.configure do |config| config.gem_path = "." # I know this sucks, working on it config.gem_top_level_namespace = "example_gem" # This, too, honestly end