Sha256: 5b7efc1d1812e3c96e32cb7095c8b67335a34fb44b1725eca174261a1ba97d42
Contents?: true
Size: 481 Bytes
Versions: 15
Compression:
Stored size: 481 Bytes
Contents
# frozen_string_literal: true require 'bundler/gem_tasks' require 'rspec/core/rake_task' # Exclude all spec with type :thread RSpec::Core::RakeTask.new(:spec) # Exclude all spec with type :thread RSpec::Core::RakeTask.new(:classic) do |t| t.rspec_opts = '--tag ~type:thread' end # Include just spec with type :thread RSpec::Core::RakeTask.new(:concurrency) do |t| t.rspec_opts = '--tag type:thread' end task default: :spec task request: :classic task thread: :concurrency
Version data entries
15 entries across 15 versions & 1 rubygems