Sha256: 36e7ac57438b56466a3b1c844a8d0b62b3aaa6b8db3864652a00a99879ed04b9
Contents?: true
Size: 1.06 KB
Versions: 2
Compression:
Stored size: 1.06 KB
Contents
# Special Delivery Special Delivery allows you to use Bundler's rake commands to release gems to your geminabox server. It is heavily inspired by Josh Krueger's [bundler_geminabox](https://github.com/joshkrueger/bundler_geminabox) gem. ## Installation Crack open your gemspec and add `special_delivery` as a development dependency: ```Ruby Gem::Specification.new do |gem| # ... gem.add_development_dependency 'special_delivery' end ``` And then execute: $ bundle In your gem's Rakefile, replace Bundler's gem tasks with Special Delivery's: ```ruby require "bundler/gem_tasks" ``` becomes ```ruby require "special_delivery/gem_tasks" ``` ## Usage Use Special Delivery to release gems just like you would with Bundler: $ rake release The latest version of your gem will be tagged, built and pushed to your geminabox server. ## Contributing 1. Fork it 2. Create your feature branch (`git checkout -b my-new-feature`) 3. Commit your changes (`git commit -am 'Add some feature'`) 4. Push to the branch (`git push origin my-new-feature`) 5. Create new Pull Request
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
special_delivery-1.1.0 | README.md |
special_delivery-1.0.0 | README.md |