Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
  bin
  config
  features
  lib
  script
  spec
  .gitignore
  .rspec
  .rvmrc
  Gemfile
  LICENSE.txt
  README.md
  Rakefile
  buildgem.gemspec
Size: Mime:
  README.md

Buildgem

For now, read the .feature files here:

features/*.feature

Usage

$ 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

Installation

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