omniauth-gitlab 1.0.0 → 1.0.1
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/README.md +2 -0
- data/lib/omniauth-gitlab/version.rb +1 -1
- data/lib/omniauth/strategies/gitlab.rb +2 -1
- data/omniauth-gitlab.gemspec +5 -5
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 24e5db0951198ccfb5473ff5fe3a6a626b91edfe
|
|
4
|
+
data.tar.gz: cb7f0598640a8c6a80245cbb6f5758e53670eef3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2fe15159ccfe5f31ff1266b036aa3b4366623f1c669a69599fa710ac77679093377135aa75d77b8b4446a8dbfcf8635cf1ed7de8e30b561712a45354072bcc44
|
|
7
|
+
data.tar.gz: 9611dc576bdba0613f62c452bdd4583d5c584c428395062bd732ffe9ea1833a401623daa15c444420f8a9f757391b58a2546ec7da3ba6cce473bb6e7442a07a5
|
data/README.md
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
# Omniauth::Gitlab
|
|
2
2
|
|
|
3
|
+
[](https://gitter.im/linchus/omniauth-gitlab?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
|
|
4
|
+
|
|
3
5
|
This is the OAuth2 strategy for authenticating to your GitLab service.
|
|
4
6
|
|
|
5
7
|
## Requirements
|
data/omniauth-gitlab.gemspec
CHANGED
|
@@ -4,18 +4,18 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
|
4
4
|
require 'omniauth-gitlab/version'
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |gem|
|
|
7
|
-
gem.name =
|
|
7
|
+
gem.name = 'omniauth-gitlab'
|
|
8
8
|
gem.version = Omniauth::Gitlab::VERSION
|
|
9
|
-
gem.authors = [
|
|
10
|
-
gem.email = [
|
|
9
|
+
gem.authors = ['ssein']
|
|
10
|
+
gem.email = ['linchus@gmail.com']
|
|
11
11
|
gem.description = %q{This is the strategy for authenticating to your GitLab service}
|
|
12
12
|
gem.summary = %q{This is the strategy for authenticating to your GitLab service}
|
|
13
|
-
gem.homepage =
|
|
13
|
+
gem.homepage = 'https://github.com/linchus/omniauth-gitlab'
|
|
14
14
|
|
|
15
15
|
gem.files = `git ls-files`.split($/)
|
|
16
16
|
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
|
17
17
|
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
|
|
18
|
-
gem.require_paths = [
|
|
18
|
+
gem.require_paths = ['lib']
|
|
19
19
|
|
|
20
20
|
gem.add_dependency 'omniauth', '~> 1.0'
|
|
21
21
|
gem.add_dependency 'omniauth-oauth2', '~> 1.0'
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: omniauth-gitlab
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- ssein
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-
|
|
11
|
+
date: 2015-09-18 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: omniauth
|
|
@@ -110,7 +110,7 @@ dependencies:
|
|
|
110
110
|
version: '0'
|
|
111
111
|
description: This is the strategy for authenticating to your GitLab service
|
|
112
112
|
email:
|
|
113
|
-
-
|
|
113
|
+
- linchus@gmail.com
|
|
114
114
|
executables: []
|
|
115
115
|
extensions: []
|
|
116
116
|
extra_rdoc_files: []
|
|
@@ -128,7 +128,7 @@ files:
|
|
|
128
128
|
- omniauth-gitlab.gemspec
|
|
129
129
|
- spec/omniauth/strategies/gitlab_spec.rb
|
|
130
130
|
- spec/spec_helper.rb
|
|
131
|
-
homepage:
|
|
131
|
+
homepage: https://github.com/linchus/omniauth-gitlab
|
|
132
132
|
licenses: []
|
|
133
133
|
metadata: {}
|
|
134
134
|
post_install_message:
|