Sha256: 080fce53133653aa07c1e090699b6c471e7c261f3ff5678529d8b70e0caa5080

Contents?: true

Size: 491 Bytes

Versions: 3

Compression:

Stored size: 491 Bytes

Contents

begin
  require "bundler/setup"
rescue LoadError
  puts "You must `gem install bundler` and `bundle install` to run rake tasks"
end

require "rdoc/task"

RDoc::Task.new(:rdoc) do |rdoc|
  rdoc.rdoc_dir = "rdoc"
  rdoc.title    = "ActiveReporter"
  rdoc.options << "--line-numbers"
  rdoc.rdoc_files.include("README.rdoc")
  rdoc.rdoc_files.include("lib/**/*.rb")
end

Bundler::GemHelper.install_tasks

require "rspec/core/rake_task"

RSpec::Core::RakeTask.new(:spec)

task :default => :spec

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
active_reporter-0.7.1 Rakefile
active_reporter-0.6.5 Rakefile
active_reporter-0.6.4 Rakefile