File: open_uri_redirections.gemspec

package info (click to toggle)
ruby-open-uri-redirections 0.2.1-1
  • links: PTS, VCS
  • area: main
  • in suites:
  • size: 120 kB
  • sloc: ruby: 183; makefile: 3
file content (23 lines) | stat: -rw-r--r-- 1,001 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'open_uri_redirections/version'

Gem::Specification.new do |gem|
  gem.name          = "open_uri_redirections"
  gem.version       = OpenUriRedirections::VERSION
  gem.authors       = ["Jaime Iniesta", "Gabriel Cebrian", "Felix C. Stegerman"]
  gem.email         = ["jaimeiniesta@gmail.com"]
  gem.description   = %q{OpenURI patch to allow redirections between HTTP and HTTPS}
  gem.summary       = %q{OpenURI patch to allow redirections between HTTP and HTTPS}
  gem.homepage      = "https://github.com/jaimeiniesta/open_uri_redirections"
  gem.license       = "MIT"

  gem.files         = `git ls-files`.split($/)
  gem.test_files    = gem.files.grep(%r{^(spec)/})
  gem.require_paths = ["lib"]

  gem.add_development_dependency 'rspec',   '~> 3.1.0'
  gem.add_development_dependency 'fakeweb', '~> 1.3.0'
  gem.add_development_dependency 'rake',    '~> 10.3.2'
end