Sha256: 6d2186aab9ddb1f891bd8fd6bd9b9d055e512408aaab44ea500880b638de86d2

Contents?: true

Size: 538 Bytes

Versions: 4

Compression:

Stored size: 538 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    = "ValidatesCvr"
  rdoc.options << "--line-numbers"
  rdoc.rdoc_files.include("README.md")
  rdoc.rdoc_files.include("lib/**/*.rb")
end

require "bundler/gem_tasks"

begin
  require "best_practice_project"
  BestPracticeProject.load_tasks
rescue LoadError # rubocop:disable Lint/HandleExceptions
  # Ignore
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
validates_cvr-0.0.5 Rakefile
validates_cvr-0.0.3 Rakefile
validates_cvr-0.0.2 Rakefile
validates_cvr-0.0.1 Rakefile