Sha256: aa4f0cba05ec6cac6cdc772fdcc189d62201aad851fe377946c604d5c1ca13bb

Contents?: true

Size: 654 Bytes

Versions: 6

Compression:

Stored size: 654 Bytes

Contents

#!/usr/bin/env rake
begin
  require 'bundler/setup'
rescue LoadError
  puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
end
begin
  require 'rdoc/task'
rescue LoadError
  require 'rdoc/rdoc'
  require 'rake/rdoctask'
  RDoc::Task = Rake::RDocTask
end

RDoc::Task.new(:rdoc) do |rdoc|
  rdoc.rdoc_dir = 'rdoc'
  rdoc.title    = 'ActsAsCitable'
  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) do |t|
  t.ruby_opts = "--debug --dev"
end
task default: :spec

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
acts_as_citable-5.0.0.beta Rakefile
acts_as_citable-5.0.0.alpha5 Rakefile
acts_as_citable-5.0.0.alpha4 Rakefile
acts_as_citable-5.0.0.alpha3 Rakefile
acts_as_citable-5.0.0.alpha2 Rakefile
acts_as_citable-5.0.0.alpha Rakefile