Sha256: a0da211348553319bcdce20a385c345e08143b20b684229c85c2d356dd752cfa

Contents?: true

Size: 1.04 KB

Versions: 4

Compression:

Stored size: 1.04 KB

Contents

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

Gem::Specification.new do |spec|
  spec.name          = "url_fetcher"
  spec.version       = File.read(File.expand_path("../VERSION", __FILE__)).chomp
  spec.authors       = ["weheartit"]
  spec.email         = ["dev@weheartit.com"]
  spec.description   = %q{Fetch resources from the internetz!}
  spec.summary       = %q{Fetch resources from the internetz with circular redirects support}
  spec.homepage      = "https://github.com/weheartit/whi-url-fetcher"
  spec.license       = "MIT"

  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"]

  spec.add_dependency('addressable', '~>2.3')

  spec.add_development_dependency "bundler", "~> 1.3"
  spec.add_development_dependency "rake"
  spec.add_development_dependency "rspec"
  spec.add_development_dependency "webmock"
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
url_fetcher-1.1.7 url_fetcher.gemspec
url_fetcher-1.1.6 url_fetcher.gemspec
url_fetcher-1.1.5 url_fetcher.gemspec
url_fetcher-1.1.4 url_fetcher.gemspec