omniauth-coinbase 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 +4 -4
- data/README.md +2 -2
- data/lib/omniauth-coinbase/version.rb +1 -1
- data/omniauth-coinbase.gemspec +1 -1
- metadata +6 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7134398eb42e8862798ce74e786b7833404495a5
|
|
4
|
+
data.tar.gz: 0da662af4126bf7e1aa4c3436edebc101e1b6581
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d14640550e766f1bc12167e236ebc80defc91c756907235fa78213f74b6b950b2baa8d4344493fdd65b3dfde3fc35ac95ccd08c3c79c071ec622feeb897e698d
|
|
7
|
+
data.tar.gz: 4836e31bf9cf35d27ed90b819ce0e7aa3f8b22d7f89520714fbf667798a250b468bcdf130a93ead3f633c4d774fb712c46529817c33af7d6d159def4752a002b
|
data/README.md
CHANGED
|
@@ -36,6 +36,6 @@ Rails.application.config.middleware.use OmniAuth::Builder do
|
|
|
36
36
|
end
|
|
37
37
|
```
|
|
38
38
|
|
|
39
|
-
The format is a space separated list of strings from Coinbase's [list of OAuth Permissions](https://coinbase.com/docs/api/authentication#permissions).
|
|
39
|
+
The format is a space separated list of strings from Coinbase's [list of OAuth Permissions](https://coinbase.com/docs/api/authentication#permissions). Remember that at minimum you MUST include either the `all` or `user` scopes.
|
|
40
40
|
|
|
41
|
-
NOTE: While developing your application, if you change the scope in the initializer you will need to restart your app server.
|
|
41
|
+
NOTE: While developing your application, if you change the scope in the initializer you will need to restart your app server.
|
data/omniauth-coinbase.gemspec
CHANGED
|
@@ -20,7 +20,7 @@ Gem::Specification.new do |s|
|
|
|
20
20
|
s.require_paths = ["lib"]
|
|
21
21
|
|
|
22
22
|
s.add_dependency 'multi_json', '~> 1.3'
|
|
23
|
-
s.add_runtime_dependency 'omniauth-oauth2', '
|
|
23
|
+
s.add_runtime_dependency 'omniauth-oauth2', '1.3.1'
|
|
24
24
|
s.add_runtime_dependency 'coinbase', '~> 2.0'
|
|
25
25
|
s.add_development_dependency 'rspec', '~> 2.7'
|
|
26
26
|
s.add_development_dependency 'rack-test', '~> 0.6'
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: omniauth-coinbase
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Miguel Palhas
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2016-03-28 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: multi_json
|
|
@@ -28,16 +28,16 @@ dependencies:
|
|
|
28
28
|
name: omniauth-oauth2
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
|
30
30
|
requirements:
|
|
31
|
-
- -
|
|
31
|
+
- - '='
|
|
32
32
|
- !ruby/object:Gem::Version
|
|
33
|
-
version:
|
|
33
|
+
version: 1.3.1
|
|
34
34
|
type: :runtime
|
|
35
35
|
prerelease: false
|
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
|
37
37
|
requirements:
|
|
38
|
-
- -
|
|
38
|
+
- - '='
|
|
39
39
|
- !ruby/object:Gem::Version
|
|
40
|
-
version:
|
|
40
|
+
version: 1.3.1
|
|
41
41
|
- !ruby/object:Gem::Dependency
|
|
42
42
|
name: coinbase
|
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|