minidusen 0.11.1 → 1.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 +55 -48
- data/.ruby-version +1 -1
- data/CHANGELOG.md +6 -0
- data/Gemfile.6.1.mysql2.lock +2 -2
- data/Gemfile.6.1.pg.lock +2 -2
- data/Gemfile.7.0.mysql2.lock +2 -2
- data/Gemfile.7.0.pg.lock +2 -2
- data/{Gemfile.6.0.mysql2 → Gemfile.7.1.mysql2} +2 -2
- data/Gemfile.7.1.mysql2.lock +81 -0
- data/{Gemfile.6.0.pg → Gemfile.7.1.pg} +2 -2
- data/Gemfile.7.1.pg.lock +81 -0
- data/{Gemfile.4.2.mysql2 → Gemfile.7.2.mysql2} +4 -4
- data/Gemfile.7.2.mysql2.lock +83 -0
- data/{Gemfile.4.2.pg → Gemfile.7.2.pg} +3 -3
- data/Gemfile.7.2.pg.lock +83 -0
- data/Gemfile.8.0.mysql2 +15 -0
- data/Gemfile.8.0.mysql2.lock +87 -0
- data/Gemfile.8.0.pg +15 -0
- data/Gemfile.8.0.pg.lock +87 -0
- data/README.md +21 -6
- data/lib/minidusen/parser.rb +4 -2
- data/lib/minidusen/syntax.rb +14 -3
- data/lib/minidusen/token.rb +5 -0
- data/lib/minidusen/util.rb +2 -2
- data/lib/minidusen/version.rb +1 -1
- data/media/logo.dark.shapes.svg +137 -0
- data/media/logo.dark.text.svg +107 -0
- data/media/logo.light.shapes.svg +136 -0
- data/media/logo.light.text.svg +106 -0
- data/media/makandra-with-bottom-margin.dark.svg +180 -0
- data/media/makandra-with-bottom-margin.light.svg +180 -0
- data/spec/minidusen/filter_spec.rb +8 -0
- data/spec/minidusen/parser_spec.rb +8 -0
- data/spec/support/database.github.yml +2 -2
- metadata +21 -15
- data/Gemfile.4.2.mysql2.lock +0 -69
- data/Gemfile.4.2.pg.lock +0 -69
- data/Gemfile.5.2.mysql2 +0 -16
- data/Gemfile.5.2.mysql2.lock +0 -68
- data/Gemfile.5.2.pg +0 -16
- data/Gemfile.5.2.pg.lock +0 -68
- data/Gemfile.6.0.mysql2.lock +0 -67
- data/Gemfile.6.0.pg.lock +0 -67
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 66b0584b719725f8f625cb93bab425665cb474c609a1a5c229954f7211541d21
|
4
|
+
data.tar.gz: da214c18bb9ae43e795d224a9561e4a08ae6be2acdc5cfddf0a4e3231aab9bc9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ea259513910c5691dc6fd7e332b3aa30479ce7dd4c9080e88ef14b6277fd33516cd4698361a600036aa9f1e587da6fd774f8a8097a7fc108b29b78e9235a481a
|
7
|
+
data.tar.gz: e827389410f4730a7af91ed7caf71731baa2ddc323ee9e31e65da43bdd55857b15a85d06afd1aa4a1376730f3390d5f9dd03d4d3a296a6411a0996fd819f7719
|
data/.github/workflows/test.yml
CHANGED
@@ -1,100 +1,107 @@
|
|
1
1
|
---
|
2
2
|
name: Tests
|
3
|
-
|
3
|
+
|
4
|
+
on:
|
4
5
|
push:
|
5
6
|
branches:
|
6
|
-
-
|
7
|
+
- main
|
7
8
|
pull_request:
|
8
9
|
branches:
|
9
|
-
-
|
10
|
+
- main
|
11
|
+
|
10
12
|
jobs:
|
11
13
|
test_mysql:
|
12
|
-
runs-on: ubuntu-
|
14
|
+
runs-on: ubuntu-24.04
|
15
|
+
|
13
16
|
services:
|
14
17
|
mysql:
|
15
|
-
image: mysql:5.
|
18
|
+
image: mysql:5.7
|
16
19
|
env:
|
17
20
|
MYSQL_ROOT_PASSWORD: password
|
18
|
-
options:
|
19
|
-
|
21
|
+
options: >-
|
22
|
+
--health-cmd="mysqladmin ping"
|
23
|
+
--health-interval=10s
|
24
|
+
--health-timeout=5s
|
25
|
+
--health-retries=5
|
20
26
|
ports:
|
21
27
|
- 3306:3306
|
28
|
+
|
22
29
|
strategy:
|
23
30
|
fail-fast: false
|
24
31
|
matrix:
|
25
32
|
include:
|
26
|
-
- ruby: 2.
|
27
|
-
gemfile: Gemfile.4.2.mysql2
|
28
|
-
- ruby: 2.5.8
|
29
|
-
gemfile: Gemfile.5.2.mysql2
|
30
|
-
- ruby: 2.5.8
|
31
|
-
gemfile: Gemfile.6.0.mysql2
|
32
|
-
- ruby: 2.5.8
|
33
|
+
- ruby: 2.7.8
|
33
34
|
gemfile: Gemfile.6.1.mysql2
|
34
|
-
- ruby: 3.2.
|
35
|
+
- ruby: 3.2.3
|
35
36
|
gemfile: Gemfile.6.1.mysql2
|
36
|
-
- ruby: 3.2.
|
37
|
+
- ruby: 3.2.3
|
37
38
|
gemfile: Gemfile.7.0.mysql2
|
39
|
+
- ruby: 3.2.3
|
40
|
+
gemfile: Gemfile.7.1.mysql2
|
41
|
+
- ruby: 3.3.4
|
42
|
+
gemfile: Gemfile.7.2.mysql2
|
43
|
+
- ruby: 3.3.4
|
44
|
+
gemfile: Gemfile.8.0.mysql2
|
45
|
+
|
38
46
|
env:
|
39
|
-
BUNDLE_GEMFILE:
|
47
|
+
BUNDLE_GEMFILE: ${{ matrix.gemfile }}
|
48
|
+
|
40
49
|
steps:
|
41
|
-
- uses: actions/checkout@
|
50
|
+
- uses: actions/checkout@v3
|
42
51
|
- name: Install ruby
|
43
52
|
uses: ruby/setup-ruby@v1
|
44
53
|
with:
|
45
|
-
ruby-version:
|
54
|
+
ruby-version: ${{ matrix.ruby }}
|
55
|
+
bundler-cache: true
|
46
56
|
- name: Setup database
|
47
57
|
run: |
|
48
|
-
mysql -e 'create database IF NOT EXISTS
|
49
|
-
- name: Bundle
|
50
|
-
run: |
|
51
|
-
gem install bundler:1.17.3
|
52
|
-
bundle install --no-deployment
|
58
|
+
mysql -e 'create database IF NOT EXISTS minidusen_test;' -u root --password=password -P 3306 -h 127.0.0.1
|
53
59
|
- name: Run tests
|
54
60
|
run: bundle exec rspec
|
61
|
+
|
55
62
|
test_pg:
|
56
|
-
runs-on: ubuntu-
|
63
|
+
runs-on: ubuntu-24.04
|
64
|
+
|
57
65
|
services:
|
58
66
|
postgres:
|
59
67
|
image: postgres
|
60
68
|
env:
|
61
69
|
POSTGRES_PASSWORD: postgres
|
62
|
-
|
63
|
-
|
70
|
+
POSTGRES_DB: minidusen_test
|
71
|
+
options: >-
|
72
|
+
--health-cmd pg_isready
|
73
|
+
--health-interval 10s
|
74
|
+
--health-timeout 5s
|
75
|
+
--health-retries 5
|
64
76
|
ports:
|
65
77
|
- 5432:5432
|
78
|
+
|
66
79
|
strategy:
|
67
80
|
fail-fast: false
|
68
81
|
matrix:
|
69
82
|
include:
|
70
|
-
- ruby: 2.
|
71
|
-
gemfile: Gemfile.4.2.pg
|
72
|
-
- ruby: 2.5.8
|
73
|
-
gemfile: Gemfile.5.2.pg
|
74
|
-
- ruby: 2.5.8
|
75
|
-
gemfile: Gemfile.6.0.pg
|
76
|
-
- ruby: 2.5.8
|
83
|
+
- ruby: 2.7.8
|
77
84
|
gemfile: Gemfile.6.1.pg
|
78
|
-
- ruby: 3.2.
|
85
|
+
- ruby: 3.2.3
|
79
86
|
gemfile: Gemfile.6.1.pg
|
80
|
-
- ruby: 3.2.
|
87
|
+
- ruby: 3.2.3
|
81
88
|
gemfile: Gemfile.7.0.pg
|
89
|
+
- ruby: 3.2.3
|
90
|
+
gemfile: Gemfile.7.1.pg
|
91
|
+
- ruby: 3.3.4
|
92
|
+
gemfile: Gemfile.7.2.pg
|
93
|
+
- ruby: 3.3.4
|
94
|
+
gemfile: Gemfile.8.0.pg
|
95
|
+
|
82
96
|
env:
|
83
|
-
BUNDLE_GEMFILE:
|
97
|
+
BUNDLE_GEMFILE: ${{ matrix.gemfile }}
|
98
|
+
|
84
99
|
steps:
|
85
|
-
- uses: actions/checkout@
|
100
|
+
- uses: actions/checkout@v3
|
86
101
|
- name: Install ruby
|
87
102
|
uses: ruby/setup-ruby@v1
|
88
103
|
with:
|
89
|
-
ruby-version:
|
90
|
-
|
91
|
-
run: |
|
92
|
-
sudo apt-get update
|
93
|
-
sudo apt-get install -y postgresql-client
|
94
|
-
PGPASSWORD=postgres psql -c 'create database test;' -U postgres -p 5432 -h localhost
|
95
|
-
- name: Bundle
|
96
|
-
run: |
|
97
|
-
gem install bundler:1.17.3
|
98
|
-
bundle install --no-deployment
|
104
|
+
ruby-version: ${{ matrix.ruby }}
|
105
|
+
bundler-cache: true
|
99
106
|
- name: Run tests
|
100
107
|
run: bundle exec rspec
|
data/.ruby-version
CHANGED
@@ -1 +1 @@
|
|
1
|
-
2.
|
1
|
+
3.2.3
|
data/CHANGELOG.md
CHANGED
@@ -10,6 +10,12 @@ This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html
|
|
10
10
|
|
11
11
|
### Compatible changes
|
12
12
|
|
13
|
+
## 0.11.2 2024-10-31
|
14
|
+
|
15
|
+
### Compatible changes
|
16
|
+
|
17
|
+
- Fix: Performance of queries using a negation ("-xxx") is improved by using an anti-join instead of a "NOT IN".
|
18
|
+
|
13
19
|
## 0.11.1 2024-08-22
|
14
20
|
|
15
21
|
### Compatible changes
|
data/Gemfile.6.1.mysql2.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
minidusen (0.
|
4
|
+
minidusen (1.0.0)
|
5
5
|
activerecord (>= 3.2)
|
6
6
|
activesupport (>= 3.2)
|
7
7
|
edge_rider (>= 0.2.5)
|
@@ -29,7 +29,7 @@ GEM
|
|
29
29
|
database_cleaner-core (~> 2.0.0)
|
30
30
|
database_cleaner-core (2.0.1)
|
31
31
|
diff-lcs (1.4.4)
|
32
|
-
edge_rider (2.
|
32
|
+
edge_rider (2.4.0)
|
33
33
|
activerecord (>= 3.2)
|
34
34
|
gemika (0.8.1)
|
35
35
|
i18n (1.8.9)
|
data/Gemfile.6.1.pg.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
minidusen (0.
|
4
|
+
minidusen (1.0.0)
|
5
5
|
activerecord (>= 3.2)
|
6
6
|
activesupport (>= 3.2)
|
7
7
|
edge_rider (>= 0.2.5)
|
@@ -29,7 +29,7 @@ GEM
|
|
29
29
|
database_cleaner-core (~> 2.0.0)
|
30
30
|
database_cleaner-core (2.0.1)
|
31
31
|
diff-lcs (1.4.4)
|
32
|
-
edge_rider (2.
|
32
|
+
edge_rider (2.4.0)
|
33
33
|
activerecord (>= 3.2)
|
34
34
|
gemika (0.8.1)
|
35
35
|
i18n (1.8.9)
|
data/Gemfile.7.0.mysql2.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
minidusen (0.
|
4
|
+
minidusen (1.0.0)
|
5
5
|
activerecord (>= 3.2)
|
6
6
|
activesupport (>= 3.2)
|
7
7
|
edge_rider (>= 0.2.5)
|
@@ -28,7 +28,7 @@ GEM
|
|
28
28
|
database_cleaner-core (~> 2.0.0)
|
29
29
|
database_cleaner-core (2.0.1)
|
30
30
|
diff-lcs (1.5.0)
|
31
|
-
edge_rider (2.
|
31
|
+
edge_rider (2.4.0)
|
32
32
|
activerecord (>= 3.2)
|
33
33
|
gemika (0.8.1)
|
34
34
|
i18n (1.8.11)
|
data/Gemfile.7.0.pg.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
minidusen (0.
|
4
|
+
minidusen (1.0.0)
|
5
5
|
activerecord (>= 3.2)
|
6
6
|
activesupport (>= 3.2)
|
7
7
|
edge_rider (>= 0.2.5)
|
@@ -28,7 +28,7 @@ GEM
|
|
28
28
|
database_cleaner-core (~> 2.0.0)
|
29
29
|
database_cleaner-core (2.0.1)
|
30
30
|
diff-lcs (1.5.0)
|
31
|
-
edge_rider (2.
|
31
|
+
edge_rider (2.4.0)
|
32
32
|
activerecord (>= 3.2)
|
33
33
|
gemika (0.8.1)
|
34
34
|
i18n (1.8.11)
|
@@ -0,0 +1,81 @@
|
|
1
|
+
PATH
|
2
|
+
remote: .
|
3
|
+
specs:
|
4
|
+
minidusen (1.0.0)
|
5
|
+
activerecord (>= 3.2)
|
6
|
+
activesupport (>= 3.2)
|
7
|
+
edge_rider (>= 0.2.5)
|
8
|
+
|
9
|
+
GEM
|
10
|
+
remote: https://rubygems.org/
|
11
|
+
specs:
|
12
|
+
activemodel (7.1.4)
|
13
|
+
activesupport (= 7.1.4)
|
14
|
+
activerecord (7.1.4)
|
15
|
+
activemodel (= 7.1.4)
|
16
|
+
activesupport (= 7.1.4)
|
17
|
+
timeout (>= 0.4.0)
|
18
|
+
activesupport (7.1.4)
|
19
|
+
base64
|
20
|
+
bigdecimal
|
21
|
+
concurrent-ruby (~> 1.0, >= 1.0.2)
|
22
|
+
connection_pool (>= 2.2.5)
|
23
|
+
drb
|
24
|
+
i18n (>= 1.6, < 2)
|
25
|
+
minitest (>= 5.1)
|
26
|
+
mutex_m
|
27
|
+
tzinfo (~> 2.0)
|
28
|
+
base64 (0.2.0)
|
29
|
+
bigdecimal (3.1.8)
|
30
|
+
byebug (11.1.3)
|
31
|
+
concurrent-ruby (1.3.4)
|
32
|
+
connection_pool (2.4.1)
|
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.1)
|
40
|
+
drb (2.2.1)
|
41
|
+
edge_rider (2.3.0)
|
42
|
+
activerecord (>= 3.2)
|
43
|
+
gemika (0.8.3)
|
44
|
+
i18n (1.14.5)
|
45
|
+
concurrent-ruby (~> 1.0)
|
46
|
+
minitest (5.25.1)
|
47
|
+
mutex_m (0.2.0)
|
48
|
+
mysql2 (0.5.6)
|
49
|
+
rake (13.2.1)
|
50
|
+
rspec (3.13.0)
|
51
|
+
rspec-core (~> 3.13.0)
|
52
|
+
rspec-expectations (~> 3.13.0)
|
53
|
+
rspec-mocks (~> 3.13.0)
|
54
|
+
rspec-core (3.13.1)
|
55
|
+
rspec-support (~> 3.13.0)
|
56
|
+
rspec-expectations (3.13.2)
|
57
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
58
|
+
rspec-support (~> 3.13.0)
|
59
|
+
rspec-mocks (3.13.1)
|
60
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
61
|
+
rspec-support (~> 3.13.0)
|
62
|
+
rspec-support (3.13.1)
|
63
|
+
timeout (0.4.1)
|
64
|
+
tzinfo (2.0.6)
|
65
|
+
concurrent-ruby (~> 1.0)
|
66
|
+
|
67
|
+
PLATFORMS
|
68
|
+
x86_64-linux
|
69
|
+
|
70
|
+
DEPENDENCIES
|
71
|
+
activerecord (~> 7.1.4)
|
72
|
+
byebug
|
73
|
+
database_cleaner
|
74
|
+
gemika
|
75
|
+
minidusen!
|
76
|
+
mysql2 (~> 0.5)
|
77
|
+
rake
|
78
|
+
rspec (~> 3.5)
|
79
|
+
|
80
|
+
BUNDLED WITH
|
81
|
+
2.5.6
|
data/Gemfile.7.1.pg.lock
ADDED
@@ -0,0 +1,81 @@
|
|
1
|
+
PATH
|
2
|
+
remote: .
|
3
|
+
specs:
|
4
|
+
minidusen (1.0.0)
|
5
|
+
activerecord (>= 3.2)
|
6
|
+
activesupport (>= 3.2)
|
7
|
+
edge_rider (>= 0.2.5)
|
8
|
+
|
9
|
+
GEM
|
10
|
+
remote: https://rubygems.org/
|
11
|
+
specs:
|
12
|
+
activemodel (7.1.4)
|
13
|
+
activesupport (= 7.1.4)
|
14
|
+
activerecord (7.1.4)
|
15
|
+
activemodel (= 7.1.4)
|
16
|
+
activesupport (= 7.1.4)
|
17
|
+
timeout (>= 0.4.0)
|
18
|
+
activesupport (7.1.4)
|
19
|
+
base64
|
20
|
+
bigdecimal
|
21
|
+
concurrent-ruby (~> 1.0, >= 1.0.2)
|
22
|
+
connection_pool (>= 2.2.5)
|
23
|
+
drb
|
24
|
+
i18n (>= 1.6, < 2)
|
25
|
+
minitest (>= 5.1)
|
26
|
+
mutex_m
|
27
|
+
tzinfo (~> 2.0)
|
28
|
+
base64 (0.2.0)
|
29
|
+
bigdecimal (3.1.8)
|
30
|
+
byebug (11.1.3)
|
31
|
+
concurrent-ruby (1.3.4)
|
32
|
+
connection_pool (2.4.1)
|
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.1)
|
40
|
+
drb (2.2.1)
|
41
|
+
edge_rider (2.3.0)
|
42
|
+
activerecord (>= 3.2)
|
43
|
+
gemika (0.8.3)
|
44
|
+
i18n (1.14.5)
|
45
|
+
concurrent-ruby (~> 1.0)
|
46
|
+
minitest (5.25.1)
|
47
|
+
mutex_m (0.2.0)
|
48
|
+
pg (1.4.6)
|
49
|
+
rake (13.2.1)
|
50
|
+
rspec (3.13.0)
|
51
|
+
rspec-core (~> 3.13.0)
|
52
|
+
rspec-expectations (~> 3.13.0)
|
53
|
+
rspec-mocks (~> 3.13.0)
|
54
|
+
rspec-core (3.13.1)
|
55
|
+
rspec-support (~> 3.13.0)
|
56
|
+
rspec-expectations (3.13.2)
|
57
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
58
|
+
rspec-support (~> 3.13.0)
|
59
|
+
rspec-mocks (3.13.1)
|
60
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
61
|
+
rspec-support (~> 3.13.0)
|
62
|
+
rspec-support (3.13.1)
|
63
|
+
timeout (0.4.1)
|
64
|
+
tzinfo (2.0.6)
|
65
|
+
concurrent-ruby (~> 1.0)
|
66
|
+
|
67
|
+
PLATFORMS
|
68
|
+
x86_64-linux
|
69
|
+
|
70
|
+
DEPENDENCIES
|
71
|
+
activerecord (~> 7.1.4)
|
72
|
+
byebug
|
73
|
+
database_cleaner
|
74
|
+
gemika
|
75
|
+
minidusen!
|
76
|
+
pg (~> 1.4.0)
|
77
|
+
rake
|
78
|
+
rspec (~> 3.5)
|
79
|
+
|
80
|
+
BUNDLED WITH
|
81
|
+
2.5.6
|
@@ -1,13 +1,13 @@
|
|
1
1
|
source 'https://rubygems.org'
|
2
2
|
|
3
3
|
# Runtime dependencies
|
4
|
-
gem 'activerecord', '~>
|
5
|
-
gem 'mysql2', '~>
|
4
|
+
gem 'activerecord', '~>7.2.1'
|
5
|
+
gem 'mysql2', '~>0.5'
|
6
6
|
|
7
7
|
# Development dependencies
|
8
|
-
gem 'database_cleaner'
|
9
8
|
gem 'rake'
|
10
|
-
gem '
|
9
|
+
gem 'database_cleaner'
|
10
|
+
gem 'rspec', '~>3.5'
|
11
11
|
gem 'byebug'
|
12
12
|
gem 'gemika'
|
13
13
|
|
@@ -0,0 +1,83 @@
|
|
1
|
+
PATH
|
2
|
+
remote: .
|
3
|
+
specs:
|
4
|
+
minidusen (0.11.2)
|
5
|
+
activerecord (>= 3.2)
|
6
|
+
activesupport (>= 3.2)
|
7
|
+
edge_rider (>= 0.2.5)
|
8
|
+
|
9
|
+
GEM
|
10
|
+
remote: https://rubygems.org/
|
11
|
+
specs:
|
12
|
+
activemodel (7.2.1)
|
13
|
+
activesupport (= 7.2.1)
|
14
|
+
activerecord (7.2.1)
|
15
|
+
activemodel (= 7.2.1)
|
16
|
+
activesupport (= 7.2.1)
|
17
|
+
timeout (>= 0.4.0)
|
18
|
+
activesupport (7.2.1)
|
19
|
+
base64
|
20
|
+
bigdecimal
|
21
|
+
concurrent-ruby (~> 1.0, >= 1.3.1)
|
22
|
+
connection_pool (>= 2.2.5)
|
23
|
+
drb
|
24
|
+
i18n (>= 1.6, < 2)
|
25
|
+
logger (>= 1.4.2)
|
26
|
+
minitest (>= 5.1)
|
27
|
+
securerandom (>= 0.3)
|
28
|
+
tzinfo (~> 2.0, >= 2.0.5)
|
29
|
+
base64 (0.2.0)
|
30
|
+
bigdecimal (3.1.8)
|
31
|
+
byebug (11.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.1)
|
41
|
+
drb (2.2.1)
|
42
|
+
edge_rider (2.3.0)
|
43
|
+
activerecord (>= 3.2)
|
44
|
+
gemika (0.8.3)
|
45
|
+
i18n (1.14.5)
|
46
|
+
concurrent-ruby (~> 1.0)
|
47
|
+
logger (1.6.1)
|
48
|
+
minitest (5.25.1)
|
49
|
+
mysql2 (0.5.6)
|
50
|
+
rake (13.2.1)
|
51
|
+
rspec (3.13.0)
|
52
|
+
rspec-core (~> 3.13.0)
|
53
|
+
rspec-expectations (~> 3.13.0)
|
54
|
+
rspec-mocks (~> 3.13.0)
|
55
|
+
rspec-core (3.13.1)
|
56
|
+
rspec-support (~> 3.13.0)
|
57
|
+
rspec-expectations (3.13.2)
|
58
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
59
|
+
rspec-support (~> 3.13.0)
|
60
|
+
rspec-mocks (3.13.1)
|
61
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
62
|
+
rspec-support (~> 3.13.0)
|
63
|
+
rspec-support (3.13.1)
|
64
|
+
securerandom (0.3.1)
|
65
|
+
timeout (0.4.1)
|
66
|
+
tzinfo (2.0.6)
|
67
|
+
concurrent-ruby (~> 1.0)
|
68
|
+
|
69
|
+
PLATFORMS
|
70
|
+
x86_64-linux
|
71
|
+
|
72
|
+
DEPENDENCIES
|
73
|
+
activerecord (~> 7.2.1)
|
74
|
+
byebug
|
75
|
+
database_cleaner
|
76
|
+
gemika
|
77
|
+
minidusen!
|
78
|
+
mysql2 (~> 0.5)
|
79
|
+
rake
|
80
|
+
rspec (~> 3.5)
|
81
|
+
|
82
|
+
BUNDLED WITH
|
83
|
+
2.5.6
|
@@ -1,13 +1,13 @@
|
|
1
1
|
source 'https://rubygems.org'
|
2
2
|
|
3
3
|
# Runtime dependencies
|
4
|
-
gem 'activerecord', '~>
|
5
|
-
gem 'pg'
|
4
|
+
gem 'activerecord', '~>7.2.1'
|
5
|
+
gem 'pg', '~> 1.4.0'
|
6
6
|
|
7
7
|
# Development dependencies
|
8
8
|
gem 'rake'
|
9
9
|
gem 'database_cleaner'
|
10
|
-
gem 'rspec', '~>3.
|
10
|
+
gem 'rspec', '~>3.5'
|
11
11
|
gem 'byebug'
|
12
12
|
gem 'gemika'
|
13
13
|
|
data/Gemfile.7.2.pg.lock
ADDED
@@ -0,0 +1,83 @@
|
|
1
|
+
PATH
|
2
|
+
remote: .
|
3
|
+
specs:
|
4
|
+
minidusen (1.0.0)
|
5
|
+
activerecord (>= 3.2)
|
6
|
+
activesupport (>= 3.2)
|
7
|
+
edge_rider (>= 0.2.5)
|
8
|
+
|
9
|
+
GEM
|
10
|
+
remote: https://rubygems.org/
|
11
|
+
specs:
|
12
|
+
activemodel (7.2.1)
|
13
|
+
activesupport (= 7.2.1)
|
14
|
+
activerecord (7.2.1)
|
15
|
+
activemodel (= 7.2.1)
|
16
|
+
activesupport (= 7.2.1)
|
17
|
+
timeout (>= 0.4.0)
|
18
|
+
activesupport (7.2.1)
|
19
|
+
base64
|
20
|
+
bigdecimal
|
21
|
+
concurrent-ruby (~> 1.0, >= 1.3.1)
|
22
|
+
connection_pool (>= 2.2.5)
|
23
|
+
drb
|
24
|
+
i18n (>= 1.6, < 2)
|
25
|
+
logger (>= 1.4.2)
|
26
|
+
minitest (>= 5.1)
|
27
|
+
securerandom (>= 0.3)
|
28
|
+
tzinfo (~> 2.0, >= 2.0.5)
|
29
|
+
base64 (0.2.0)
|
30
|
+
bigdecimal (3.1.8)
|
31
|
+
byebug (11.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.1)
|
41
|
+
drb (2.2.1)
|
42
|
+
edge_rider (2.3.0)
|
43
|
+
activerecord (>= 3.2)
|
44
|
+
gemika (0.8.3)
|
45
|
+
i18n (1.14.5)
|
46
|
+
concurrent-ruby (~> 1.0)
|
47
|
+
logger (1.6.1)
|
48
|
+
minitest (5.25.1)
|
49
|
+
pg (1.4.6)
|
50
|
+
rake (13.2.1)
|
51
|
+
rspec (3.13.0)
|
52
|
+
rspec-core (~> 3.13.0)
|
53
|
+
rspec-expectations (~> 3.13.0)
|
54
|
+
rspec-mocks (~> 3.13.0)
|
55
|
+
rspec-core (3.13.1)
|
56
|
+
rspec-support (~> 3.13.0)
|
57
|
+
rspec-expectations (3.13.2)
|
58
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
59
|
+
rspec-support (~> 3.13.0)
|
60
|
+
rspec-mocks (3.13.1)
|
61
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
62
|
+
rspec-support (~> 3.13.0)
|
63
|
+
rspec-support (3.13.1)
|
64
|
+
securerandom (0.3.1)
|
65
|
+
timeout (0.4.1)
|
66
|
+
tzinfo (2.0.6)
|
67
|
+
concurrent-ruby (~> 1.0)
|
68
|
+
|
69
|
+
PLATFORMS
|
70
|
+
x86_64-linux
|
71
|
+
|
72
|
+
DEPENDENCIES
|
73
|
+
activerecord (~> 7.2.1)
|
74
|
+
byebug
|
75
|
+
database_cleaner
|
76
|
+
gemika
|
77
|
+
minidusen!
|
78
|
+
pg (~> 1.4.0)
|
79
|
+
rake
|
80
|
+
rspec (~> 3.5)
|
81
|
+
|
82
|
+
BUNDLED WITH
|
83
|
+
2.5.6
|
data/Gemfile.8.0.mysql2
ADDED
@@ -0,0 +1,15 @@
|
|
1
|
+
source 'https://rubygems.org'
|
2
|
+
|
3
|
+
# Runtime dependencies
|
4
|
+
gem 'activerecord', '~>8.0.1'
|
5
|
+
gem 'mysql2', '~>0.5'
|
6
|
+
|
7
|
+
# Development dependencies
|
8
|
+
gem 'rake'
|
9
|
+
gem 'database_cleaner'
|
10
|
+
gem 'rspec', '~>3.5'
|
11
|
+
gem 'byebug'
|
12
|
+
gem 'gemika'
|
13
|
+
|
14
|
+
# Gem under test
|
15
|
+
gem 'minidusen', :path => '.'
|