Sha256: d8255ee3bacb185bc3b81ccc6c3797901df88bbd31602198564fc12b12ea3f3a

Contents?: true

Size: 878 Bytes

Versions: 24

Compression:

Stored size: 878 Bytes

Contents

require 'bundler'
Bundler::GemHelper.install_tasks

require "rspec/core/rake_task"
RSpec::Core::RakeTask.new(:spec) do |t|
  t.rspec_opts = ["-c", "-f progress", "-r ./spec/spec_helper.rb"]
  t.pattern = 'spec/**/*_spec.rb'
end

RSpec::Core::RakeTask.new(:spec_http_without_webmock) do |t|
  t.rspec_opts = ["-c", "-f progress", "-r ./spec/acceptance/net_http/real_net_http_spec.rb"]
  t.pattern = 'spec/acceptance/net_http/real_net_http_spec.rb'
end

require 'rake/testtask'
Rake::TestTask.new(:test) do |test|
  test.test_files = FileList["test/**/*.rb"].exclude("test/test_helper.rb")
  test.verbose = false
  test.warning = false
end

Rake::TestTask.new(:minitest) do |test|
  test.test_files = FileList["minitest/**/*.rb"].exclude("test/test_helper.rb")
  test.verbose = false
  test.warning = false
end

task default: [:spec, :spec_http_without_webmock, :test, :minitest]

Version data entries

24 entries across 24 versions & 2 rubygems

Version Path
logstash-output-newrelic-1.2.0 vendor/bundle/jruby/2.5.0/gems/webmock-3.11.2/Rakefile
webmock-3.11.2 Rakefile
webmock-3.11.1 Rakefile
webmock-3.11.0 Rakefile
webmock-3.10.0 Rakefile
webmock-3.9.5 Rakefile
webmock-3.9.4 Rakefile
webmock-3.9.3 Rakefile
webmock-3.9.2 Rakefile
webmock-3.9.1 Rakefile
webmock-3.9.0 Rakefile
webmock-3.8.3 Rakefile
webmock-3.8.2 Rakefile
webmock-3.8.1 Rakefile
webmock-3.8.0 Rakefile
webmock-3.7.6 Rakefile
webmock-3.7.5 Rakefile
webmock-3.7.4 Rakefile
webmock-3.7.3 Rakefile
webmock-3.7.2 Rakefile