omniauth-oauth2 1.5.0 → 1.6.0

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: b10f5718de27b490cf3d5ec7f353540ffba5f502
4
- data.tar.gz: 83c8192af6408344b0735c4ed30418f6f0377c61
3
+ metadata.gz: 0e32b47809789079fefb676477c2068c5847c8c9
4
+ data.tar.gz: 8bff0bfc6b4a45c5da7cb3a9eb93d3c20cacd4f2
5
5
  SHA512:
6
- metadata.gz: 95f86ca6fcc8adc4fcddd16ac2a9e19ae70a3b5545021527c6620e56994d6ce2113dcda3aca61b26fbb120337c723eabddb3b2d5ae3e27f019d24bcf1a1b5487
7
- data.tar.gz: 0a9dbce2fa3424a19bd12cdd1e9f8ad4a5987f594742b5023ad7cbb5558464a4596e45035e946e5213f495db51a57345ec8f65d7abe287ab6d2332f0e728f014
6
+ metadata.gz: b5ffee16532d167a95ad5cf152cdddb219365da8ef87c6ff34c943cc999e02e25b0db2fb43a9067ec11659ad39108ebd1930aa44f55a94bcb5aba05befd3e427
7
+ data.tar.gz: 4417d7eedb1880ba3af05f2cddedcfc894dc1f286b0760d98433dfffcbf51eff8725c371e6fd1f82ddb7a73d13fa87ee753e1fee03ee26a6dbed48ca6aee3884
data/.rubocop.yml CHANGED
@@ -32,6 +32,9 @@ Style/Documentation:
32
32
  Style/DoubleNegation:
33
33
  Enabled: false
34
34
 
35
+ Style/ExpandPathArguments:
36
+ Enabled: false
37
+
35
38
  Style/HashSyntax:
36
39
  EnforcedStyle: hash_rockets
37
40
 
@@ -44,5 +47,9 @@ Style/StringLiterals:
44
47
  Style/TrailingCommaInArguments:
45
48
  EnforcedStyleForMultiline: comma
46
49
 
47
- Style/TrailingCommaInLiteral:
50
+ Style/TrailingCommaInHashLiteral:
51
+ EnforcedStyleForMultiline: comma
52
+
53
+ Style/TrailingCommaInArrayLiteral:
48
54
  EnforcedStyleForMultiline: comma
55
+
data/.travis.yml CHANGED
@@ -1,14 +1,18 @@
1
- before_install: gem install bundler
1
+ bundler_args: --without development
2
+ before_install:
3
+ - gem update --system
4
+ - gem update bundler
5
+ cache: bundler
2
6
  env:
3
7
  global:
4
8
  - JRUBY_OPTS="$JRUBY_OPTS --debug"
5
9
  language: ruby
6
10
  rvm:
7
11
  - jruby-9000
8
- - 2.1.10 # EOL Soon
9
- - 2.2.6
10
- - 2.3.3
11
- - 2.4.0
12
+ - 2.2.9
13
+ - 2.3.5
14
+ - 2.4.4
15
+ - 2.5.3
12
16
  - jruby-head
13
17
  - ruby-head
14
18
  matrix:
data/Gemfile CHANGED
@@ -1,6 +1,6 @@
1
- source "http://rubygems.org"
1
+ source "https://rubygems.org"
2
2
 
3
- gem "rake", "~> 10.5"
3
+ gem "rake", "~> 12.0"
4
4
 
5
5
  group :test do
6
6
  gem "addressable", "~> 2.3.8", :platforms => %i[jruby ruby_18]
@@ -8,11 +8,11 @@ group :test do
8
8
  gem "json", :platforms => %i[jruby ruby_18 ruby_19]
9
9
  gem "mime-types", "~> 1.25", :platforms => %i[jruby ruby_18]
10
10
  gem "rack-test"
11
- gem "rest-client", "~> 1.7.3", :platforms => %i[jruby ruby_18]
11
+ gem "rest-client", "~> 1.8.0", :platforms => %i[jruby ruby_18]
12
12
  gem "rspec", "~> 3.2"
13
13
  gem "rubocop", ">= 0.51", :platforms => %i[ruby_19 ruby_20 ruby_21 ruby_22 ruby_23 ruby_24]
14
14
  gem "simplecov", ">= 0.9"
15
- gem "webmock", "~> 1.0"
15
+ gem "webmock", "~> 3.0"
16
16
  end
17
17
 
18
18
  # Specify your gem's dependencies in omniauth-oauth2.gemspec
data/README.md CHANGED
@@ -5,12 +5,13 @@
5
5
  [![Dependency Status](http://img.shields.io/gemnasium/omniauth/omniauth-oauth2.svg)][gemnasium]
6
6
  [![Code Climate](http://img.shields.io/codeclimate/github/intridea/omniauth-oauth2.svg)][codeclimate]
7
7
  [![Coverage Status](http://img.shields.io/coveralls/intridea/omniauth-oauth2.svg)][coveralls]
8
+ [![Security](https://hakiri.io/github/omniauth/omniauth-oauth2/master.svg)](https://hakiri.io/github/omniauth/omniauth-oauth2/master)
8
9
 
9
10
  [gem]: https://rubygems.org/gems/omniauth-oauth2
10
- [travis]: http://travis-ci.org/intridea/omniauth-oauth2
11
- [gemnasium]: https://gemnasium.com/intridea/omniauth-oauth2
12
- [codeclimate]: https://codeclimate.com/github/intridea/omniauth-oauth2
13
- [coveralls]: https://coveralls.io/r/intridea/omniauth-oauth2
11
+ [travis]: http://travis-ci.org/omniauth/omniauth-oauth2
12
+ [gemnasium]: https://gemnasium.com/github.com/omniauth/omniauth-oauth2
13
+ [codeclimate]: https://codeclimate.com/github/omniauth/omniauth-oauth2
14
+ [coveralls]: https://coveralls.io/r/omniauth/omniauth-oauth2
14
15
 
15
16
  This gem contains a generic OAuth2 strategy for OmniAuth. It is meant to serve
16
17
  as a building block strategy for other strategies and not to be used
@@ -64,4 +65,3 @@ end
64
65
 
65
66
  That's pretty much it!
66
67
 
67
- [![Bitdeli Badge](https://d2weczhvl823v0.cloudfront.net/intridea/omniauth-oauth2/trend.png)](https://bitdeli.com/free "Bitdeli Badge")
@@ -1,5 +1,5 @@
1
1
  module OmniAuth
2
2
  module OAuth2
3
- VERSION = "1.5.0".freeze
3
+ VERSION = "1.6.0".freeze
4
4
  end
5
5
  end
@@ -4,7 +4,7 @@ require "omniauth-oauth2/version"
4
4
 
5
5
  Gem::Specification.new do |gem|
6
6
  gem.add_dependency "oauth2", "~> 1.1"
7
- gem.add_dependency "omniauth", "~> 1.2"
7
+ gem.add_dependency "omniauth", "~> 1.9"
8
8
 
9
9
  gem.add_development_dependency "bundler", "~> 1.0"
10
10
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: omniauth-oauth2
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.5.0
4
+ version: 1.6.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Michael Bleigh
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2017-12-13 00:00:00.000000000 Z
13
+ date: 2018-12-14 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: oauth2
@@ -32,14 +32,14 @@ dependencies:
32
32
  requirements:
33
33
  - - "~>"
34
34
  - !ruby/object:Gem::Version
35
- version: '1.2'
35
+ version: '1.9'
36
36
  type: :runtime
37
37
  prerelease: false
38
38
  version_requirements: !ruby/object:Gem::Requirement
39
39
  requirements:
40
40
  - - "~>"
41
41
  - !ruby/object:Gem::Version
42
- version: '1.2'
42
+ version: '1.9'
43
43
  - !ruby/object:Gem::Dependency
44
44
  name: bundler
45
45
  requirement: !ruby/object:Gem::Requirement