cwninja / make-gem-now

A tool to build all gems in a given dir, update them with a git fetch/merge and then index them appropriately ready for serving up.

This URL has Read+Write access

name age message
file .gitignore Loading commit data...
file README.markdown
file Rakefile
directory bin/
directory lib/
file make-gem-now.gemspec
README.markdown

Make Gem Now

A tool to scan through a whole bunch of checked out repos and build gems for them as needed. It will then index those gems, and make them available for download.

Usage:

make-gem-now path/to/my/code  /var/www/gems

Simple no?

Callbacks:

Create a ~/.make-gem-now-rc.rb file and define as many callbacks as you like in it. They can be as simple or as contrived as you like!

Example

MakeGemNow::Builder.on_build do |builder|
  puts "I Built #{builder.spec.name} v#{builder.spec.version}"
end

Now you can run your own github!