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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5cd4decd80542047e503636a9b5ec7ae7699ec6e135f0e8afa2aeb948e78d942
4
- data.tar.gz: 838abde42f55082115439ade97a311635459576354cfd91d449eb85a3949d3a5
3
+ metadata.gz: 77244f98eff1b7533ec93e6dd46935aa70b22cee688b2104c261b5a57b179e4d
4
+ data.tar.gz: da770c4b57a94bf8ad13724d4f5c472b5a1332dae37d01c926791342efc88a7e
5
5
  SHA512:
6
- metadata.gz: 6d6e4fa0be7c3e6c8ad1a39cef03051e42ac03527921369d8e8c7e0c54a2a5c298c9b82c68fceb0693be90754596e95ef5f3f9e0622074fe31019773bd6cfd82
7
- data.tar.gz: d5a73fcc308d3b887ae9955fd430fc7088510d340d17ca4e2e44f8f9a0c10f363843e5244321941c19669b05d613f165e91e9527be0110a058053dc8b1f86799
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,11 @@
1
+ #### :tophat: What? Why?
2
+
3
+
4
+ #### :pushpin: Related Issues
5
+ - Related to #?
6
+ - Fixes #?
7
+
8
+ #### :clipboard: Subtasks
9
+ - [ ] Add documentation regarding the feature
10
+ - [ ] Add tests
11
+ - [ ] Another subtask
@@ -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