omniauth-mailup 0.0.4 → 0.0.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +4 -2
- data/README.md +13 -13
- data/example/Gemfile +1 -1
- data/lib/omniauth-mailup/version.rb +1 -1
- data/omniauth-mailup.gemspec +1 -1
- metadata +3 -4
- data/.rbenv-gemsets +0 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 90e6c2bc3ca784b77d0fd77bac0ade214009e9f0
|
4
|
+
data.tar.gz: cd36d63c2b0b0fdc1a3a53d1aebc74866bacaf8f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3b9c4a017506ffbb1b35563fbb52cec082ae1fb7bf175efd81200026fadf49a306130c486e8f56194205275f8636e7b6c394aaca640bf3c6e8c021e66afdeed7
|
7
|
+
data.tar.gz: f81b6cb611d37ec97f81545462b5dee57529e307da816e789232f75718a597e92ca0277a5648463fa16ab507becdba7908e5f61b6cb9fe76f85cd9a66bc67070
|
data/.gitignore
CHANGED
data/README.md
CHANGED
@@ -34,20 +34,20 @@ Here's an example _Authentication Hash_ available in `request.env['omniauth.auth
|
|
34
34
|
|
35
35
|
```ruby
|
36
36
|
{
|
37
|
-
:
|
38
|
-
:
|
39
|
-
:
|
40
|
-
|
41
|
-
|
42
|
-
|
37
|
+
provider: 'mailup',
|
38
|
+
uid: '10',
|
39
|
+
info: {
|
40
|
+
company: 'ACME, Inc.',
|
41
|
+
nickname: 'm12345',
|
42
|
+
is_trial: true,
|
43
|
+
version: "8.4"
|
43
44
|
},
|
44
|
-
:
|
45
|
-
:
|
46
|
-
:
|
47
|
-
:
|
48
|
-
:
|
49
|
-
}
|
50
|
-
:extra => {...}
|
45
|
+
credentials: {
|
46
|
+
token: 'adsf456lkj758klfdsg5634kl', # OAuth 2.0 access_token.
|
47
|
+
refresh_token: '6l5k37hl345656lh342345lh', # OAuth 2.0 refresh_token.
|
48
|
+
expires: true,
|
49
|
+
expires_at: 1369866442
|
50
|
+
}
|
51
51
|
}
|
52
52
|
```
|
53
53
|
|
data/example/Gemfile
CHANGED
data/omniauth-mailup.gemspec
CHANGED
@@ -10,7 +10,7 @@ Gem::Specification.new do |gem|
|
|
10
10
|
gem.email = ["brian@tatem.ae"]
|
11
11
|
gem.description = %q{MailUp OAuth2 Strategy for OmniAuth 1.0.}
|
12
12
|
gem.summary = %q{OAuth2 Strategy for OmniAuth 1.0 for connecting to the MailUp REST API.}
|
13
|
-
gem.homepage = "https://github.com/
|
13
|
+
gem.homepage = "https://github.com/mailup/omniauth-mailup"
|
14
14
|
|
15
15
|
gem.files = `git ls-files`.split($/)
|
16
16
|
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: omniauth-mailup
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Brian Getting
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-01-
|
11
|
+
date: 2014-01-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: omniauth-oauth2
|
@@ -74,7 +74,6 @@ extensions: []
|
|
74
74
|
extra_rdoc_files: []
|
75
75
|
files:
|
76
76
|
- .gitignore
|
77
|
-
- .rbenv-gemsets
|
78
77
|
- Gemfile
|
79
78
|
- LICENSE.txt
|
80
79
|
- README.md
|
@@ -88,7 +87,7 @@ files:
|
|
88
87
|
- spec/omniauth/strategies/mailup_spec.rb
|
89
88
|
- spec/spec_helper.rb
|
90
89
|
- spec/support/shared_examples.rb
|
91
|
-
homepage: https://github.com/
|
90
|
+
homepage: https://github.com/mailup/omniauth-mailup
|
92
91
|
licenses: []
|
93
92
|
metadata: {}
|
94
93
|
post_install_message:
|
data/.rbenv-gemsets
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
omniauth-mailup
|