mutils 1.3.4 → 1.3.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/FUNDING.yml +1 -0
- data/.github/workflows/ci.yml +3 -3
- data/.github/workflows/codeql.yml +4 -4
- data/.github/workflows/release.yml +2 -2
- data/CHANGELOG.md +25 -0
- data/Gemfile.lock +37 -28
- data/Version +1 -1
- data/lib/mutils/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: 1f4f22ec41acc086cbafa8faf65e178225d09ea7db26063cf79b573e73414dcf
|
|
4
|
+
data.tar.gz: cf6d77090e3bcf778256c06ff4e420d7fd8d80e3c53c3f2452bf46af2cb980d6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: '099ca4359d53e79a80b28f9fe46213d21900719e177e415c0bd22ff41c01f78014ae15e1cf7e54d0202184e193d4a814c8bdf68a28de66391b0c831e4fbac1c1'
|
|
7
|
+
data.tar.gz: a74375db4eba7aedc14f598faebf8dfd6e0851a91218a96cbb7f88373924d6409037617ac7a10e82102f9eb31e944b0e35e02424e1261fa4ad0057acac61315c
|
data/.github/FUNDING.yml
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
github: [Code-Vedas]
|
data/.github/workflows/ci.yml
CHANGED
|
@@ -9,7 +9,7 @@ jobs:
|
|
|
9
9
|
runs-on: ubuntu-latest
|
|
10
10
|
steps:
|
|
11
11
|
- name: Checkout code
|
|
12
|
-
uses: actions/checkout@
|
|
12
|
+
uses: actions/checkout@v6
|
|
13
13
|
|
|
14
14
|
- name: Set up Ruby
|
|
15
15
|
uses: ruby/setup-ruby@v1
|
|
@@ -26,7 +26,7 @@ jobs:
|
|
|
26
26
|
run: sudo apt-get update && sudo apt-get install --no-install-recommends -y build-essential git libyaml-dev pkg-config
|
|
27
27
|
|
|
28
28
|
- name: Checkout code
|
|
29
|
-
uses: actions/checkout@
|
|
29
|
+
uses: actions/checkout@v6
|
|
30
30
|
|
|
31
31
|
- name: Set up Ruby
|
|
32
32
|
uses: ruby/setup-ruby@v1
|
|
@@ -38,7 +38,7 @@ jobs:
|
|
|
38
38
|
run: bin/rspec --format documentation --color --profile
|
|
39
39
|
|
|
40
40
|
- name: Upload simplecov report
|
|
41
|
-
uses: actions/upload-artifact@
|
|
41
|
+
uses: actions/upload-artifact@v6
|
|
42
42
|
with:
|
|
43
43
|
name: simplecov-report
|
|
44
44
|
path: ${{ github.workspace }}/coverage
|
|
@@ -29,11 +29,11 @@ jobs:
|
|
|
29
29
|
|
|
30
30
|
steps:
|
|
31
31
|
- name: Checkout repository
|
|
32
|
-
uses: actions/checkout@
|
|
32
|
+
uses: actions/checkout@v6
|
|
33
33
|
|
|
34
34
|
# Initializes the CodeQL tools for scanning.
|
|
35
35
|
- name: Initialize CodeQL
|
|
36
|
-
uses: github/codeql-action/init@
|
|
36
|
+
uses: github/codeql-action/init@v4
|
|
37
37
|
with:
|
|
38
38
|
languages: ${{ matrix.language }}
|
|
39
39
|
# If you wish to specify custom queries, you can do so here or in a config file.
|
|
@@ -46,7 +46,7 @@ jobs:
|
|
|
46
46
|
# Autobuild attempts to build any compiled languages (C/C++, C#, Go, or Java).
|
|
47
47
|
# If this step fails, then you should remove it and run the build manually (see below)
|
|
48
48
|
- name: Autobuild
|
|
49
|
-
uses: github/codeql-action/autobuild@
|
|
49
|
+
uses: github/codeql-action/autobuild@v4
|
|
50
50
|
|
|
51
51
|
# ℹ️ Command-line programs to run using the OS shell.
|
|
52
52
|
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
|
|
@@ -59,6 +59,6 @@ jobs:
|
|
|
59
59
|
# ./location_of_script_within_repo/buildscript.sh
|
|
60
60
|
|
|
61
61
|
- name: Perform CodeQL Analysis
|
|
62
|
-
uses: github/codeql-action/analyze@
|
|
62
|
+
uses: github/codeql-action/analyze@v4
|
|
63
63
|
with:
|
|
64
64
|
category: "/language:${{matrix.language}}"
|
|
@@ -11,7 +11,7 @@ jobs:
|
|
|
11
11
|
runs-on: ubuntu-latest
|
|
12
12
|
steps:
|
|
13
13
|
- name: Checkout
|
|
14
|
-
uses: actions/checkout@
|
|
14
|
+
uses: actions/checkout@v6
|
|
15
15
|
- name: Set up Ruby
|
|
16
16
|
uses: ruby/setup-ruby@v1
|
|
17
17
|
with:
|
|
@@ -27,7 +27,7 @@ jobs:
|
|
|
27
27
|
id-token: write
|
|
28
28
|
environment: release
|
|
29
29
|
steps:
|
|
30
|
-
- uses: actions/checkout@
|
|
30
|
+
- uses: actions/checkout@v6
|
|
31
31
|
with:
|
|
32
32
|
persist-credentials: false
|
|
33
33
|
- name: Set up Ruby
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,28 @@
|
|
|
1
|
+
## [1.3.5](https://github.com/Code-Vedas/mutils/compare/v1.3.4...v1.3.5) (2026-02-14)
|
|
2
|
+
|
|
3
|
+
## 🧰 Maintenance
|
|
4
|
+
|
|
5
|
+
- build: bump json from 2.16.0 to 2.18.0 @[dependabot[bot]](https://github.com/apps/dependabot) (#369)
|
|
6
|
+
- build: bump rubocop from 1.81.7 to 1.82.0 @[dependabot[bot]](https://github.com/apps/dependabot) (#371)
|
|
7
|
+
- build: bump actions/upload-artifact from 5 to 6 @[dependabot[bot]](https://github.com/apps/dependabot) (#370)
|
|
8
|
+
- build: bump actions/checkout from 5 to 6 @[dependabot[bot]](https://github.com/apps/dependabot) (#366)
|
|
9
|
+
- build: bump rubocop-rspec from 3.7.0 to 3.8.0 @[dependabot[bot]](https://github.com/apps/dependabot) (#365)
|
|
10
|
+
- build: bump json from 2.15.2 to 2.16.0 @[dependabot[bot]](https://github.com/apps/dependabot) (#364)
|
|
11
|
+
- build: bump rubocop from 1.81.6 to 1.81.7 @[dependabot[bot]](https://github.com/apps/dependabot) (#363)
|
|
12
|
+
- build: bump rake from 13.3.0 to 13.3.1 @[dependabot[bot]](https://github.com/apps/dependabot) (#362)
|
|
13
|
+
- build: bump actions/upload-artifact from 4 to 5 @[dependabot[bot]](https://github.com/apps/dependabot) (#361)
|
|
14
|
+
- build: bump json from 2.15.1 to 2.15.2 @[dependabot[bot]](https://github.com/apps/dependabot) (#360)
|
|
15
|
+
- build: bump rubocop from 1.81.1 to 1.81.6 @[dependabot[bot]](https://github.com/apps/dependabot) (#358)
|
|
16
|
+
- build: bump rspec from 3.13.1 to 3.13.2 @[dependabot[bot]](https://github.com/apps/dependabot) (#359)
|
|
17
|
+
- build: bump benchmark from 0.4.1 to 0.5.0 @[dependabot[bot]](https://github.com/apps/dependabot) (#357)
|
|
18
|
+
- build: bump github/codeql-action from 3 to 4 @[dependabot[bot]](https://github.com/apps/dependabot) (#356)
|
|
19
|
+
- build: bump json from 2.15.0 to 2.15.1 @[dependabot[bot]](https://github.com/apps/dependabot) (#355)
|
|
20
|
+
- build: bump rubocop from 1.80.2 to 1.81.1 @[dependabot[bot]](https://github.com/apps/dependabot) (#354)
|
|
21
|
+
- build: bump json from 2.14.1 to 2.15.0 @[dependabot[bot]](https://github.com/apps/dependabot) (#352)
|
|
22
|
+
- build: bump json from 2.13.2 to 2.14.1 @[dependabot[bot]](https://github.com/apps/dependabot) (#351)
|
|
23
|
+
- build: bump rubocop from 1.79.2 to 1.80.2 @[dependabot[bot]](https://github.com/apps/dependabot) (#350)
|
|
24
|
+
- build: bump rubocop-rspec from 3.6.0 to 3.7.0 @[dependabot[bot]](https://github.com/apps/dependabot) (#349)
|
|
25
|
+
|
|
1
26
|
## [1.3.4](https://github.com/Code-Vedas/mutils/compare/v1.3.3...v1.3.4) (2025-08-17)
|
|
2
27
|
|
|
3
28
|
## 🧰 Maintenance
|
data/Gemfile.lock
CHANGED
|
@@ -7,19 +7,19 @@ GIT
|
|
|
7
7
|
PATH
|
|
8
8
|
remote: .
|
|
9
9
|
specs:
|
|
10
|
-
mutils (1.3.
|
|
10
|
+
mutils (1.3.5)
|
|
11
11
|
dry-inflector
|
|
12
12
|
|
|
13
13
|
GEM
|
|
14
14
|
remote: https://rubygems.org/
|
|
15
15
|
specs:
|
|
16
16
|
ast (2.4.3)
|
|
17
|
-
benchmark (0.
|
|
17
|
+
benchmark (0.5.0)
|
|
18
18
|
benchmark-malloc (0.2.0)
|
|
19
19
|
benchmark-perf (0.6.0)
|
|
20
20
|
benchmark-trend (0.4.0)
|
|
21
|
-
bigdecimal (
|
|
22
|
-
bigdecimal (
|
|
21
|
+
bigdecimal (4.0.1)
|
|
22
|
+
bigdecimal (4.0.1-java)
|
|
23
23
|
coveralls (0.8.23)
|
|
24
24
|
json (>= 1.8, < 3)
|
|
25
25
|
simplecov (~> 0.16.1)
|
|
@@ -28,22 +28,29 @@ GEM
|
|
|
28
28
|
tins (~> 1.6)
|
|
29
29
|
diff-lcs (1.6.2)
|
|
30
30
|
docile (1.4.1)
|
|
31
|
-
dry-inflector (1.
|
|
32
|
-
|
|
33
|
-
|
|
31
|
+
dry-inflector (1.3.1)
|
|
32
|
+
io-console (0.8.2)
|
|
33
|
+
io-console (0.8.2-java)
|
|
34
|
+
json (2.18.1)
|
|
35
|
+
json (2.18.1-java)
|
|
34
36
|
language_server-protocol (3.17.0.5)
|
|
35
37
|
lint_roller (1.1.0)
|
|
38
|
+
mize (0.6.1)
|
|
36
39
|
parallel (1.27.0)
|
|
37
|
-
parser (3.3.
|
|
40
|
+
parser (3.3.10.1)
|
|
38
41
|
ast (~> 2.4.1)
|
|
39
42
|
racc
|
|
40
|
-
prism (1.
|
|
43
|
+
prism (1.9.0)
|
|
41
44
|
racc (1.8.1)
|
|
42
45
|
racc (1.8.1-java)
|
|
43
46
|
rainbow (3.1.1)
|
|
44
|
-
rake (13.3.
|
|
45
|
-
|
|
46
|
-
|
|
47
|
+
rake (13.3.1)
|
|
48
|
+
readline (0.0.4)
|
|
49
|
+
reline
|
|
50
|
+
regexp_parser (2.11.3)
|
|
51
|
+
reline (0.6.3)
|
|
52
|
+
io-console (~> 0.5)
|
|
53
|
+
rspec (3.13.2)
|
|
47
54
|
rspec-core (~> 3.13.0)
|
|
48
55
|
rspec-expectations (~> 3.13.0)
|
|
49
56
|
rspec-mocks (~> 3.13.0)
|
|
@@ -52,17 +59,17 @@ GEM
|
|
|
52
59
|
benchmark-perf (~> 0.6)
|
|
53
60
|
benchmark-trend (~> 0.4)
|
|
54
61
|
rspec (>= 3.0)
|
|
55
|
-
rspec-core (3.13.
|
|
62
|
+
rspec-core (3.13.6)
|
|
56
63
|
rspec-support (~> 3.13.0)
|
|
57
64
|
rspec-expectations (3.13.5)
|
|
58
65
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
59
66
|
rspec-support (~> 3.13.0)
|
|
60
67
|
rspec-json_expectations (2.2.0)
|
|
61
|
-
rspec-mocks (3.13.
|
|
68
|
+
rspec-mocks (3.13.7)
|
|
62
69
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
63
70
|
rspec-support (~> 3.13.0)
|
|
64
|
-
rspec-support (3.13.
|
|
65
|
-
rubocop (1.
|
|
71
|
+
rspec-support (3.13.7)
|
|
72
|
+
rubocop (1.84.2)
|
|
66
73
|
json (~> 2.3)
|
|
67
74
|
language_server-protocol (~> 3.17.0.2)
|
|
68
75
|
lint_roller (~> 1.1.0)
|
|
@@ -70,18 +77,18 @@ GEM
|
|
|
70
77
|
parser (>= 3.3.0.2)
|
|
71
78
|
rainbow (>= 2.2.2, < 4.0)
|
|
72
79
|
regexp_parser (>= 2.9.3, < 3.0)
|
|
73
|
-
rubocop-ast (>= 1.
|
|
80
|
+
rubocop-ast (>= 1.49.0, < 2.0)
|
|
74
81
|
ruby-progressbar (~> 1.7)
|
|
75
82
|
unicode-display_width (>= 2.4.0, < 4.0)
|
|
76
|
-
rubocop-ast (1.
|
|
83
|
+
rubocop-ast (1.49.0)
|
|
77
84
|
parser (>= 3.3.7.2)
|
|
78
|
-
prism (~> 1.
|
|
85
|
+
prism (~> 1.7)
|
|
79
86
|
rubocop-rake (0.7.1)
|
|
80
87
|
lint_roller (~> 1.1)
|
|
81
88
|
rubocop (>= 1.72.1)
|
|
82
|
-
rubocop-rspec (3.
|
|
89
|
+
rubocop-rspec (3.9.0)
|
|
83
90
|
lint_roller (~> 1.1)
|
|
84
|
-
rubocop (~> 1.
|
|
91
|
+
rubocop (~> 1.81)
|
|
85
92
|
ruby-progressbar (1.13.0)
|
|
86
93
|
simplecov (0.16.1)
|
|
87
94
|
docile (~> 1.1)
|
|
@@ -89,15 +96,17 @@ GEM
|
|
|
89
96
|
simplecov-html (~> 0.10.0)
|
|
90
97
|
simplecov-html (0.10.2)
|
|
91
98
|
sync (0.5.0)
|
|
92
|
-
term-ansicolor (1.11.
|
|
93
|
-
tins (~> 1
|
|
94
|
-
thor (1.
|
|
95
|
-
tins (1.
|
|
99
|
+
term-ansicolor (1.11.3)
|
|
100
|
+
tins (~> 1)
|
|
101
|
+
thor (1.5.0)
|
|
102
|
+
tins (1.51.1)
|
|
96
103
|
bigdecimal
|
|
104
|
+
mize (~> 0.6)
|
|
105
|
+
readline
|
|
97
106
|
sync
|
|
98
|
-
unicode-display_width (3.
|
|
99
|
-
unicode-emoji (~> 4.
|
|
100
|
-
unicode-emoji (4.0
|
|
107
|
+
unicode-display_width (3.2.0)
|
|
108
|
+
unicode-emoji (~> 4.1)
|
|
109
|
+
unicode-emoji (4.2.0)
|
|
101
110
|
|
|
102
111
|
PLATFORMS
|
|
103
112
|
java
|
data/Version
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
v1.3.
|
|
1
|
+
v1.3.5
|
data/lib/mutils/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: mutils
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.3.
|
|
4
|
+
version: 1.3.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Nitesh Purohit
|
|
@@ -31,6 +31,7 @@ extensions: []
|
|
|
31
31
|
extra_rdoc_files: []
|
|
32
32
|
files:
|
|
33
33
|
- ".codeclimate.yml"
|
|
34
|
+
- ".github/FUNDING.yml"
|
|
34
35
|
- ".github/ISSUE_TEMPLATE/bug_report.md"
|
|
35
36
|
- ".github/ISSUE_TEMPLATE/documentation_issue.md"
|
|
36
37
|
- ".github/ISSUE_TEMPLATE/feature_request.md"
|
|
@@ -103,7 +104,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
103
104
|
- !ruby/object:Gem::Version
|
|
104
105
|
version: '0'
|
|
105
106
|
requirements: []
|
|
106
|
-
rubygems_version:
|
|
107
|
+
rubygems_version: 4.0.3
|
|
107
108
|
specification_version: 4
|
|
108
109
|
summary: mutils Utilities for rails app
|
|
109
110
|
test_files: []
|