Sha256: c2f68e6d1426fd2ebe915562b08434bba566d2d2e292765bb471d1773b2d4a02

Contents?: true

Size: 599 Bytes

Versions: 11

Compression:

Stored size: 599 Bytes

Contents

require 'bundler'
Bundler::GemHelper.install_tasks
require "rspec/core/rake_task"
require 'rake/rdoctask'

desc 'Default: run tests'
task :default => :spec

desc 'Run tests for Footnotes.'
RSpec::Core::RakeTask.new(:spec) do |t|
  t.pattern = 'spec/**/*_spec.rb'
  t.rcov = false
end

desc 'Generate documentation for Footnotes.'
Rake::RDocTask.new(:rdoc) do |rdoc|
  rdoc.rdoc_dir = 'rdoc'
  rdoc.title    = 'Footnotes'
  rdoc.options << '--line-numbers' << '--inline-source'
  rdoc.rdoc_files.include('README')
  rdoc.rdoc_files.include('MIT-LICENSE')
  rdoc.rdoc_files.include('lib/**/*.rb')
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
rails-footnotes-3.7.9 Rakefile
rails-footnotes-3.7.8 Rakefile
rails-footnotes-3.7.7 Rakefile
rails-footnotes-3.7.6 Rakefile
rails-footnotes-3.7.5 Rakefile
rails-footnotes-3.7.5.rc4 Rakefile
rails-footnotes-3.7.5.rc3 Rakefile
rails-footnotes-3.7.5.rc2 Rakefile
rails-footnotes-3.7.5.rc1 Rakefile
rails-footnotes-3.7.4 Rakefile
rails-footnotes-3.7.3 Rakefile