omniauth-kerberos 0.3.0 → 0.4.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 +5 -5
- data/.github/workflows/maintenance-cache-wipe.yml +13 -0
- data/.github/workflows/maintenance-workflow-cleanup.yml +17 -0
- data/.github/workflows/test.yml +43 -0
- data/Gemfile +4 -2
- data/omniauth-kerberos.gemspec +3 -4
- data/spec/spec_helper.rb +10 -6
- metadata +11 -11
- data/.travis.yml +0 -11
- /data/spec/omniauth/{strategy → strategies}/kerberos_spec.rb +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: d1626ca445ca5eca6e00c9d75d223fb0339ba72e9bac2c4824e0a3a979255035
|
4
|
+
data.tar.gz: 7708abcde3c2001e57d7d6ae9e3ce06e9be3348ed8bedb789f65040e3d5d342a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a07e12c058c68232e6954059c490331eb28f7be3bcd965b7a76c37fa35fceffa53b6977c16dbf630d73b45adc63bd2283196d58a37909edd1c62f9fa38cb02f2
|
7
|
+
data.tar.gz: 0b5d4c28355481ae0a8687a0a6ce152c2b673829a064758c172a4c9685dea6c0e1d69a6a3fd7afadf86bd7e1f1c0f7ecdc81e7a739d42435f9b99190869e196e
|
@@ -0,0 +1,17 @@
|
|
1
|
+
---
|
2
|
+
name: maintenance-workflow-cleanup
|
3
|
+
on:
|
4
|
+
schedule:
|
5
|
+
- cron: "0 0 1 * *"
|
6
|
+
workflow_dispatch:
|
7
|
+
|
8
|
+
jobs:
|
9
|
+
delete-workflow-runs:
|
10
|
+
runs-on: ubuntu-latest
|
11
|
+
steps:
|
12
|
+
- uses: Mattraks/delete-workflow-runs@v2
|
13
|
+
with:
|
14
|
+
token: ${{ github.token }}
|
15
|
+
repository: ${{ github.repository }}
|
16
|
+
retain_days: 180
|
17
|
+
keep_minimum_runs: 50
|
@@ -0,0 +1,43 @@
|
|
1
|
+
---
|
2
|
+
name: test
|
3
|
+
on: push
|
4
|
+
jobs:
|
5
|
+
rspec:
|
6
|
+
name: "ruby-${{ matrix.ruby }}"
|
7
|
+
runs-on: ubuntu-22.04
|
8
|
+
|
9
|
+
strategy:
|
10
|
+
fail-fast: false
|
11
|
+
matrix:
|
12
|
+
ruby:
|
13
|
+
- "3.3"
|
14
|
+
- "3.2"
|
15
|
+
- "3.1"
|
16
|
+
- "3.0"
|
17
|
+
- "2.7"
|
18
|
+
|
19
|
+
env:
|
20
|
+
BUNDLE_WITHOUT: development
|
21
|
+
|
22
|
+
steps:
|
23
|
+
- uses: actions/checkout@master
|
24
|
+
|
25
|
+
- run: |
|
26
|
+
sudo apt-get update --quiet
|
27
|
+
sudo apt-get install --quiet --yes libkrb5-dev
|
28
|
+
|
29
|
+
- uses: ruby/setup-ruby@v1
|
30
|
+
with:
|
31
|
+
ruby-version: ${{ matrix.ruby }}
|
32
|
+
bundler-cache: true
|
33
|
+
env:
|
34
|
+
BUNDLE_JOBS: 4
|
35
|
+
BUNDLE_RETRY: 3
|
36
|
+
|
37
|
+
- run: |
|
38
|
+
bundle exec rspec --color --format documentation
|
39
|
+
|
40
|
+
- uses: codecov/codecov-action@v4
|
41
|
+
with:
|
42
|
+
fail_ci_if_error: true
|
43
|
+
token: ${{ secrets.CODECOV_TOKEN }}
|
data/Gemfile
CHANGED
data/omniauth-kerberos.gemspec
CHANGED
@@ -1,6 +1,8 @@
|
|
1
1
|
# -*- encoding: utf-8 -*-
|
2
2
|
|
3
3
|
Gem::Specification.new do |gem|
|
4
|
+
gem.version = '0.4.0'
|
5
|
+
gem.name = 'omniauth-kerberos'
|
4
6
|
gem.authors = ['Jan Graichen']
|
5
7
|
gem.email = ['jan.graichen@altimos.de']
|
6
8
|
gem.description = 'An OmniAuth strategy for Kerberos.'
|
@@ -9,11 +11,8 @@ Gem::Specification.new do |gem|
|
|
9
11
|
|
10
12
|
gem.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) }
|
11
13
|
gem.files = `git ls-files`.split("\n")
|
12
|
-
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
13
|
-
gem.name = 'omniauth-kerberos'
|
14
14
|
gem.require_paths = ['lib']
|
15
|
-
gem.version = '0.3.0'
|
16
15
|
|
17
16
|
gem.add_dependency 'timfel-krb5-auth', '~> 0.8'
|
18
|
-
gem.add_dependency 'omniauth-multipassword'
|
17
|
+
gem.add_dependency 'omniauth-multipassword', '~> 2.0'
|
19
18
|
end
|
data/spec/spec_helper.rb
CHANGED
@@ -1,13 +1,17 @@
|
|
1
1
|
require 'rspec'
|
2
2
|
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
end
|
3
|
+
require 'simplecov'
|
4
|
+
require 'simplecov-cobertura'
|
5
|
+
|
6
|
+
SimpleCov.start do
|
7
|
+
add_filter 'spec'
|
9
8
|
end
|
10
9
|
|
10
|
+
SimpleCov.formatters = [
|
11
|
+
SimpleCov::Formatter::HTMLFormatter,
|
12
|
+
SimpleCov::Formatter::CoberturaFormatter,
|
13
|
+
]
|
14
|
+
|
11
15
|
require 'omniauth-kerberos'
|
12
16
|
|
13
17
|
Dir[File.expand_path('spec/support/**/*.rb')].each { |f| require f }
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: omniauth-kerberos
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.4.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jan Graichen
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2024-07-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: timfel-krb5-auth
|
@@ -28,16 +28,16 @@ dependencies:
|
|
28
28
|
name: omniauth-multipassword
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
|
-
- - "
|
31
|
+
- - "~>"
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version: '0'
|
33
|
+
version: '2.0'
|
34
34
|
type: :runtime
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
|
-
- - "
|
38
|
+
- - "~>"
|
39
39
|
- !ruby/object:Gem::Version
|
40
|
-
version: '0'
|
40
|
+
version: '2.0'
|
41
41
|
description: An OmniAuth strategy for Kerberos.
|
42
42
|
email:
|
43
43
|
- jan.graichen@altimos.de
|
@@ -45,8 +45,10 @@ executables: []
|
|
45
45
|
extensions: []
|
46
46
|
extra_rdoc_files: []
|
47
47
|
files:
|
48
|
+
- ".github/workflows/maintenance-cache-wipe.yml"
|
49
|
+
- ".github/workflows/maintenance-workflow-cleanup.yml"
|
50
|
+
- ".github/workflows/test.yml"
|
48
51
|
- ".gitignore"
|
49
|
-
- ".travis.yml"
|
50
52
|
- Gemfile
|
51
53
|
- LICENSE
|
52
54
|
- README.md
|
@@ -54,7 +56,7 @@ files:
|
|
54
56
|
- lib/omniauth-kerberos.rb
|
55
57
|
- lib/omniauth/strategies/kerberos.rb
|
56
58
|
- omniauth-kerberos.gemspec
|
57
|
-
- spec/omniauth/
|
59
|
+
- spec/omniauth/strategies/kerberos_spec.rb
|
58
60
|
- spec/spec_helper.rb
|
59
61
|
homepage: https://github.com/jgraichen/omniauth-kerberos
|
60
62
|
licenses: []
|
@@ -74,10 +76,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
74
76
|
- !ruby/object:Gem::Version
|
75
77
|
version: '0'
|
76
78
|
requirements: []
|
77
|
-
|
78
|
-
rubygems_version: 2.4.6
|
79
|
+
rubygems_version: 3.5.11
|
79
80
|
signing_key:
|
80
81
|
specification_version: 4
|
81
82
|
summary: An OmniAuth strategy for Kerberos.
|
82
83
|
test_files: []
|
83
|
-
has_rdoc:
|
data/.travis.yml
DELETED
@@ -1,11 +0,0 @@
|
|
1
|
-
sudo: false
|
2
|
-
language: ruby
|
3
|
-
cache: bundler
|
4
|
-
rvm:
|
5
|
-
- '2.1'
|
6
|
-
- '2.0'
|
7
|
-
- 1.9.3
|
8
|
-
- rbx-2
|
9
|
-
env:
|
10
|
-
global:
|
11
|
-
secure: GFgbyRIlAc93IyH5clByNGS9iI/5OSaa2Ba0iGemyLR93I80qxIUNgMvXzp74YTTbGTrWyz9JPBSD14uO/3tuPYhXuawbDT0k1D/97Xm7wMhxLXZNSEATKt71g3bk/106fy+ULz6aqzQWnLkGHsvfg3vlkdyn8rX/X1HstajrcI=
|
File without changes
|