Revision 3c83b0fcfaf803646314a6668128cc93e81dc291 authored by Thomas Weymuth on 11 October 2014, 15:55:58 UTC, committed by Thomas Weymuth on 11 October 2014, 15:55:58 UTC
1 parent 11491ce
Raw File
Rakefile
require "rubygems"
require "bundler/gem_tasks"
require "rake/clean"
require "rspec/core/rake_task"

CLOBBER.include('doc', '.yardoc')

require "yard"

YARD::Rake::YardocTask.new do |t|
  t.options << "--files" << "CHANGELOG.md,LICENSE"
end

RSpec::Core::RakeTask.new(:spec) do |t|
  t.fail_on_error = false
end

back to top