Sha256: 3246dbd7dc7616f07f2bdf0cf5ce150e7258cb4708597512e9b351f60fc8cce7
Contents?: true
Size: 541 Bytes
Versions: 1
Compression:
Stored size: 541 Bytes
Contents
# frozen_string_literal: true require 'bundler/setup' require 'paperclip/permanent_records/gem_tasks' require 'appraisal' require 'rspec/core/rake_task' require 'wwtd/tasks' desc 'Default: run all tests with all supported versions' task default: :all desc 'Run tests with all supported versions.' task all: ['appraisal:install'] do exec('rake appraisal spec') end task local: 'wwtd:local' # run all gemfiles with local ruby desc 'Run all tests' RSpec::Core::RakeTask.new('spec') do |t| t.pattern = FileList['spec/**/*_spec.rb'] end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
paperclip-permanent_records-0.5.0 | Rakefile |