Sha256: afdcd7b06059822ebc2995f50208fdf7e48cf1d616520f60cb52e38de67b65f2
Contents?: true
Size: 550 Bytes
Versions: 7
Compression:
Stored size: 550 Bytes
Contents
require "bundler/gem_tasks" require "rspec/core/rake_task" desc "Run all specs in spec directory" RSpec::Core::RakeTask.new(:spec) desc "Run the ci build (no integration tests)" RSpec::Core::RakeTask.new(:ci) do |t| t.rspec_opts = "--tag '~deprecated' --tag '~ezid'" end desc "Run tests of deprecated functionality" RSpec::Core::RakeTask.new(:deprecated) do |t| t.rspec_opts = "--tag deprecated" end desc "Run the integration tests" RSpec::Core::RakeTask.new(:integration) do |t| t.rspec_opts = "--tag integration" end task default: :spec
Version data entries
7 entries across 7 versions & 1 rubygems