Skip to content

Commit

Permalink
Remove rdoc task ✨
Browse files Browse the repository at this point in the history
  • Loading branch information
scotdalton committed Sep 27, 2013
1 parent 93ee8a5 commit 80feaa5
Showing 1 changed file with 1 addition and 19 deletions.
20 changes: 1 addition & 19 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,32 +4,14 @@ begin
rescue LoadError
puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
end
begin
require 'rdoc/task'
rescue LoadError
require 'rdoc/rdoc'
require 'rake/rdoctask'
RDoc::Task = Rake::RDocTask
end

RDoc::Task.new(:rdoc) do |rdoc|
rdoc.rdoc_dir = 'rdoc'
rdoc.title = 'Umlaut Primo Service Adaptor'
rdoc.options << '--line-numbers'
rdoc.rdoc_files.include('README.rdoc')
rdoc.rdoc_files.include('lib/**/*.rb')
end

Bundler::GemHelper.install_tasks

require 'rake/testtask'

Rake::TestTask.new(:test) do |t|
t.libs << 'lib'
t.libs << 'test'
t.test_files = FileList['test/*_test.rb',
'test/**/*_test.rb', 'test/**/**/*_test.rb']
t.verbose = false
end

task :default => :test
task :default => :test

0 comments on commit 80feaa5

Please sign in to comment.