omniauth-instagram-graph 1.0.4 → 1.0.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 927273ea8c80b2450a9117121ee44066ba0925dac69a2ae4238e962a8958f72c
4
- data.tar.gz: 5e09ef802dfadbc9f9571966a5a943b9610e64658b16cffb1c70e9717c8e64c3
3
+ metadata.gz: d609b7cc16f79aed804b7d6c2bf70ebbb962cea0933912daed1ddd768f436c00
4
+ data.tar.gz: c73da20321cade13e32ffc8e4d3d408d4a748c2a6970fd1314be92d026fbab0a
5
5
  SHA512:
6
- metadata.gz: 1714e67f21356a2ac301d3b9453ee44ad42ff85b51b951401c67cdb8b30f970b22ef4f06dd61a1309eaea1cbd92d53741e4147b3847bdfee24d2e6971df83556
7
- data.tar.gz: eec3ac93f5305dcc8882167d637efc6de21f9ccbd142444a01b966cba09f6ee1292394501a8d03399c51b60e81140fdccbd6de12d67c7859b21586bbbf78c1f2
6
+ metadata.gz: cb9a344fa28a672143a342805055f15f10cbc0a7e8c40b92a8fbf3f006a74dc8ba052737c6ac2f407153804eb8edc6c904ac167ea6f63a5e9f0904321142c978
7
+ data.tar.gz: e6ebeb88b983e485866964ca49c751507321f2f0d3f6de6fca13220e72f6a94ba8969a02539affbfd5f0ffa4da739646e1eee25a3d4d80f55c6126418d92ad38
data/.gitignore CHANGED
@@ -6,6 +6,7 @@
6
6
  /pkg/
7
7
  /spec/reports/
8
8
  /tmp/
9
+ Gemfile.lock
9
10
 
10
11
  # rspec failure tracking
11
12
  .rspec_status
data/README.md CHANGED
@@ -62,7 +62,7 @@ Here's an example Auth Hash available in `request.env['omniauth.auth']`:
62
62
  account_type: 'PERSONAL',
63
63
  id: '17841400519842852',
64
64
  media_count: 211,
65
- username: "igor_alexandrov"
65
+ username: "igor_alexandrov"
66
66
  }
67
67
  }
68
68
  }
@@ -76,7 +76,13 @@ Long-Lived Tokens are valid for 60 days. To be able to use token after, you need
76
76
  ``` ruby
77
77
  client = OmniAuth::InstagramGraph::LongLivedClient.new(ENV['INSTAGRAM_APP_ID'], ENV['INSTAGRAM_APP_SECRET'])
78
78
  token = client.get_token(access_token: "<CURRENT LONG-LIVED TOKEN>")
79
- refreshed = token.refresh
79
+ refreshed = token.refresh!
80
+ ```
81
+
82
+ ## Development
83
+
84
+ ```
85
+ gem bump --file=lib/omniauth/instagram-graph/version.rb --push --tag --release --pretend
80
86
  ```
81
87
 
82
88
  ## License
@@ -2,6 +2,6 @@
2
2
 
3
3
  module OmniAuth
4
4
  module InstagramGraph
5
- VERSION = '1.0.4'
5
+ VERSION = '1.0.5'
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: omniauth-instagram-graph
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.4
4
+ version: 1.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Igor Alexandrov
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-03-10 00:00:00.000000000 Z
11
+ date: 2020-06-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: omniauth
@@ -108,7 +108,6 @@ files:
108
108
  - ".travis.yml"
109
109
  - CODE_OF_CONDUCT.md
110
110
  - Gemfile
111
- - Gemfile.lock
112
111
  - LICENSE.txt
113
112
  - README.md
114
113
  - Rakefile
@@ -1,90 +0,0 @@
1
- PATH
2
- remote: .
3
- specs:
4
- omniauth-instagram-graph (1.0.2)
5
- omniauth (~> 1.9)
6
- omniauth-oauth2 (~> 1.2)
7
-
8
- GEM
9
- remote: https://rubygems.org/
10
- specs:
11
- ast (2.4.0)
12
- diff-lcs (1.3)
13
- faraday (1.0.0)
14
- multipart-post (>= 1.2, < 3)
15
- hashie (4.1.0)
16
- jaro_winkler (1.5.4)
17
- jetrockets-standard (1.0.5)
18
- rubocop-rails (~> 2.3.2)
19
- rubocop-rspec (~> 1.35.0)
20
- standard (~> 0.1.9)
21
- jwt (2.2.1)
22
- minitest (5.14.0)
23
- mocha (1.11.2)
24
- multi_json (1.14.1)
25
- multi_xml (0.6.0)
26
- multipart-post (2.1.1)
27
- oauth2 (1.4.4)
28
- faraday (>= 0.8, < 2.0)
29
- jwt (>= 1.0, < 3.0)
30
- multi_json (~> 1.3)
31
- multi_xml (~> 0.5)
32
- rack (>= 1.2, < 3)
33
- omniauth (1.9.1)
34
- hashie (>= 3.4.6)
35
- rack (>= 1.6.2, < 3)
36
- omniauth-oauth2 (1.6.0)
37
- oauth2 (~> 1.1)
38
- omniauth (~> 1.9)
39
- parallel (1.19.1)
40
- parser (2.7.0.4)
41
- ast (~> 2.4.0)
42
- rack (2.2.2)
43
- rainbow (3.0.0)
44
- rake (12.3.3)
45
- rspec (3.9.0)
46
- rspec-core (~> 3.9.0)
47
- rspec-expectations (~> 3.9.0)
48
- rspec-mocks (~> 3.9.0)
49
- rspec-core (3.9.1)
50
- rspec-support (~> 3.9.1)
51
- rspec-expectations (3.9.0)
52
- diff-lcs (>= 1.2.0, < 2.0)
53
- rspec-support (~> 3.9.0)
54
- rspec-mocks (3.9.1)
55
- diff-lcs (>= 1.2.0, < 2.0)
56
- rspec-support (~> 3.9.0)
57
- rspec-support (3.9.2)
58
- rubocop (0.79.0)
59
- jaro_winkler (~> 1.5.1)
60
- parallel (~> 1.10)
61
- parser (>= 2.7.0.1)
62
- rainbow (>= 2.2.2, < 4.0)
63
- ruby-progressbar (~> 1.7)
64
- unicode-display_width (>= 1.4.0, < 1.7)
65
- rubocop-performance (1.5.2)
66
- rubocop (>= 0.71.0)
67
- rubocop-rails (2.3.2)
68
- rack (>= 1.1)
69
- rubocop (>= 0.72.0)
70
- rubocop-rspec (1.35.0)
71
- rubocop (>= 0.60.0)
72
- ruby-progressbar (1.10.1)
73
- standard (0.1.10)
74
- rubocop (~> 0.79.0)
75
- rubocop-performance (~> 1.5.1)
76
- unicode-display_width (1.6.1)
77
-
78
- PLATFORMS
79
- ruby
80
-
81
- DEPENDENCIES
82
- jetrockets-standard
83
- minitest
84
- mocha
85
- omniauth-instagram-graph!
86
- rake (~> 12.0)
87
- rspec (~> 3.0)
88
-
89
- BUNDLED WITH
90
- 2.1.2