Sha256: f416c98b745a952b8ab917cdcea25adb913731978bf399ba9cd94bcbd56b88d2
Contents?: true
Size: 1.11 KB
Versions: 5
Compression:
Stored size: 1.11 KB
Contents
require 'rubygems' require 'bundler' begin Bundler.setup(:default, :development) rescue Bundler::BundlerError => e $stderr.puts e.message $stderr.puts "Run `bundle install` to install missing gems" exit e.status_code end Bundler::GemHelper.install_tasks require 'rake' require 'rspec' require 'rspec/core/rake_task' desc 'Default: run specs.' task :default => :spec RSpec::Core::RakeTask.new do |t| if ENV['COVERAGE'] and RUBY_VERSION =~ /^1.8/ t.rcov = true t.rcov_opts = ['--exclude', 'spec', '--exclude', 'gems'] end end # Use yard to build docs begin require 'yard' require 'yard/rake/yardoc_task' project_root = File.expand_path(File.dirname(__FILE__)) doc_destination = File.join(project_root, 'doc') YARD::Rake::YardocTask.new(:doc) do |yt| yt.files = Dir.glob(File.join(project_root, 'lib', '**', '*.rb')) + [ File.join(project_root, 'README.md') ] yt.options = ['--output-dir', doc_destination, '--readme', 'README.md'] end rescue LoadError desc "Generate YARD Documentation" task :doc do abort "Please install the YARD gem to generate rdoc." end end
Version data entries
5 entries across 5 versions & 2 rubygems
Version | Path |
---|---|
rpairtree-0.2.0 | Rakefile |
noid-0.7.1 | Rakefile |
noid-0.7.0 | Rakefile |
noid-0.6.6 | Rakefile |
noid-0.6.5 | Rakefile |