aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Gemfile13
-rw-r--r--Rakefile1
2 files changed, 11 insertions, 3 deletions
diff --git a/Gemfile b/Gemfile
index 517921797a..3c2680734c 100644
--- a/Gemfile
+++ b/Gemfile
@@ -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
diff --git a/Rakefile b/Rakefile
index fe82460ae3..bbf67415da 100644
--- a/Rakefile
+++ b/Rakefile
@@ -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')