has_defaults 0.4.4 → 1.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (41) hide show
  1. checksums.yaml +7 -0
  2. data/.github/workflows/test.yml +108 -0
  3. data/.gitignore +1 -0
  4. data/.ruby-version +1 -1
  5. data/CHANGELOG.md +41 -0
  6. data/Gemfile +1 -0
  7. data/Gemfile.3.2.mysql2 +16 -0
  8. data/{gemfiles/Gemfile.3.2.mysql2.lock → Gemfile.3.2.mysql2.lock} +25 -7
  9. data/Gemfile.4.2.mysql2 +15 -0
  10. data/{gemfiles/Gemfile.4.2.mysql2.lock → Gemfile.4.2.mysql2.lock} +33 -21
  11. data/Gemfile.4.2.pg +15 -0
  12. data/{gemfiles/Gemfile.4.2.pg.lock → Gemfile.4.2.pg.lock} +17 -5
  13. data/Gemfile.5.2.mysql2 +15 -0
  14. data/{gemfiles/Gemfile.5.0.mysql2.lock → Gemfile.5.2.mysql2.lock} +32 -19
  15. data/Gemfile.5.2.pg +16 -0
  16. data/Gemfile.5.2.pg.lock +77 -0
  17. data/Gemfile.6.1.pg +15 -0
  18. data/Gemfile.6.1.pg.lock +75 -0
  19. data/Gemfile.7.0.pg +15 -0
  20. data/Gemfile.7.0.pg.lock +73 -0
  21. data/Gemfile.lock +1 -0
  22. data/README.md +30 -25
  23. data/has_defaults.gemspec +25 -15
  24. data/lib/has_defaults/version.rb +1 -1
  25. metadata +57 -79
  26. data/.travis.yml +0 -56
  27. data/gemfiles/Gemfile.2.3.mysql2 +0 -13
  28. data/gemfiles/Gemfile.2.3.mysql2.lock +0 -32
  29. data/gemfiles/Gemfile.3.2.mysql2 +0 -12
  30. data/gemfiles/Gemfile.4.2.mysql2 +0 -10
  31. data/gemfiles/Gemfile.4.2.pg +0 -10
  32. data/gemfiles/Gemfile.5.0.mysql2 +0 -10
  33. data/gemfiles/Gemfile.5.0.pg +0 -10
  34. data/gemfiles/Gemfile.5.0.pg.lock +0 -58
  35. data/spec/has_defaults/active_record_ext_spec.rb +0 -105
  36. data/spec/spec_helper.rb +0 -18
  37. data/spec/support/database.rb +0 -16
  38. data/spec/support/database.sample.yml +0 -10
  39. data/spec/support/database.travis.yml +0 -9
  40. data/spec/support/database.yml +0 -10
  41. data/spec/support/models.rb +0 -37
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: acb5aa54e082d9e9aeadd2f3ad9f4683742259aba5f6fe24eb60e153c9f5c4c2
4
+ data.tar.gz: 598cbd647639a8d8aa8a02f3d49fec91d535cb99cd01f2490f4e0af9bf265728
5
+ SHA512:
6
+ metadata.gz: a6edd0d47090c129cd0ab12a14b59ec82897d026593abdb25de133e53818d9af7eb59467f28d6099c0d4a4152b6fbb7027d22019c72475e48ce29c86790b4c36
7
+ data.tar.gz: 3a10c2d9b44a827909106f69b310991607063b1b68df9f4db583ca5947e5b815d59c53de1b513029361673bd016c40a8ff60367a873780325a30e5c2efdf3b18
@@ -0,0 +1,108 @@
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
+ # Rails 3.2 LTS: Ruby 2.5.7
25
+ # Rails 4.2: Ruby 2.5.7
26
+ # Rails 5.2: Ruby 2.5.7 and 2.7.4
27
+ matrix:
28
+ include:
29
+ - ruby: 2.5.7
30
+ gemfile: Gemfile.3.2.mysql2
31
+ - ruby: 2.5.7
32
+ gemfile: Gemfile.4.2.mysql2
33
+ - ruby: 2.5.7
34
+ gemfile: Gemfile.5.2.mysql2
35
+ - ruby: 2.7.4
36
+ gemfile: Gemfile.5.2.mysql2
37
+ env:
38
+ BUNDLE_GEMFILE: "${{ matrix.gemfile }}"
39
+ steps:
40
+ - uses: actions/checkout@v2
41
+ - name: Install ruby
42
+ uses: ruby/setup-ruby@v1
43
+ with:
44
+ ruby-version: "${{ matrix.ruby }}"
45
+ - name: Setup database
46
+ run: |
47
+ sudo apt-get update
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
+ # Rails 4.2: Ruby 2.5.7
70
+ # Rails 5.2: Ruby 2.5.7 and 2.7.4
71
+ # Rails 6.1: Ruby 2.5.7, 2.7.4 and 3.0.2
72
+ # Rails 7.0: Ruby 2.7.4 and 3.0.2
73
+ matrix:
74
+ include:
75
+ - ruby: 2.5.7
76
+ gemfile: Gemfile.4.2.pg
77
+ - ruby: 2.5.7
78
+ gemfile: Gemfile.5.2.pg
79
+ - ruby: 2.5.7
80
+ gemfile: Gemfile.6.1.pg
81
+ - ruby: 2.7.4
82
+ gemfile: Gemfile.5.2.pg
83
+ - ruby: 2.7.4
84
+ gemfile: Gemfile.6.1.pg
85
+ - ruby: 2.7.4
86
+ gemfile: Gemfile.7.0.pg
87
+ - ruby: 3.0.2
88
+ gemfile: Gemfile.6.1.pg
89
+ - ruby: 3.0.2
90
+ gemfile: Gemfile.7.0.pg
91
+ env:
92
+ BUNDLE_GEMFILE: "${{ matrix.gemfile }}"
93
+ steps:
94
+ - uses: actions/checkout@v2
95
+ - name: Install ruby
96
+ uses: ruby/setup-ruby@v1
97
+ with:
98
+ ruby-version: "${{ matrix.ruby }}"
99
+ - name: Setup database
100
+ run: |
101
+ sudo apt-get install -y postgresql-client
102
+ PGPASSWORD=postgres psql -c 'create database test;' -U postgres -p 5432 -h localhost
103
+ - name: Bundle
104
+ run: |
105
+ gem install bundler:2.2.26
106
+ bundle install --no-deployment
107
+ - name: Run tests
108
+ run: bundle exec rspec
data/.gitignore CHANGED
@@ -1,2 +1,3 @@
1
1
  .idea/*
2
+ spec/support/database.yml
2
3
  pkg
data/.ruby-version CHANGED
@@ -1 +1 @@
1
- 2.2.4
1
+ 2.7.4
data/CHANGELOG.md ADDED
@@ -0,0 +1,41 @@
1
+ # Changelog
2
+ All notable changes to this project will be documented in this file.
3
+
4
+ This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
5
+
6
+
7
+ ## Unreleased
8
+
9
+ ### Breaking changes
10
+
11
+ ### Compatible changes
12
+
13
+
14
+ ## 1.1.1 - 2022-03-09
15
+
16
+ ### Breaking changes
17
+
18
+ ### Compatible changes
19
+
20
+ * Activate Rubygems MFA
21
+
22
+
23
+ ## 1.1.0 - 2022-01-20
24
+
25
+ ### Breaking changes
26
+
27
+ ### Compatible changes
28
+
29
+ * Add support for Rails 7 (see [#7](https://github.com/makandra/has_defaults/issues/7))
30
+
31
+
32
+ ## 1.0.0 - 2021-08-25
33
+
34
+ ### Breaking changes
35
+
36
+ - Drop support for Ruby 1.8.7 and Rails 2.3
37
+
38
+ ### Compatible changes
39
+
40
+ - Added this CHANGELOG file.
41
+ - Add support for Rails 6.1
data/Gemfile ADDED
@@ -0,0 +1 @@
1
+ ./Gemfile.7.0.pg
@@ -0,0 +1,16 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Runtime dependencies
4
+ gem 'activerecord', '=3.2.22'
5
+ gem 'mysql2', git: 'https://github.com/makandra/mysql2', branch: '0.3.x-lts'
6
+ gem 'i18n'
7
+
8
+ # Development dependencies
9
+ gem 'rake', '=10.0.4'
10
+ gem 'database_cleaner', '~>1.0.0'
11
+ gem 'rspec', '~> 3.4'
12
+ gem 'gemika', '>= 0.2.0'
13
+ gem 'pry-byebug'
14
+
15
+ # Gem under test
16
+ gem 'has_defaults', :path => '.'
@@ -1,7 +1,14 @@
1
+ GIT
2
+ remote: https://github.com/makandra/mysql2
3
+ revision: c920d41e43c4722d4c065d2ea9d21494c560bd85
4
+ branch: 0.3.x-lts
5
+ specs:
6
+ mysql2 (0.3.21)
7
+
1
8
  PATH
2
- remote: ..
9
+ remote: .
3
10
  specs:
4
- has_defaults (0.4.3)
11
+ has_defaults (1.1.1)
5
12
  activerecord
6
13
 
7
14
  GEM
@@ -20,11 +27,20 @@ GEM
20
27
  multi_json (~> 1.0)
21
28
  arel (3.0.3)
22
29
  builder (3.0.4)
30
+ byebug (11.1.3)
31
+ coderay (1.1.3)
32
+ database_cleaner (1.0.1)
23
33
  diff-lcs (1.2.5)
24
- gemika (0.2.0)
34
+ gemika (0.6.1)
25
35
  i18n (0.6.11)
36
+ method_source (1.0.0)
26
37
  multi_json (1.12.1)
27
- mysql2 (0.3.17)
38
+ pry (0.13.1)
39
+ coderay (~> 1.1)
40
+ method_source (~> 1.0)
41
+ pry-byebug (3.9.0)
42
+ byebug (~> 11.0)
43
+ pry (~> 0.13.0)
28
44
  rake (10.0.4)
29
45
  rspec (3.5.0)
30
46
  rspec-core (~> 3.5.0)
@@ -46,12 +62,14 @@ PLATFORMS
46
62
 
47
63
  DEPENDENCIES
48
64
  activerecord (= 3.2.22)
65
+ database_cleaner (~> 1.0.0)
49
66
  gemika (>= 0.2.0)
50
67
  has_defaults!
51
- i18n (= 0.6.11)
52
- mysql2 (= 0.3.17)
68
+ i18n
69
+ mysql2!
70
+ pry-byebug
53
71
  rake (= 10.0.4)
54
72
  rspec (~> 3.4)
55
73
 
56
74
  BUNDLED WITH
57
- 1.12.5
75
+ 2.2.32
@@ -0,0 +1,15 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Runtime dependencies
4
+ gem 'activerecord', '~>4.2.11'
5
+ gem 'mysql2', '~> 0.4.0'
6
+
7
+ # Development dependencies
8
+ gem 'rake'
9
+ gem 'database_cleaner'
10
+ gem 'rspec', '~>3.4'
11
+ gem 'gemika', '>= 0.2.0'
12
+ gem 'pry-byebug'
13
+
14
+ # Gem under test
15
+ gem 'has_defaults', path: '.'
@@ -1,33 +1,43 @@
1
1
  PATH
2
- remote: ..
2
+ remote: .
3
3
  specs:
4
- has_defaults (0.4.3)
4
+ has_defaults (1.1.1)
5
5
  activerecord
6
6
 
7
7
  GEM
8
8
  remote: https://rubygems.org/
9
9
  specs:
10
- activemodel (4.2.7.1)
11
- activesupport (= 4.2.7.1)
10
+ activemodel (4.2.11)
11
+ activesupport (= 4.2.11)
12
12
  builder (~> 3.1)
13
- activerecord (4.2.7.1)
14
- activemodel (= 4.2.7.1)
15
- activesupport (= 4.2.7.1)
13
+ activerecord (4.2.11)
14
+ activemodel (= 4.2.11)
15
+ activesupport (= 4.2.11)
16
16
  arel (~> 6.0)
17
- activesupport (4.2.7.1)
17
+ activesupport (4.2.11)
18
18
  i18n (~> 0.7)
19
- json (~> 1.7, >= 1.7.7)
20
19
  minitest (~> 5.1)
21
20
  thread_safe (~> 0.3, >= 0.3.4)
22
21
  tzinfo (~> 1.1)
23
- arel (6.0.3)
24
- builder (3.2.2)
22
+ arel (6.0.4)
23
+ builder (3.2.4)
24
+ byebug (11.1.3)
25
+ coderay (1.1.3)
26
+ concurrent-ruby (1.1.9)
27
+ database_cleaner (1.5.3)
25
28
  diff-lcs (1.2.5)
26
- gemika (0.2.0)
27
- i18n (0.7.0)
28
- json (1.8.3)
29
- minitest (5.9.0)
30
- mysql2 (0.3.21)
29
+ gemika (0.6.1)
30
+ i18n (0.9.5)
31
+ concurrent-ruby (~> 1.0)
32
+ method_source (1.0.0)
33
+ minitest (5.14.4)
34
+ mysql2 (0.4.10)
35
+ pry (0.13.1)
36
+ coderay (~> 1.1)
37
+ method_source (~> 1.0)
38
+ pry-byebug (3.9.0)
39
+ byebug (~> 11.0)
40
+ pry (~> 0.13.0)
31
41
  rake (11.3.0)
32
42
  rspec (3.5.0)
33
43
  rspec-core (~> 3.5.0)
@@ -42,20 +52,22 @@ GEM
42
52
  diff-lcs (>= 1.2.0, < 2.0)
43
53
  rspec-support (~> 3.5.0)
44
54
  rspec-support (3.5.0)
45
- thread_safe (0.3.5)
46
- tzinfo (1.2.2)
55
+ thread_safe (0.3.6)
56
+ tzinfo (1.2.9)
47
57
  thread_safe (~> 0.1)
48
58
 
49
59
  PLATFORMS
50
60
  ruby
51
61
 
52
62
  DEPENDENCIES
53
- activerecord (~> 4.2.1)
63
+ activerecord (~> 4.2.11)
64
+ database_cleaner
54
65
  gemika (>= 0.2.0)
55
66
  has_defaults!
56
- mysql2 (~> 0.3.17)
67
+ mysql2 (~> 0.4.0)
68
+ pry-byebug
57
69
  rake
58
70
  rspec (~> 3.4)
59
71
 
60
72
  BUNDLED WITH
61
- 1.12.5
73
+ 2.2.32
data/Gemfile.4.2.pg ADDED
@@ -0,0 +1,15 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Runtime dependencies
4
+ gem 'activerecord', '~>4.2.1'
5
+ gem 'pg'
6
+
7
+ # Development dependencies
8
+ gem 'rake'
9
+ gem 'database_cleaner'
10
+ gem 'rspec', '~>3.4'
11
+ gem 'gemika', '>= 0.2.0'
12
+ gem 'pry-byebug'
13
+
14
+ # Gem under test
15
+ gem 'has_defaults', path: '.'
@@ -1,7 +1,7 @@
1
1
  PATH
2
- remote: ..
2
+ remote: .
3
3
  specs:
4
- has_defaults (0.4.3)
4
+ has_defaults (1.1.1)
5
5
  activerecord
6
6
 
7
7
  GEM
@@ -22,12 +22,22 @@ GEM
22
22
  tzinfo (~> 1.1)
23
23
  arel (6.0.3)
24
24
  builder (3.2.2)
25
+ byebug (11.1.3)
26
+ coderay (1.1.3)
27
+ database_cleaner (1.5.3)
25
28
  diff-lcs (1.2.5)
26
- gemika (0.2.0)
29
+ gemika (0.5.0)
27
30
  i18n (0.7.0)
28
- json (1.8.3)
31
+ json (1.8.6)
32
+ method_source (1.0.0)
29
33
  minitest (5.9.0)
30
34
  pg (0.19.0)
35
+ pry (0.13.1)
36
+ coderay (~> 1.1)
37
+ method_source (~> 1.0)
38
+ pry-byebug (3.9.0)
39
+ byebug (~> 11.0)
40
+ pry (~> 0.13.0)
31
41
  rake (11.3.0)
32
42
  rspec (3.5.0)
33
43
  rspec-core (~> 3.5.0)
@@ -51,11 +61,13 @@ PLATFORMS
51
61
 
52
62
  DEPENDENCIES
53
63
  activerecord (~> 4.2.1)
64
+ database_cleaner
54
65
  gemika (>= 0.2.0)
55
66
  has_defaults!
56
67
  pg
68
+ pry-byebug
57
69
  rake
58
70
  rspec (~> 3.4)
59
71
 
60
72
  BUNDLED WITH
61
- 1.12.5
73
+ 2.2.32
@@ -0,0 +1,15 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Runtime dependencies
4
+ gem 'activerecord', '~>5.0.0'
5
+ gem 'mysql2', '~>0.5.3'
6
+
7
+ # Development dependencies
8
+ gem 'rake'
9
+ gem 'database_cleaner'
10
+ gem 'rspec', '~>3.5'
11
+ gem 'gemika', '>= 0.2.0'
12
+ gem 'pry-byebug'
13
+
14
+ # Gem under test
15
+ gem 'has_defaults', path: '.'
@@ -1,30 +1,41 @@
1
1
  PATH
2
- remote: ..
2
+ remote: .
3
3
  specs:
4
- has_defaults (0.4.3)
4
+ has_defaults (1.1.1)
5
5
  activerecord
6
6
 
7
7
  GEM
8
8
  remote: https://rubygems.org/
9
9
  specs:
10
- activemodel (5.0.0.1)
11
- activesupport (= 5.0.0.1)
12
- activerecord (5.0.0.1)
13
- activemodel (= 5.0.0.1)
14
- activesupport (= 5.0.0.1)
10
+ activemodel (5.0.7.2)
11
+ activesupport (= 5.0.7.2)
12
+ activerecord (5.0.7.2)
13
+ activemodel (= 5.0.7.2)
14
+ activesupport (= 5.0.7.2)
15
15
  arel (~> 7.0)
16
- activesupport (5.0.0.1)
16
+ activesupport (5.0.7.2)
17
17
  concurrent-ruby (~> 1.0, >= 1.0.2)
18
- i18n (~> 0.7)
18
+ i18n (>= 0.7, < 2)
19
19
  minitest (~> 5.1)
20
20
  tzinfo (~> 1.1)
21
- arel (7.1.2)
22
- concurrent-ruby (1.0.2)
21
+ arel (7.1.4)
22
+ byebug (11.1.3)
23
+ coderay (1.1.3)
24
+ concurrent-ruby (1.1.7)
25
+ database_cleaner (1.5.3)
23
26
  diff-lcs (1.2.5)
24
- gemika (0.2.0)
25
- i18n (0.7.0)
26
- minitest (5.9.0)
27
- mysql2 (0.4.4)
27
+ gemika (0.5.0)
28
+ i18n (1.5.1)
29
+ concurrent-ruby (~> 1.0)
30
+ method_source (1.0.0)
31
+ minitest (5.14.2)
32
+ mysql2 (0.5.3)
33
+ pry (0.13.1)
34
+ coderay (~> 1.1)
35
+ method_source (~> 1.0)
36
+ pry-byebug (3.9.0)
37
+ byebug (~> 11.0)
38
+ pry (~> 0.13.0)
28
39
  rake (11.3.0)
29
40
  rspec (3.5.0)
30
41
  rspec-core (~> 3.5.0)
@@ -39,8 +50,8 @@ GEM
39
50
  diff-lcs (>= 1.2.0, < 2.0)
40
51
  rspec-support (~> 3.5.0)
41
52
  rspec-support (3.5.0)
42
- thread_safe (0.3.5)
43
- tzinfo (1.2.2)
53
+ thread_safe (0.3.6)
54
+ tzinfo (1.2.8)
44
55
  thread_safe (~> 0.1)
45
56
 
46
57
  PLATFORMS
@@ -48,11 +59,13 @@ PLATFORMS
48
59
 
49
60
  DEPENDENCIES
50
61
  activerecord (~> 5.0.0)
62
+ database_cleaner
51
63
  gemika (>= 0.2.0)
52
64
  has_defaults!
53
- mysql2 (~> 0.4.4)
65
+ mysql2 (~> 0.5.3)
66
+ pry-byebug
54
67
  rake
55
68
  rspec (~> 3.5)
56
69
 
57
70
  BUNDLED WITH
58
- 1.12.5
71
+ 2.3.4
data/Gemfile.5.2.pg ADDED
@@ -0,0 +1,16 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Runtime dependencies
4
+ gem 'activerecord'
5
+ gem 'activesupport'
6
+ gem 'pg', '~>0.18.4'
7
+
8
+ # Development dependencies
9
+ gem 'rake'
10
+ gem 'database_cleaner'
11
+ gem 'rspec', '~>3.5'
12
+ gem 'gemika', '>= 0.2.0'
13
+ gem 'pry-byebug'
14
+
15
+ # Gem under test
16
+ gem 'has_defaults', path: '.'
@@ -0,0 +1,77 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ has_defaults (1.1.1)
5
+ activerecord
6
+
7
+ GEM
8
+ remote: https://rubygems.org/
9
+ specs:
10
+ activemodel (5.2.6)
11
+ activesupport (= 5.2.6)
12
+ activerecord (5.2.6)
13
+ activemodel (= 5.2.6)
14
+ activesupport (= 5.2.6)
15
+ arel (>= 9.0)
16
+ activesupport (5.2.6)
17
+ concurrent-ruby (~> 1.0, >= 1.0.2)
18
+ i18n (>= 0.7, < 2)
19
+ minitest (~> 5.1)
20
+ tzinfo (~> 1.1)
21
+ arel (9.0.0)
22
+ byebug (11.1.3)
23
+ coderay (1.1.3)
24
+ concurrent-ruby (1.1.9)
25
+ database_cleaner (2.0.1)
26
+ database_cleaner-active_record (~> 2.0.0)
27
+ database_cleaner-active_record (2.0.1)
28
+ activerecord (>= 5.a)
29
+ database_cleaner-core (~> 2.0.0)
30
+ database_cleaner-core (2.0.1)
31
+ diff-lcs (1.2.5)
32
+ gemika (0.6.1)
33
+ i18n (1.8.10)
34
+ concurrent-ruby (~> 1.0)
35
+ method_source (1.0.0)
36
+ minitest (5.14.4)
37
+ pg (0.18.4)
38
+ pry (0.13.1)
39
+ coderay (~> 1.1)
40
+ method_source (~> 1.0)
41
+ pry-byebug (3.9.0)
42
+ byebug (~> 11.0)
43
+ pry (~> 0.13.0)
44
+ rake (11.3.0)
45
+ rspec (3.5.0)
46
+ rspec-core (~> 3.5.0)
47
+ rspec-expectations (~> 3.5.0)
48
+ rspec-mocks (~> 3.5.0)
49
+ rspec-core (3.5.3)
50
+ rspec-support (~> 3.5.0)
51
+ rspec-expectations (3.5.0)
52
+ diff-lcs (>= 1.2.0, < 2.0)
53
+ rspec-support (~> 3.5.0)
54
+ rspec-mocks (3.5.0)
55
+ diff-lcs (>= 1.2.0, < 2.0)
56
+ rspec-support (~> 3.5.0)
57
+ rspec-support (3.5.0)
58
+ thread_safe (0.3.6)
59
+ tzinfo (1.2.9)
60
+ thread_safe (~> 0.1)
61
+
62
+ PLATFORMS
63
+ ruby
64
+
65
+ DEPENDENCIES
66
+ activerecord
67
+ activesupport
68
+ database_cleaner
69
+ gemika (>= 0.2.0)
70
+ has_defaults!
71
+ pg (~> 0.18.4)
72
+ pry-byebug
73
+ rake
74
+ rspec (~> 3.5)
75
+
76
+ BUNDLED WITH
77
+ 2.3.4
data/Gemfile.6.1.pg ADDED
@@ -0,0 +1,15 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Runtime dependencies
4
+ gem 'activerecord', '~>6.1.3'
5
+ gem 'pg', '~>1.1'
6
+
7
+ # Development dependencies
8
+ gem 'rake'
9
+ gem 'database_cleaner'
10
+ gem 'rspec', '~>3.5'
11
+ gem 'gemika', '>= 0.2.0'
12
+ gem 'pry-byebug'
13
+
14
+ # Gem under test
15
+ gem 'has_defaults', path: '.'