Rakefile - reportable - Fork of reportable required by WarVox, from hdm/reportable.
(HTM) git clone git://jay.scot/reportable
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
---
Rakefile (386B)
---
1 require 'rubygems'
2 require 'bundler'
3
4 Bundler.setup
5 Bundler.require
6
7 require "rspec/core/rake_task"
8
9
10 desc 'Default: run specs.'
11 task :default => :spec
12
13 desc 'Run the specs'
14 RSpec::Core::RakeTask.new(:spec) do |spec|
15 end
16
17 YARD::Rake::YardocTask.new(:doc) do |t|
18 t.files = ['lib/**/*.rb', '-', 'HISTORY.md']
19 t.options = ['--no-private', '--title', 'Reportable Documentation']
20 end
21