Revision 42922ddd63a62f851dc8b38bf95d194d7f117dff authored by Anthony Dmitriyev on 01 October 2018, 22:28:37 UTC, committed by Anthony Dmitriyev on 01 October 2018, 22:28:37 UTC
1 parent bd6af74
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