summaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
authorAustin Ziegler <austin@surfeasy.com>2013-01-20 21:45:27 -0500
committerAustin Ziegler <austin@surfeasy.com>2013-01-20 21:46:30 -0500
commit98703123469f68e25768fac0decef79534a59d01 (patch)
treee7731bb5401868bfd0e14c34049a43ecc6d2c3bf /Rakefile
parent1e00ec3f95849c792f8399d348f3c385244ec7d9 (diff)
downloaddiff-lcs-98703123469f68e25768fac0decef79534a59d01.tar.gz
Adding http://travis-ci.org support
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile9
1 files changed, 4 insertions, 5 deletions
diff --git a/Rakefile b/Rakefile
index 7f4f602..bae8b24 100644
--- a/Rakefile
+++ b/Rakefile
@@ -4,23 +4,22 @@ require 'rubygems'
require 'rspec'
require 'hoe'
+Hoe.plugin :bundler
+Hoe.plugin :deveiate
Hoe.plugin :doofus
Hoe.plugin :gemspec
Hoe.plugin :git
+Hoe.plugin :travis
Hoe.spec 'diff-lcs' do
- self.rubyforge_name = 'ruwiki'
-
developer('Austin Ziegler', 'austin@rubyforge.org')
- self.remote_rdoc_dir = 'diff-lcs/rdoc'
- self.rsync_args << ' --exclude=statsvn/'
-
self.history_file = 'History.rdoc'
self.readme_file = 'README.rdoc'
self.extra_rdoc_files = FileList["*.rdoc"].to_a
self.extra_dev_deps << ['rspec', '~> 2.0']
+ self.extra_dev_deps << ['rake', '~> 10.0']
end
# vim: syntax=ruby