omniauth-cognitiveclass 0.4.2 → 0.4.3

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: 93ed3f3d288edff9854eae66032874f0afd7ca19
4
- data.tar.gz: 0ef450d0f180663151da91549c64dd013951f526
3
+ metadata.gz: 9e37d4b6350279f0b825f1d246ad43c7a6bafb72
4
+ data.tar.gz: a91505e158129e7e3271e7d638e18e13c36cda67
5
5
  SHA512:
6
- metadata.gz: 6432c34b6083afee8c130650ffc8cb4397d39e1c062f28ed47e2dd73520c0143d29261b756057b6f65ead003c0a6146d65ce0dd751bfa82b601d0ff23f00f1a4
7
- data.tar.gz: c0bf8ed0281f36208fe4aa2fcdab6ef71996cc83da5cd46f5f19117d5f2f5acfe7165827ae27ee8266414d5196f3e5e24e4b5f33ac43a779c32b0296a4fc506d
6
+ metadata.gz: 2e94e07f75fc3f655a25439646b9fe167964bd3aaf11c899791071f78c2d665379f42fda9cd4676f7d85f84716eaacf2492001affab4ba511b6637084855148d
7
+ data.tar.gz: dc9a0155baa1ad240d0aeba16c2b2cef455b35a15a3e42a059f6c0e6a5292f3fb06b2048eb64cdcd899e87a62039e956576a62b04b8b3dd85566a276c347532c
@@ -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
 
@@ -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
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- omniauth-cognitiveclass (0.4.2)
4
+ omniauth-cognitiveclass (0.4.3)
5
5
  omniauth-oauth2 (~> 1.4)
6
6
 
7
7
  GEM
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.4.2
1
+ 0.4.3
@@ -58,3 +58,5 @@ module OmniAuth
58
58
  end
59
59
  end
60
60
  end
61
+
62
+ OmniAuth.config.add_camelization "cognitive_class", "CognitiveClass"
@@ -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
- # TODO: Remove dependency on git
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.2
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-17 00:00:00.000000000 Z
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
- - omniauth-cognitiveclass.gemspec
124
+ - omniauth_cognitive_class.gemspec
124
125
  homepage: https://github.com/cognitiveclass/omniauth-cognitiveclass
125
126
  licenses:
126
127
  - MIT