invoca-utils 0.5.0 → 0.5.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/pipeline.yml +31 -11
- data/.gitignore +27 -14
- data/CHANGELOG.md +6 -1
- data/Gemfile.lock +1 -1
- data/lib/invoca/utils/version.rb +1 -1
- metadata +3 -6
- data/gemfiles/activesupport_5.gemfile.lock +0 -58
- data/gemfiles/activesupport_6.gemfile.lock +0 -59
- data/gemfiles/activesupport_7.gemfile.lock +0 -57
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c8684fc70ce068552001b1cd99cf11a8f60882e23d46b9a56f94276e5c5b6403
|
4
|
+
data.tar.gz: c429285201930b90be6ea32d043f9625fcd22b493b6c4871ea912d55800958d2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a8c825cfa1b59d065cd8ea81a56cbe1e1d5c1acd277b2d9d05b452392b027de3a07acd6537aef12732fe70b7994b3aa2a0b74c03355c053b3c4d0db6552ccf43
|
7
|
+
data.tar.gz: e641a1ef06cd907e48d5b6addec2bcb8ae27b125528ec645bd2366153938245c0a3de6635241aebe416a86a196509337c6ad9a88ee3685d97d84ceb60e11f3e1
|
@@ -1,20 +1,40 @@
|
|
1
1
|
---
|
2
2
|
name: Pipeline
|
3
|
+
|
3
4
|
on: [push]
|
5
|
+
|
4
6
|
jobs:
|
5
7
|
tests:
|
6
|
-
|
7
|
-
|
8
|
+
runs-on: ubuntu-22.04
|
9
|
+
|
8
10
|
strategy:
|
9
11
|
fail-fast: false
|
10
12
|
matrix:
|
11
|
-
ruby: [2.5, 2.6, 2.7, '3.0', 3.1]
|
13
|
+
ruby: [2.5, 2.6, 2.7, '3.0', 3.1, 3.2]
|
14
|
+
gemfile:
|
15
|
+
- Gemfile
|
16
|
+
- gemfiles/activesupport_5.gemfile
|
17
|
+
- gemfiles/activesupport_6.gemfile
|
18
|
+
- gemfiles/activesupport_7.gemfile
|
19
|
+
exclude:
|
20
|
+
- ruby: 2.5
|
21
|
+
gemfile: gemfiles/activesupport_7.gemfile
|
22
|
+
- ruby: 2.6
|
23
|
+
gemfile: gemfiles/activesupport_7.gemfile
|
24
|
+
|
25
|
+
env:
|
26
|
+
BUNDLE_GEMFILE: ${{ matrix.gemfile }}
|
27
|
+
|
28
|
+
name: Unit Tests (${{ matrix.ruby }} - ${{ matrix.gemfile }})
|
29
|
+
|
12
30
|
steps:
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
31
|
+
- name: Check out
|
32
|
+
uses: actions/checkout@v2
|
33
|
+
- name: Set up Ruby ${{ matrix.ruby }}
|
34
|
+
uses: ruby/setup-ruby@v1
|
35
|
+
with:
|
36
|
+
ruby-version: ${{ matrix.ruby }}
|
37
|
+
bundler: 2.2.29
|
38
|
+
bundler-cache: true
|
39
|
+
- name: Run Tests
|
40
|
+
run: bundle exec rspec
|
data/.gitignore
CHANGED
@@ -1,24 +1,37 @@
|
|
1
|
+
# OS artifacts
|
1
2
|
.DS_Store
|
2
|
-
|
3
|
-
|
4
|
-
.
|
5
|
-
|
3
|
+
|
4
|
+
# IDEs
|
5
|
+
.idea/
|
6
|
+
|
7
|
+
# Documentation artifacts
|
6
8
|
.yardoc
|
7
|
-
InstalledFiles
|
8
9
|
_yardoc
|
9
|
-
coverage
|
10
10
|
doc/
|
11
|
-
lib/bundler/man
|
12
|
-
pkg
|
13
|
-
pkg/
|
14
11
|
rdoc
|
12
|
+
|
13
|
+
# Rubocop
|
14
|
+
.rubocop-http*
|
15
|
+
|
16
|
+
# test artifacts
|
15
17
|
spec/reports
|
18
|
+
coverage
|
16
19
|
|
17
|
-
|
20
|
+
# Appraisal
|
21
|
+
gemfiles/*.lock
|
22
|
+
|
23
|
+
# gem building artifacts
|
24
|
+
*.a
|
18
25
|
*.bundle
|
19
|
-
*.
|
26
|
+
*.gem
|
20
27
|
*.o
|
21
|
-
*.
|
28
|
+
*.rbc
|
29
|
+
*.so
|
30
|
+
.bundle
|
31
|
+
.config
|
32
|
+
InstalledFiles
|
33
|
+
checksums
|
34
|
+
lib/bundler/man
|
22
35
|
mkmf.log
|
23
|
-
|
24
|
-
|
36
|
+
pkg
|
37
|
+
tmp
|
data/CHANGELOG.md
CHANGED
@@ -2,8 +2,12 @@
|
|
2
2
|
|
3
3
|
Inspired by [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
4
4
|
|
5
|
-
Note
|
5
|
+
**Note:** This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
6
6
|
|
7
|
+
## [0.5.1] - 2023-02-17
|
8
|
+
### Added
|
9
|
+
- Integrated Appraisal into github actions for testing across multiple versions of ActiveSupport
|
10
|
+
-
|
7
11
|
## [0.5.0] - 2023-02-10
|
8
12
|
### Added
|
9
13
|
- Relaxed version requirement for ActiveSupport
|
@@ -31,6 +35,7 @@ Note: This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0
|
|
31
35
|
- Enumerable::build_hash method ported from HoboSupport
|
32
36
|
- Enumerable::* operator ported from HoboSupport
|
33
37
|
|
38
|
+
[0.5.1]: https://github.com/Invoca/invoca-utils/compare/v0.5.0...v0.5.1
|
34
39
|
[0.5.0]: https://github.com/Invoca/invoca-utils/compare/v0.4.1...v0.5.0
|
35
40
|
[0.4.1]: https://github.com/Invoca/invoca-utils/compare/v0.4.0...v0.4.1
|
36
41
|
[0.4.0]: https://github.com/Invoca/invoca-utils/compare/v0.3.0...v0.4.0
|
data/Gemfile.lock
CHANGED
data/lib/invoca/utils/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: invoca-utils
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.5.
|
4
|
+
version: 0.5.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Invoca development
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-02-
|
11
|
+
date: 2023-02-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|
@@ -45,11 +45,8 @@ files:
|
|
45
45
|
- README.md
|
46
46
|
- Rakefile
|
47
47
|
- gemfiles/activesupport_5.gemfile
|
48
|
-
- gemfiles/activesupport_5.gemfile.lock
|
49
48
|
- gemfiles/activesupport_6.gemfile
|
50
|
-
- gemfiles/activesupport_6.gemfile.lock
|
51
49
|
- gemfiles/activesupport_7.gemfile
|
52
|
-
- gemfiles/activesupport_7.gemfile.lock
|
53
50
|
- invoca-utils.gemspec
|
54
51
|
- lib/invoca/utils.rb
|
55
52
|
- lib/invoca/utils/array.rb
|
@@ -101,7 +98,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
101
98
|
- !ruby/object:Gem::Version
|
102
99
|
version: '0'
|
103
100
|
requirements: []
|
104
|
-
rubygems_version: 3.
|
101
|
+
rubygems_version: 3.4.7
|
105
102
|
signing_key:
|
106
103
|
specification_version: 4
|
107
104
|
summary: A public collection of helpers used in multiple projects
|
@@ -1,58 +0,0 @@
|
|
1
|
-
PATH
|
2
|
-
remote: ..
|
3
|
-
specs:
|
4
|
-
invoca-utils (0.5.0)
|
5
|
-
activesupport (>= 5.0)
|
6
|
-
|
7
|
-
GEM
|
8
|
-
remote: https://rubygems.org/
|
9
|
-
specs:
|
10
|
-
activesupport (5.2.8.1)
|
11
|
-
concurrent-ruby (~> 1.0, >= 1.0.2)
|
12
|
-
i18n (>= 0.7, < 2)
|
13
|
-
minitest (~> 5.1)
|
14
|
-
tzinfo (~> 1.1)
|
15
|
-
appraisal (2.4.1)
|
16
|
-
bundler
|
17
|
-
rake
|
18
|
-
thor (>= 0.14.0)
|
19
|
-
concurrent-ruby (1.2.0)
|
20
|
-
diff-lcs (1.5.0)
|
21
|
-
i18n (1.12.0)
|
22
|
-
concurrent-ruby (~> 1.0)
|
23
|
-
minitest (5.10.3)
|
24
|
-
rake (13.0.6)
|
25
|
-
rspec (3.12.0)
|
26
|
-
rspec-core (~> 3.12.0)
|
27
|
-
rspec-expectations (~> 3.12.0)
|
28
|
-
rspec-mocks (~> 3.12.0)
|
29
|
-
rspec-core (3.12.1)
|
30
|
-
rspec-support (~> 3.12.0)
|
31
|
-
rspec-expectations (3.12.2)
|
32
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
33
|
-
rspec-support (~> 3.12.0)
|
34
|
-
rspec-mocks (3.12.3)
|
35
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
36
|
-
rspec-support (~> 3.12.0)
|
37
|
-
rspec-support (3.12.0)
|
38
|
-
rspec_junit_formatter (0.6.0)
|
39
|
-
rspec-core (>= 2, < 4, != 2.12.0)
|
40
|
-
thor (1.2.1)
|
41
|
-
thread_safe (0.3.6)
|
42
|
-
tzinfo (1.2.11)
|
43
|
-
thread_safe (~> 0.1)
|
44
|
-
|
45
|
-
PLATFORMS
|
46
|
-
arm64-darwin-22
|
47
|
-
|
48
|
-
DEPENDENCIES
|
49
|
-
activesupport (~> 5.2)
|
50
|
-
appraisal (~> 2.4)
|
51
|
-
invoca-utils!
|
52
|
-
minitest (~> 5.10.0)
|
53
|
-
rake (~> 13.0)
|
54
|
-
rspec (~> 3.0)
|
55
|
-
rspec_junit_formatter (~> 0.4)
|
56
|
-
|
57
|
-
BUNDLED WITH
|
58
|
-
2.3.17
|
@@ -1,59 +0,0 @@
|
|
1
|
-
PATH
|
2
|
-
remote: ..
|
3
|
-
specs:
|
4
|
-
invoca-utils (0.5.0)
|
5
|
-
activesupport (>= 5.0)
|
6
|
-
|
7
|
-
GEM
|
8
|
-
remote: https://rubygems.org/
|
9
|
-
specs:
|
10
|
-
activesupport (6.1.7.2)
|
11
|
-
concurrent-ruby (~> 1.0, >= 1.0.2)
|
12
|
-
i18n (>= 1.6, < 2)
|
13
|
-
minitest (>= 5.1)
|
14
|
-
tzinfo (~> 2.0)
|
15
|
-
zeitwerk (~> 2.3)
|
16
|
-
appraisal (2.4.1)
|
17
|
-
bundler
|
18
|
-
rake
|
19
|
-
thor (>= 0.14.0)
|
20
|
-
concurrent-ruby (1.2.0)
|
21
|
-
diff-lcs (1.5.0)
|
22
|
-
i18n (1.12.0)
|
23
|
-
concurrent-ruby (~> 1.0)
|
24
|
-
minitest (5.10.3)
|
25
|
-
rake (13.0.6)
|
26
|
-
rspec (3.12.0)
|
27
|
-
rspec-core (~> 3.12.0)
|
28
|
-
rspec-expectations (~> 3.12.0)
|
29
|
-
rspec-mocks (~> 3.12.0)
|
30
|
-
rspec-core (3.12.1)
|
31
|
-
rspec-support (~> 3.12.0)
|
32
|
-
rspec-expectations (3.12.2)
|
33
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
34
|
-
rspec-support (~> 3.12.0)
|
35
|
-
rspec-mocks (3.12.3)
|
36
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
37
|
-
rspec-support (~> 3.12.0)
|
38
|
-
rspec-support (3.12.0)
|
39
|
-
rspec_junit_formatter (0.6.0)
|
40
|
-
rspec-core (>= 2, < 4, != 2.12.0)
|
41
|
-
thor (1.2.1)
|
42
|
-
tzinfo (2.0.6)
|
43
|
-
concurrent-ruby (~> 1.0)
|
44
|
-
zeitwerk (2.6.6)
|
45
|
-
|
46
|
-
PLATFORMS
|
47
|
-
arm64-darwin-22
|
48
|
-
|
49
|
-
DEPENDENCIES
|
50
|
-
activesupport (~> 6.0)
|
51
|
-
appraisal (~> 2.4)
|
52
|
-
invoca-utils!
|
53
|
-
minitest (~> 5.10.0)
|
54
|
-
rake (~> 13.0)
|
55
|
-
rspec (~> 3.0)
|
56
|
-
rspec_junit_formatter (~> 0.4)
|
57
|
-
|
58
|
-
BUNDLED WITH
|
59
|
-
2.3.17
|
@@ -1,57 +0,0 @@
|
|
1
|
-
PATH
|
2
|
-
remote: ..
|
3
|
-
specs:
|
4
|
-
invoca-utils (0.5.0)
|
5
|
-
activesupport (>= 5.0)
|
6
|
-
|
7
|
-
GEM
|
8
|
-
remote: https://rubygems.org/
|
9
|
-
specs:
|
10
|
-
activesupport (7.0.4.2)
|
11
|
-
concurrent-ruby (~> 1.0, >= 1.0.2)
|
12
|
-
i18n (>= 1.6, < 2)
|
13
|
-
minitest (>= 5.1)
|
14
|
-
tzinfo (~> 2.0)
|
15
|
-
appraisal (2.4.1)
|
16
|
-
bundler
|
17
|
-
rake
|
18
|
-
thor (>= 0.14.0)
|
19
|
-
concurrent-ruby (1.2.0)
|
20
|
-
diff-lcs (1.5.0)
|
21
|
-
i18n (1.12.0)
|
22
|
-
concurrent-ruby (~> 1.0)
|
23
|
-
minitest (5.10.3)
|
24
|
-
rake (13.0.6)
|
25
|
-
rspec (3.12.0)
|
26
|
-
rspec-core (~> 3.12.0)
|
27
|
-
rspec-expectations (~> 3.12.0)
|
28
|
-
rspec-mocks (~> 3.12.0)
|
29
|
-
rspec-core (3.12.1)
|
30
|
-
rspec-support (~> 3.12.0)
|
31
|
-
rspec-expectations (3.12.2)
|
32
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
33
|
-
rspec-support (~> 3.12.0)
|
34
|
-
rspec-mocks (3.12.3)
|
35
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
36
|
-
rspec-support (~> 3.12.0)
|
37
|
-
rspec-support (3.12.0)
|
38
|
-
rspec_junit_formatter (0.6.0)
|
39
|
-
rspec-core (>= 2, < 4, != 2.12.0)
|
40
|
-
thor (1.2.1)
|
41
|
-
tzinfo (2.0.6)
|
42
|
-
concurrent-ruby (~> 1.0)
|
43
|
-
|
44
|
-
PLATFORMS
|
45
|
-
arm64-darwin-22
|
46
|
-
|
47
|
-
DEPENDENCIES
|
48
|
-
activesupport (~> 7.0)
|
49
|
-
appraisal (~> 2.4)
|
50
|
-
invoca-utils!
|
51
|
-
minitest (~> 5.10.0)
|
52
|
-
rake (~> 13.0)
|
53
|
-
rspec (~> 3.0)
|
54
|
-
rspec_junit_formatter (~> 0.4)
|
55
|
-
|
56
|
-
BUNDLED WITH
|
57
|
-
2.3.17
|