immutable_struct_ex 1.0.4 → 1.0.5
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 +4 -4
- data/.github/workflows/ruby.yml +40 -0
- data/CHANGELOG.md +10 -0
- data/Gemfile.lock +8 -8
- data/lib/immutable_struct_ex/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9a75bea9bc8ad49237679ba59213e8dbfee3a891f64e16b1f228b0ae4f5eca28
|
4
|
+
data.tar.gz: 80cffb010ce7584e5d4dd8d5de13e0a6decbee9209e0795a5dcdf9417bf4f609
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: da90d8274bac85e9c93eeb8bbaa4be7a8120f0babdddc5fda207899f2b2d611bed1211b525cea4acd2eafaec857c54f1fe5b2f7959a33175fb8b59fc652b8258
|
7
|
+
data.tar.gz: '08267d76f5c483187766db3a01a4488ac5946fb6d250867ad088456f93c8415442001fff38f0c57f22a335845956841313f7a70ca64e9b3a415d8e7494323bbc'
|
@@ -0,0 +1,40 @@
|
|
1
|
+
# This workflow uses actions that are not certified by GitHub.
|
2
|
+
# They are provided by a third-party and are governed by
|
3
|
+
# separate terms of service, privacy policy, and support
|
4
|
+
# documentation.
|
5
|
+
# This workflow will download a prebuilt Ruby version, install dependencies and run tests with Rake
|
6
|
+
# For more information see: https://github.com/marketplace/actions/setup-ruby-jruby-and-truffleruby
|
7
|
+
|
8
|
+
name: Ruby
|
9
|
+
|
10
|
+
on:
|
11
|
+
push:
|
12
|
+
branches: [ "main" ]
|
13
|
+
pull_request:
|
14
|
+
branches: [ "main" ]
|
15
|
+
|
16
|
+
permissions:
|
17
|
+
contents: read
|
18
|
+
|
19
|
+
jobs:
|
20
|
+
test:
|
21
|
+
|
22
|
+
runs-on: ubuntu-latest
|
23
|
+
strategy:
|
24
|
+
matrix:
|
25
|
+
# Use `rbenv install -l` and only use the latest stable
|
26
|
+
# version of ruby.
|
27
|
+
ruby-version: ["3.0.1", "3.0.6", "3.1.4", "3.2.2"]
|
28
|
+
|
29
|
+
steps:
|
30
|
+
- uses: actions/checkout@v3
|
31
|
+
- name: Set up Ruby
|
32
|
+
# To automatically get bug fixes and new Ruby versions for ruby/setup-ruby,
|
33
|
+
# change this to (see https://github.com/ruby/setup-ruby#versioning):
|
34
|
+
# uses: ruby/setup-ruby@v1
|
35
|
+
uses: ruby/setup-ruby@55283cc23133118229fd3f97f9336ee23a179fcf # v1.146.0
|
36
|
+
with:
|
37
|
+
ruby-version: ${{ matrix.ruby-version }}
|
38
|
+
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
|
39
|
+
- name: Run tests
|
40
|
+
run: bundle exec rake
|
data/CHANGELOG.md
CHANGED
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
immutable_struct_ex (1.0.
|
4
|
+
immutable_struct_ex (1.0.5)
|
5
5
|
|
6
6
|
GEM
|
7
7
|
remote: https://rubygems.org/
|
@@ -11,11 +11,11 @@ GEM
|
|
11
11
|
coderay (1.1.3)
|
12
12
|
diff-lcs (1.5.0)
|
13
13
|
docile (1.4.0)
|
14
|
-
json (2.7.
|
14
|
+
json (2.7.1)
|
15
15
|
kwalify (0.7.2)
|
16
16
|
language_server-protocol (3.17.0.3)
|
17
17
|
method_source (1.0.0)
|
18
|
-
parallel (1.
|
18
|
+
parallel (1.24.0)
|
19
19
|
parser (3.2.2.4)
|
20
20
|
ast (~> 2.4.1)
|
21
21
|
racc
|
@@ -32,7 +32,7 @@ GEM
|
|
32
32
|
kwalify (~> 0.7.0)
|
33
33
|
parser (~> 3.2.0)
|
34
34
|
rainbow (>= 2.0, < 4.0)
|
35
|
-
regexp_parser (2.8.
|
35
|
+
regexp_parser (2.8.3)
|
36
36
|
rexml (3.2.6)
|
37
37
|
rspec (3.12.0)
|
38
38
|
rspec-core (~> 3.12.0)
|
@@ -47,7 +47,7 @@ GEM
|
|
47
47
|
diff-lcs (>= 1.2.0, < 2.0)
|
48
48
|
rspec-support (~> 3.12.0)
|
49
49
|
rspec-support (3.12.1)
|
50
|
-
rubocop (1.
|
50
|
+
rubocop (1.59.0)
|
51
51
|
json (~> 2.3)
|
52
52
|
language_server-protocol (>= 3.17.0)
|
53
53
|
parallel (~> 1.10)
|
@@ -64,9 +64,9 @@ GEM
|
|
64
64
|
rubocop (~> 1.41)
|
65
65
|
rubocop-factory_bot (2.24.0)
|
66
66
|
rubocop (~> 1.33)
|
67
|
-
rubocop-performance (1.
|
68
|
-
rubocop (>= 1.
|
69
|
-
rubocop-ast (>=
|
67
|
+
rubocop-performance (1.20.1)
|
68
|
+
rubocop (>= 1.48.1, < 2.0)
|
69
|
+
rubocop-ast (>= 1.30.0, < 2.0)
|
70
70
|
rubocop-rspec (2.25.0)
|
71
71
|
rubocop (~> 1.40)
|
72
72
|
rubocop-capybara (~> 2.17)
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: immutable_struct_ex
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Gene M. Angelo, Jr.
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-12-
|
11
|
+
date: 2023-12-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -174,6 +174,7 @@ extensions: []
|
|
174
174
|
extra_rdoc_files: []
|
175
175
|
files:
|
176
176
|
- ".github/dependabot.yml"
|
177
|
+
- ".github/workflows/ruby.yml"
|
177
178
|
- ".gitignore"
|
178
179
|
- ".reek.yml"
|
179
180
|
- ".rspec"
|