Revision becb6cd64d7722fdd81bac9c70b5889c4d69fcae authored by Shane Emmons on 04 January 2015, 17:07:08 UTC, committed by Shane Emmons on 04 January 2015, 17:07:08 UTC
2 parent s 917369d + c0668e4
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