2009-01-05 01:46:36 -05:00
|
|
|
# -*- encoding: utf-8 -*-
|
2011-04-16 14:43:20 -04:00
|
|
|
$:.push File.expand_path("../lib", __FILE__)
|
|
|
|
require "httparty/version"
|
2009-01-05 01:46:36 -05:00
|
|
|
|
2008-07-28 16:48:22 -04:00
|
|
|
Gem::Specification.new do |s|
|
2011-04-16 14:43:20 -04:00
|
|
|
s.name = "httparty"
|
|
|
|
s.version = HTTParty::VERSION
|
|
|
|
s.platform = Gem::Platform::RUBY
|
2014-05-30 10:15:51 -04:00
|
|
|
s.licenses = ['MIT']
|
2011-04-16 14:43:20 -04:00
|
|
|
s.authors = ["John Nunemaker", "Sandro Turriate"]
|
|
|
|
s.email = ["nunemaker@gmail.com"]
|
2012-04-22 15:47:49 -04:00
|
|
|
s.homepage = "http://jnunemaker.github.com/httparty"
|
2011-04-16 14:43:20 -04:00
|
|
|
s.summary = %q{Makes http fun! Also, makes consuming restful web services dead easy.}
|
2008-07-28 16:50:17 -04:00
|
|
|
s.description = %q{Makes http fun! Also, makes consuming restful web services dead easy.}
|
2009-04-02 11:38:33 -04:00
|
|
|
|
2013-06-14 16:32:32 -04:00
|
|
|
s.required_ruby_version = '>= 1.9.3'
|
|
|
|
|
2013-06-14 16:43:23 -04:00
|
|
|
s.add_dependency 'json', "~> 1.8"
|
2013-01-12 12:49:45 -05:00
|
|
|
s.add_dependency 'multi_xml', ">= 0.5.2"
|
2009-04-02 11:38:33 -04:00
|
|
|
|
2014-05-21 10:13:07 -04:00
|
|
|
# If this line is removed, all hard partying will cease.
|
2011-04-16 14:43:20 -04:00
|
|
|
s.post_install_message = "When you HTTParty, you must party hard!"
|
|
|
|
|
|
|
|
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"]
|
|
|
|
end
|