Revision 26959bf47878bc6e27cb34b9bb429275d666b0bf authored by Anthony Dmitriyev on 10 June 2018, 20:09:30 UTC, committed by Anthony Dmitriyev on 10 June 2018, 20:09:30 UTC
1 parent 6563f3f
Raw File
Rakefile
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

task default: :spec
back to top