diff options
-rw-r--r-- | Gemfile | 13 | ||||
-rw-r--r-- | Rakefile | 1 |
2 files changed, 11 insertions, 3 deletions
@@ -1,4 +1,11 @@ -source "http://rubygems.org" +# -*- ruby -*- -gem 'hoe', '>= 2.1.0' -gem 'minitest' +# DO NOT EDIT THIS FILE. Instead, edit Rakefile, and run `rake bundler:gemfile`. + +source :gemcutter + + +gem "minitest", "~>2.2", :group => [:development, :test] +gem "hoe", "~>2.10", :group => [:development, :test] + +# vim: syntax=ruby @@ -6,6 +6,7 @@ Hoe.plugins.delete :rubyforge Hoe.plugin :minitest Hoe.plugin :gemspec # `gem install hoe-gemspec` Hoe.plugin :git # `gem install hoe-git` +Hoe.plugin :bundler # `gem install hoe-bundler` Hoe.spec 'arel' do developer('Aaron Patterson', 'aaron@tenderlovemaking.com') |