foauth 0.2.2 → 0.3.0
Sign up to get free protection for your applications and to get access to all the features.
- data/.travis.yml +12 -0
- data/README.md +9 -0
- data/foauth.gemspec +1 -0
- data/lib/foauth/version.rb +1 -1
- data/spec/middleware_spec.rb +1 -1
- metadata +19 -2
data/.travis.yml
ADDED
data/README.md
CHANGED
@@ -68,6 +68,10 @@ end
|
|
68
68
|
|
69
69
|
See [faraday][] for more information.
|
70
70
|
|
71
|
+
## Build status
|
72
|
+
|
73
|
+
[![Build status badge](https://travis-ci.org/hecticjeff/foauth.png)](https://travis-ci.org/hecticjeff/foauth)
|
74
|
+
|
71
75
|
## Contributing
|
72
76
|
|
73
77
|
1. Fork it
|
@@ -78,6 +82,11 @@ See [faraday][] for more information.
|
|
78
82
|
|
79
83
|
## Version history
|
80
84
|
|
85
|
+
**0.3.0** (January 12, 2013)
|
86
|
+
|
87
|
+
* Ruby 1.8 support
|
88
|
+
* Travis CI builds
|
89
|
+
|
81
90
|
**0.2.2** (January 6, 2013)
|
82
91
|
|
83
92
|
* Documentation updates
|
data/foauth.gemspec
CHANGED
data/lib/foauth/version.rb
CHANGED
data/spec/middleware_spec.rb
CHANGED
@@ -16,7 +16,7 @@ describe Foauth::Proxy do
|
|
16
16
|
end
|
17
17
|
|
18
18
|
it "preserves the query parameters" do
|
19
|
-
res = conn.get('https://api.twitter.com/1/statuses/user_timeline.json', foo
|
19
|
+
res = conn.get('https://api.twitter.com/1/statuses/user_timeline.json', :foo => 'bar')
|
20
20
|
expect(res.env[:url].query).to eq 'foo=bar'
|
21
21
|
end
|
22
22
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: foauth
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.3.0
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2013-01-
|
12
|
+
date: 2013-01-12 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: faraday
|
@@ -43,6 +43,22 @@ dependencies:
|
|
43
43
|
- - ! '>='
|
44
44
|
- !ruby/object:Gem::Version
|
45
45
|
version: '2.11'
|
46
|
+
- !ruby/object:Gem::Dependency
|
47
|
+
name: rake
|
48
|
+
requirement: !ruby/object:Gem::Requirement
|
49
|
+
none: false
|
50
|
+
requirements:
|
51
|
+
- - ! '>='
|
52
|
+
- !ruby/object:Gem::Version
|
53
|
+
version: '10.0'
|
54
|
+
type: :development
|
55
|
+
prerelease: false
|
56
|
+
version_requirements: !ruby/object:Gem::Requirement
|
57
|
+
none: false
|
58
|
+
requirements:
|
59
|
+
- - ! '>='
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '10.0'
|
46
62
|
description: foauth.org ruby client
|
47
63
|
email:
|
48
64
|
- self@hecticjeff.net
|
@@ -52,6 +68,7 @@ extra_rdoc_files: []
|
|
52
68
|
files:
|
53
69
|
- .gitignore
|
54
70
|
- .rspec
|
71
|
+
- .travis.yml
|
55
72
|
- .yardopts
|
56
73
|
- Gemfile
|
57
74
|
- LICENSE.txt
|