https://github.com/RubyMoney/money
Revision caa41e0c61fff2e32affec5d9b918403ecf03aaf authored by Juanito Fatas on 07 May 2015, 03:44:56 UTC, committed by Juanito Fatas on 07 May 2015, 03:45:42 UTC
1 parent 838832a
Raw File
Tip revision: caa41e0c61fff2e32affec5d9b918403ecf03aaf authored by Juanito Fatas on 07 May 2015, 03:44:56 UTC
Add spec for Money::Currency::Loader
Tip revision: caa41e0
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