faraday 0.5.1 → 0.5.2
Sign up to get free protection for your applications and to get access to all the features.
- data/Gemfile +1 -1
- data/Gemfile.lock +8 -6
- data/faraday.gemspec +3 -3
- data/lib/faraday.rb +1 -1
- metadata +14 -8
data/Gemfile
CHANGED
data/Gemfile.lock
CHANGED
@@ -1,10 +1,10 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
faraday (0.5.
|
4
|
+
faraday (0.5.2)
|
5
5
|
addressable (~> 2.2.2)
|
6
6
|
multipart-post (~> 1.0.1)
|
7
|
-
rack (
|
7
|
+
rack (>= 1.1.0, < 2)
|
8
8
|
|
9
9
|
GEM
|
10
10
|
remote: http://rubygems.org/
|
@@ -14,8 +14,10 @@ GEM
|
|
14
14
|
patron (0.4.9)
|
15
15
|
rack (1.2.1)
|
16
16
|
rake (0.8.7)
|
17
|
-
sinatra (1.0)
|
18
|
-
rack (
|
17
|
+
sinatra (1.1.0)
|
18
|
+
rack (~> 1.1)
|
19
|
+
tilt (~> 1.1)
|
20
|
+
tilt (1.1)
|
19
21
|
typhoeus (0.1.31)
|
20
22
|
rack
|
21
23
|
|
@@ -27,7 +29,7 @@ DEPENDENCIES
|
|
27
29
|
faraday!
|
28
30
|
multipart-post (~> 1.0.1)
|
29
31
|
patron (~> 0.4)
|
30
|
-
rack (
|
32
|
+
rack (>= 1.1.0, < 2)
|
31
33
|
rake (~> 0.8)
|
32
|
-
sinatra (~> 1.
|
34
|
+
sinatra (~> 1.1)
|
33
35
|
typhoeus (~> 0.1)
|
data/faraday.gemspec
CHANGED
@@ -12,8 +12,8 @@ Gem::Specification.new do |s|
|
|
12
12
|
## If your rubyforge_project name is different, then edit it and comment out
|
13
13
|
## the sub! line in the Rakefile
|
14
14
|
s.name = 'faraday'
|
15
|
-
s.version = '0.5.
|
16
|
-
s.date = '2010-10-
|
15
|
+
s.version = '0.5.2'
|
16
|
+
s.date = '2010-10-29'
|
17
17
|
s.rubyforge_project = 'faraday'
|
18
18
|
|
19
19
|
## Make sure your summary is short. The description may be as long
|
@@ -35,7 +35,7 @@ Gem::Specification.new do |s|
|
|
35
35
|
s.add_development_dependency('rake', '~> 0.8')
|
36
36
|
s.add_runtime_dependency('addressable', '~> 2.2.2')
|
37
37
|
s.add_runtime_dependency('multipart-post', '~> 1.0.1')
|
38
|
-
s.add_runtime_dependency('rack', '
|
38
|
+
s.add_runtime_dependency('rack', ['>= 1.1.0', "< 2"])
|
39
39
|
|
40
40
|
## Leave this section as-is. It will be automatically generated from the
|
41
41
|
## contents of your Git repository via the gemspec task. DO NOT REMOVE
|
data/lib/faraday.rb
CHANGED
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: faraday
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 15
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 5
|
9
|
-
-
|
10
|
-
version: 0.5.
|
9
|
+
- 2
|
10
|
+
version: 0.5.2
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Rick Olson
|
@@ -15,7 +15,7 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date: 2010-10-
|
18
|
+
date: 2010-10-29 00:00:00 -07:00
|
19
19
|
default_executable:
|
20
20
|
dependencies:
|
21
21
|
- !ruby/object:Gem::Dependency
|
@@ -71,14 +71,20 @@ dependencies:
|
|
71
71
|
requirement: &id004 !ruby/object:Gem::Requirement
|
72
72
|
none: false
|
73
73
|
requirements:
|
74
|
-
- -
|
74
|
+
- - ">="
|
75
75
|
- !ruby/object:Gem::Version
|
76
|
-
hash:
|
76
|
+
hash: 19
|
77
77
|
segments:
|
78
78
|
- 1
|
79
|
-
- 2
|
80
79
|
- 1
|
81
|
-
|
80
|
+
- 0
|
81
|
+
version: 1.1.0
|
82
|
+
- - <
|
83
|
+
- !ruby/object:Gem::Version
|
84
|
+
hash: 7
|
85
|
+
segments:
|
86
|
+
- 2
|
87
|
+
version: "2"
|
82
88
|
type: :runtime
|
83
89
|
version_requirements: *id004
|
84
90
|
description: HTTP/REST API client library.
|