gemika 1.0.0 → 2.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 +4 -4
- data/.github/workflows/test.yml +14 -16
- data/.ruby-version +1 -1
- data/CHANGELOG.md +8 -0
- data/Gemfile.7.0.pg.lock +1 -1
- data/{Gemfile.5.2.mysql2 → Gemfile.8.0.mysql2} +6 -3
- data/Gemfile.8.0.mysql2.lock +92 -0
- data/Gemfile.8.0.pg +3 -0
- data/Gemfile.8.0.pg.lock +6 -2
- data/{Gemfile.5.2.sqlite3 → Gemfile.8.0.sqlite3} +6 -3
- data/Gemfile.8.0.sqlite3.lock +93 -0
- data/{Gemfile.5.2.pg → Gemfile.8.1.pg} +7 -4
- data/Gemfile.8.1.pg.lock +91 -0
- data/README.md +3 -3
- data/gemika.gemspec +2 -0
- data/lib/gemika/env.rb +3 -25
- data/lib/gemika/matrix.rb +1 -1
- data/lib/gemika/version.rb +1 -1
- metadata +10 -12
- data/Gemfile.5.2.mysql2.lock +0 -67
- data/Gemfile.5.2.pg.lock +0 -67
- data/Gemfile.5.2.sqlite3.lock +0 -67
- data/Gemfile.6.1.pg +0 -22
- data/Gemfile.6.1.pg.lock +0 -72
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 72540c669831cf50fb5fde99294370c80695928f0eb35663c4b31418b6f32b3a
|
|
4
|
+
data.tar.gz: 714cdc4a12da841b309a42dc9ec93a5d6a9b8d121822c738d03484d71042a223
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f6f533b0f74264167ea0d36d56746ba2bf2e5543f733da99b911740d48c5775997bf0e215db768b6f8e397d5103b904ef6f35a572ddb860bf61744b49561e194
|
|
7
|
+
data.tar.gz: 0a23037d73bd6424a552567ba353c172db06d545ad75d7bf3514f94e7f5baaf3f14b5b2effe67ce7a37df3c5a25b128bbe1bd0221795c63390c7b7d668aeb15d
|
data/.github/workflows/test.yml
CHANGED
|
@@ -7,7 +7,9 @@ on:
|
|
|
7
7
|
pull_request:
|
|
8
8
|
branches:
|
|
9
9
|
- master
|
|
10
|
+
|
|
10
11
|
jobs:
|
|
12
|
+
|
|
11
13
|
test_mysql:
|
|
12
14
|
runs-on: ubuntu-24.04
|
|
13
15
|
services:
|
|
@@ -23,8 +25,8 @@ jobs:
|
|
|
23
25
|
fail-fast: false
|
|
24
26
|
matrix:
|
|
25
27
|
include:
|
|
26
|
-
- ruby:
|
|
27
|
-
gemfile: Gemfile.
|
|
28
|
+
- ruby: 4.0.1
|
|
29
|
+
gemfile: Gemfile.8.0.mysql2
|
|
28
30
|
env:
|
|
29
31
|
BUNDLE_GEMFILE: "${{ matrix.gemfile }}"
|
|
30
32
|
steps:
|
|
@@ -42,6 +44,8 @@ jobs:
|
|
|
42
44
|
bundle install --no-deployment
|
|
43
45
|
- name: Run tests
|
|
44
46
|
run: bundle exec rspec
|
|
47
|
+
|
|
48
|
+
|
|
45
49
|
test_pg:
|
|
46
50
|
runs-on: ubuntu-24.04
|
|
47
51
|
services:
|
|
@@ -57,26 +61,18 @@ jobs:
|
|
|
57
61
|
fail-fast: false
|
|
58
62
|
matrix:
|
|
59
63
|
include:
|
|
60
|
-
- ruby: 2.5.3
|
|
61
|
-
gemfile: Gemfile.5.2.pg
|
|
62
|
-
- ruby: 2.6.7
|
|
63
|
-
gemfile: Gemfile.6.1.pg
|
|
64
|
-
- ruby: 2.7.3
|
|
65
|
-
gemfile: Gemfile.6.1.pg
|
|
66
|
-
- ruby: 2.7.3
|
|
67
|
-
gemfile: Gemfile.7.0.pg
|
|
68
|
-
- ruby: 3.2.0
|
|
69
|
-
gemfile: Gemfile.6.1.pg
|
|
70
64
|
- ruby: 3.2.0
|
|
71
65
|
gemfile: Gemfile.7.0.pg
|
|
72
|
-
- ruby: 3.4.1
|
|
73
|
-
gemfile: Gemfile.6.1.pg
|
|
74
66
|
- ruby: 3.4.1
|
|
75
67
|
gemfile: Gemfile.7.0.pg
|
|
76
68
|
- ruby: 3.2.0
|
|
77
69
|
gemfile: Gemfile.8.0.pg
|
|
78
70
|
- ruby: 3.4.1
|
|
79
71
|
gemfile: Gemfile.8.0.pg
|
|
72
|
+
- ruby: 4.0.1
|
|
73
|
+
gemfile: Gemfile.8.0.pg
|
|
74
|
+
- ruby: 4.0.1
|
|
75
|
+
gemfile: Gemfile.8.1.pg
|
|
80
76
|
env:
|
|
81
77
|
BUNDLE_GEMFILE: "${{ matrix.gemfile }}"
|
|
82
78
|
steps:
|
|
@@ -96,14 +92,16 @@ jobs:
|
|
|
96
92
|
bundle install --no-deployment
|
|
97
93
|
- name: Run tests
|
|
98
94
|
run: bundle exec rspec
|
|
95
|
+
|
|
96
|
+
|
|
99
97
|
test_sqlite:
|
|
100
98
|
runs-on: ubuntu-24.04
|
|
101
99
|
strategy:
|
|
102
100
|
fail-fast: false
|
|
103
101
|
matrix:
|
|
104
102
|
include:
|
|
105
|
-
- ruby:
|
|
106
|
-
gemfile: Gemfile.
|
|
103
|
+
- ruby: 4.0.1
|
|
104
|
+
gemfile: Gemfile.8.0.sqlite3
|
|
107
105
|
env:
|
|
108
106
|
BUNDLE_GEMFILE: "${{ matrix.gemfile }}"
|
|
109
107
|
steps:
|
data/.ruby-version
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
4.0.1
|
data/CHANGELOG.md
CHANGED
|
@@ -13,6 +13,14 @@ This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html
|
|
|
13
13
|
|
|
14
14
|
-
|
|
15
15
|
|
|
16
|
+
## 2.0.0 - 2026-02-12
|
|
17
|
+
|
|
18
|
+
### Breaking changes
|
|
19
|
+
|
|
20
|
+
- Introduce `required_ruby_version` in gemspec so people on legacy Ruby versions don't receive future upgrades
|
|
21
|
+
- This is treated as a breaking change, because `gemika` is supposed to work equally across multiple Ruby versions
|
|
22
|
+
- Drop tests and support for Ruby < 3 and Rails < 7
|
|
23
|
+
|
|
16
24
|
## 1.0.0 - 2025-06-16
|
|
17
25
|
|
|
18
26
|
### Breaking changes
|
data/Gemfile.7.0.pg.lock
CHANGED
|
@@ -4,14 +4,17 @@ source 'https://rubygems.org'
|
|
|
4
4
|
ruby '>= 2.2'
|
|
5
5
|
|
|
6
6
|
# Runtime dependencies
|
|
7
|
-
gem 'activerecord', '~>
|
|
7
|
+
gem 'activerecord', '~> 8.0.1'
|
|
8
8
|
gem 'rspec', '~>3.5'
|
|
9
9
|
gem 'mysql2'
|
|
10
10
|
|
|
11
11
|
# Development dependencies
|
|
12
12
|
gem 'rake'
|
|
13
|
-
gem 'database_cleaner'
|
|
14
|
-
gem 'pry'
|
|
13
|
+
gem 'database_cleaner', '~> 2.0.2'
|
|
14
|
+
gem 'pry', '~> 0.14.2'
|
|
15
15
|
|
|
16
16
|
# Gem under test
|
|
17
17
|
gem 'gemika', :path => '.'
|
|
18
|
+
|
|
19
|
+
# Previous default gems
|
|
20
|
+
gem "ostruct"
|
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
PATH
|
|
2
|
+
remote: .
|
|
3
|
+
specs:
|
|
4
|
+
gemika (2.0.0)
|
|
5
|
+
|
|
6
|
+
GEM
|
|
7
|
+
remote: https://rubygems.org/
|
|
8
|
+
specs:
|
|
9
|
+
activemodel (8.0.1)
|
|
10
|
+
activesupport (= 8.0.1)
|
|
11
|
+
activerecord (8.0.1)
|
|
12
|
+
activemodel (= 8.0.1)
|
|
13
|
+
activesupport (= 8.0.1)
|
|
14
|
+
timeout (>= 0.4.0)
|
|
15
|
+
activesupport (8.0.1)
|
|
16
|
+
base64
|
|
17
|
+
benchmark (>= 0.3)
|
|
18
|
+
bigdecimal
|
|
19
|
+
concurrent-ruby (~> 1.0, >= 1.3.1)
|
|
20
|
+
connection_pool (>= 2.2.5)
|
|
21
|
+
drb
|
|
22
|
+
i18n (>= 1.6, < 2)
|
|
23
|
+
logger (>= 1.4.2)
|
|
24
|
+
minitest (>= 5.1)
|
|
25
|
+
securerandom (>= 0.3)
|
|
26
|
+
tzinfo (~> 2.0, >= 2.0.5)
|
|
27
|
+
uri (>= 0.13.1)
|
|
28
|
+
base64 (0.2.0)
|
|
29
|
+
benchmark (0.4.0)
|
|
30
|
+
bigdecimal (3.1.8)
|
|
31
|
+
coderay (1.1.3)
|
|
32
|
+
concurrent-ruby (1.3.4)
|
|
33
|
+
connection_pool (2.4.1)
|
|
34
|
+
database_cleaner (2.0.2)
|
|
35
|
+
database_cleaner-active_record (>= 2, < 3)
|
|
36
|
+
database_cleaner-active_record (2.2.0)
|
|
37
|
+
activerecord (>= 5.a)
|
|
38
|
+
database_cleaner-core (~> 2.0.0)
|
|
39
|
+
database_cleaner-core (2.0.1)
|
|
40
|
+
diff-lcs (1.5.0)
|
|
41
|
+
drb (2.2.1)
|
|
42
|
+
i18n (1.14.6)
|
|
43
|
+
concurrent-ruby (~> 1.0)
|
|
44
|
+
logger (1.6.4)
|
|
45
|
+
method_source (1.0.0)
|
|
46
|
+
minitest (6.0.1)
|
|
47
|
+
prism (~> 1.5)
|
|
48
|
+
mysql2 (0.5.7)
|
|
49
|
+
bigdecimal
|
|
50
|
+
ostruct (0.6.3)
|
|
51
|
+
prism (1.9.0)
|
|
52
|
+
pry (0.14.2)
|
|
53
|
+
coderay (~> 1.1)
|
|
54
|
+
method_source (~> 1.0)
|
|
55
|
+
rake (12.3.3)
|
|
56
|
+
rspec (3.8.0)
|
|
57
|
+
rspec-core (~> 3.8.0)
|
|
58
|
+
rspec-expectations (~> 3.8.0)
|
|
59
|
+
rspec-mocks (~> 3.8.0)
|
|
60
|
+
rspec-core (3.8.2)
|
|
61
|
+
rspec-support (~> 3.8.0)
|
|
62
|
+
rspec-expectations (3.8.6)
|
|
63
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
|
64
|
+
rspec-support (~> 3.8.0)
|
|
65
|
+
rspec-mocks (3.8.2)
|
|
66
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
|
67
|
+
rspec-support (~> 3.8.0)
|
|
68
|
+
rspec-support (3.8.3)
|
|
69
|
+
securerandom (0.4.1)
|
|
70
|
+
timeout (0.4.3)
|
|
71
|
+
tzinfo (2.0.6)
|
|
72
|
+
concurrent-ruby (~> 1.0)
|
|
73
|
+
uri (1.0.2)
|
|
74
|
+
|
|
75
|
+
PLATFORMS
|
|
76
|
+
ruby
|
|
77
|
+
|
|
78
|
+
DEPENDENCIES
|
|
79
|
+
activerecord (~> 8.0.1)
|
|
80
|
+
database_cleaner (~> 2.0.2)
|
|
81
|
+
gemika!
|
|
82
|
+
mysql2
|
|
83
|
+
ostruct
|
|
84
|
+
pry (~> 0.14.2)
|
|
85
|
+
rake
|
|
86
|
+
rspec (~> 3.5)
|
|
87
|
+
|
|
88
|
+
RUBY VERSION
|
|
89
|
+
ruby 2.2.4p230
|
|
90
|
+
|
|
91
|
+
BUNDLED WITH
|
|
92
|
+
2.3.1
|
data/Gemfile.8.0.pg
CHANGED
data/Gemfile.8.0.pg.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
gemika (
|
|
4
|
+
gemika (2.0.0)
|
|
5
5
|
|
|
6
6
|
GEM
|
|
7
7
|
remote: https://rubygems.org/
|
|
@@ -43,8 +43,11 @@ GEM
|
|
|
43
43
|
concurrent-ruby (~> 1.0)
|
|
44
44
|
logger (1.6.4)
|
|
45
45
|
method_source (1.0.0)
|
|
46
|
-
minitest (
|
|
46
|
+
minitest (6.0.1)
|
|
47
|
+
prism (~> 1.5)
|
|
48
|
+
ostruct (0.6.3)
|
|
47
49
|
pg (1.5.9)
|
|
50
|
+
prism (1.9.0)
|
|
48
51
|
pry (0.14.2)
|
|
49
52
|
coderay (~> 1.1)
|
|
50
53
|
method_source (~> 1.0)
|
|
@@ -75,6 +78,7 @@ DEPENDENCIES
|
|
|
75
78
|
activerecord (~> 8.0.1)
|
|
76
79
|
database_cleaner (~> 2.0.2)
|
|
77
80
|
gemika!
|
|
81
|
+
ostruct
|
|
78
82
|
pg (~> 1.5.6)
|
|
79
83
|
pry (~> 0.14.2)
|
|
80
84
|
rake
|
|
@@ -4,14 +4,17 @@ source 'https://rubygems.org'
|
|
|
4
4
|
ruby '>= 2.2'
|
|
5
5
|
|
|
6
6
|
# Runtime dependencies
|
|
7
|
-
gem 'activerecord', '~>
|
|
7
|
+
gem 'activerecord', '~> 8.0.1'
|
|
8
8
|
gem 'rspec', '~>3.5'
|
|
9
9
|
gem 'sqlite3'
|
|
10
10
|
|
|
11
11
|
# Development dependencies
|
|
12
12
|
gem 'rake'
|
|
13
|
-
gem 'database_cleaner'
|
|
14
|
-
gem 'pry'
|
|
13
|
+
gem 'database_cleaner', '~> 2.0.2'
|
|
14
|
+
gem 'pry', '~> 0.14.2'
|
|
15
15
|
|
|
16
16
|
# Gem under test
|
|
17
17
|
gem 'gemika', :path => '.'
|
|
18
|
+
|
|
19
|
+
# Previous default gems
|
|
20
|
+
gem "ostruct"
|
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
PATH
|
|
2
|
+
remote: .
|
|
3
|
+
specs:
|
|
4
|
+
gemika (2.0.0)
|
|
5
|
+
|
|
6
|
+
GEM
|
|
7
|
+
remote: https://rubygems.org/
|
|
8
|
+
specs:
|
|
9
|
+
activemodel (8.0.1)
|
|
10
|
+
activesupport (= 8.0.1)
|
|
11
|
+
activerecord (8.0.1)
|
|
12
|
+
activemodel (= 8.0.1)
|
|
13
|
+
activesupport (= 8.0.1)
|
|
14
|
+
timeout (>= 0.4.0)
|
|
15
|
+
activesupport (8.0.1)
|
|
16
|
+
base64
|
|
17
|
+
benchmark (>= 0.3)
|
|
18
|
+
bigdecimal
|
|
19
|
+
concurrent-ruby (~> 1.0, >= 1.3.1)
|
|
20
|
+
connection_pool (>= 2.2.5)
|
|
21
|
+
drb
|
|
22
|
+
i18n (>= 1.6, < 2)
|
|
23
|
+
logger (>= 1.4.2)
|
|
24
|
+
minitest (>= 5.1)
|
|
25
|
+
securerandom (>= 0.3)
|
|
26
|
+
tzinfo (~> 2.0, >= 2.0.5)
|
|
27
|
+
uri (>= 0.13.1)
|
|
28
|
+
base64 (0.2.0)
|
|
29
|
+
benchmark (0.4.0)
|
|
30
|
+
bigdecimal (3.1.8)
|
|
31
|
+
coderay (1.1.3)
|
|
32
|
+
concurrent-ruby (1.3.4)
|
|
33
|
+
connection_pool (2.4.1)
|
|
34
|
+
database_cleaner (2.0.2)
|
|
35
|
+
database_cleaner-active_record (>= 2, < 3)
|
|
36
|
+
database_cleaner-active_record (2.2.0)
|
|
37
|
+
activerecord (>= 5.a)
|
|
38
|
+
database_cleaner-core (~> 2.0.0)
|
|
39
|
+
database_cleaner-core (2.0.1)
|
|
40
|
+
diff-lcs (1.5.0)
|
|
41
|
+
drb (2.2.1)
|
|
42
|
+
i18n (1.14.6)
|
|
43
|
+
concurrent-ruby (~> 1.0)
|
|
44
|
+
logger (1.6.4)
|
|
45
|
+
method_source (1.0.0)
|
|
46
|
+
mini_portile2 (2.8.9)
|
|
47
|
+
minitest (6.0.1)
|
|
48
|
+
prism (~> 1.5)
|
|
49
|
+
ostruct (0.6.3)
|
|
50
|
+
prism (1.9.0)
|
|
51
|
+
pry (0.14.2)
|
|
52
|
+
coderay (~> 1.1)
|
|
53
|
+
method_source (~> 1.0)
|
|
54
|
+
rake (12.3.3)
|
|
55
|
+
rspec (3.8.0)
|
|
56
|
+
rspec-core (~> 3.8.0)
|
|
57
|
+
rspec-expectations (~> 3.8.0)
|
|
58
|
+
rspec-mocks (~> 3.8.0)
|
|
59
|
+
rspec-core (3.8.2)
|
|
60
|
+
rspec-support (~> 3.8.0)
|
|
61
|
+
rspec-expectations (3.8.6)
|
|
62
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
|
63
|
+
rspec-support (~> 3.8.0)
|
|
64
|
+
rspec-mocks (3.8.2)
|
|
65
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
|
66
|
+
rspec-support (~> 3.8.0)
|
|
67
|
+
rspec-support (3.8.3)
|
|
68
|
+
securerandom (0.4.1)
|
|
69
|
+
sqlite3 (2.9.0)
|
|
70
|
+
mini_portile2 (~> 2.8.0)
|
|
71
|
+
timeout (0.4.3)
|
|
72
|
+
tzinfo (2.0.6)
|
|
73
|
+
concurrent-ruby (~> 1.0)
|
|
74
|
+
uri (1.0.2)
|
|
75
|
+
|
|
76
|
+
PLATFORMS
|
|
77
|
+
ruby
|
|
78
|
+
|
|
79
|
+
DEPENDENCIES
|
|
80
|
+
activerecord (~> 8.0.1)
|
|
81
|
+
database_cleaner (~> 2.0.2)
|
|
82
|
+
gemika!
|
|
83
|
+
ostruct
|
|
84
|
+
pry (~> 0.14.2)
|
|
85
|
+
rake
|
|
86
|
+
rspec (~> 3.5)
|
|
87
|
+
sqlite3
|
|
88
|
+
|
|
89
|
+
RUBY VERSION
|
|
90
|
+
ruby 2.2.4p230
|
|
91
|
+
|
|
92
|
+
BUNDLED WITH
|
|
93
|
+
2.3.1
|
|
@@ -4,14 +4,17 @@ source 'https://rubygems.org'
|
|
|
4
4
|
ruby '>= 2.2'
|
|
5
5
|
|
|
6
6
|
# Runtime dependencies
|
|
7
|
-
gem 'activerecord', '~>
|
|
7
|
+
gem 'activerecord', '~> 8.1'
|
|
8
8
|
gem 'rspec', '~>3.5'
|
|
9
|
-
gem 'pg', '~>
|
|
9
|
+
gem 'pg', '~> 1.5.6'
|
|
10
10
|
|
|
11
11
|
# Development dependencies
|
|
12
12
|
gem 'rake'
|
|
13
|
-
gem 'database_cleaner'
|
|
14
|
-
gem 'pry'
|
|
13
|
+
gem 'database_cleaner', '~> 2.0.2'
|
|
14
|
+
gem 'pry', '~> 0.14.2'
|
|
15
15
|
|
|
16
16
|
# Gem under test
|
|
17
17
|
gem 'gemika', :path => '.'
|
|
18
|
+
|
|
19
|
+
# Previous default gems
|
|
20
|
+
gem "ostruct"
|
data/Gemfile.8.1.pg.lock
ADDED
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
PATH
|
|
2
|
+
remote: .
|
|
3
|
+
specs:
|
|
4
|
+
gemika (2.0.0)
|
|
5
|
+
|
|
6
|
+
GEM
|
|
7
|
+
remote: https://rubygems.org/
|
|
8
|
+
specs:
|
|
9
|
+
activemodel (8.1.2)
|
|
10
|
+
activesupport (= 8.1.2)
|
|
11
|
+
activerecord (8.1.2)
|
|
12
|
+
activemodel (= 8.1.2)
|
|
13
|
+
activesupport (= 8.1.2)
|
|
14
|
+
timeout (>= 0.4.0)
|
|
15
|
+
activesupport (8.1.2)
|
|
16
|
+
base64
|
|
17
|
+
bigdecimal
|
|
18
|
+
concurrent-ruby (~> 1.0, >= 1.3.1)
|
|
19
|
+
connection_pool (>= 2.2.5)
|
|
20
|
+
drb
|
|
21
|
+
i18n (>= 1.6, < 2)
|
|
22
|
+
json
|
|
23
|
+
logger (>= 1.4.2)
|
|
24
|
+
minitest (>= 5.1)
|
|
25
|
+
securerandom (>= 0.3)
|
|
26
|
+
tzinfo (~> 2.0, >= 2.0.5)
|
|
27
|
+
uri (>= 0.13.1)
|
|
28
|
+
base64 (0.3.0)
|
|
29
|
+
bigdecimal (4.0.1)
|
|
30
|
+
coderay (1.1.3)
|
|
31
|
+
concurrent-ruby (1.3.6)
|
|
32
|
+
connection_pool (3.0.2)
|
|
33
|
+
database_cleaner (2.0.2)
|
|
34
|
+
database_cleaner-active_record (>= 2, < 3)
|
|
35
|
+
database_cleaner-active_record (2.2.0)
|
|
36
|
+
activerecord (>= 5.a)
|
|
37
|
+
database_cleaner-core (~> 2.0.0)
|
|
38
|
+
database_cleaner-core (2.0.1)
|
|
39
|
+
diff-lcs (1.5.0)
|
|
40
|
+
drb (2.2.3)
|
|
41
|
+
i18n (1.14.8)
|
|
42
|
+
concurrent-ruby (~> 1.0)
|
|
43
|
+
json (2.18.1)
|
|
44
|
+
logger (1.7.0)
|
|
45
|
+
method_source (1.0.0)
|
|
46
|
+
minitest (6.0.1)
|
|
47
|
+
prism (~> 1.5)
|
|
48
|
+
ostruct (0.6.3)
|
|
49
|
+
pg (1.5.9)
|
|
50
|
+
prism (1.9.0)
|
|
51
|
+
pry (0.14.2)
|
|
52
|
+
coderay (~> 1.1)
|
|
53
|
+
method_source (~> 1.0)
|
|
54
|
+
rake (12.3.3)
|
|
55
|
+
rspec (3.8.0)
|
|
56
|
+
rspec-core (~> 3.8.0)
|
|
57
|
+
rspec-expectations (~> 3.8.0)
|
|
58
|
+
rspec-mocks (~> 3.8.0)
|
|
59
|
+
rspec-core (3.8.2)
|
|
60
|
+
rspec-support (~> 3.8.0)
|
|
61
|
+
rspec-expectations (3.8.6)
|
|
62
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
|
63
|
+
rspec-support (~> 3.8.0)
|
|
64
|
+
rspec-mocks (3.8.2)
|
|
65
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
|
66
|
+
rspec-support (~> 3.8.0)
|
|
67
|
+
rspec-support (3.8.3)
|
|
68
|
+
securerandom (0.4.1)
|
|
69
|
+
timeout (0.6.0)
|
|
70
|
+
tzinfo (2.0.6)
|
|
71
|
+
concurrent-ruby (~> 1.0)
|
|
72
|
+
uri (1.1.1)
|
|
73
|
+
|
|
74
|
+
PLATFORMS
|
|
75
|
+
ruby
|
|
76
|
+
|
|
77
|
+
DEPENDENCIES
|
|
78
|
+
activerecord (~> 8.1)
|
|
79
|
+
database_cleaner (~> 2.0.2)
|
|
80
|
+
gemika!
|
|
81
|
+
ostruct
|
|
82
|
+
pg (~> 1.5.6)
|
|
83
|
+
pry (~> 0.14.2)
|
|
84
|
+
rake
|
|
85
|
+
rspec (~> 3.5)
|
|
86
|
+
|
|
87
|
+
RUBY VERSION
|
|
88
|
+
ruby 2.2.4p230
|
|
89
|
+
|
|
90
|
+
BUNDLED WITH
|
|
91
|
+
2.3.1
|
data/README.md
CHANGED
|
@@ -507,9 +507,9 @@ Gemika::Env.gem?('activesupport', '< 5')
|
|
|
507
507
|
Check if the current Ruby version satisfies a version requirement:
|
|
508
508
|
|
|
509
509
|
```ruby
|
|
510
|
-
Gemika::Env.ruby?('>=
|
|
511
|
-
Gemika::Env.ruby?('<
|
|
512
|
-
Gemika::Env.ruby?('~>
|
|
510
|
+
Gemika::Env.ruby?('>= 3')
|
|
511
|
+
Gemika::Env.ruby?('< 3')
|
|
512
|
+
Gemika::Env.ruby?('~> 3.1.0')
|
|
513
513
|
```
|
|
514
514
|
|
|
515
515
|
Check if the process is running as a Github Actions test
|
data/gemika.gemspec
CHANGED
|
@@ -17,6 +17,8 @@ Gem::Specification.new do |s|
|
|
|
17
17
|
'rubygems_mfa_required' => 'true',
|
|
18
18
|
}
|
|
19
19
|
|
|
20
|
+
s.required_ruby_version = '>= 3.0.0'
|
|
21
|
+
|
|
20
22
|
s.files = `git ls-files`.split("\n").reject { |path| !File.exist?(path) || File.lstat(path).symlink? }
|
|
21
23
|
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n").reject { |path| !File.exist?(path) || File.lstat(path).symlink? }
|
|
22
24
|
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
data/lib/gemika/env.rb
CHANGED
|
@@ -82,7 +82,7 @@ module Gemika
|
|
|
82
82
|
# Check if the current version of Ruby satisfies the given requirements.
|
|
83
83
|
#
|
|
84
84
|
# @example
|
|
85
|
-
# Gemika::Env.ruby?('>=
|
|
85
|
+
# Gemika::Env.ruby?('>= 3.1.0')
|
|
86
86
|
#
|
|
87
87
|
def ruby?(requirement)
|
|
88
88
|
requirement_satisfied?(requirement, ruby)
|
|
@@ -94,24 +94,6 @@ module Gemika
|
|
|
94
94
|
ENV.key?('GITHUB_WORKFLOW')
|
|
95
95
|
end
|
|
96
96
|
|
|
97
|
-
##
|
|
98
|
-
# Creates an hash that enumerates entries in order of insertion.
|
|
99
|
-
#
|
|
100
|
-
# @!visibility private
|
|
101
|
-
#
|
|
102
|
-
def new_ordered_hash
|
|
103
|
-
# We use it when ActiveSupport is activated
|
|
104
|
-
if ruby?('>= 1.9')
|
|
105
|
-
{}
|
|
106
|
-
elsif gem?('activesupport')
|
|
107
|
-
require 'active_support/ordered_hash'
|
|
108
|
-
ActiveSupport::OrderedHash.new
|
|
109
|
-
else
|
|
110
|
-
# We give up
|
|
111
|
-
{}
|
|
112
|
-
end
|
|
113
|
-
end
|
|
114
|
-
|
|
115
97
|
private
|
|
116
98
|
|
|
117
99
|
def bundler?
|
|
@@ -153,12 +135,8 @@ module Gemika
|
|
|
153
135
|
def requirement_satisfied?(requirement, version)
|
|
154
136
|
requirement = Gem::Requirement.new(requirement) if requirement.is_a?(String)
|
|
155
137
|
version = Gem::Version.new(version) if version.is_a?(String)
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
else
|
|
159
|
-
ops = Gem::Requirement::OPS
|
|
160
|
-
requirement.requirements.all? { |op, rv| (ops[op] || ops["="]).call version, rv }
|
|
161
|
-
end
|
|
138
|
+
|
|
139
|
+
requirement.satisfied_by?(version)
|
|
162
140
|
end
|
|
163
141
|
|
|
164
142
|
def lockfile_contents(gemfile)
|
data/lib/gemika/matrix.rb
CHANGED
|
@@ -118,7 +118,7 @@ module Gemika
|
|
|
118
118
|
@color = options.fetch(:color, true)
|
|
119
119
|
validate = options.fetch(:validate, true)
|
|
120
120
|
@rows.each(&:validate!) if validate
|
|
121
|
-
@results =
|
|
121
|
+
@results = {} # Should be order-preserving, which is true for regular hashes since Ruby 1.9.
|
|
122
122
|
@compatible_count = 0
|
|
123
123
|
@all_passed = nil
|
|
124
124
|
@current_ruby = options.fetch(:current_ruby, RUBY_VERSION)
|
data/lib/gemika/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: gemika
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version:
|
|
4
|
+
version: 2.0.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Henning Koch
|
|
8
8
|
bindir: bin
|
|
9
9
|
cert_chain: []
|
|
10
|
-
date:
|
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
11
11
|
dependencies: []
|
|
12
12
|
description: Helpers for testing Ruby gems
|
|
13
13
|
email: henning.koch@makandra.de
|
|
@@ -22,18 +22,16 @@ files:
|
|
|
22
22
|
- ".ruby-version"
|
|
23
23
|
- ".yardopts"
|
|
24
24
|
- CHANGELOG.md
|
|
25
|
-
- Gemfile.5.2.mysql2
|
|
26
|
-
- Gemfile.5.2.mysql2.lock
|
|
27
|
-
- Gemfile.5.2.pg
|
|
28
|
-
- Gemfile.5.2.pg.lock
|
|
29
|
-
- Gemfile.5.2.sqlite3
|
|
30
|
-
- Gemfile.5.2.sqlite3.lock
|
|
31
|
-
- Gemfile.6.1.pg
|
|
32
|
-
- Gemfile.6.1.pg.lock
|
|
33
25
|
- Gemfile.7.0.pg
|
|
34
26
|
- Gemfile.7.0.pg.lock
|
|
27
|
+
- Gemfile.8.0.mysql2
|
|
28
|
+
- Gemfile.8.0.mysql2.lock
|
|
35
29
|
- Gemfile.8.0.pg
|
|
36
30
|
- Gemfile.8.0.pg.lock
|
|
31
|
+
- Gemfile.8.0.sqlite3
|
|
32
|
+
- Gemfile.8.0.sqlite3.lock
|
|
33
|
+
- Gemfile.8.1.pg
|
|
34
|
+
- Gemfile.8.1.pg.lock
|
|
37
35
|
- LICENSE
|
|
38
36
|
- README.md
|
|
39
37
|
- Rakefile
|
|
@@ -86,14 +84,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
86
84
|
requirements:
|
|
87
85
|
- - ">="
|
|
88
86
|
- !ruby/object:Gem::Version
|
|
89
|
-
version:
|
|
87
|
+
version: 3.0.0
|
|
90
88
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
91
89
|
requirements:
|
|
92
90
|
- - ">="
|
|
93
91
|
- !ruby/object:Gem::Version
|
|
94
92
|
version: '0'
|
|
95
93
|
requirements: []
|
|
96
|
-
rubygems_version:
|
|
94
|
+
rubygems_version: 4.0.3
|
|
97
95
|
specification_version: 4
|
|
98
96
|
summary: Helpers for testing Ruby gems
|
|
99
97
|
test_files: []
|
data/Gemfile.5.2.mysql2.lock
DELETED
|
@@ -1,67 +0,0 @@
|
|
|
1
|
-
PATH
|
|
2
|
-
remote: .
|
|
3
|
-
specs:
|
|
4
|
-
gemika (1.0.0)
|
|
5
|
-
|
|
6
|
-
GEM
|
|
7
|
-
remote: https://rubygems.org/
|
|
8
|
-
specs:
|
|
9
|
-
activemodel (5.2.3)
|
|
10
|
-
activesupport (= 5.2.3)
|
|
11
|
-
activerecord (5.2.3)
|
|
12
|
-
activemodel (= 5.2.3)
|
|
13
|
-
activesupport (= 5.2.3)
|
|
14
|
-
arel (>= 9.0)
|
|
15
|
-
activesupport (5.2.3)
|
|
16
|
-
concurrent-ruby (~> 1.0, >= 1.0.2)
|
|
17
|
-
i18n (>= 0.7, < 2)
|
|
18
|
-
minitest (~> 5.1)
|
|
19
|
-
tzinfo (~> 1.1)
|
|
20
|
-
arel (9.0.0)
|
|
21
|
-
coderay (1.1.2)
|
|
22
|
-
concurrent-ruby (1.1.5)
|
|
23
|
-
database_cleaner (1.7.0)
|
|
24
|
-
diff-lcs (1.2.5)
|
|
25
|
-
i18n (1.5.1)
|
|
26
|
-
concurrent-ruby (~> 1.0)
|
|
27
|
-
method_source (0.9.2)
|
|
28
|
-
minitest (5.11.3)
|
|
29
|
-
mysql2 (0.5.3)
|
|
30
|
-
pry (0.12.2)
|
|
31
|
-
coderay (~> 1.1.0)
|
|
32
|
-
method_source (~> 0.9.0)
|
|
33
|
-
rake (11.3.0)
|
|
34
|
-
rspec (3.5.0)
|
|
35
|
-
rspec-core (~> 3.5.0)
|
|
36
|
-
rspec-expectations (~> 3.5.0)
|
|
37
|
-
rspec-mocks (~> 3.5.0)
|
|
38
|
-
rspec-core (3.5.3)
|
|
39
|
-
rspec-support (~> 3.5.0)
|
|
40
|
-
rspec-expectations (3.5.0)
|
|
41
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
|
42
|
-
rspec-support (~> 3.5.0)
|
|
43
|
-
rspec-mocks (3.5.0)
|
|
44
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
|
45
|
-
rspec-support (~> 3.5.0)
|
|
46
|
-
rspec-support (3.5.0)
|
|
47
|
-
thread_safe (0.3.6)
|
|
48
|
-
tzinfo (1.2.5)
|
|
49
|
-
thread_safe (~> 0.1)
|
|
50
|
-
|
|
51
|
-
PLATFORMS
|
|
52
|
-
ruby
|
|
53
|
-
|
|
54
|
-
DEPENDENCIES
|
|
55
|
-
activerecord (~> 5.2.0)
|
|
56
|
-
database_cleaner
|
|
57
|
-
gemika!
|
|
58
|
-
mysql2
|
|
59
|
-
pry
|
|
60
|
-
rake
|
|
61
|
-
rspec (~> 3.5)
|
|
62
|
-
|
|
63
|
-
RUBY VERSION
|
|
64
|
-
ruby 2.2.4p230
|
|
65
|
-
|
|
66
|
-
BUNDLED WITH
|
|
67
|
-
2.3.1
|
data/Gemfile.5.2.pg.lock
DELETED
|
@@ -1,67 +0,0 @@
|
|
|
1
|
-
PATH
|
|
2
|
-
remote: .
|
|
3
|
-
specs:
|
|
4
|
-
gemika (1.0.0)
|
|
5
|
-
|
|
6
|
-
GEM
|
|
7
|
-
remote: https://rubygems.org/
|
|
8
|
-
specs:
|
|
9
|
-
activemodel (5.2.3)
|
|
10
|
-
activesupport (= 5.2.3)
|
|
11
|
-
activerecord (5.2.3)
|
|
12
|
-
activemodel (= 5.2.3)
|
|
13
|
-
activesupport (= 5.2.3)
|
|
14
|
-
arel (>= 9.0)
|
|
15
|
-
activesupport (5.2.3)
|
|
16
|
-
concurrent-ruby (~> 1.0, >= 1.0.2)
|
|
17
|
-
i18n (>= 0.7, < 2)
|
|
18
|
-
minitest (~> 5.1)
|
|
19
|
-
tzinfo (~> 1.1)
|
|
20
|
-
arel (9.0.0)
|
|
21
|
-
coderay (1.1.2)
|
|
22
|
-
concurrent-ruby (1.1.5)
|
|
23
|
-
database_cleaner (1.7.0)
|
|
24
|
-
diff-lcs (1.2.5)
|
|
25
|
-
i18n (1.5.1)
|
|
26
|
-
concurrent-ruby (~> 1.0)
|
|
27
|
-
method_source (0.9.2)
|
|
28
|
-
minitest (5.11.3)
|
|
29
|
-
pg (0.18.4)
|
|
30
|
-
pry (0.12.2)
|
|
31
|
-
coderay (~> 1.1.0)
|
|
32
|
-
method_source (~> 0.9.0)
|
|
33
|
-
rake (11.3.0)
|
|
34
|
-
rspec (3.5.0)
|
|
35
|
-
rspec-core (~> 3.5.0)
|
|
36
|
-
rspec-expectations (~> 3.5.0)
|
|
37
|
-
rspec-mocks (~> 3.5.0)
|
|
38
|
-
rspec-core (3.5.3)
|
|
39
|
-
rspec-support (~> 3.5.0)
|
|
40
|
-
rspec-expectations (3.5.0)
|
|
41
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
|
42
|
-
rspec-support (~> 3.5.0)
|
|
43
|
-
rspec-mocks (3.5.0)
|
|
44
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
|
45
|
-
rspec-support (~> 3.5.0)
|
|
46
|
-
rspec-support (3.5.0)
|
|
47
|
-
thread_safe (0.3.6)
|
|
48
|
-
tzinfo (1.2.5)
|
|
49
|
-
thread_safe (~> 0.1)
|
|
50
|
-
|
|
51
|
-
PLATFORMS
|
|
52
|
-
ruby
|
|
53
|
-
|
|
54
|
-
DEPENDENCIES
|
|
55
|
-
activerecord (~> 5.2.0)
|
|
56
|
-
database_cleaner
|
|
57
|
-
gemika!
|
|
58
|
-
pg (~> 0.18.4)
|
|
59
|
-
pry
|
|
60
|
-
rake
|
|
61
|
-
rspec (~> 3.5)
|
|
62
|
-
|
|
63
|
-
RUBY VERSION
|
|
64
|
-
ruby 2.2.4p230
|
|
65
|
-
|
|
66
|
-
BUNDLED WITH
|
|
67
|
-
2.3.1
|
data/Gemfile.5.2.sqlite3.lock
DELETED
|
@@ -1,67 +0,0 @@
|
|
|
1
|
-
PATH
|
|
2
|
-
remote: .
|
|
3
|
-
specs:
|
|
4
|
-
gemika (1.0.0)
|
|
5
|
-
|
|
6
|
-
GEM
|
|
7
|
-
remote: https://rubygems.org/
|
|
8
|
-
specs:
|
|
9
|
-
activemodel (5.2.3)
|
|
10
|
-
activesupport (= 5.2.3)
|
|
11
|
-
activerecord (5.2.3)
|
|
12
|
-
activemodel (= 5.2.3)
|
|
13
|
-
activesupport (= 5.2.3)
|
|
14
|
-
arel (>= 9.0)
|
|
15
|
-
activesupport (5.2.3)
|
|
16
|
-
concurrent-ruby (~> 1.0, >= 1.0.2)
|
|
17
|
-
i18n (>= 0.7, < 2)
|
|
18
|
-
minitest (~> 5.1)
|
|
19
|
-
tzinfo (~> 1.1)
|
|
20
|
-
arel (9.0.0)
|
|
21
|
-
coderay (1.1.2)
|
|
22
|
-
concurrent-ruby (1.1.5)
|
|
23
|
-
database_cleaner (1.7.0)
|
|
24
|
-
diff-lcs (1.3)
|
|
25
|
-
i18n (1.5.1)
|
|
26
|
-
concurrent-ruby (~> 1.0)
|
|
27
|
-
method_source (0.9.2)
|
|
28
|
-
minitest (5.11.3)
|
|
29
|
-
pry (0.12.2)
|
|
30
|
-
coderay (~> 1.1.0)
|
|
31
|
-
method_source (~> 0.9.0)
|
|
32
|
-
rake (12.3.1)
|
|
33
|
-
rspec (3.7.0)
|
|
34
|
-
rspec-core (~> 3.7.0)
|
|
35
|
-
rspec-expectations (~> 3.7.0)
|
|
36
|
-
rspec-mocks (~> 3.7.0)
|
|
37
|
-
rspec-core (3.7.1)
|
|
38
|
-
rspec-support (~> 3.7.0)
|
|
39
|
-
rspec-expectations (3.7.0)
|
|
40
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
|
41
|
-
rspec-support (~> 3.7.0)
|
|
42
|
-
rspec-mocks (3.7.0)
|
|
43
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
|
44
|
-
rspec-support (~> 3.7.0)
|
|
45
|
-
rspec-support (3.7.1)
|
|
46
|
-
sqlite3 (1.3.13)
|
|
47
|
-
thread_safe (0.3.6)
|
|
48
|
-
tzinfo (1.2.5)
|
|
49
|
-
thread_safe (~> 0.1)
|
|
50
|
-
|
|
51
|
-
PLATFORMS
|
|
52
|
-
ruby
|
|
53
|
-
|
|
54
|
-
DEPENDENCIES
|
|
55
|
-
activerecord (~> 5.2.0)
|
|
56
|
-
database_cleaner
|
|
57
|
-
gemika!
|
|
58
|
-
pry
|
|
59
|
-
rake
|
|
60
|
-
rspec (~> 3.5)
|
|
61
|
-
sqlite3
|
|
62
|
-
|
|
63
|
-
RUBY VERSION
|
|
64
|
-
ruby 2.2.4p230
|
|
65
|
-
|
|
66
|
-
BUNDLED WITH
|
|
67
|
-
2.3.1
|
data/Gemfile.6.1.pg
DELETED
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
source 'https://rubygems.org'
|
|
2
|
-
|
|
3
|
-
# Ruby
|
|
4
|
-
ruby '>= 2.2'
|
|
5
|
-
|
|
6
|
-
# Former standard gems, see https://stdgems.org/
|
|
7
|
-
gem 'mutex_m' # Bundled gem since Ruby 3.4
|
|
8
|
-
gem 'bigdecimal' # Bundled gem since Ruby 3.4
|
|
9
|
-
gem 'base64' # Bundled gem since Ruby 3.4
|
|
10
|
-
|
|
11
|
-
# Runtime dependencies
|
|
12
|
-
gem 'activerecord', '~>6.1.0'
|
|
13
|
-
gem 'rspec', '~>3.5'
|
|
14
|
-
gem 'pg', '~> 1.3.5'
|
|
15
|
-
|
|
16
|
-
# Development dependencies
|
|
17
|
-
gem 'rake'
|
|
18
|
-
gem 'database_cleaner'
|
|
19
|
-
gem 'pry', '~> 0.14.2'
|
|
20
|
-
|
|
21
|
-
# Gem under test
|
|
22
|
-
gem 'gemika', :path => '.'
|
data/Gemfile.6.1.pg.lock
DELETED
|
@@ -1,72 +0,0 @@
|
|
|
1
|
-
PATH
|
|
2
|
-
remote: .
|
|
3
|
-
specs:
|
|
4
|
-
gemika (1.0.0)
|
|
5
|
-
|
|
6
|
-
GEM
|
|
7
|
-
remote: https://rubygems.org/
|
|
8
|
-
specs:
|
|
9
|
-
activemodel (6.1.3.1)
|
|
10
|
-
activesupport (= 6.1.3.1)
|
|
11
|
-
activerecord (6.1.3.1)
|
|
12
|
-
activemodel (= 6.1.3.1)
|
|
13
|
-
activesupport (= 6.1.3.1)
|
|
14
|
-
activesupport (6.1.3.1)
|
|
15
|
-
concurrent-ruby (~> 1.0, >= 1.0.2)
|
|
16
|
-
i18n (>= 1.6, < 2)
|
|
17
|
-
minitest (>= 5.1)
|
|
18
|
-
tzinfo (~> 2.0)
|
|
19
|
-
zeitwerk (~> 2.3)
|
|
20
|
-
base64 (0.2.0)
|
|
21
|
-
bigdecimal (3.1.9)
|
|
22
|
-
coderay (1.1.3)
|
|
23
|
-
concurrent-ruby (1.1.8)
|
|
24
|
-
database_cleaner (1.7.0)
|
|
25
|
-
diff-lcs (1.3)
|
|
26
|
-
i18n (1.8.10)
|
|
27
|
-
concurrent-ruby (~> 1.0)
|
|
28
|
-
method_source (1.0.0)
|
|
29
|
-
minitest (5.14.4)
|
|
30
|
-
mutex_m (0.3.0)
|
|
31
|
-
pg (1.3.5)
|
|
32
|
-
pry (0.14.2)
|
|
33
|
-
coderay (~> 1.1)
|
|
34
|
-
method_source (~> 1.0)
|
|
35
|
-
rake (12.3.3)
|
|
36
|
-
rspec (3.8.0)
|
|
37
|
-
rspec-core (~> 3.8.0)
|
|
38
|
-
rspec-expectations (~> 3.8.0)
|
|
39
|
-
rspec-mocks (~> 3.8.0)
|
|
40
|
-
rspec-core (3.8.2)
|
|
41
|
-
rspec-support (~> 3.8.0)
|
|
42
|
-
rspec-expectations (3.8.4)
|
|
43
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
|
44
|
-
rspec-support (~> 3.8.0)
|
|
45
|
-
rspec-mocks (3.8.1)
|
|
46
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
|
47
|
-
rspec-support (~> 3.8.0)
|
|
48
|
-
rspec-support (3.8.2)
|
|
49
|
-
tzinfo (2.0.4)
|
|
50
|
-
concurrent-ruby (~> 1.0)
|
|
51
|
-
zeitwerk (2.4.2)
|
|
52
|
-
|
|
53
|
-
PLATFORMS
|
|
54
|
-
ruby
|
|
55
|
-
|
|
56
|
-
DEPENDENCIES
|
|
57
|
-
activerecord (~> 6.1.0)
|
|
58
|
-
base64
|
|
59
|
-
bigdecimal
|
|
60
|
-
database_cleaner
|
|
61
|
-
gemika!
|
|
62
|
-
mutex_m
|
|
63
|
-
pg (~> 1.3.5)
|
|
64
|
-
pry (~> 0.14.2)
|
|
65
|
-
rake
|
|
66
|
-
rspec (~> 3.5)
|
|
67
|
-
|
|
68
|
-
RUBY VERSION
|
|
69
|
-
ruby 2.2.4p230
|
|
70
|
-
|
|
71
|
-
BUNDLED WITH
|
|
72
|
-
2.3.1
|