public
Description: Makes http fun! Also, makes consuming restful web services dead easy.
Homepage:
Clone URL: git://github.com/jnunemaker/httparty.git
Click here to lend your support to: httparty and make a donation at www.pledgie.com !
httparty / httparty.gemspec
100644 110 lines (105 sloc) 3.585 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
# Generated by jeweler
# DO NOT EDIT THIS FILE
# Instead, edit Jeweler::Tasks in Rakefile, and run `rake gemspec`
# -*- encoding: utf-8 -*-
 
Gem::Specification.new do |s|
  s.name = %q{httparty}
  s.version = "0.4.5"
 
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
  s.authors = ["John Nunemaker"]
  s.date = %q{2009-09-12}
  s.default_executable = %q{httparty}
  s.description = %q{Makes http fun! Also, makes consuming restful web services dead easy.}
  s.email = %q{nunemaker@gmail.com}
  s.executables = ["httparty"]
  s.extra_rdoc_files = [
    "README.rdoc"
  ]
  s.files = [
    ".gitignore",
     "History",
     "MIT-LICENSE",
     "Manifest",
     "README.rdoc",
     "Rakefile",
     "VERSION",
     "bin/httparty",
     "cucumber.yml",
     "examples/aaws.rb",
     "examples/basic.rb",
     "examples/delicious.rb",
     "examples/google.rb",
     "examples/rubyurl.rb",
     "examples/twitter.rb",
     "examples/whoismyrep.rb",
     "features/basic_authentication.feature",
     "features/command_line.feature",
     "features/deals_with_http_error_codes.feature",
     "features/handles_multiple_formats.feature",
     "features/steps/env.rb",
     "features/steps/httparty_response_steps.rb",
     "features/steps/httparty_steps.rb",
     "features/steps/mongrel_helper.rb",
     "features/steps/remote_service_steps.rb",
     "features/supports_redirection.feature",
     "features/supports_timeout_option.feature",
     "httparty.gemspec",
     "lib/httparty.rb",
     "lib/httparty/cookie_hash.rb",
     "lib/httparty/core_extensions.rb",
     "lib/httparty/exceptions.rb",
     "lib/httparty/module_inheritable_attributes.rb",
     "lib/httparty/request.rb",
     "lib/httparty/response.rb",
     "lib/httparty/version.rb",
     "spec/fixtures/delicious.xml",
     "spec/fixtures/empty.xml",
     "spec/fixtures/google.html",
     "spec/fixtures/twitter.json",
     "spec/fixtures/twitter.xml",
     "spec/fixtures/undefined_method_add_node_for_nil.xml",
     "spec/httparty/cookie_hash_spec.rb",
     "spec/httparty/request_spec.rb",
     "spec/httparty/response_spec.rb",
     "spec/httparty_spec.rb",
     "spec/spec.opts",
     "spec/spec_helper.rb",
     "website/css/common.css",
     "website/index.html"
  ]
  s.has_rdoc = true
  s.homepage = %q{http://httparty.rubyforge.org}
  s.post_install_message = %q{When you HTTParty, you must party hard!}
  s.rdoc_options = ["--charset=UTF-8"]
  s.require_paths = ["lib"]
  s.rubygems_version = %q{1.3.1}
  s.summary = %q{Makes http fun! Also, makes consuming restful web services dead easy.}
  s.test_files = [
    "spec/httparty/cookie_hash_spec.rb",
     "spec/httparty/request_spec.rb",
     "spec/httparty/response_spec.rb",
     "spec/httparty_spec.rb",
     "spec/spec_helper.rb",
     "examples/aaws.rb",
     "examples/basic.rb",
     "examples/delicious.rb",
     "examples/google.rb",
     "examples/rubyurl.rb",
     "examples/twitter.rb",
     "examples/whoismyrep.rb"
  ]
 
  if s.respond_to? :specification_version then
    current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
    s.specification_version = 2
 
    if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
      s.add_runtime_dependency(%q<crack>, [">= 0.1.1"])
      s.add_development_dependency(%q<rspec>, ["= 1.2.8"])
    else
      s.add_dependency(%q<crack>, [">= 0.1.1"])
      s.add_dependency(%q<rspec>, ["= 1.2.8"])
    end
  else
    s.add_dependency(%q<crack>, [">= 0.1.1"])
    s.add_dependency(%q<rspec>, ["= 1.2.8"])
  end
end