omniauth-idcat_mobil 0.2.4 → 0.3.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/ISSUE_TEMPLATE/feature_request.md +20 -0
- data/.github/pull_request_template.md +11 -0
- data/.github/workflows/linters.yml +48 -0
- data/.github/workflows/test.yml +54 -0
- data/.rubocop.yml +1248 -0
- data/CHANGELOG.md +4 -0
- data/Gemfile +9 -2
- data/Rakefile +3 -1
- data/lib/omniauth/idcat_mobil/version.rb +3 -1
- data/lib/omniauth/idcat_mobil.rb +2 -0
- data/lib/omniauth/strategies/idcat_mobil.rb +8 -7
- data/omniauth-idcat_mobil.gemspec +14 -12
- metadata +9 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 77244f98eff1b7533ec93e6dd46935aa70b22cee688b2104c261b5a57b179e4d
|
4
|
+
data.tar.gz: da770c4b57a94bf8ad13724d4f5c472b5a1332dae37d01c926791342efc88a7e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f809df619221c3092a758a8d328ebfded02d284af2fac08994b7cdb0503d8846ff5e6183284e56004b64dd401864d926ee9180f0aede8a38a662ebbda5d39246
|
7
|
+
data.tar.gz: 61b880b43183df731fadfb0ab545e22cb4c0bf4fee4fc57af333da3475d56a2c257d6711bc71a2042f5db20bbe6913ffbfbef6b8f5b9ae1d5d9afb95567bdd0c
|
@@ -0,0 +1,20 @@
|
|
1
|
+
---
|
2
|
+
name: Feature request
|
3
|
+
about: Suggest an idea for this project
|
4
|
+
title: ''
|
5
|
+
labels: ''
|
6
|
+
assignees: ''
|
7
|
+
|
8
|
+
---
|
9
|
+
|
10
|
+
**Is your feature request related to a problem? Please describe.**
|
11
|
+
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
|
12
|
+
|
13
|
+
**Describe the solution you'd like**
|
14
|
+
A clear and concise description of what you want to happen.
|
15
|
+
|
16
|
+
**Describe alternatives you've considered**
|
17
|
+
A clear and concise description of any alternative solutions or features you've considered.
|
18
|
+
|
19
|
+
**Additional context**
|
20
|
+
Add any other context or screenshots about the feature request here.
|
@@ -0,0 +1,48 @@
|
|
1
|
+
name: "[CI] Lint / Lint code"
|
2
|
+
|
3
|
+
on:
|
4
|
+
push:
|
5
|
+
branches:
|
6
|
+
- master
|
7
|
+
- release/*
|
8
|
+
- "*-stable"
|
9
|
+
pull_request:
|
10
|
+
|
11
|
+
env:
|
12
|
+
RUBY_VERSION: 2.7.5
|
13
|
+
|
14
|
+
jobs:
|
15
|
+
test-report:
|
16
|
+
runs-on: ubuntu-latest
|
17
|
+
|
18
|
+
steps:
|
19
|
+
- uses: actions/checkout@v2.0.0
|
20
|
+
with:
|
21
|
+
fetch-depth: 1
|
22
|
+
|
23
|
+
- uses: ruby/setup-ruby@master
|
24
|
+
with:
|
25
|
+
ruby-version: ${{ env.RUBY_VERSION }}
|
26
|
+
|
27
|
+
- name: Recover Ruby dependency cache
|
28
|
+
uses: actions/cache@v2
|
29
|
+
with:
|
30
|
+
path: ./vendor/bundle
|
31
|
+
key: ${{ runner.OS }}-rubydeps-${{ hashFiles('Gemfile.lock') }}
|
32
|
+
restore-keys: |
|
33
|
+
${{ runner.OS }}-rubydeps-${{ env.cache-name }}-
|
34
|
+
${{ runner.OS }}-rubydeps-
|
35
|
+
${{ runner.OS }}-
|
36
|
+
|
37
|
+
- name: Set bundle local config configvendor/bundle path
|
38
|
+
run: bundle config set --local path 'vendor/bundle'
|
39
|
+
|
40
|
+
- name: Install Ruby deps
|
41
|
+
uses: nick-invision/retry@v2
|
42
|
+
with:
|
43
|
+
timeout_minutes: 10
|
44
|
+
max_attempts: 3
|
45
|
+
command: bundle install --jobs 4 --retry 3
|
46
|
+
|
47
|
+
- name: Rubocop
|
48
|
+
run: bundle exec rubocop -P
|
@@ -0,0 +1,54 @@
|
|
1
|
+
name: "[CI] Main Test"
|
2
|
+
|
3
|
+
on:
|
4
|
+
push:
|
5
|
+
branches:
|
6
|
+
- master
|
7
|
+
- release/*
|
8
|
+
- "*-stable"
|
9
|
+
pull_request:
|
10
|
+
|
11
|
+
env:
|
12
|
+
RUBY_VERSION: 2.7.5
|
13
|
+
|
14
|
+
jobs:
|
15
|
+
test-app:
|
16
|
+
runs-on: ubuntu-latest
|
17
|
+
|
18
|
+
steps:
|
19
|
+
- uses: actions/checkout@v2.0.0
|
20
|
+
with:
|
21
|
+
fetch-depth: 1
|
22
|
+
|
23
|
+
- uses: ruby/setup-ruby@master
|
24
|
+
with:
|
25
|
+
ruby-version: ${{ env.RUBY_VERSION }}
|
26
|
+
|
27
|
+
- name: Recover Ruby dependency cache
|
28
|
+
uses: actions/cache@v1
|
29
|
+
with:
|
30
|
+
path: ./vendor/bundle
|
31
|
+
key: ${{ runner.OS }}-rubydeps-${{ hashFiles('Gemfile.lock') }}
|
32
|
+
restore-keys: |
|
33
|
+
${{ runner.OS }}-rubydeps-${{ env.cache-name }}-
|
34
|
+
${{ runner.OS }}-rubydeps-
|
35
|
+
${{ runner.OS }}-
|
36
|
+
|
37
|
+
- name: Set bundle local config configvendor/bundle path
|
38
|
+
run: bundle config set --local path 'vendor/bundle'
|
39
|
+
|
40
|
+
- name: Install Ruby deps
|
41
|
+
uses: nick-invision/retry@v2
|
42
|
+
with:
|
43
|
+
timeout_minutes: 10
|
44
|
+
max_attempts: 3
|
45
|
+
retry_on: error
|
46
|
+
command: bundle install --jobs 4 --retry 3
|
47
|
+
|
48
|
+
- name: Run RSpec
|
49
|
+
uses: nick-invision/retry@v2
|
50
|
+
with:
|
51
|
+
timeout_minutes: 10
|
52
|
+
max_attempts: 3
|
53
|
+
retry_on: error
|
54
|
+
command: bundle exec rake --backtrace -t
|