omniauth 1.7.1 → 1.8.0
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of omniauth might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/.rubocop.yml +9 -9
- data/.travis.yml +4 -1
- data/README.md +1 -1
- data/Rakefile +1 -1
- data/lib/omniauth/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 56271cf1975e9bb8bd102e642143d7b3c946252f
|
4
|
+
data.tar.gz: eef9d49c1f6d443b56c0b0419edb296f8db76a14
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5e03d6d5dd3c79006129042041f60d95559d9346c9978d14e348b03b1e9c4cd74cdee79439f0ae969c4c6f4b03a31a1ad049ec25b99ab594c886c4fa3f0731f0
|
7
|
+
data.tar.gz: 2b51befd5500454c66ce4f175fa0d89f916448395ee58c265410834bec5d340a21ccd3d2e5e0d772c0be38654a74f5a00b3406ed53c4032fbdec152417b03ea4
|
data/.rubocop.yml
CHANGED
@@ -1,3 +1,12 @@
|
|
1
|
+
Layout/AccessModifierIndentation:
|
2
|
+
EnforcedStyle: outdent
|
3
|
+
|
4
|
+
Layout/DotPosition:
|
5
|
+
EnforcedStyle: trailing
|
6
|
+
|
7
|
+
Layout/SpaceInsideHashLiteralBraces:
|
8
|
+
EnforcedStyle: no_space
|
9
|
+
|
1
10
|
Lint/HandleExceptions:
|
2
11
|
Enabled: false
|
3
12
|
|
@@ -22,9 +31,6 @@ Metrics/ParameterLists:
|
|
22
31
|
Metrics/AbcSize:
|
23
32
|
Enabled: false
|
24
33
|
|
25
|
-
Style/AccessModifierIndentation:
|
26
|
-
EnforcedStyle: outdent
|
27
|
-
|
28
34
|
Style/CollectionMethods:
|
29
35
|
PreferredMethods:
|
30
36
|
map: 'collect'
|
@@ -35,9 +41,6 @@ Style/CollectionMethods:
|
|
35
41
|
Style/Documentation:
|
36
42
|
Enabled: false
|
37
43
|
|
38
|
-
Style/DotPosition:
|
39
|
-
EnforcedStyle: trailing
|
40
|
-
|
41
44
|
Style/DoubleNegation:
|
42
45
|
Enabled: false
|
43
46
|
|
@@ -55,6 +58,3 @@ Style/Lambda:
|
|
55
58
|
|
56
59
|
Style/RaiseArgs:
|
57
60
|
EnforcedStyle: compact
|
58
|
-
|
59
|
-
Style/SpaceInsideHashLiteralBraces:
|
60
|
-
EnforcedStyle: no_space
|
data/.travis.yml
CHANGED
@@ -1,5 +1,7 @@
|
|
1
1
|
bundler_args: --without development
|
2
|
-
before_install:
|
2
|
+
before_install:
|
3
|
+
- gem update --system
|
4
|
+
- gem update bundler
|
3
5
|
cache: bundler
|
4
6
|
env:
|
5
7
|
global:
|
@@ -11,6 +13,7 @@ rvm:
|
|
11
13
|
- 2.2.6
|
12
14
|
- 2.3.3
|
13
15
|
- 2.4.0
|
16
|
+
- 2.5.0
|
14
17
|
- jruby-head
|
15
18
|
- ruby-head
|
16
19
|
matrix:
|
data/README.md
CHANGED
@@ -194,7 +194,7 @@ your first stop if you are wondering about a more in-depth look at
|
|
194
194
|
OmniAuth, how it works, and how to use it.
|
195
195
|
|
196
196
|
## Supported Ruby Versions
|
197
|
-
OmniAuth is tested under 2.1.10, 2.2.6, 2.3.3, 2.4.0, and JRuby.
|
197
|
+
OmniAuth is tested under 2.1.10, 2.2.6, 2.3.3, 2.4.0, 2.5.0, and JRuby.
|
198
198
|
|
199
199
|
## Versioning
|
200
200
|
This library aims to adhere to [Semantic Versioning 2.0.0][semver]. Violations
|
data/Rakefile
CHANGED
data/lib/omniauth/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: omniauth
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.8.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-
|
13
|
+
date: 2017-12-27 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: hashie
|