1
0
Fork 0
mirror of https://github.com/jnunemaker/httparty synced 2023-03-27 23:23:07 -04:00
httparty/httparty.gemspec

29 lines
1.1 KiB
Ruby
Raw Normal View History

2009-01-05 01:46:36 -05:00
# -*- encoding: utf-8 -*-
2015-04-17 19:46:46 -04:00
$LOAD_PATH.push File.expand_path("../lib", __FILE__)
require "httparty/version"
2009-01-05 01:46:36 -05:00
Gem::Specification.new do |s|
s.name = "httparty"
s.version = HTTParty::VERSION
s.platform = Gem::Platform::RUBY
2014-05-30 10:15:51 -04:00
s.licenses = ['MIT']
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"
2015-04-17 19:01:17 -04:00
s.summary = 'Makes http fun! Also, makes consuming restful web services dead easy.'
s.description = 'Makes http fun! Also, makes consuming restful web services dead easy.'
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"
s.add_dependency 'multi_xml', ">= 0.5.2"
2014-05-21 10:13:07 -04:00
# If this line is removed, all hard partying will cease.
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