Sha256: c59e2fd3d7599aa88a161e5036186ec9794cc0092282378ed81b085a906fdfa0

Contents?: true

Size: 1.08 KB

Versions: 3

Compression:

Stored size: 1.08 KB

Contents

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

Gem::Specification.new do |s|
  s.name        = "unwind"
  s.version     = Unwind::VERSION
  s.authors     = ["Scott Watermasysk"]
  s.email       = ["scottwater@gmail.com"]
  s.homepage    = ""
  s.summary     = %q{Follows a chain redirects.}
  s.description = <<-description 
										Follows a chain of redirects and reports back on all the steps. 
										Heavily inspired by John Nunemaker's blog post.
										http://railstips.org/blog/archives/2009/03/04/following-redirects-with-nethttp/
									description

  s.rubyforge_project = "unwind"

  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 "rake"
  s.add_development_dependency "vcr"
  s.add_development_dependency "fakeweb"
  s.add_runtime_dependency "faraday", '~> 0.7'
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
unwind-0.9.5 unwind.gemspec
unwind-0.9.4 unwind.gemspec
unwind-0.9.3 unwind.gemspec