1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

generating a Gemfile, using the hoe-bundler plugin

This commit is contained in:
Aaron Patterson 2011-08-16 13:23:00 -07:00
parent 73b8ffadbc
commit 83a5d4d4e3
2 changed files with 11 additions and 3 deletions

13
Gemfile
View file

@ -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

View file

@ -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')