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.
Files changed (44) hide show
  1. checksums.yaml +4 -4
  2. data/.github/workflows/test.yml +55 -48
  3. data/.ruby-version +1 -1
  4. data/CHANGELOG.md +6 -0
  5. data/Gemfile.6.1.mysql2.lock +2 -2
  6. data/Gemfile.6.1.pg.lock +2 -2
  7. data/Gemfile.7.0.mysql2.lock +2 -2
  8. data/Gemfile.7.0.pg.lock +2 -2
  9. data/{Gemfile.6.0.mysql2 → Gemfile.7.1.mysql2} +2 -2
  10. data/Gemfile.7.1.mysql2.lock +81 -0
  11. data/{Gemfile.6.0.pg → Gemfile.7.1.pg} +2 -2
  12. data/Gemfile.7.1.pg.lock +81 -0
  13. data/{Gemfile.4.2.mysql2 → Gemfile.7.2.mysql2} +4 -4
  14. data/Gemfile.7.2.mysql2.lock +83 -0
  15. data/{Gemfile.4.2.pg → Gemfile.7.2.pg} +3 -3
  16. data/Gemfile.7.2.pg.lock +83 -0
  17. data/Gemfile.8.0.mysql2 +15 -0
  18. data/Gemfile.8.0.mysql2.lock +87 -0
  19. data/Gemfile.8.0.pg +15 -0
  20. data/Gemfile.8.0.pg.lock +87 -0
  21. data/README.md +21 -6
  22. data/lib/minidusen/parser.rb +4 -2
  23. data/lib/minidusen/syntax.rb +14 -3
  24. data/lib/minidusen/token.rb +5 -0
  25. data/lib/minidusen/util.rb +2 -2
  26. data/lib/minidusen/version.rb +1 -1
  27. data/media/logo.dark.shapes.svg +137 -0
  28. data/media/logo.dark.text.svg +107 -0
  29. data/media/logo.light.shapes.svg +136 -0
  30. data/media/logo.light.text.svg +106 -0
  31. data/media/makandra-with-bottom-margin.dark.svg +180 -0
  32. data/media/makandra-with-bottom-margin.light.svg +180 -0
  33. data/spec/minidusen/filter_spec.rb +8 -0
  34. data/spec/minidusen/parser_spec.rb +8 -0
  35. data/spec/support/database.github.yml +2 -2
  36. metadata +21 -15
  37. data/Gemfile.4.2.mysql2.lock +0 -69
  38. data/Gemfile.4.2.pg.lock +0 -69
  39. data/Gemfile.5.2.mysql2 +0 -16
  40. data/Gemfile.5.2.mysql2.lock +0 -68
  41. data/Gemfile.5.2.pg +0 -16
  42. data/Gemfile.5.2.pg.lock +0 -68
  43. data/Gemfile.6.0.mysql2.lock +0 -67
  44. data/Gemfile.6.0.pg.lock +0 -67
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0477143d120aca32117947d5254c8cda109cb7a1f2e9e222d072e76e2cc4464c
4
- data.tar.gz: bda6031527da43e2b132d9bd944752be319d60eff53b9ded109a8df26b021fa1
3
+ metadata.gz: 66b0584b719725f8f625cb93bab425665cb474c609a1a5c229954f7211541d21
4
+ data.tar.gz: da214c18bb9ae43e795d224a9561e4a08ae6be2acdc5cfddf0a4e3231aab9bc9
5
5
  SHA512:
6
- metadata.gz: 6fcab8cf43f5d84eb8fe3ce54f21aee183c7048652274e33bbd3f909d9850ced60ce7b2fa93b6b0b90e285bface09f13a8e202d3fc08e3ffe03ae95f80f20c15
7
- data.tar.gz: 5005124cb02a214f7f1b69aa87ca89b4b4ba83e24396bb3ad523c4a099c5ec625fbfc62b58879733799243fc01be956ac322cd3d9b2886c4f11479f9a06df52c
6
+ metadata.gz: ea259513910c5691dc6fd7e332b3aa30479ce7dd4c9080e88ef14b6277fd33516cd4698361a600036aa9f1e587da6fd774f8a8097a7fc108b29b78e9235a481a
7
+ data.tar.gz: e827389410f4730a7af91ed7caf71731baa2ddc323ee9e31e65da43bdd55857b15a85d06afd1aa4a1376730f3390d5f9dd03d4d3a296a6411a0996fd819f7719
@@ -1,100 +1,107 @@
1
1
  ---
2
2
  name: Tests
3
- 'on':
3
+
4
+ on:
4
5
  push:
5
6
  branches:
6
- - master
7
+ - main
7
8
  pull_request:
8
9
  branches:
9
- - master
10
+ - main
11
+
10
12
  jobs:
11
13
  test_mysql:
12
- runs-on: ubuntu-20.04
14
+ runs-on: ubuntu-24.04
15
+
13
16
  services:
14
17
  mysql:
15
- image: mysql:5.6
18
+ image: mysql:5.7
16
19
  env:
17
20
  MYSQL_ROOT_PASSWORD: password
18
- options: --health-cmd "mysqladmin ping" --health-interval 10s --health-timeout
19
- 5s --health-retries 5
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.5.8
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.0
35
+ - ruby: 3.2.3
35
36
  gemfile: Gemfile.6.1.mysql2
36
- - ruby: 3.2.0
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: "${{ matrix.gemfile }}"
47
+ BUNDLE_GEMFILE: ${{ matrix.gemfile }}
48
+
40
49
  steps:
41
- - uses: actions/checkout@v2
50
+ - uses: actions/checkout@v3
42
51
  - name: Install ruby
43
52
  uses: ruby/setup-ruby@v1
44
53
  with:
45
- ruby-version: "${{ matrix.ruby }}"
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 test;' -u root --password=password -P 3306 -h 127.0.0.1
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-20.04
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
- options: "--health-cmd pg_isready --health-interval 10s --health-timeout 5s
63
- --health-retries 5"
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.5.8
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.0
85
+ - ruby: 3.2.3
79
86
  gemfile: Gemfile.6.1.pg
80
- - ruby: 3.2.0
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: "${{ matrix.gemfile }}"
97
+ BUNDLE_GEMFILE: ${{ matrix.gemfile }}
98
+
84
99
  steps:
85
- - uses: actions/checkout@v2
100
+ - uses: actions/checkout@v3
86
101
  - name: Install ruby
87
102
  uses: ruby/setup-ruby@v1
88
103
  with:
89
- ruby-version: "${{ matrix.ruby }}"
90
- - name: Setup database
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.5.8
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
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- minidusen (0.11.1)
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.1.1)
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.11.1)
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.1.1)
32
+ edge_rider (2.4.0)
33
33
  activerecord (>= 3.2)
34
34
  gemika (0.8.1)
35
35
  i18n (1.8.9)
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- minidusen (0.11.1)
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.1.1)
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.11.1)
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.1.1)
31
+ edge_rider (2.4.0)
32
32
  activerecord (>= 3.2)
33
33
  gemika (0.8.1)
34
34
  i18n (1.8.11)
@@ -1,8 +1,8 @@
1
1
  source 'https://rubygems.org'
2
2
 
3
3
  # Runtime dependencies
4
- gem 'activerecord', '~>6.0.0'
5
- gem 'mysql2', '~>0.4.4'
4
+ gem 'activerecord', '~>7.1.4'
5
+ gem 'mysql2', '~>0.5'
6
6
 
7
7
  # Development dependencies
8
8
  gem 'rake'
@@ -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
@@ -1,8 +1,8 @@
1
1
  source 'https://rubygems.org'
2
2
 
3
3
  # Runtime dependencies
4
- gem 'activerecord', '~>6.0.0'
5
- gem 'pg', '~>0.18.4'
4
+ gem 'activerecord', '~>7.1.4'
5
+ gem 'pg', '~> 1.4.0'
6
6
 
7
7
  # Development dependencies
8
8
  gem 'rake'
@@ -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', '~>4.2.1'
5
- gem 'mysql2', '~> 0.4.10'
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 'rspec', '~>3.4'
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', '~>4.2.1'
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.4'
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 (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
@@ -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 => '.'