Sha256: c3b2f27f4623134714b2c02be22663bc9eaf2fd88c812761393c845635ad3b1e

Contents?: true

Size: 1.18 KB

Versions: 11

Compression:

Stored size: 1.18 KB

Contents

# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'manticore/version'

Gem::Specification.new do |spec|
  spec.name          = "manticore"
  spec.version       = Manticore::VERSION
  spec.authors       = ["Chris Heald"]
  spec.email         = ["cheald@mashable.com"]
  spec.description   = %q{Manticore is an HTTP client built on the Apache HttpCore components}
  spec.summary       = %q{Manticore is an HTTP client built on the Apache HttpCore components}
  spec.homepage      = "https://github.com/cheald/manticore"
  spec.license       = "MIT"
  spec.platform      = 'java'

  spec.files         = `git ls-files`.split($/)
  spec.executables   = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
  spec.test_files    = spec.files.grep(%r{^(test|spec|features)/})
  spec.require_paths = ["lib"]

  private_key = File.expand_path("~/.gemcert/gem-private_key.pem")
  if File.exists? private_key
    spec.signing_key = private_key
    spec.cert_chain  = ['gem-public_cert.pem']
  end

  spec.add_dependency "addressable", "~> 2.3"
  spec.add_development_dependency "bundler", "~> 1.3"
  spec.add_development_dependency "rake"
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
manticore-0.4.3-java manticore.gemspec
manticore-0.4.2-java manticore.gemspec
manticore-0.4.1-java manticore.gemspec
manticore-0.4.0-java manticore.gemspec
manticore-0.3.6-java manticore.gemspec
manticore-0.3.5-java manticore.gemspec
manticore-0.3.4-java manticore.gemspec
manticore-0.3.3-java manticore.gemspec
manticore-0.3.2-java manticore.gemspec
manticore-0.3.1-java manticore.gemspec
manticore-0.3.0-java manticore.gemspec