omniauth-galvanize 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 58c2af53f9f51153f78d2594b3db1d85252df598
4
- data.tar.gz: 201691b8977843bc27bc6fb7eb60420428f25875
3
+ metadata.gz: 0671ea25f820cf2cc261fad35898af537482de5f
4
+ data.tar.gz: 6b31267af2d14dd3ebef4ebce7c334cec0bbbfa8
5
5
  SHA512:
6
- metadata.gz: c6b8709b79d11936c41c2333b5174db06a42e887940f99106ecf515c7a048c2f3021553ebab777293aec5adfcbcb682f5948c3dd992967b09f62c19ee465af75
7
- data.tar.gz: d4201052347f3147181a25c7161c3b32ba16e50d660db95df103a87b1b635425a2d7c1a4ce3b86108a067c22ab78a9251147f32707f6d587d414b562825b4f1a
6
+ metadata.gz: 0cbf53c2f80d524dda40c0cc3898a842039b4c7fcb067ed9da7c800863cf4407affffb18bccef4753a7a6f1f6aa0d433750fe48463302c3a95c13f2531bf0c0c
7
+ data.tar.gz: 2f997406068eba34511e60decdcdb6c4c0bd297ddf86414bbde96131c29b41676ac63500ad56b070d6b22d7be333f0e63925d4ce76df964c29fa5791fa3ba453
data/.gitignore CHANGED
@@ -16,5 +16,6 @@
16
16
  !/log/.keep
17
17
  /tmp
18
18
 
19
- /.idea
20
- projectFilesBackup1/.idea/omniauth-galv.iml
19
+ .idea/*
20
+ projectFilesBackup1/.idea/omniauth-galv.iml
21
+ omniauth-galvanize-0.0.1.gem
data/.idea/modules.xml CHANGED
@@ -3,6 +3,7 @@
3
3
  <component name="ProjectModuleManager">
4
4
  <modules>
5
5
  <module fileurl="file://$PROJECT_DIR$/.idea/omniauth-galv.iml" filepath="$PROJECT_DIR$/.idea/omniauth-galv.iml" />
6
+ <module fileurl="file://$PROJECT_DIR$/.idea/omniauth-galvanize.iml" filepath="$PROJECT_DIR$/.idea/omniauth-galvanize.iml" />
6
7
  </modules>
7
8
  </component>
8
9
  </project>
data/Gemfile.lock CHANGED
@@ -1,10 +1,10 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- omniauth-galvanize (0.0.3)
4
+ omniauth-galvanize (0.0.2)
5
5
  multi_json (~> 1.2)
6
6
  omniauth (~> 1.2)
7
- omniauth-oauth2
7
+ omniauth-oauth2 (~> 1.3)
8
8
 
9
9
  GEM
10
10
  remote: https://rubygems.org/
@@ -47,17 +47,17 @@ GEM
47
47
  arel (6.0.3)
48
48
  builder (3.2.2)
49
49
  erubis (2.7.0)
50
- faraday (0.9.0)
50
+ faraday (0.9.1)
51
51
  multipart-post (>= 1.2, < 3)
52
52
  globalid (0.3.6)
53
53
  activesupport (>= 4.1.0)
54
- hashie (3.3.1)
54
+ hashie (3.4.2)
55
55
  i18n (0.7.0)
56
56
  jbuilder (2.3.1)
57
57
  activesupport (>= 3.0.0, < 5)
58
58
  multi_json (~> 1.2)
59
59
  json (1.8.3)
60
- jwt (1.0.0)
60
+ jwt (1.5.1)
61
61
  loofah (2.0.3)
62
62
  nokogiri (>= 1.5.9)
63
63
  mail (2.6.3)
@@ -79,9 +79,7 @@ GEM
79
79
  omniauth (1.2.2)
80
80
  hashie (>= 1.2, < 4)
81
81
  rack (~> 1.0)
82
- omniauth-oauth2 (1.2.0)
83
- faraday (>= 0.8, < 0.10)
84
- multi_json (~> 1.3)
82
+ omniauth-oauth2 (1.3.1)
85
83
  oauth2 (~> 1.0)
86
84
  omniauth (~> 1.2)
87
85
  rack (1.6.4)
@@ -136,3 +134,6 @@ DEPENDENCIES
136
134
  omniauth-galvanize!
137
135
  rails (= 4.2.4)
138
136
  sdoc (~> 0.4.0)
137
+
138
+ BUNDLED WITH
139
+ 1.10.6
@@ -1,5 +1,5 @@
1
1
  module OmniAuth
2
2
  module Galvanize
3
- VERSION = "0.0.1"
3
+ VERSION = "0.0.2"
4
4
  end
5
5
  end
@@ -33,7 +33,7 @@ module OmniAuth
33
33
  end
34
34
 
35
35
  def raw_info
36
- @raw_info ||= access_token.get('/api/v2/me').parsed
36
+ @raw_info ||= access_token.get('/api/v3/me').parsed
37
37
  end
38
38
  end
39
39
  end
@@ -33,7 +33,7 @@ module OmniAuth
33
33
  end
34
34
 
35
35
  def raw_info
36
- @raw_info ||= access_token.get('/api/v2/me').parsed
36
+ @raw_info ||= access_token.get('/api/v3/me').parsed
37
37
  end
38
38
  end
39
39
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: omniauth-galvanize
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Chris Cunningham
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-09-21 00:00:00.000000000 Z
11
+ date: 2015-10-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: omniauth