Sha256: 232f4ee4141be2e2178c49ecc6cb01ee1bc9eb8e1d508532e2e6e0880adf61ac

Contents?: true

Size: 424 Bytes

Versions: 2

Compression:

Stored size: 424 Bytes

Contents

require "bundler/gem_tasks"
require "rspec/core/rake_task"
require 'rubocop/rake_task'
require 'yard'

YARD::Rake::YardocTask.new(:doc) do |t|
  # The dash has to be between the two to "divide" the source files and
  # miscellaneous documentation files that contain no code
  t.files = ['lib/**/*.rb', '-', 'LICENSE.txt']
end

RSpec::Core::RakeTask.new(:spec)
RuboCop::RakeTask.new(:rubocop)
task default: [:spec, :rubocop]

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
prorate-0.6.0 Rakefile
prorate-0.5.0 Rakefile