summaryrefslogtreecommitdiff
path: root/Rakefile
blob: 9e22e75fdec5ac4de08e5842fceb158f24b8bfb8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# -*- ruby encoding: utf-8 -*-

require 'rubygems'
require 'rspec'
require 'hoe'

Hoe.plugin :bundler
Hoe.plugin :doofus
Hoe.plugin :gemspec
Hoe.plugin :git
Hoe.plugin :travis

Hoe.spec 'diff-lcs' do
  developer('Austin Ziegler', 'austin@rubyforge.org')

  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

unless Rake::Task.task_defined? :test
  task :test => :spec
end

# vim: syntax=ruby