Sha256: e9d389ef497a8df2e6cde224225d96762945625fd64887123afae22fd96d1a36

Contents?: true

Size: 386 Bytes

Versions: 5

Compression:

Stored size: 386 Bytes

Contents

require 'rubygems'
require 'bundler'

Bundler.setup
Bundler.require

require "rspec/core/rake_task"


desc 'Default: run specs.'
task :default => :spec

desc 'Run the specs'
RSpec::Core::RakeTask.new(:spec) do |spec|
end

YARD::Rake::YardocTask.new(:doc) do |t|
  t.files   = ['lib/**/*.rb', '-', 'HISTORY.md']
  t.options = ['--no-private', '--title', 'Reportable Documentation']
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
reportable-1.4.2 Rakefile
reportable-1.4.1 Rakefile
reportable-1.4.0 Rakefile
reportable-1.3.1 Rakefile
reportable-1.3.0 Rakefile