Sha256: 88a2e43ef798a974b5b31bf0c713c9b0ad33e493988fca8c411248d1f6cae4d1
Contents?: true
Size: 735 Bytes
Versions: 3
Compression:
Stored size: 735 Bytes
Contents
require 'rubygems' require 'rake' require 'bundler' Bundler::GemHelper.install_tasks require 'rake/testtask' Rake::TestTask.new(:test) do |test| test.libs << 'spec' test.pattern = 'spec/**/*_spec.rb' test.verbose = true end require 'rcov/rcovtask' Rcov::RcovTask.new do |test| test.libs << 'spec' test.pattern = 'spec/**/*_spec.rb' test.rcov_opts += ['--exclude \/Library\/Ruby,spec\/', '--xrefs'] test.verbose = true end require 'yard' YARD::Tags::Library.define_tag 'Blather handler', :handler, :with_name YARD::Templates::Engine.register_template_path 'yard/templates' YARD::Rake::YardocTask.new(:doc) do |t| t.options = ['--no-private', '-m', 'markdown', '-o', './doc/public/yard'] end task :default => :test
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
blather-0.5.7 | Rakefile |
blather-0.5.6 | Rakefile |
blather-0.5.4 | Rakefile |