omniauth-campus 2.7 → 2.8

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: a88ad647b90519326e7dcbeb5be2351e5ae441ca
4
- data.tar.gz: 4054f3718effbc4c73753adc7fc5302cb19a2bd4
3
+ metadata.gz: 3606e7cecf0ef6506d8506de383dbd98ef62a6a8
4
+ data.tar.gz: 8b201970facb0973a13cc1d5d27bc16bd26d0bd9
5
5
  SHA512:
6
- metadata.gz: 86ad9bb73f227f30d40f3a3785dfd86d25f119baccd919408f63b39199123131f1c3fd51bc18307f4f374c6e8f82bb9807879f9f5150a4d105468d998ca7def2
7
- data.tar.gz: b655b26a732d4b1948bb6000c3448fa5c19a6cc256f9e16f402f8df2918a7562d7d4da3c2506e0141b8f35d96721b3d96cc8c5e6659d9f9098da8b3697587ed6
6
+ metadata.gz: 78d69b178bd2e384f092dac1ac23d7133b43ee1bb28733799876ec9e28f5736280ee634f51e445c98b5affd27bff07b217bb766df7d2792ff9a8d98e77cbe639
7
+ data.tar.gz: d1e2a41196aeb612c63558cfa8b6cc5d78a321e2106a8dfea1ad7b48fc495f8dc3d109f3244b6d4a016336737cbf27fea4d697748d8a863d81a1ade654132c07
@@ -31,7 +31,7 @@ module OmniAuth
31
31
  #:site => 'http://dev-oauth-test.gotpantheon.com/myawesomejson',
32
32
  #:proxy => ENV['http_proxy'] ? URI(ENV['http_proxy']) : nil}
33
33
 
34
- def initialize(app, consumer_key = nil, consumer_secret = nil, options = {})
34
+ def initialize(app, consumer_key = nil, consumer_secret = nil, options = {}, &block)
35
35
 
36
36
  opts = {
37
37
  :site => 'http://dev-oauth-test.gotpantheon.com/myawesomejson',
@@ -39,7 +39,7 @@ module OmniAuth
39
39
  :access_token_path => "/oauth/access_token",
40
40
  :authorize_url => "'http://dev-oauth-test.gotpantheon.com/myawesomejson'/oauth/authorize"
41
41
  }
42
- super(app, :campus, consumer_key, consumer_secret, opts, options)
42
+ super(app, :campus, consumer_key, consumer_secret, opts, options, &block)
43
43
  end
44
44
 
45
45
  def request_phase
@@ -1,6 +1,6 @@
1
1
  module Omniauth
2
2
  module Campus
3
- VERSION = "2.7"
3
+ VERSION = "2.8"
4
4
  end
5
5
  end
6
6
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: omniauth-campus
3
3
  version: !ruby/object:Gem::Version
4
- version: '2.7'
4
+ version: '2.8'
5
5
  platform: ruby
6
6
  authors:
7
7
  - johnvehr