minidusen 0.8.3 → 0.10.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5d7d52395ab8c47d649db4a1bd64ff1d9856df7149e45c552c6f4654531602e3
4
- data.tar.gz: 9522fcd64d36f200cd6b5531feb874326e067f7f29db31ed85db8d20dd6f6bc5
3
+ metadata.gz: '063886746bb04d49c8cf41f5e65df18f73fcea17cab398c6cadcdef622633a8d'
4
+ data.tar.gz: 7f2a39216e26a2277e2f4a7c2b21abad3b14897392925d5d0b867307f6020e1b
5
5
  SHA512:
6
- metadata.gz: b9401b8a933f12b85ed38079ddbbbcd9f321d10b9203ca122edce8756584eae1f23b8029f0bee451c753eddce785e81493d477631aa7d84335ce840ae797bab6
7
- data.tar.gz: 146a2c766b2566905ab8cfb1a9ac2f3033b020469f76bae6327c3b42b09b3a9b785753b5d66e2e70842ff934abf938e881eeb90ea1b2f68b1523c7b7b0f596ee
6
+ metadata.gz: a5b8c0e3aea84a32368b1e22e6d635448e21cb0fdaf4d9038fa4d13e8623c3da25a7b4b01b9568ce93cf0ce09c0332d1bd26e1d87d5648cdfed72a9c84d7eed4
7
+ data.tar.gz: 4e4fcb3aa6c151abeacf087fda49edbe37fc8580f4cb65fb5a294a825ed377f40a168f7d0b34cca6f0dcd93bb88f0086e5bec6f2b081bf3777686f71baa0bffc
@@ -0,0 +1,100 @@
1
+ ---
2
+ name: Tests
3
+ 'on':
4
+ push:
5
+ branches:
6
+ - master
7
+ pull_request:
8
+ branches:
9
+ - master
10
+ jobs:
11
+ test_mysql:
12
+ runs-on: ubuntu-20.04
13
+ services:
14
+ mysql:
15
+ image: mysql:5.6
16
+ env:
17
+ MYSQL_ROOT_PASSWORD: password
18
+ options: --health-cmd "mysqladmin ping" --health-interval 10s --health-timeout
19
+ 5s --health-retries 5
20
+ ports:
21
+ - 3306:3306
22
+ strategy:
23
+ fail-fast: false
24
+ matrix:
25
+ 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
+ gemfile: Gemfile.6.1.mysql2
34
+ - ruby: 3.0.0
35
+ gemfile: Gemfile.6.1.mysql2
36
+ - ruby: 3.0.0
37
+ gemfile: Gemfile.7.0.mysql2
38
+ env:
39
+ BUNDLE_GEMFILE: "${{ matrix.gemfile }}"
40
+ steps:
41
+ - uses: actions/checkout@v2
42
+ - name: Install ruby
43
+ uses: ruby/setup-ruby@v1
44
+ with:
45
+ ruby-version: "${{ matrix.ruby }}"
46
+ - name: Setup database
47
+ run: |
48
+ sudo apt-get install -y mariadb-client libmariadbclient-dev
49
+ mysql -e 'create database IF NOT EXISTS test;' -u root --password=password -P 3306 -h 127.0.0.1
50
+ - name: Bundle
51
+ run: |
52
+ gem install bundler:1.17.3
53
+ bundle install --no-deployment
54
+ - name: Run tests
55
+ run: bundle exec rspec
56
+ test_pg:
57
+ runs-on: ubuntu-20.04
58
+ services:
59
+ postgres:
60
+ image: postgres
61
+ env:
62
+ POSTGRES_PASSWORD: postgres
63
+ options: "--health-cmd pg_isready --health-interval 10s --health-timeout 5s
64
+ --health-retries 5"
65
+ ports:
66
+ - 5432:5432
67
+ strategy:
68
+ fail-fast: false
69
+ matrix:
70
+ include:
71
+ - ruby: 2.5.8
72
+ gemfile: Gemfile.4.2.pg
73
+ - ruby: 2.5.8
74
+ gemfile: Gemfile.5.2.pg
75
+ - ruby: 2.5.8
76
+ gemfile: Gemfile.6.0.pg
77
+ - ruby: 2.5.8
78
+ gemfile: Gemfile.6.1.pg
79
+ - ruby: 3.0.0
80
+ gemfile: Gemfile.6.1.pg
81
+ - ruby: 3.0.0
82
+ gemfile: Gemfile.7.0.pg
83
+ env:
84
+ BUNDLE_GEMFILE: "${{ matrix.gemfile }}"
85
+ steps:
86
+ - uses: actions/checkout@v2
87
+ - name: Install ruby
88
+ uses: ruby/setup-ruby@v1
89
+ with:
90
+ ruby-version: "${{ matrix.ruby }}"
91
+ - name: Setup database
92
+ run: |
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
99
+ - name: Run tests
100
+ run: bundle exec rspec
data/.ruby-version CHANGED
@@ -1,2 +1 @@
1
- 2.2.4
2
-
1
+ 2.5.8
data/CHANGELOG.md CHANGED
@@ -1,5 +1,39 @@
1
- # Minidusen change log
1
+ # Changelog
2
+ All notable changes to this project will be documented in this file.
2
3
 
3
- ## 0.8.0 (2017-08-21)
4
+ This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
4
5
 
6
+
7
+ ## Unreleased
8
+
9
+ ### Breaking changes
10
+
11
+ ### Compatible changes
12
+
13
+
14
+ ## 0.10.1 2022-03-16
15
+
16
+ ### Compatible changes
17
+
18
+ - Add Rails 7.0 and Ruby 3.0 to test matrix
19
+
20
+ ## 0.10.0 2021-08-11
21
+
22
+ ### Compatible changes
23
+
24
+ - Remove Rails 3.2 and Ruby < 2.5 from test matrix
25
+ - Add Rails 6.1 and Ruby 3.0 to test matrix
26
+
27
+ ## 0.9.0 2019-06-12
28
+
29
+ ### Compatible changes
30
+
31
+ - CHANGELOG to satisfy [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) format.
32
+ - Use Rails 5.2 for tests instead of Rails 5.0
33
+ - Added Ruby 2.5.3 to test matrix
34
+ - Added support for Rails 6 RC1
35
+
36
+ ## 0.8.0 2017-08-21
37
+
38
+ ### Added
5
39
  - Filters are now run in the context of the filter instance, not the filter class. This allows using private methods or instance variables.
@@ -2,7 +2,7 @@ source 'https://rubygems.org'
2
2
 
3
3
  # Runtime dependencies
4
4
  gem 'activerecord', '~>4.2.1'
5
- gem 'mysql2', '~> 0.3.17'
5
+ gem 'mysql2', '~> 0.4.10'
6
6
 
7
7
  # Development dependencies
8
8
  gem 'database_cleaner'
@@ -12,4 +12,4 @@ gem 'byebug'
12
12
  gem 'gemika'
13
13
 
14
14
  # Gem under test
15
- gem 'minidusen', :path => '..'
15
+ gem 'minidusen', :path => '.'
@@ -1,7 +1,7 @@
1
1
  PATH
2
- remote: ..
2
+ remote: .
3
3
  specs:
4
- minidusen (0.8.3)
4
+ minidusen (0.10.1)
5
5
  activerecord (>= 3.2)
6
6
  activesupport (>= 3.2)
7
7
  edge_rider (>= 0.2.5)
@@ -27,13 +27,13 @@ GEM
27
27
  byebug (9.0.5)
28
28
  database_cleaner (1.5.3)
29
29
  diff-lcs (1.2.5)
30
- edge_rider (0.3.2)
31
- activerecord
32
- gemika (0.3.2)
30
+ edge_rider (2.1.1)
31
+ activerecord (>= 3.2)
32
+ gemika (0.5.0)
33
33
  i18n (0.7.0)
34
- json (1.8.3)
34
+ json (1.8.6)
35
35
  minitest (5.9.0)
36
- mysql2 (0.3.21)
36
+ mysql2 (0.4.10)
37
37
  rake (11.3.0)
38
38
  rspec (3.5.0)
39
39
  rspec-core (~> 3.5.0)
@@ -61,9 +61,9 @@ DEPENDENCIES
61
61
  database_cleaner
62
62
  gemika
63
63
  minidusen!
64
- mysql2 (~> 0.3.17)
64
+ mysql2 (~> 0.4.10)
65
65
  rake
66
66
  rspec (~> 3.4)
67
67
 
68
68
  BUNDLED WITH
69
- 1.16.2
69
+ 1.17.3
@@ -12,4 +12,4 @@ gem 'byebug'
12
12
  gem 'gemika'
13
13
 
14
14
  # Gem under test
15
- gem 'minidusen', :path => '..'
15
+ gem 'minidusen', :path => '.'
@@ -1,7 +1,7 @@
1
1
  PATH
2
- remote: ..
2
+ remote: .
3
3
  specs:
4
- minidusen (0.8.3)
4
+ minidusen (0.10.1)
5
5
  activerecord (>= 3.2)
6
6
  activesupport (>= 3.2)
7
7
  edge_rider (>= 0.2.5)
@@ -27,11 +27,11 @@ GEM
27
27
  byebug (9.0.5)
28
28
  database_cleaner (1.5.3)
29
29
  diff-lcs (1.2.5)
30
- edge_rider (0.3.2)
31
- activerecord
32
- gemika (0.3.2)
30
+ edge_rider (2.1.1)
31
+ activerecord (>= 3.2)
32
+ gemika (0.5.0)
33
33
  i18n (0.7.0)
34
- json (1.8.3)
34
+ json (1.8.6)
35
35
  minitest (5.9.0)
36
36
  pg (0.19.0)
37
37
  rake (11.3.0)
@@ -66,4 +66,4 @@ DEPENDENCIES
66
66
  rspec (~> 3.4)
67
67
 
68
68
  BUNDLED WITH
69
- 1.16.2
69
+ 1.17.3
@@ -0,0 +1,16 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Runtime dependencies
4
+ gem 'activerecord', '~>5.2.3'
5
+ gem 'mysql2', '~>0.4.4'
6
+ gem 'i18n', '<=1.5.1' # Required to support tests for Ruby 2.2.x
7
+
8
+ # Development dependencies
9
+ gem 'rake'
10
+ gem 'database_cleaner'
11
+ gem 'rspec', '~>3.5'
12
+ gem 'byebug'
13
+ gem 'gemika'
14
+
15
+ # Gem under test
16
+ gem 'minidusen', :path => '.'
@@ -1,7 +1,7 @@
1
1
  PATH
2
- remote: ..
2
+ remote: .
3
3
  specs:
4
- minidusen (0.8.3)
4
+ minidusen (0.10.1)
5
5
  activerecord (>= 3.2)
6
6
  activesupport (>= 3.2)
7
7
  edge_rider (>= 0.2.5)
@@ -9,28 +9,29 @@ PATH
9
9
  GEM
10
10
  remote: https://rubygems.org/
11
11
  specs:
12
- activemodel (5.0.0.1)
13
- activesupport (= 5.0.0.1)
14
- activerecord (5.0.0.1)
15
- activemodel (= 5.0.0.1)
16
- activesupport (= 5.0.0.1)
17
- arel (~> 7.0)
18
- activesupport (5.0.0.1)
12
+ activemodel (5.2.3)
13
+ activesupport (= 5.2.3)
14
+ activerecord (5.2.3)
15
+ activemodel (= 5.2.3)
16
+ activesupport (= 5.2.3)
17
+ arel (>= 9.0)
18
+ activesupport (5.2.3)
19
19
  concurrent-ruby (~> 1.0, >= 1.0.2)
20
- i18n (~> 0.7)
20
+ i18n (>= 0.7, < 2)
21
21
  minitest (~> 5.1)
22
22
  tzinfo (~> 1.1)
23
- arel (7.1.2)
23
+ arel (9.0.0)
24
24
  byebug (9.0.5)
25
- concurrent-ruby (1.0.2)
26
- database_cleaner (1.5.3)
25
+ concurrent-ruby (1.1.5)
26
+ database_cleaner (1.7.0)
27
27
  diff-lcs (1.2.5)
28
- edge_rider (0.3.2)
29
- activerecord
30
- gemika (0.3.2)
31
- i18n (0.7.0)
32
- minitest (5.9.0)
33
- mysql2 (0.4.4)
28
+ edge_rider (2.1.1)
29
+ activerecord (>= 3.2)
30
+ gemika (0.5.0)
31
+ i18n (1.5.1)
32
+ concurrent-ruby (~> 1.0)
33
+ minitest (5.11.3)
34
+ mysql2 (0.4.10)
34
35
  rake (11.3.0)
35
36
  rspec (3.5.0)
36
37
  rspec-core (~> 3.5.0)
@@ -45,22 +46,23 @@ GEM
45
46
  diff-lcs (>= 1.2.0, < 2.0)
46
47
  rspec-support (~> 3.5.0)
47
48
  rspec-support (3.5.0)
48
- thread_safe (0.3.5)
49
- tzinfo (1.2.2)
49
+ thread_safe (0.3.6)
50
+ tzinfo (1.2.5)
50
51
  thread_safe (~> 0.1)
51
52
 
52
53
  PLATFORMS
53
54
  ruby
54
55
 
55
56
  DEPENDENCIES
56
- activerecord (~> 5.0.0)
57
+ activerecord (~> 5.2.3)
57
58
  byebug
58
59
  database_cleaner
59
60
  gemika
61
+ i18n (<= 1.5.1)
60
62
  minidusen!
61
63
  mysql2 (~> 0.4.4)
62
64
  rake
63
65
  rspec (~> 3.5)
64
66
 
65
67
  BUNDLED WITH
66
- 1.16.2
68
+ 1.17.3
data/Gemfile.5.2.pg ADDED
@@ -0,0 +1,16 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Runtime dependencies
4
+ gem 'activerecord', '~>5.2.3'
5
+ gem 'pg', '~>0.18.4'
6
+ gem 'i18n', '<=1.5.1' # Required to support tests for Ruby 2.2.x
7
+
8
+ # Development dependendcies
9
+ gem 'rake'
10
+ gem 'database_cleaner'
11
+ gem 'rspec', '~>3.5'
12
+ gem 'byebug'
13
+ gem 'gemika'
14
+
15
+ # Gem under test
16
+ gem 'minidusen', :path => '.'
@@ -1,7 +1,7 @@
1
1
  PATH
2
- remote: ..
2
+ remote: .
3
3
  specs:
4
- minidusen (0.8.3)
4
+ minidusen (0.10.1)
5
5
  activerecord (>= 3.2)
6
6
  activesupport (>= 3.2)
7
7
  edge_rider (>= 0.2.5)
@@ -9,27 +9,28 @@ PATH
9
9
  GEM
10
10
  remote: https://rubygems.org/
11
11
  specs:
12
- activemodel (5.0.0.1)
13
- activesupport (= 5.0.0.1)
14
- activerecord (5.0.0.1)
15
- activemodel (= 5.0.0.1)
16
- activesupport (= 5.0.0.1)
17
- arel (~> 7.0)
18
- activesupport (5.0.0.1)
12
+ activemodel (5.2.3)
13
+ activesupport (= 5.2.3)
14
+ activerecord (5.2.3)
15
+ activemodel (= 5.2.3)
16
+ activesupport (= 5.2.3)
17
+ arel (>= 9.0)
18
+ activesupport (5.2.3)
19
19
  concurrent-ruby (~> 1.0, >= 1.0.2)
20
- i18n (~> 0.7)
20
+ i18n (>= 0.7, < 2)
21
21
  minitest (~> 5.1)
22
22
  tzinfo (~> 1.1)
23
- arel (7.1.2)
23
+ arel (9.0.0)
24
24
  byebug (9.0.5)
25
- concurrent-ruby (1.0.2)
26
- database_cleaner (1.5.3)
25
+ concurrent-ruby (1.1.5)
26
+ database_cleaner (1.7.0)
27
27
  diff-lcs (1.2.5)
28
- edge_rider (0.3.2)
29
- activerecord
30
- gemika (0.3.2)
31
- i18n (0.7.0)
32
- minitest (5.9.0)
28
+ edge_rider (2.0.0)
29
+ activerecord (>= 3.2)
30
+ gemika (0.5.0)
31
+ i18n (1.5.1)
32
+ concurrent-ruby (~> 1.0)
33
+ minitest (5.11.3)
33
34
  pg (0.18.4)
34
35
  rake (11.3.0)
35
36
  rspec (3.5.0)
@@ -45,22 +46,23 @@ GEM
45
46
  diff-lcs (>= 1.2.0, < 2.0)
46
47
  rspec-support (~> 3.5.0)
47
48
  rspec-support (3.5.0)
48
- thread_safe (0.3.5)
49
- tzinfo (1.2.2)
49
+ thread_safe (0.3.6)
50
+ tzinfo (1.2.5)
50
51
  thread_safe (~> 0.1)
51
52
 
52
53
  PLATFORMS
53
54
  ruby
54
55
 
55
56
  DEPENDENCIES
56
- activerecord (~> 5.0.0)
57
+ activerecord (~> 5.2.3)
57
58
  byebug
58
59
  database_cleaner
59
60
  gemika
61
+ i18n (<= 1.5.1)
60
62
  minidusen!
61
63
  pg (~> 0.18.4)
62
64
  rake
63
65
  rspec (~> 3.5)
64
66
 
65
67
  BUNDLED WITH
66
- 1.16.2
68
+ 2.2.28
@@ -1,7 +1,7 @@
1
1
  source 'https://rubygems.org'
2
2
 
3
3
  # Runtime dependencies
4
- gem 'activerecord', '~>5.0.0'
4
+ gem 'activerecord', '~>6.0.0'
5
5
  gem 'mysql2', '~>0.4.4'
6
6
 
7
7
  # Development dependencies
@@ -12,4 +12,4 @@ gem 'byebug'
12
12
  gem 'gemika'
13
13
 
14
14
  # Gem under test
15
- gem 'minidusen', :path => '..'
15
+ gem 'minidusen', :path => '.'
@@ -0,0 +1,67 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ minidusen (0.10.1)
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 (6.0.3.4)
13
+ activesupport (= 6.0.3.4)
14
+ activerecord (6.0.3.4)
15
+ activemodel (= 6.0.3.4)
16
+ activesupport (= 6.0.3.4)
17
+ activesupport (6.0.3.4)
18
+ concurrent-ruby (~> 1.0, >= 1.0.2)
19
+ i18n (>= 0.7, < 2)
20
+ minitest (~> 5.1)
21
+ tzinfo (~> 1.1)
22
+ zeitwerk (~> 2.2, >= 2.2.2)
23
+ byebug (11.0.1)
24
+ concurrent-ruby (1.1.7)
25
+ database_cleaner (1.7.0)
26
+ diff-lcs (1.3)
27
+ edge_rider (2.1.1)
28
+ activerecord (>= 3.2)
29
+ gemika (0.5.0)
30
+ i18n (1.8.5)
31
+ concurrent-ruby (~> 1.0)
32
+ minitest (5.14.2)
33
+ mysql2 (0.4.10)
34
+ rake (12.3.2)
35
+ rspec (3.8.0)
36
+ rspec-core (~> 3.8.0)
37
+ rspec-expectations (~> 3.8.0)
38
+ rspec-mocks (~> 3.8.0)
39
+ rspec-core (3.8.0)
40
+ rspec-support (~> 3.8.0)
41
+ rspec-expectations (3.8.2)
42
+ diff-lcs (>= 1.2.0, < 2.0)
43
+ rspec-support (~> 3.8.0)
44
+ rspec-mocks (3.8.0)
45
+ diff-lcs (>= 1.2.0, < 2.0)
46
+ rspec-support (~> 3.8.0)
47
+ rspec-support (3.8.0)
48
+ thread_safe (0.3.6)
49
+ tzinfo (1.2.7)
50
+ thread_safe (~> 0.1)
51
+ zeitwerk (2.4.0)
52
+
53
+ PLATFORMS
54
+ ruby
55
+
56
+ DEPENDENCIES
57
+ activerecord (~> 6.0.0)
58
+ byebug
59
+ database_cleaner
60
+ gemika
61
+ minidusen!
62
+ mysql2 (~> 0.4.4)
63
+ rake
64
+ rspec (~> 3.5)
65
+
66
+ BUNDLED WITH
67
+ 1.17.3
@@ -1,7 +1,7 @@
1
1
  source 'https://rubygems.org'
2
2
 
3
3
  # Runtime dependencies
4
- gem 'activerecord', '~>5.0.0'
4
+ gem 'activerecord', '~>6.0.0'
5
5
  gem 'pg', '~>0.18.4'
6
6
 
7
7
  # Development dependendcies
@@ -12,4 +12,4 @@ gem 'byebug'
12
12
  gem 'gemika'
13
13
 
14
14
  # Gem under test
15
- gem 'minidusen', :path => '..'
15
+ gem 'minidusen', :path => '.'
@@ -0,0 +1,67 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ minidusen (0.10.1)
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 (6.0.3.4)
13
+ activesupport (= 6.0.3.4)
14
+ activerecord (6.0.3.4)
15
+ activemodel (= 6.0.3.4)
16
+ activesupport (= 6.0.3.4)
17
+ activesupport (6.0.3.4)
18
+ concurrent-ruby (~> 1.0, >= 1.0.2)
19
+ i18n (>= 0.7, < 2)
20
+ minitest (~> 5.1)
21
+ tzinfo (~> 1.1)
22
+ zeitwerk (~> 2.2, >= 2.2.2)
23
+ byebug (11.0.1)
24
+ concurrent-ruby (1.1.7)
25
+ database_cleaner (1.7.0)
26
+ diff-lcs (1.3)
27
+ edge_rider (2.1.1)
28
+ activerecord (>= 3.2)
29
+ gemika (0.5.0)
30
+ i18n (1.8.5)
31
+ concurrent-ruby (~> 1.0)
32
+ minitest (5.14.2)
33
+ pg (0.18.4)
34
+ rake (12.3.2)
35
+ rspec (3.8.0)
36
+ rspec-core (~> 3.8.0)
37
+ rspec-expectations (~> 3.8.0)
38
+ rspec-mocks (~> 3.8.0)
39
+ rspec-core (3.8.0)
40
+ rspec-support (~> 3.8.0)
41
+ rspec-expectations (3.8.2)
42
+ diff-lcs (>= 1.2.0, < 2.0)
43
+ rspec-support (~> 3.8.0)
44
+ rspec-mocks (3.8.0)
45
+ diff-lcs (>= 1.2.0, < 2.0)
46
+ rspec-support (~> 3.8.0)
47
+ rspec-support (3.8.0)
48
+ thread_safe (0.3.6)
49
+ tzinfo (1.2.7)
50
+ thread_safe (~> 0.1)
51
+ zeitwerk (2.4.0)
52
+
53
+ PLATFORMS
54
+ ruby
55
+
56
+ DEPENDENCIES
57
+ activerecord (~> 6.0.0)
58
+ byebug
59
+ database_cleaner
60
+ gemika
61
+ minidusen!
62
+ pg (~> 0.18.4)
63
+ rake
64
+ rspec (~> 3.5)
65
+
66
+ BUNDLED WITH
67
+ 1.17.3
@@ -0,0 +1,15 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Runtime dependencies
4
+ gem 'activerecord', '~>6.1.0'
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 => '.'