Rakefile in httpi-2.4.2 vs Rakefile in httpi-2.4.3

- old
+ new

@@ -8,9 +8,11 @@ desc "Run RSpec integration examples" RSpec::Core::RakeTask.new "spec_integration" do |t| t.pattern = "spec/integration/*_spec.rb" end -task :default => :spec - desc "Run RSpec code and integration examples" -task :ci => [:spec, :spec_integration] +RSpec::Core::RakeTask.new "ci" do |t| + t.pattern = "spec/{httpi,integration}/**/*_spec.rb" +end + +task :default => :spec