Revision 4b20ee5a71f5d555afc0646aea7f48c102610602 authored by George Millo on 15 January 2015, 11:13:45 UTC, committed by George Millo on 15 January 2015, 11:58:26 UTC
docs for ':html_wrap_symbol' and ':symbol_position' options.
1 parent 379671b
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