httparty 0.7.4 → 0.7.6
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of httparty might be problematic. Click here for more details.
- data/.gitignore +9 -0
- data/History +4 -0
- data/Rakefile +5 -68
- data/httparty.gemspec +22 -144
- data/lib/httparty.rb +9 -13
- data/lib/httparty/version.rb +5 -0
- data/spec/spec_helper.rb +3 -1
- metadata +47 -43
- data/.rvmrc +0 -1
- data/Gemfile.lock +0 -49
- data/Manifest +0 -47
data/.gitignore
ADDED
data/History
CHANGED
data/Rakefile
CHANGED
@@ -1,32 +1,5 @@
|
|
1
|
-
require '
|
2
|
-
|
3
|
-
|
4
|
-
begin
|
5
|
-
require 'jeweler'
|
6
|
-
Jeweler::Tasks.new do |gem|
|
7
|
-
gem.name = "httparty"
|
8
|
-
gem.summary = %Q{Makes http fun! Also, makes consuming restful web services dead easy.}
|
9
|
-
gem.description = %Q{Makes http fun! Also, makes consuming restful web services dead easy.}
|
10
|
-
gem.email = "nunemaker@gmail.com"
|
11
|
-
gem.homepage = "http://httparty.rubyforge.org"
|
12
|
-
gem.authors = ["John Nunemaker", "Sandro Turriate"]
|
13
|
-
gem.version = HTTParty::VERSION.dup
|
14
|
-
|
15
|
-
gem.add_dependency 'crack', HTTParty::CRACK_DEPENDENCY
|
16
|
-
|
17
|
-
gem.add_development_dependency "activesupport", "~>2.3"
|
18
|
-
gem.add_development_dependency "cucumber", "~>0.7"
|
19
|
-
gem.add_development_dependency "fakeweb", "~>1.2"
|
20
|
-
gem.add_development_dependency "rspec", "~>1.3"
|
21
|
-
gem.add_development_dependency "jeweler", "~>1.5"
|
22
|
-
gem.add_development_dependency "mongrel", "1.2.0.pre2"
|
23
|
-
gem.post_install_message = "When you HTTParty, you must party hard!"
|
24
|
-
# gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
|
25
|
-
end
|
26
|
-
Jeweler::GemcutterTasks.new
|
27
|
-
rescue LoadError
|
28
|
-
puts "Jeweler (or a dependency) not available. Install it with: sudo gem install jeweler"
|
29
|
-
end
|
1
|
+
require 'bundler'
|
2
|
+
Bundler::GemHelper.install_tasks
|
30
3
|
|
31
4
|
require 'spec/rake/spectask'
|
32
5
|
Spec::Rake::SpecTask.new(:spec) do |spec|
|
@@ -36,43 +9,7 @@ Spec::Rake::SpecTask.new(:spec) do |spec|
|
|
36
9
|
spec.spec_opts = ['--options', 'spec/spec.opts']
|
37
10
|
end
|
38
11
|
|
39
|
-
|
40
|
-
|
41
|
-
spec.pattern = 'spec/**/*_spec.rb'
|
42
|
-
spec.rcov = true
|
43
|
-
end
|
44
|
-
|
45
|
-
begin
|
46
|
-
require 'cucumber/rake/task'
|
47
|
-
Cucumber::Rake::Task.new(:features)
|
12
|
+
require 'cucumber/rake/task'
|
13
|
+
Cucumber::Rake::Task.new(:features)
|
48
14
|
|
49
|
-
|
50
|
-
task :features do
|
51
|
-
abort "Cucumber is not available. In order to run features, you must: sudo gem install cucumber"
|
52
|
-
end
|
53
|
-
end
|
54
|
-
|
55
|
-
task :default => [:spec, :features]
|
56
|
-
|
57
|
-
require 'rake/rdoctask'
|
58
|
-
Rake::RDocTask.new do |rdoc|
|
59
|
-
if File.exist?('VERSION')
|
60
|
-
version = File.read('VERSION')
|
61
|
-
else
|
62
|
-
version = ""
|
63
|
-
end
|
64
|
-
|
65
|
-
rdoc.rdoc_dir = 'rdoc'
|
66
|
-
rdoc.title = "httparty #{version}"
|
67
|
-
rdoc.rdoc_files.include('README*')
|
68
|
-
rdoc.rdoc_files.include('lib/**/*.rb')
|
69
|
-
rdoc.rdoc_files.include('lib/httparty.rb')
|
70
|
-
end
|
71
|
-
|
72
|
-
begin
|
73
|
-
require 'yard'
|
74
|
-
YARD::Rake::YardocTask.new do |t|
|
75
|
-
t.options = ['--verbose']
|
76
|
-
end
|
77
|
-
rescue LoadError
|
78
|
-
end
|
15
|
+
task :default => [:spec, :features]
|
data/httparty.gemspec
CHANGED
@@ -1,151 +1,29 @@
|
|
1
|
-
# Generated by jeweler
|
2
|
-
# DO NOT EDIT THIS FILE DIRECTLY
|
3
|
-
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
4
1
|
# -*- encoding: utf-8 -*-
|
2
|
+
$:.push File.expand_path("../lib", __FILE__)
|
3
|
+
require "httparty/version"
|
5
4
|
|
6
5
|
Gem::Specification.new do |s|
|
7
|
-
s.name
|
8
|
-
s.version
|
9
|
-
|
10
|
-
s.
|
11
|
-
s.
|
12
|
-
s.
|
13
|
-
s.
|
6
|
+
s.name = "httparty"
|
7
|
+
s.version = HTTParty::VERSION
|
8
|
+
s.platform = Gem::Platform::RUBY
|
9
|
+
s.authors = ["John Nunemaker", "Sandro Turriate"]
|
10
|
+
s.email = ["nunemaker@gmail.com"]
|
11
|
+
s.homepage = "http://httparty.rubyforge.org/"
|
12
|
+
s.summary = %q{Makes http fun! Also, makes consuming restful web services dead easy.}
|
14
13
|
s.description = %q{Makes http fun! Also, makes consuming restful web services dead easy.}
|
15
|
-
s.email = %q{nunemaker@gmail.com}
|
16
|
-
s.executables = ["httparty"]
|
17
|
-
s.extra_rdoc_files = [
|
18
|
-
"README.rdoc"
|
19
|
-
]
|
20
|
-
s.files = [
|
21
|
-
".rvmrc",
|
22
|
-
"Gemfile",
|
23
|
-
"Gemfile.lock",
|
24
|
-
"History",
|
25
|
-
"MIT-LICENSE",
|
26
|
-
"Manifest",
|
27
|
-
"README.rdoc",
|
28
|
-
"Rakefile",
|
29
|
-
"bin/httparty",
|
30
|
-
"cucumber.yml",
|
31
|
-
"examples/aaws.rb",
|
32
|
-
"examples/basic.rb",
|
33
|
-
"examples/custom_parsers.rb",
|
34
|
-
"examples/delicious.rb",
|
35
|
-
"examples/google.rb",
|
36
|
-
"examples/rubyurl.rb",
|
37
|
-
"examples/tripit_sign_in.rb",
|
38
|
-
"examples/twitter.rb",
|
39
|
-
"examples/whoismyrep.rb",
|
40
|
-
"features/basic_authentication.feature",
|
41
|
-
"features/command_line.feature",
|
42
|
-
"features/deals_with_http_error_codes.feature",
|
43
|
-
"features/digest_authentication.feature",
|
44
|
-
"features/handles_compressed_responses.feature",
|
45
|
-
"features/handles_multiple_formats.feature",
|
46
|
-
"features/steps/env.rb",
|
47
|
-
"features/steps/httparty_response_steps.rb",
|
48
|
-
"features/steps/httparty_steps.rb",
|
49
|
-
"features/steps/mongrel_helper.rb",
|
50
|
-
"features/steps/remote_service_steps.rb",
|
51
|
-
"features/supports_redirection.feature",
|
52
|
-
"features/supports_timeout_option.feature",
|
53
|
-
"httparty.gemspec",
|
54
|
-
"lib/httparty.rb",
|
55
|
-
"lib/httparty/cookie_hash.rb",
|
56
|
-
"lib/httparty/core_extensions.rb",
|
57
|
-
"lib/httparty/exceptions.rb",
|
58
|
-
"lib/httparty/module_inheritable_attributes.rb",
|
59
|
-
"lib/httparty/net_digest_auth.rb",
|
60
|
-
"lib/httparty/parser.rb",
|
61
|
-
"lib/httparty/request.rb",
|
62
|
-
"lib/httparty/response.rb",
|
63
|
-
"spec/fixtures/delicious.xml",
|
64
|
-
"spec/fixtures/empty.xml",
|
65
|
-
"spec/fixtures/google.html",
|
66
|
-
"spec/fixtures/ssl/generate.sh",
|
67
|
-
"spec/fixtures/ssl/generated/1fe462c2.0",
|
68
|
-
"spec/fixtures/ssl/generated/bogushost.crt",
|
69
|
-
"spec/fixtures/ssl/generated/ca.crt",
|
70
|
-
"spec/fixtures/ssl/generated/ca.key",
|
71
|
-
"spec/fixtures/ssl/generated/selfsigned.crt",
|
72
|
-
"spec/fixtures/ssl/generated/server.crt",
|
73
|
-
"spec/fixtures/ssl/generated/server.key",
|
74
|
-
"spec/fixtures/ssl/openssl-exts.cnf",
|
75
|
-
"spec/fixtures/twitter.json",
|
76
|
-
"spec/fixtures/twitter.xml",
|
77
|
-
"spec/fixtures/undefined_method_add_node_for_nil.xml",
|
78
|
-
"spec/httparty/cookie_hash_spec.rb",
|
79
|
-
"spec/httparty/net_digest_auth_spec.rb",
|
80
|
-
"spec/httparty/parser_spec.rb",
|
81
|
-
"spec/httparty/request_spec.rb",
|
82
|
-
"spec/httparty/response_spec.rb",
|
83
|
-
"spec/httparty/ssl_spec.rb",
|
84
|
-
"spec/httparty_spec.rb",
|
85
|
-
"spec/spec.opts",
|
86
|
-
"spec/spec_helper.rb",
|
87
|
-
"spec/support/ssl_test_helper.rb",
|
88
|
-
"spec/support/ssl_test_server.rb",
|
89
|
-
"spec/support/stub_response.rb",
|
90
|
-
"website/css/common.css",
|
91
|
-
"website/index.html"
|
92
|
-
]
|
93
|
-
s.homepage = %q{http://httparty.rubyforge.org}
|
94
|
-
s.post_install_message = %q{When you HTTParty, you must party hard!}
|
95
|
-
s.require_paths = ["lib"]
|
96
|
-
s.rubygems_version = %q{1.4.2}
|
97
|
-
s.summary = %q{Makes http fun! Also, makes consuming restful web services dead easy.}
|
98
|
-
s.test_files = [
|
99
|
-
"examples/aaws.rb",
|
100
|
-
"examples/basic.rb",
|
101
|
-
"examples/custom_parsers.rb",
|
102
|
-
"examples/delicious.rb",
|
103
|
-
"examples/google.rb",
|
104
|
-
"examples/rubyurl.rb",
|
105
|
-
"examples/tripit_sign_in.rb",
|
106
|
-
"examples/twitter.rb",
|
107
|
-
"examples/whoismyrep.rb",
|
108
|
-
"spec/httparty/cookie_hash_spec.rb",
|
109
|
-
"spec/httparty/net_digest_auth_spec.rb",
|
110
|
-
"spec/httparty/parser_spec.rb",
|
111
|
-
"spec/httparty/request_spec.rb",
|
112
|
-
"spec/httparty/response_spec.rb",
|
113
|
-
"spec/httparty/ssl_spec.rb",
|
114
|
-
"spec/httparty_spec.rb",
|
115
|
-
"spec/spec_helper.rb",
|
116
|
-
"spec/support/ssl_test_helper.rb",
|
117
|
-
"spec/support/ssl_test_server.rb",
|
118
|
-
"spec/support/stub_response.rb"
|
119
|
-
]
|
120
14
|
|
121
|
-
|
122
|
-
s.specification_version = 3
|
15
|
+
s.add_dependency 'crack', HTTParty::CRACK_DEPENDENCY
|
123
16
|
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
s.add_development_dependency(%q<rspec>, ["~> 1.3"])
|
130
|
-
s.add_development_dependency(%q<jeweler>, ["~> 1.5"])
|
131
|
-
s.add_development_dependency(%q<mongrel>, ["= 1.2.0.pre2"])
|
132
|
-
else
|
133
|
-
s.add_dependency(%q<crack>, ["= 0.1.8"])
|
134
|
-
s.add_dependency(%q<activesupport>, ["~> 2.3"])
|
135
|
-
s.add_dependency(%q<cucumber>, ["~> 0.7"])
|
136
|
-
s.add_dependency(%q<fakeweb>, ["~> 1.2"])
|
137
|
-
s.add_dependency(%q<rspec>, ["~> 1.3"])
|
138
|
-
s.add_dependency(%q<jeweler>, ["~> 1.5"])
|
139
|
-
s.add_dependency(%q<mongrel>, ["= 1.2.0.pre2"])
|
140
|
-
end
|
141
|
-
else
|
142
|
-
s.add_dependency(%q<crack>, ["= 0.1.8"])
|
143
|
-
s.add_dependency(%q<activesupport>, ["~> 2.3"])
|
144
|
-
s.add_dependency(%q<cucumber>, ["~> 0.7"])
|
145
|
-
s.add_dependency(%q<fakeweb>, ["~> 1.2"])
|
146
|
-
s.add_dependency(%q<rspec>, ["~> 1.3"])
|
147
|
-
s.add_dependency(%q<jeweler>, ["~> 1.5"])
|
148
|
-
s.add_dependency(%q<mongrel>, ["= 1.2.0.pre2"])
|
149
|
-
end
|
150
|
-
end
|
17
|
+
s.add_development_dependency "activesupport", "~> 2.3"
|
18
|
+
s.add_development_dependency "cucumber", "~> 0.7"
|
19
|
+
s.add_development_dependency "fakeweb", "~> 1.2"
|
20
|
+
s.add_development_dependency "rspec", "~> 1.3"
|
21
|
+
s.add_development_dependency "mongrel", "1.2.0.pre2"
|
151
22
|
|
23
|
+
s.post_install_message = "When you HTTParty, you must party hard!"
|
24
|
+
|
25
|
+
s.files = `git ls-files`.split("\n")
|
26
|
+
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
27
|
+
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
28
|
+
s.require_paths = ["lib"]
|
29
|
+
end
|
data/lib/httparty.rb
CHANGED
@@ -5,17 +5,13 @@ require 'uri'
|
|
5
5
|
require 'zlib'
|
6
6
|
require 'crack'
|
7
7
|
|
8
|
-
|
9
|
-
|
10
|
-
require
|
11
|
-
require
|
12
|
-
require dir + 'httparty/net_digest_auth'
|
8
|
+
require 'httparty/module_inheritable_attributes'
|
9
|
+
require 'httparty/cookie_hash'
|
10
|
+
require 'httparty/net_digest_auth'
|
11
|
+
require 'httparty/version'
|
13
12
|
|
14
13
|
# @see HTTParty::ClassMethods
|
15
14
|
module HTTParty
|
16
|
-
VERSION = "0.7.4".freeze
|
17
|
-
CRACK_DEPENDENCY = "0.1.8".freeze
|
18
|
-
|
19
15
|
module AllowedFormatsDeprecation
|
20
16
|
def const_missing(const)
|
21
17
|
if const.to_s =~ /AllowedFormats$/
|
@@ -448,11 +444,11 @@ module HTTParty
|
|
448
444
|
|
449
445
|
end
|
450
446
|
|
451
|
-
require
|
452
|
-
require
|
453
|
-
require
|
454
|
-
require
|
455
|
-
require
|
447
|
+
require 'httparty/core_extensions'
|
448
|
+
require 'httparty/exceptions'
|
449
|
+
require 'httparty/parser'
|
450
|
+
require 'httparty/request'
|
451
|
+
require 'httparty/response'
|
456
452
|
|
457
453
|
if Crack::VERSION != HTTParty::CRACK_DEPENDENCY
|
458
454
|
warn "warning: HTTParty depends on version #{HTTParty::CRACK_DEPENDENCY} of crack, not #{Crack::VERSION}."
|
data/spec/spec_helper.rb
CHANGED
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: httparty
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
5
|
-
prerelease:
|
4
|
+
hash: 15
|
5
|
+
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 7
|
9
|
-
-
|
10
|
-
version: 0.7.
|
9
|
+
- 6
|
10
|
+
version: 0.7.6
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- John Nunemaker
|
@@ -16,8 +16,8 @@ autorequire:
|
|
16
16
|
bindir: bin
|
17
17
|
cert_chain: []
|
18
18
|
|
19
|
-
date: 2011-
|
20
|
-
default_executable:
|
19
|
+
date: 2011-04-16 00:00:00 -04:00
|
20
|
+
default_executable:
|
21
21
|
dependencies:
|
22
22
|
- !ruby/object:Gem::Dependency
|
23
23
|
name: crack
|
@@ -95,54 +95,37 @@ dependencies:
|
|
95
95
|
version: "1.3"
|
96
96
|
type: :development
|
97
97
|
version_requirements: *id005
|
98
|
-
- !ruby/object:Gem::Dependency
|
99
|
-
name: jeweler
|
100
|
-
prerelease: false
|
101
|
-
requirement: &id006 !ruby/object:Gem::Requirement
|
102
|
-
none: false
|
103
|
-
requirements:
|
104
|
-
- - ~>
|
105
|
-
- !ruby/object:Gem::Version
|
106
|
-
hash: 5
|
107
|
-
segments:
|
108
|
-
- 1
|
109
|
-
- 5
|
110
|
-
version: "1.5"
|
111
|
-
type: :development
|
112
|
-
version_requirements: *id006
|
113
98
|
- !ruby/object:Gem::Dependency
|
114
99
|
name: mongrel
|
115
100
|
prerelease: false
|
116
|
-
requirement: &
|
101
|
+
requirement: &id006 !ruby/object:Gem::Requirement
|
117
102
|
none: false
|
118
103
|
requirements:
|
119
104
|
- - "="
|
120
105
|
- !ruby/object:Gem::Version
|
121
|
-
hash:
|
106
|
+
hash: -1876988191
|
122
107
|
segments:
|
123
108
|
- 1
|
124
109
|
- 2
|
125
110
|
- 0
|
126
|
-
-
|
127
|
-
- 2
|
111
|
+
- pre2
|
128
112
|
version: 1.2.0.pre2
|
129
113
|
type: :development
|
130
|
-
version_requirements: *
|
114
|
+
version_requirements: *id006
|
131
115
|
description: Makes http fun! Also, makes consuming restful web services dead easy.
|
132
|
-
email:
|
116
|
+
email:
|
117
|
+
- nunemaker@gmail.com
|
133
118
|
executables:
|
134
119
|
- httparty
|
135
120
|
extensions: []
|
136
121
|
|
137
|
-
extra_rdoc_files:
|
138
|
-
|
122
|
+
extra_rdoc_files: []
|
123
|
+
|
139
124
|
files:
|
140
|
-
- .
|
125
|
+
- .gitignore
|
141
126
|
- Gemfile
|
142
|
-
- Gemfile.lock
|
143
127
|
- History
|
144
128
|
- MIT-LICENSE
|
145
|
-
- Manifest
|
146
129
|
- README.rdoc
|
147
130
|
- Rakefile
|
148
131
|
- bin/httparty
|
@@ -179,6 +162,7 @@ files:
|
|
179
162
|
- lib/httparty/parser.rb
|
180
163
|
- lib/httparty/request.rb
|
181
164
|
- lib/httparty/response.rb
|
165
|
+
- lib/httparty/version.rb
|
182
166
|
- spec/fixtures/delicious.xml
|
183
167
|
- spec/fixtures/empty.xml
|
184
168
|
- spec/fixtures/google.html
|
@@ -209,7 +193,7 @@ files:
|
|
209
193
|
- website/css/common.css
|
210
194
|
- website/index.html
|
211
195
|
has_rdoc: true
|
212
|
-
homepage: http://httparty.rubyforge.org
|
196
|
+
homepage: http://httparty.rubyforge.org/
|
213
197
|
licenses: []
|
214
198
|
|
215
199
|
post_install_message: When you HTTParty, you must party hard!
|
@@ -238,20 +222,39 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
238
222
|
requirements: []
|
239
223
|
|
240
224
|
rubyforge_project:
|
241
|
-
rubygems_version: 1.
|
225
|
+
rubygems_version: 1.3.7
|
242
226
|
signing_key:
|
243
227
|
specification_version: 3
|
244
228
|
summary: Makes http fun! Also, makes consuming restful web services dead easy.
|
245
229
|
test_files:
|
246
|
-
-
|
247
|
-
-
|
248
|
-
-
|
249
|
-
-
|
250
|
-
-
|
251
|
-
-
|
252
|
-
-
|
253
|
-
-
|
254
|
-
-
|
230
|
+
- features/basic_authentication.feature
|
231
|
+
- features/command_line.feature
|
232
|
+
- features/deals_with_http_error_codes.feature
|
233
|
+
- features/digest_authentication.feature
|
234
|
+
- features/handles_compressed_responses.feature
|
235
|
+
- features/handles_multiple_formats.feature
|
236
|
+
- features/steps/env.rb
|
237
|
+
- features/steps/httparty_response_steps.rb
|
238
|
+
- features/steps/httparty_steps.rb
|
239
|
+
- features/steps/mongrel_helper.rb
|
240
|
+
- features/steps/remote_service_steps.rb
|
241
|
+
- features/supports_redirection.feature
|
242
|
+
- features/supports_timeout_option.feature
|
243
|
+
- spec/fixtures/delicious.xml
|
244
|
+
- spec/fixtures/empty.xml
|
245
|
+
- spec/fixtures/google.html
|
246
|
+
- spec/fixtures/ssl/generate.sh
|
247
|
+
- spec/fixtures/ssl/generated/1fe462c2.0
|
248
|
+
- spec/fixtures/ssl/generated/bogushost.crt
|
249
|
+
- spec/fixtures/ssl/generated/ca.crt
|
250
|
+
- spec/fixtures/ssl/generated/ca.key
|
251
|
+
- spec/fixtures/ssl/generated/selfsigned.crt
|
252
|
+
- spec/fixtures/ssl/generated/server.crt
|
253
|
+
- spec/fixtures/ssl/generated/server.key
|
254
|
+
- spec/fixtures/ssl/openssl-exts.cnf
|
255
|
+
- spec/fixtures/twitter.json
|
256
|
+
- spec/fixtures/twitter.xml
|
257
|
+
- spec/fixtures/undefined_method_add_node_for_nil.xml
|
255
258
|
- spec/httparty/cookie_hash_spec.rb
|
256
259
|
- spec/httparty/net_digest_auth_spec.rb
|
257
260
|
- spec/httparty/parser_spec.rb
|
@@ -259,6 +262,7 @@ test_files:
|
|
259
262
|
- spec/httparty/response_spec.rb
|
260
263
|
- spec/httparty/ssl_spec.rb
|
261
264
|
- spec/httparty_spec.rb
|
265
|
+
- spec/spec.opts
|
262
266
|
- spec/spec_helper.rb
|
263
267
|
- spec/support/ssl_test_helper.rb
|
264
268
|
- spec/support/ssl_test_server.rb
|
data/.rvmrc
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
rvm gemset use httparty
|
data/Gemfile.lock
DELETED
@@ -1,49 +0,0 @@
|
|
1
|
-
PATH
|
2
|
-
remote: .
|
3
|
-
specs:
|
4
|
-
httparty (0.7.2)
|
5
|
-
crack (= 0.1.8)
|
6
|
-
|
7
|
-
GEM
|
8
|
-
remote: http://rubygems.org/
|
9
|
-
specs:
|
10
|
-
activesupport (2.3.10)
|
11
|
-
builder (2.1.2)
|
12
|
-
crack (0.1.8)
|
13
|
-
cucumber (0.9.2)
|
14
|
-
builder (~> 2.1.2)
|
15
|
-
diff-lcs (~> 1.1.2)
|
16
|
-
gherkin (~> 2.2.5)
|
17
|
-
json (~> 1.4.6)
|
18
|
-
term-ansicolor (~> 1.0.5)
|
19
|
-
daemons (1.0.10)
|
20
|
-
diff-lcs (1.1.2)
|
21
|
-
fakeweb (1.3.0)
|
22
|
-
gem_plugin (0.2.3)
|
23
|
-
gherkin (2.2.9)
|
24
|
-
json (~> 1.4.6)
|
25
|
-
term-ansicolor (~> 1.0.5)
|
26
|
-
git (1.2.5)
|
27
|
-
jeweler (1.5.2)
|
28
|
-
bundler (~> 1.0.0)
|
29
|
-
git (>= 1.2.5)
|
30
|
-
rake
|
31
|
-
json (1.4.6)
|
32
|
-
mongrel (1.2.0.pre2)
|
33
|
-
daemons (~> 1.0.10)
|
34
|
-
gem_plugin (~> 0.2.3)
|
35
|
-
rake (0.8.7)
|
36
|
-
rspec (1.3.1)
|
37
|
-
term-ansicolor (1.0.5)
|
38
|
-
|
39
|
-
PLATFORMS
|
40
|
-
ruby
|
41
|
-
|
42
|
-
DEPENDENCIES
|
43
|
-
activesupport (~> 2.3)
|
44
|
-
cucumber (~> 0.7)
|
45
|
-
fakeweb (~> 1.2)
|
46
|
-
httparty!
|
47
|
-
jeweler (~> 1.5)
|
48
|
-
mongrel (= 1.2.0.pre2)
|
49
|
-
rspec (~> 1.3)
|
data/Manifest
DELETED
@@ -1,47 +0,0 @@
|
|
1
|
-
bin/httparty
|
2
|
-
cucumber.yml
|
3
|
-
examples/aaws.rb
|
4
|
-
examples/basic.rb
|
5
|
-
examples/delicious.rb
|
6
|
-
examples/google.rb
|
7
|
-
examples/rubyurl.rb
|
8
|
-
examples/twitter.rb
|
9
|
-
examples/whoismyrep.rb
|
10
|
-
features/basic_authentication.feature
|
11
|
-
features/command_line.feature
|
12
|
-
features/deals_with_http_error_codes.feature
|
13
|
-
features/handles_multiple_formats.feature
|
14
|
-
features/steps/env.rb
|
15
|
-
features/steps/httparty_response_steps.rb
|
16
|
-
features/steps/httparty_steps.rb
|
17
|
-
features/steps/mongrel_helper.rb
|
18
|
-
features/steps/remote_service_steps.rb
|
19
|
-
features/supports_redirection.feature
|
20
|
-
History
|
21
|
-
httparty.gemspec
|
22
|
-
lib/httparty/cookie_hash.rb
|
23
|
-
lib/httparty/core_extensions.rb
|
24
|
-
lib/httparty/exceptions.rb
|
25
|
-
lib/httparty/module_inheritable_attributes.rb
|
26
|
-
lib/httparty/request.rb
|
27
|
-
lib/httparty/response.rb
|
28
|
-
lib/httparty/version.rb
|
29
|
-
lib/httparty.rb
|
30
|
-
Manifest
|
31
|
-
MIT-LICENSE
|
32
|
-
Rakefile
|
33
|
-
README.rdoc
|
34
|
-
spec/fixtures/delicious.xml
|
35
|
-
spec/fixtures/empty.xml
|
36
|
-
spec/fixtures/google.html
|
37
|
-
spec/fixtures/twitter.json
|
38
|
-
spec/fixtures/twitter.xml
|
39
|
-
spec/fixtures/undefined_method_add_node_for_nil.xml
|
40
|
-
spec/httparty/cookie_hash_spec.rb
|
41
|
-
spec/httparty/request_spec.rb
|
42
|
-
spec/httparty/response_spec.rb
|
43
|
-
spec/httparty_spec.rb
|
44
|
-
spec/spec.opts
|
45
|
-
spec/spec_helper.rb
|
46
|
-
website/css/common.css
|
47
|
-
website/index.html
|