minitel 0.5.0 → 1.0.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 03563c34fdb8dddca3107d4d60b304f32f513ec89bcf4ef06a0f606f04be7e89
4
- data.tar.gz: accac5e1f917fe04b0854136b06a217eac02759146a85ca60dfd30da7c27b0a8
3
+ metadata.gz: efac639ab86b2067cc1cbe21f612e32c3e5993d911ac601d3e3ed458c3dff4f6
4
+ data.tar.gz: ef09003111990223903b260ab3672601abe9c85c65657e42418d8b84ebbbc1fc
5
5
  SHA512:
6
- metadata.gz: f3b11eb0db6a955740d89bc5e24ad0f5d85852ff399aa6c82cc8995b44f9a8fd6d594d241577a66bd240bda7d7d1cc02a91667cf8793d7a8b8a7c661f801eba3
7
- data.tar.gz: ab39d5c5b79f35c0aeca1a8a11eca36cf90c6e0afbcd18969825b5730f69c5055d244da80f1f73f8ed929d2a2b3138bdef67de7983b40eb6a78d1d5bb88ce504
6
+ metadata.gz: fae8c87ae3bd0d55797f4a6a380392ecc5be15af7c869bb9b76d23454e6cfc8de86a2a00e536ebabfa2dbc552e1d4e5ffb40a74181898c10c74890014585b94a
7
+ data.tar.gz: 8b4882f40ac8610ebdf768cdb034f02d74882bdfb031a3fcea14df737af2e0a5a853a7e7983feae60d7ddddabe70e836168aa613a2d33ff0918d6f8720a8ea44
@@ -2,19 +2,28 @@ name: Ruby
2
2
 
3
3
  on:
4
4
  push:
5
- branches: [ master ]
5
+ branches: [ main ]
6
6
  pull_request:
7
- branches: [ master ]
7
+ branches: [ main ]
8
8
 
9
9
  jobs:
10
+ lint:
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - uses: actions/checkout@v6
14
+ - uses: ruby/setup-ruby@v1
15
+ with:
16
+ ruby-version: '3.4'
17
+ bundler-cache: true
18
+ - run: bundle exec rubocop
10
19
  test:
11
20
  runs-on: ubuntu-latest
12
21
  strategy:
13
22
  matrix:
14
- ruby-version: ['2.5', '2.6', '2.7', '3.0']
23
+ ruby-version: ['3.2', '3.3', '3.4', '4.0']
15
24
 
16
25
  steps:
17
- - uses: actions/checkout@v2
26
+ - uses: actions/checkout@v6
18
27
  - name: Set up Ruby
19
28
  uses: ruby/setup-ruby@v1
20
29
  with:
data/.gitignore CHANGED
@@ -20,3 +20,4 @@ tmp
20
20
  *.o
21
21
  *.a
22
22
  mkmf.log
23
+ .ruby-version
data/.rubocop.yml ADDED
@@ -0,0 +1,13 @@
1
+ ---
2
+ inherit_from:
3
+ - .rubocop_standardrb.yml
4
+ - .rubocop_standardrb_overrides.yml
5
+
6
+ plugins:
7
+ - rubocop-performance
8
+ - rubocop-rspec
9
+
10
+ AllCops:
11
+ NewCops: disable
12
+ Exclude:
13
+ - vendor/**/*