https://github.com/RubyMoney/money
Raw File
Tip revision: ac882088513b3a77008b7db6d1c2e68caf2e3ef0 authored by Anthony Dmitriyev on 03 January 2017, 18:10:27 UTC
Update version to 6.8.0
Tip revision: ac88208
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