aboutsummaryrefslogtreecommitdiffstats
path: root/Rakefile
diff options
context:
space:
mode:
authorAaron Patterson <aaron.patterson@gmail.com>2010-10-18 16:49:43 -0700
committerAaron Patterson <aaron.patterson@gmail.com>2010-10-18 16:49:43 -0700
commit2d05a01ea2a5062f6b75bc855d6d5046c0e9652c (patch)
tree59707128522eca260f9d741c8098e89a8bdf827c /Rakefile
parenta2cee877ec890962d302f24caf99b6ae1de4801f (diff)
downloadrails-2d05a01ea2a5062f6b75bc855d6d5046c0e9652c.tar.gz
rails-2d05a01ea2a5062f6b75bc855d6d5046c0e9652c.tar.bz2
rails-2d05a01ea2a5062f6b75bc855d6d5046c0e9652c.zip
cleaning up Rakefile
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile6
1 files changed, 1 insertions, 5 deletions
diff --git a/Rakefile b/Rakefile
index 0097cb5ae0..f9670c051b 100644
--- a/Rakefile
+++ b/Rakefile
@@ -2,7 +2,7 @@ require "rubygems"
gem 'hoe', '>= 2.1.0'
require 'hoe'
-Hoe.plugin :isolate
+Hoe.plugin :minitest
Hoe.plugin :gemspec # `gem install hoe-gemspec`
Hoe.spec 'arel' do
@@ -13,9 +13,5 @@ Hoe.spec 'arel' do
self.readme_file = 'README.markdown'
self.extra_rdoc_files = FileList['README.markdown']
- self.extra_dev_deps << ['rspec', '~> 1.3.0']
- self.extra_dev_deps << ['ZenTest']
- self.extra_dev_deps << ['minitest']
self.extra_dev_deps << ['hoe-gemspec']
- self.testlib = :minitest
end