Repository URL to install this package:
|
Version:
0.0.7 ▾
|
| 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, 3.0.2 bumps to 4.0.0
# in your example_gem root path... # Gemfile gem 'buildgem', '~> 0.0.5' # CREATE FILE config/buildgem.rb require 'buildgem' Buildgem.configure do |config| config.gem_path = "." # I know this sucks, working on it config.gem_top_level_namespace = "gem_name" # This, too, honestly config.gem_push_tags = false # Set to true if you want to auto-push and push with --tags config.version_in_top_level_namespace_file = false # Set to true if your main lib/gem_name.rb file contains VERSION= in the top level module end