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:
parent
73b8ffadbc
commit
83a5d4d4e3
2 changed files with 11 additions and 3 deletions
13
Gemfile
13
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
|
||||
|
|
1
Rakefile
1
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')
|
||||
|
|
Loading…
Reference in a new issue