Sha256: 62a2379914e5f9c8fdae6111e74034ac962b148b75d8f09e113e33095f66ff95

Contents?: true

Size: 443 Bytes

Versions: 10

Compression:

Stored size: 443 Bytes

Contents

require "bundler/gem_tasks"
require "rspec/core/rake_task"

RSpec::Core::RakeTask.new do |t|
  t.pattern = "spec/httpi/**/*_spec.rb"
end

desc "Run RSpec integration examples"
RSpec::Core::RakeTask.new "spec_integration" do |t|
  t.pattern = "spec/integration/*_spec.rb"
end

desc "Run RSpec code and integration examples"
RSpec::Core::RakeTask.new "ci" do |t|
  t.pattern = "spec/{httpi,integration}/**/*_spec.rb"
end

task :default => :spec

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
httpi-4.0.3 Rakefile
httpi-4.0.2 Rakefile
httpi-4.0.1 Rakefile
httpi-3.0.2 Rakefile
httpi-3.0.1 Rakefile
httpi-3.0.0 Rakefile
httpi-2.5.0 Rakefile
httpi-2.4.5 Rakefile
httpi-2.4.4 Rakefile
httpi-2.4.3 Rakefile