xfrtuc 0.0.12 → 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: 62df6cb916d9969f797cee603a26e02bd426c72400441395420e9a9a1d786e5c
4
- data.tar.gz: 699296f13abe1ef5e62e8d535c786fe560cda2e82a13d6a0bc348f6138933279
3
+ metadata.gz: 8564ce9865ef04161ae3fb278b87e707206371f11c9e0b60aabaa3e24088e477
4
+ data.tar.gz: be3d67d3bc60afc660475a801f5c7c218eb67e35ee66f23719ad4603470612d6
5
5
  SHA512:
6
- metadata.gz: 5071b29d2fa8c0f31990bf8e8b4ec2d47bab881cd36e1014fbd90834ba3c6f66e30ffdfbbcc4adfb312f1993bb11178e2996ad2a9d61389c374f5fe15c7e8e02
7
- data.tar.gz: f808aee23273e1ced225382681c518882d52ef9ec7e6d096d7d3e8dfd74f40e61a87568cc93c02247c4c5526da90531fba57bbede92098c5cc16dcb44840e7d5
6
+ metadata.gz: 3afc42d9144fa5c7e1b94b09dacc6a49504ff216acfd39fa35f5c06a9db0fe7c04a1af00050d92b6e87d7a2b426b0b2115c365df8b37cab33d84131e8a185f50
7
+ data.tar.gz: 86cfd54dead9ca2b8666eeceb36b51d2a3e320f2c412c6c90ba36c5975d0d4e40a0aeda315810e593de9aa0ab350a75cab7da3a9d52e94c86a17b164469ed84b
@@ -0,0 +1,29 @@
1
+ name: CI
2
+ on:
3
+ push:
4
+ branches:
5
+ - main
6
+ pull_request:
7
+ types: [edited, opened, synchronize, reopened, ready_for_review]
8
+ jobs:
9
+ lint:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - uses: actions/checkout@v6
13
+ - uses: ruby/setup-ruby@v1
14
+ with:
15
+ ruby-version: '3.4'
16
+ bundler-cache: true
17
+ - run: bundle exec rubocop
18
+ rspec:
19
+ runs-on: ubuntu-latest
20
+ strategy:
21
+ matrix:
22
+ ruby-version: ['4.0', '3.4', '3.3', '3.2']
23
+ steps:
24
+ - uses: actions/checkout@v6
25
+ - uses: ruby/setup-ruby@v1
26
+ with:
27
+ ruby-version: ${{ matrix.ruby-version }}
28
+ bundler-cache: true
29
+ - run: bundle exec rspec
data/.gitignore CHANGED
@@ -1,2 +1,3 @@
1
1
  Gemfile.lock
2
- .ruby-version
2
+ coverage/
3
+ *.gem
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/**/*