Sha256: d0f77e7c6fa223c99912a25c5615ca045fecfd5d1e53deeab40ee441730a8631

Contents?: true

Size: 463 Bytes

Versions: 7

Compression:

Stored size: 463 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)"
task :ci do
  system "rspec . -t ~deprecated -t ~integration"
end

desc "Run tests of deprecated functionality"
task :deprecated do
  system "rspec . -t deprecated"
end

desc "Run the integration tests"
task :integration do
  system "rspec . -t integration"
end

task default: :spec

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
ezid-client-1.8.0 Rakefile
ezid-client-1.7.1 Rakefile
ezid-client-1.7.0 Rakefile
ezid-client-1.6.0 Rakefile
ezid-client-1.5.0 Rakefile
ezid-client-1.4.3 Rakefile
ezid-client-1.4.2 Rakefile