logplex 0.0.7 → 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: 74968b946301f4fcecd000127c5bfd98b80d39ce024084ece76af5479e7a109e
4
- data.tar.gz: 9edd68f2df748bfb7ffc2f8ffe3d4fd64251897c1c236fc5bd8229f324cb9214
3
+ metadata.gz: 2b130adbd8f6f9b70547efbca696571a0138131d802ba51fe777f6c8b78442c3
4
+ data.tar.gz: 5b1093c6f18c1b0d432b75ba3eeeb372c6ee1ee1077da0f436fcc337905621c0
5
5
  SHA512:
6
- metadata.gz: f3eb73debbaaad3261d89834acee07d3c46642275926c705df4547c5dfb2da4ec09c5b17b412de8edb1baaad55da03b85a4f0985a316ac54ef0c6180278e53fc
7
- data.tar.gz: dc60bb59e898e11e36a6728bd5f0cb7d6ecc202dd1b2df013e0e825692702020c50b264d1c6229987224c1d7c247e1f090a00022e98be86c7ad7395b89939358
6
+ metadata.gz: fb5288b1246500f0c2cb181f73cfc5690027f14360d802370899066a80c630b4431bb536a7349c560bc8b6bf64fde519abe1ab4d18dabb3b9d8d59b4c69787ca
7
+ data.tar.gz: 1f06c51f84009ed1edf3f99897aa0b69d0ea54255af4f26d050834bcf4286b31a648fcf8eb7b37c7d23c4fac31b021b3e3f563295dc5e251e4492ebef8fbaefc
@@ -0,0 +1,25 @@
1
+ name: CI
2
+ on:
3
+ push:
4
+ jobs:
5
+ test:
6
+ runs-on: ubuntu-latest
7
+ strategy:
8
+ matrix:
9
+ ruby-version: ['4.0', '3.4', '3.3', '3.2']
10
+ steps:
11
+ - uses: actions/checkout@v6
12
+ - uses: ruby/setup-ruby@v1
13
+ with:
14
+ ruby-version: ${{ matrix.ruby-version }}
15
+ bundler-cache: true
16
+ - run: bundle exec rspec
17
+ lint:
18
+ runs-on: ubuntu-latest
19
+ steps:
20
+ - uses: actions/checkout@v6
21
+ - uses: ruby/setup-ruby@v1
22
+ with:
23
+ ruby-version: '3.4'
24
+ bundler-cache: true
25
+ - run: bundle exec rubocop
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/**/*