injectable 3.0.0 → 3.0.1
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/rspec.yml +11 -11
- data/.github/workflows/rubocop.yml +4 -4
- data/.github/workflows/simpelcov.yml +4 -4
- data/.ruby-version +1 -1
- data/CHANGELOG.md +6 -0
- data/Gemfile.lock +8 -7
- data/lib/injectable/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 940947d2047f9bbd2e2489278efa1920574a8334e07b103edcccb5e90523928c
|
|
4
|
+
data.tar.gz: 0ca3d7cd4a0c25102384833f0f36c06ba832a6a1b06fc457ec9094a34ed263ba
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f3c2869861a8a0034f62330c30f04442633eb9d17b904b597371c907eee63cda4dcb269cbeea4fbd15fc6f409cfb52e92698793e85ff49d45981c19e0fc0ff7d
|
|
7
|
+
data.tar.gz: 7d5be83583cc2cb4a1cc6fd49d9820c3842deaf47d2eb8b4995edefe54b18ae7b189ba556d2d49f3fd8a3cc5e3611636aad24d07e840ec960d03c4b3e2c1150f
|
data/.github/workflows/rspec.yml
CHANGED
|
@@ -2,9 +2,9 @@ name: RSpec
|
|
|
2
2
|
|
|
3
3
|
on:
|
|
4
4
|
push:
|
|
5
|
-
branches: [
|
|
5
|
+
branches: [master]
|
|
6
6
|
pull_request:
|
|
7
|
-
branches: [
|
|
7
|
+
branches: [master]
|
|
8
8
|
|
|
9
9
|
jobs:
|
|
10
10
|
build:
|
|
@@ -12,13 +12,13 @@ jobs:
|
|
|
12
12
|
strategy:
|
|
13
13
|
fail-fast: false
|
|
14
14
|
matrix:
|
|
15
|
-
ruby: ['3.3.11', '3.4.9', '4.0.
|
|
15
|
+
ruby: ['3.3.11', '3.4.9', '4.0.5']
|
|
16
16
|
steps:
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
17
|
+
- uses: actions/checkout@v6.0.2
|
|
18
|
+
- name: Set up Ruby ${{ matrix.ruby }}
|
|
19
|
+
uses: ruby/setup-ruby@v1.310.0
|
|
20
|
+
with:
|
|
21
|
+
ruby-version: ${{ matrix.ruby }}
|
|
22
|
+
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
|
|
23
|
+
- name: Build and test with Rake
|
|
24
|
+
run: bundle exec rake
|
|
@@ -2,9 +2,9 @@ name: rubocop
|
|
|
2
2
|
|
|
3
3
|
on:
|
|
4
4
|
push:
|
|
5
|
-
branches: [
|
|
5
|
+
branches: [master]
|
|
6
6
|
pull_request:
|
|
7
|
-
branches: [
|
|
7
|
+
branches: [master]
|
|
8
8
|
|
|
9
9
|
permissions:
|
|
10
10
|
contents: read
|
|
@@ -15,10 +15,10 @@ jobs:
|
|
|
15
15
|
runs-on: ubuntu-latest
|
|
16
16
|
steps:
|
|
17
17
|
- uses: actions/checkout@v6.0.2
|
|
18
|
-
- uses: ruby/setup-ruby@v1.
|
|
18
|
+
- uses: ruby/setup-ruby@v1.310.0
|
|
19
19
|
with:
|
|
20
20
|
bundler-cache: true
|
|
21
|
-
- uses: reviewdog/action-rubocop@v2
|
|
21
|
+
- uses: reviewdog/action-rubocop@v2.22
|
|
22
22
|
with:
|
|
23
23
|
reporter: github-pr-review # Default is github-pr-check
|
|
24
24
|
skip_install: true
|
|
@@ -2,9 +2,9 @@ name: Simplecov
|
|
|
2
2
|
|
|
3
3
|
on:
|
|
4
4
|
push:
|
|
5
|
-
branches: [
|
|
5
|
+
branches: [master]
|
|
6
6
|
pull_request:
|
|
7
|
-
branches: [
|
|
7
|
+
branches: [master]
|
|
8
8
|
|
|
9
9
|
permissions:
|
|
10
10
|
checks: write
|
|
@@ -14,13 +14,13 @@ jobs:
|
|
|
14
14
|
steps:
|
|
15
15
|
- uses: actions/checkout@v6.0.2
|
|
16
16
|
- name: Set up Ruby
|
|
17
|
-
uses: ruby/setup-ruby@v1.
|
|
17
|
+
uses: ruby/setup-ruby@v1.310.0
|
|
18
18
|
with:
|
|
19
19
|
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
|
|
20
20
|
- name: Build and test with Rake
|
|
21
21
|
run: COVERAGE=true bundle exec rake
|
|
22
22
|
- name: SimpleCov+ Action
|
|
23
|
-
uses: joshmfrankel/simplecov-check-action@1.
|
|
23
|
+
uses: joshmfrankel/simplecov-check-action@1.1.0
|
|
24
24
|
with:
|
|
25
25
|
minimum_suite_coverage: 90
|
|
26
26
|
minimum_file_coverage: 90
|
data/.ruby-version
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
4.0.
|
|
1
|
+
4.0.5
|
data/CHANGELOG.md
CHANGED
data/Gemfile.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
injectable (3.0.
|
|
4
|
+
injectable (3.0.1)
|
|
5
5
|
|
|
6
6
|
GEM
|
|
7
7
|
remote: https://rubygems.org/
|
|
@@ -13,7 +13,7 @@ GEM
|
|
|
13
13
|
diff-lcs (1.6.2)
|
|
14
14
|
docile (1.4.1)
|
|
15
15
|
io-console (0.8.2)
|
|
16
|
-
json (2.19.
|
|
16
|
+
json (2.19.5)
|
|
17
17
|
language_server-protocol (3.17.0.5)
|
|
18
18
|
lint_roller (1.1.0)
|
|
19
19
|
method_source (1.1.0)
|
|
@@ -48,7 +48,7 @@ GEM
|
|
|
48
48
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
49
49
|
rspec-support (~> 3.13.0)
|
|
50
50
|
rspec-support (3.13.7)
|
|
51
|
-
rubocop (1.86.
|
|
51
|
+
rubocop (1.86.2)
|
|
52
52
|
json (~> 2.3)
|
|
53
53
|
language_server-protocol (~> 3.17.0.2)
|
|
54
54
|
lint_roller (~> 1.1.0)
|
|
@@ -95,13 +95,14 @@ DEPENDENCIES
|
|
|
95
95
|
|
|
96
96
|
CHECKSUMS
|
|
97
97
|
ast (2.4.3) sha256=954615157c1d6a382bc27d690d973195e79db7f55e9765ac7c481c60bdb4d383
|
|
98
|
+
bundler (4.0.12) sha256=7f8b757d28dfb636e7b24fba2344ac6dd13b5b24f4b46d62573d483f211825ac
|
|
98
99
|
byebug (13.0.0) sha256=d2263efe751941ca520fa29744b71972d39cbc41839496706f5d9b22e92ae05d
|
|
99
100
|
coderay (1.1.3) sha256=dc530018a4684512f8f38143cd2a096c9f02a1fc2459edcfe534787a7fc77d4b
|
|
100
101
|
diff-lcs (1.6.2) sha256=9ae0d2cba7d4df3075fe8cd8602a8604993efc0dfa934cff568969efb1909962
|
|
101
102
|
docile (1.4.1) sha256=96159be799bfa73cdb721b840e9802126e4e03dfc26863db73647204c727f21e
|
|
102
|
-
injectable (3.0.
|
|
103
|
+
injectable (3.0.1)
|
|
103
104
|
io-console (0.8.2) sha256=d6e3ae7a7cc7574f4b8893b4fca2162e57a825b223a177b7afa236c5ef9814cc
|
|
104
|
-
json (2.19.
|
|
105
|
+
json (2.19.5) sha256=218a18553e4801d579ca7e0f5bc72bafd776d7397238a1fb4e74db5b0a812c59
|
|
105
106
|
language_server-protocol (3.17.0.5) sha256=fd1e39a51a28bf3eec959379985a72e296e9f9acfce46f6a79d31ca8760803cc
|
|
106
107
|
lint_roller (1.1.0) sha256=2c0c845b632a7d172cb849cc90c1bce937a28c5c8ccccb50dfd46a485003cc87
|
|
107
108
|
method_source (1.1.0) sha256=181301c9c45b731b4769bc81e8860e72f9161ad7d66dd99103c9ab84f560f5c5
|
|
@@ -120,7 +121,7 @@ CHECKSUMS
|
|
|
120
121
|
rspec-expectations (3.13.5) sha256=33a4d3a1d95060aea4c94e9f237030a8f9eae5615e9bd85718fe3a09e4b58836
|
|
121
122
|
rspec-mocks (3.13.8) sha256=086ad3d3d17533f4237643de0b5c42f04b66348c28bf6b9c2d3f4a3b01af1d47
|
|
122
123
|
rspec-support (3.13.7) sha256=0640e5570872aafefd79867901deeeeb40b0c9875a36b983d85f54fb7381c47c
|
|
123
|
-
rubocop (1.86.
|
|
124
|
+
rubocop (1.86.2) sha256=bb2e97f635eda42c448f2588f4a6ff78f221b8bdfdf65b1e9b07fbd57521b45d
|
|
124
125
|
rubocop-ast (1.49.1) sha256=4412f3ee70f6fe4546cc489548e0f6fcf76cafcfa80fa03af67098ffed755035
|
|
125
126
|
rubocop-rspec (3.9.0) sha256=8fa70a3619408237d789aeecfb9beef40576acc855173e60939d63332fdb55e2
|
|
126
127
|
ruby-progressbar (1.13.0) sha256=80fc9c47a9b640d6834e0dc7b3c94c9df37f08cb072b7761e4a71e22cff29b33
|
|
@@ -132,4 +133,4 @@ CHECKSUMS
|
|
|
132
133
|
unicode-emoji (4.2.0) sha256=519e69150f75652e40bf736106cfbc8f0f73aa3fb6a65afe62fefa7f80b0f80f
|
|
133
134
|
|
|
134
135
|
BUNDLED WITH
|
|
135
|
-
4.0.
|
|
136
|
+
4.0.12
|
data/lib/injectable/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: injectable
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.0.
|
|
4
|
+
version: 3.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Papipo
|
|
@@ -66,7 +66,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
66
66
|
- !ruby/object:Gem::Version
|
|
67
67
|
version: '0'
|
|
68
68
|
requirements: []
|
|
69
|
-
rubygems_version: 4.0.
|
|
69
|
+
rubygems_version: 4.0.12
|
|
70
70
|
specification_version: 4
|
|
71
71
|
summary: A library to help you build nice service objects with dependency injection.
|
|
72
72
|
test_files: []
|