summaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
authorAustin Ziegler <austin@zieglers.ca>2013-01-21 01:29:21 -0500
committerAustin Ziegler <austin@zieglers.ca>2013-01-21 01:29:21 -0500
commit1dc0f291769e487a21b30e004626ca307c97c950 (patch)
tree6069f2f5018809e68eb698af98854a872964b473 /Rakefile
parentf4e45639e43c27ecec95e95a115188cf42f7d703 (diff)
downloaddiff-lcs-1dc0f291769e487a21b30e004626ca307c97c950.tar.gz
Final preparation for the 1.2 release.
- Added a Contributing.rdoc for contribution guidelines. - Cleaned up the README.rdoc. - Fixed the presentation of the GPL and Artistic licenses. - Made all of the development dependencies explicit. - Other minor items cleaned up.
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile12
1 files changed, 12 insertions, 0 deletions
diff --git a/Rakefile b/Rakefile
index 9e22e75..4ed25c3 100644
--- a/Rakefile
+++ b/Rakefile
@@ -8,17 +8,29 @@ Hoe.plugin :bundler
Hoe.plugin :doofus
Hoe.plugin :gemspec
Hoe.plugin :git
+Hoe.plugin :rubyforge
+Hoe.plugin :email
Hoe.plugin :travis
Hoe.spec 'diff-lcs' do
developer('Austin Ziegler', 'austin@rubyforge.org')
+ self.remote_rdoc_dir = '.'
+ 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']
+ self.extra_dev_deps << ['hoe-bundler', '~> 1.2.0']
+ self.extra_dev_deps << ['hoe-doofus', '~> 1.0.0']
+ self.extra_dev_deps << ['hoe-gemspec', '~> 1.0.0']
+ self.extra_dev_deps << ['hoe-git', '~> 1.5.0']
+ self.extra_dev_deps << ['hoe-rubygems', '~> 1.0.0']
+# self.extra_dev_deps << ['hoe-seattlerb', '~> 1.2.9, 1.2.8']
+ self.extra_dev_deps << ['hoe-travis', '~> 1.2']
end
unless Rake::Task.task_defined? :test