omniauth-cognitiveclass 0.4.2 → 0.4.3
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 +4 -4
- data/.rubocop.yml +3 -1
- data/CHANGELOG.md +4 -0
- data/Gemfile.lock +1 -1
- data/VERSION +1 -1
- data/lib/omniauth/strategies/cognitive_class.rb +2 -0
- data/{omniauth-cognitiveclass.gemspec → omniauth_cognitive_class.gemspec} +5 -2
- metadata +5 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9e37d4b6350279f0b825f1d246ad43c7a6bafb72
|
|
4
|
+
data.tar.gz: a91505e158129e7e3271e7d638e18e13c36cda67
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2e94e07f75fc3f655a25439646b9fe167964bd3aaf11c899791071f78c2d665379f42fda9cd4676f7d85f84716eaacf2492001affab4ba511b6637084855148d
|
|
7
|
+
data.tar.gz: dc9a0155baa1ad240d0aeba16c2b2cef455b35a15a3e42a059f6c0e6a5292f3fb06b2048eb64cdcd899e87a62039e956576a62b04b8b3dd85566a276c347532c
|
data/.rubocop.yml
CHANGED
|
@@ -4,8 +4,10 @@
|
|
|
4
4
|
AllCops:
|
|
5
5
|
# Include gemspec and Rakefile
|
|
6
6
|
Include:
|
|
7
|
+
- '**/Gemfile'
|
|
7
8
|
- '**/Rakefile'
|
|
8
9
|
- '**/*.jbuilder'
|
|
10
|
+
- '*.gemspec'
|
|
9
11
|
Exclude:
|
|
10
12
|
- 'bin/rails'
|
|
11
13
|
- 'bin/rake'
|
|
@@ -17,7 +19,7 @@ AllCops:
|
|
|
17
19
|
- 'secure_rails'
|
|
18
20
|
- 'test/**/*'
|
|
19
21
|
- 'tmp/**/*'
|
|
20
|
-
|
|
22
|
+
|
|
21
23
|
Rails:
|
|
22
24
|
Enabled: true
|
|
23
25
|
|
data/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
+
## [0.4.3][] - 2017-05-30
|
|
10
|
+
### Fixed
|
|
11
|
+
- Fixed some `require` issues
|
|
12
|
+
|
|
9
13
|
## [0.4.2] - 2017-05-17
|
|
10
14
|
### Fixed
|
|
11
15
|
- Correctly use the `COGNITIVE_SITE`, `COGNITIVE_AUTHORIZE_URL`, and
|
data/Gemfile.lock
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.4.
|
|
1
|
+
0.4.3
|
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
lib = File.expand_path("../lib", __FILE__)
|
|
3
3
|
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
4
4
|
|
|
5
|
+
require "omniauth"
|
|
6
|
+
|
|
5
7
|
Gem::Specification.new do |spec|
|
|
6
8
|
spec.name = "omniauth-cognitiveclass"
|
|
7
9
|
spec.version = File.open("VERSION", "r").read.strip
|
|
@@ -17,12 +19,13 @@ Gem::Specification.new do |spec|
|
|
|
17
19
|
spec.homepage = "https://github.com/cognitiveclass/omniauth-cognitiveclass"
|
|
18
20
|
spec.license = "MIT"
|
|
19
21
|
|
|
20
|
-
|
|
21
|
-
spec.files = `git ls-files`.split($INPUT_RECORD_SEPARATOR)
|
|
22
|
+
spec.files = %x(git ls-files).split($INPUT_RECORD_SEPARATOR)
|
|
22
23
|
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
|
23
24
|
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
|
24
25
|
spec.require_paths = ["lib"]
|
|
25
26
|
|
|
27
|
+
spec.extra_rdoc_files = ["README.md"]
|
|
28
|
+
|
|
26
29
|
# To install the gem locally:
|
|
27
30
|
# bundle exec rake install
|
|
28
31
|
spec.add_development_dependency "bundler-audit", "~> 0.5"
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: omniauth-cognitiveclass
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.4.
|
|
4
|
+
version: 0.4.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Leons Petrazickis
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-05-
|
|
11
|
+
date: 2017-05-30 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler-audit
|
|
@@ -105,7 +105,8 @@ email:
|
|
|
105
105
|
- support@cognitiveclass.ai
|
|
106
106
|
executables: []
|
|
107
107
|
extensions: []
|
|
108
|
-
extra_rdoc_files:
|
|
108
|
+
extra_rdoc_files:
|
|
109
|
+
- README.md
|
|
109
110
|
files:
|
|
110
111
|
- ".editorconfig"
|
|
111
112
|
- ".env.example"
|
|
@@ -120,7 +121,7 @@ files:
|
|
|
120
121
|
- VERSION
|
|
121
122
|
- lib/omniauth/strategies/cognitive_class.rb
|
|
122
123
|
- lib/omniauth_cognitive_class.rb
|
|
123
|
-
-
|
|
124
|
+
- omniauth_cognitive_class.gemspec
|
|
124
125
|
homepage: https://github.com/cognitiveclass/omniauth-cognitiveclass
|
|
125
126
|
licenses:
|
|
126
127
|
- MIT
|