Sha256: 5eeae3d20d29d74ace95a41674fd62c3a762d6c748704e2fd11675bf6a7cb98a

Contents?: true

Size: 518 Bytes

Versions: 12

Compression:

Stored size: 518 Bytes

Contents

# frozen_string_literal: true

require 'bundler'
Bundler::GemHelper.install_tasks

desc 'Set a relevant database.yml for testing'
task :prepare do
  ENV['DB'] ||= 'postgresql'
end

require 'rspec/core/rake_task'
desc 'Run tests on PaperTrailScrapbook with RSpec'
task(:spec).clear
RSpec::Core::RakeTask.new(:spec) do |t|
  t.verbose = false # hide list of specs bit.ly/1nVq3Jn
end

require 'rubocop/rake_task'
RuboCop::RakeTask.new

desc 'Default: run all available test suites'
task default: %i[rubocop prepare spec]

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
paper_trail_scrapbook-0.2.0 Rakefile
paper_trail_scrapbook-0.1.21 Rakefile
paper_trail_scrapbook-0.1.20 Rakefile
paper_trail_scrapbook-0.1.19 Rakefile
paper_trail_scrapbook-0.1.18 Rakefile
paper_trail_scrapbook-0.1.17 Rakefile
paper_trail_scrapbook-0.1.16 Rakefile
paper_trail_scrapbook-0.1.15 Rakefile
paper_trail_scrapbook-0.1.13 Rakefile
paper_trail_scrapbook-0.1.12 Rakefile
paper_trail_scrapbook-0.1.11 Rakefile
paper_trail_scrapbook-0.1.10 Rakefile