omniauth-mailup 0.0.4 → 0.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
  SHA1:
3
- metadata.gz: 6cc011eac3b197ccc4ef8bd52696f457fee81119
4
- data.tar.gz: b2492ec856735d43aa49f932de4a277195810e99
3
+ metadata.gz: 90e6c2bc3ca784b77d0fd77bac0ade214009e9f0
4
+ data.tar.gz: cd36d63c2b0b0fdc1a3a53d1aebc74866bacaf8f
5
5
  SHA512:
6
- metadata.gz: 037923c1b9124b861a49c5202bd16526ea424065e4f7cc0a8410ec5b26d51d886ac3b7f0f0cfc4514291b3713a3c78025e0151b29ca5f2e98cff31aa2dbd5204
7
- data.tar.gz: 67fdcfcbe5432917d3dcbc9071c591ce58a83d77053b871b61f1e8f4cecac9c5d4832c4c804943af42c1f990f22d9dd2f24706c92bebddb72468404ba016a421
6
+ metadata.gz: 3b9c4a017506ffbb1b35563fbb52cec082ae1fb7bf175efd81200026fadf49a306130c486e8f56194205275f8636e7b6c394aaca640bf3c6e8c021e66afdeed7
7
+ data.tar.gz: f81b6cb611d37ec97f81545462b5dee57529e307da816e789232f75718a597e92ca0277a5648463fa16ab507becdba7908e5f61b6cb9fe76f85cd9a66bc67070
data/.gitignore CHANGED
@@ -4,6 +4,7 @@
4
4
  .config
5
5
  .yardoc
6
6
  Gemfile.lock
7
+ example/Gemfile.lock
7
8
  InstalledFiles
8
9
  _yardoc
9
10
  coverage
@@ -16,5 +17,6 @@ test/tmp
16
17
  test/version_tmp
17
18
  tmp
18
19
  .ruby-version
19
- .ruby-gemsets
20
- .bashrc
20
+ .rbenv-gemsets
21
+ .rbenv-vars
22
+ .rspec
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
- :provider => 'mailup',
38
- :uid => '10',
39
- :info => {
40
- :company => 'ACME, Inc.',
41
- :nickname => 'm12345',
42
- :is_trial => true
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
- :credentials => {
45
- :token => 'adsf456lkj758klfdsg5634kl', # OAuth 2.0 access_token.
46
- :refresh_token => '6l5k37hl345656lh342345lh', # OAuth 2.0 refresh_token.
47
- :expires => true,
48
- :expires_at => 1369866442
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
 
@@ -1,4 +1,4 @@
1
- source :rubygems
1
+ source 'https://rubygems.org'
2
2
 
3
3
  gem 'rack'
4
4
  gem 'sinatra'
@@ -1,5 +1,5 @@
1
1
  module Omniauth
2
2
  module MailUp
3
- VERSION = "0.0.4"
3
+ VERSION = "0.0.5"
4
4
  end
5
5
  end
@@ -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/tatemae-consultancy/omniauth-mailup"
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
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-07 00:00:00.000000000 Z
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/tatemae-consultancy/omniauth-mailup
90
+ homepage: https://github.com/mailup/omniauth-mailup
92
91
  licenses: []
93
92
  metadata: {}
94
93
  post_install_message:
@@ -1 +0,0 @@
1
- omniauth-mailup