Revision fe458403e8632a107c37ac326d9dbddcd6cfe079 authored by Yuri Grechka on 01 November 2014, 03:54:28 UTC, committed by Yuri Sidorov on 03 November 2014, 16:27:13 UTC
Update currency_iso.json

Update formatting_spec.rb

Update CHANGELOG.md

Update CHANGELOG.md

Update AUTHORS

Added myself and sorted a little :)
1 parent 51a8a46
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