Sha256: 19b29d898a4ea795f839e84312b575dc1f14ae308b2df20cc739a2ad4ce422e8

Contents?: true

Size: 947 Bytes

Versions: 2

Compression:

Stored size: 947 Bytes

Contents

# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "httparrot/version"

Gem::Specification.new do |s|
  s.name        = "httparrot"
  s.version     = HTTParrot::VERSION
  s.authors     = ["Brandon Dewitt", "lawrence mcalpin"]
  s.email       = ["brandonsdewitt+httparrot@gmail.com"]
  s.homepage    = ""
  s.summary     = %q{Mock Server for testing HTTP anything!}
  s.description = %q{helps cut through the clutter of HTTP testing}

  s.rubyforge_project = "httparrot"

  s.files         = `git ls-files`.split("\n")
  s.test_files    = `git ls-files -- {test,spec,features}/*`.split("\n")
  s.executables   = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
  s.require_paths = ["lib"]

  # specify any dependencies here; for example:
  s.add_development_dependency "rspec", "=2.7"
  s.add_development_dependency "rake"

  s.add_runtime_dependency "rack"
  s.add_runtime_dependency "activesupport"
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
httparrot-0.0.6 httparrot.gemspec
httparrot-0.0.5 httparrot.gemspec