omniauth-myvr 0.0.7 → 0.0.8

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: fa22a782af077613e8cca5a042a09cc8eb49e743
4
- data.tar.gz: 64bd4bebd4bc382852459cffc78c330abceae883
3
+ metadata.gz: 32555b7db7e579ee37ec7e8982bb7e861eb33d1f
4
+ data.tar.gz: 26f11bf67ca8c7b121ab2115c3a0b55fb1966678
5
5
  SHA512:
6
- metadata.gz: 92e51fe0f9cbe14b953c23de8dfd9d0019e02e833d3b1e421deb96c586a0a7f36de4db224e365124861a15fb63a79514098930df92385849616f69a5005c1f7d
7
- data.tar.gz: 953cb77a760df8779c2293dab95d1ea69e7ea79b4a1e8549ce944128ad07d07a5ae50ee82b60bac4519fb9bf2e465bf8d97d8f2e7e36293861262cb1a6bfb03c
6
+ metadata.gz: d1892dca8c68fc91cd5f86d96ad7c7cc7a3d2d42754dc1f2cf1ffe16d858dc5bc653ab70993736b189f2d5541123f48c52b7192ce0d92ccdc99883f0a4e33413
7
+ data.tar.gz: 64cfd15f199d39f75738932b6445c5ad3096c03f0c17cd6dbef8cadc31961c8b1d54aafb108151b4786ec02c187c4d87d4e5fc9fd590b88b50cae23ba070375d
@@ -6,7 +6,7 @@ require 'uri'
6
6
  module OmniAuth
7
7
  module Strategies
8
8
  class Myvr < OmniAuth::Strategies::OAuth2
9
- BASE_SCOPE_URL = ENV.fetch('BASE_SCOPE_URL', "https://api.myvr.com/auth/")
9
+ BASE_SCOPE_URL = "http://local.api.myvr.com:8000/auth/"
10
10
  BASE_SCOPES = %w[profile email openid]
11
11
  DEFAULT_SCOPE = "email,profile"
12
12
 
@@ -30,7 +30,7 @@ module OmniAuth
30
30
  option :authorized_client_ids, []
31
31
 
32
32
  option :client_options, {
33
- :site => ENV.fetch('BASE_SITE', 'https://myvr.com/'),
33
+ :site => 'http://local.myvr.com:8000/',
34
34
  :authorize_url => '/connect/oauth/auth',
35
35
  :token_url => '/connect/oauth/token'
36
36
  }
data/lib/omniauth_myvr.rb CHANGED
@@ -2,6 +2,6 @@ require File.join('omniauth', 'strategies', 'myvr')
2
2
 
3
3
  module OmniAuth
4
4
  module Myvr
5
- VERSION = '0.0.3'
5
+ VERSION = '0.0.8'
6
6
  end
7
7
  end
@@ -3,7 +3,7 @@ $:.push File.expand_path("../lib", __FILE__)
3
3
 
4
4
  Gem::Specification.new do |s|
5
5
  s.name = "omniauth-myvr"
6
- s.version = "0.0.7"
6
+ s.version = "0.0.8"
7
7
  s.authors = ["CJ Avilla"]
8
8
  s.email = ["cjavilla@gmail.com"]
9
9
  s.homepage = "https://github.com/w1zeman1p/omniauth-myvr"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: omniauth-myvr
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.7
4
+ version: 0.0.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - CJ Avilla