zombie_record 1.4.3 → 1.5.0

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: 567fd4185a47b61239b7d1df1f03a9b328d2085c8b08d284fea984b461245c28
4
- data.tar.gz: efdb86ade001fb7117741b566f1c53bfdb2af32ebd9969d36998e88db09f2928
3
+ metadata.gz: 91ed49648bae95bb6a4161ab05bad01147c4be33bfef1ed4088a581588194942
4
+ data.tar.gz: 28e55007206dd1faf809bb7f7bdd325242961207eedb6a0da678783473c9a917
5
5
  SHA512:
6
- metadata.gz: aa9fb539d0ffa90d758cb91220a8bff3ff8210d8071a48b3e751b14d9601740f483b27899429c38d47291f1f367cbfe99f73beb971a5f850946935902601250f
7
- data.tar.gz: 72fb282d7a5f6c00fc84927044beaafe53f76024426f78a91b4bb25d111104fad215075f1f7c57630c56c18b655381258e6c71678b0b5afc2ede1c546e44e77b
6
+ metadata.gz: aa39de754f5be4286e20f82a8d6e2bac2b7145f688ba02f6d506ee27e8d02e6e2338bf05511764610267ebd4d46868183358f71a69e1b60517e1e8398825de76
7
+ data.tar.gz: 2dedb8380345395471c552719164080e6d8a970619a27d5ac7642a0f898536160fa5b5883c88ebdf222cf0dfd9b21affe396919344b4f5820512e920e21509be
@@ -6,36 +6,30 @@ jobs:
6
6
  specs:
7
7
  runs-on: ubuntu-latest
8
8
 
9
- services:
10
- mysql:
11
- image: mysql:5.7
12
- ports:
13
- - 3306:3306
14
- env:
15
- MYSQL_ALLOW_EMPTY_PASSWORD: "yes"
16
- options: >-
17
- --health-cmd "mysqladmin ping -h localhost"
18
- --health-interval 5s
19
- --health-timeout 3s
20
-
21
9
  strategy:
22
10
  matrix:
23
11
  ruby-version:
24
- - 2.4
25
- - 2.5
26
- - 2.6
12
+ - '2.6'
13
+ - '2.7'
14
+ - '3.0'
15
+ - '3.1'
27
16
  gemfile:
28
- - rails4.2
29
17
  - rails5.0
30
18
  - rails5.1
31
19
  - rails5.2
32
20
  - rails6.0
33
21
  - rails6.1
22
+ - rails7.0
34
23
  exclude:
35
- - ruby-version: 2.4
36
- gemfile: rails6.0
37
- - ruby-version: 2.4
38
- gemfile: rails6.1
24
+ - {ruby-version: '2.6', gemfile: rails7.0}
25
+ - {ruby-version: '3.0', gemfile: rails5.0}
26
+ - {ruby-version: '3.0', gemfile: rails5.1}
27
+ - {ruby-version: '3.0', gemfile: rails5.2}
28
+ - {ruby-version: '3.0', gemfile: rails6.0}
29
+ - {ruby-version: '3.1', gemfile: rails5.0}
30
+ - {ruby-version: '3.1', gemfile: rails5.1}
31
+ - {ruby-version: '3.1', gemfile: rails5.2}
32
+ - {ruby-version: '3.1', gemfile: rails6.0}
39
33
  env:
40
34
  BUNDLE_GEMFILE: gemfiles/${{ matrix.gemfile }}.gemfile
41
35
  steps:
@@ -47,3 +41,18 @@ jobs:
47
41
  bundler-cache: true
48
42
  - name: RSpec
49
43
  run: bundle exec rspec
44
+
45
+ specs_successful:
46
+ name: Specs passing?
47
+ needs: specs
48
+ if: always()
49
+ runs-on: ubuntu-latest
50
+ steps:
51
+ - run: |
52
+ if ${{ needs.specs.result == 'success' }}
53
+ then
54
+ echo "All specs pass"
55
+ else
56
+ echo "Some specs failed"
57
+ false
58
+ fi
data/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  ###### Unreleased
2
2
 
3
+ ###### v1.5.0
4
+
5
+ * Add support for Rails 7.0
6
+ * Add support for Ruby 2.7, 3.0, & 3.1
7
+ * Drop support for Ruby 2.4 & 2.5
8
+ * Drop support for Rails 4.2
9
+
3
10
  ###### v1.4.3
4
11
 
5
12
  * Drop support for Ruby 2.2 and 2.3.
@@ -3,3 +3,4 @@ source 'https://rubygems.org'
3
3
  gemspec path: "../"
4
4
 
5
5
  gem "activerecord", "~> 5.0.0"
6
+ gem 'sqlite3', '~> 1.3.6'
@@ -3,3 +3,4 @@ source 'https://rubygems.org'
3
3
  gemspec path: "../"
4
4
 
5
5
  gem "activerecord", "~> 5.1.0"
6
+ gem "sqlite3", "~> 1.3", ">= 1.3.6"
@@ -3,3 +3,4 @@ source 'https://rubygems.org'
3
3
  gemspec path: "../"
4
4
 
5
5
  gem "activerecord", "~> 5.2.0"
6
+ gem "sqlite3", "~> 1.3", ">= 1.3.6"
@@ -3,3 +3,4 @@ source 'https://rubygems.org'
3
3
  gemspec path: "../"
4
4
 
5
5
  gem "activerecord", "~> 6.0.0"
6
+ gem "sqlite3", "~> 1.4"
@@ -3,3 +3,4 @@ source 'https://rubygems.org'
3
3
  gemspec path: "../"
4
4
 
5
5
  gem "activerecord", "~> 6.1.0"
6
+ gem "sqlite3", "~> 1.4"
@@ -0,0 +1,6 @@
1
+ source 'https://rubygems.org'
2
+
3
+ gemspec path: "../"
4
+
5
+ gem "activerecord", "~> 7.0.0"
6
+ gem "sqlite3", "~> 1.4"
@@ -148,14 +148,8 @@ module ZombieRecord
148
148
  end
149
149
 
150
150
  module WithDeletedAssociationsWrapper
151
- if ActiveRecord::VERSION::MAJOR < 5
152
- def to_a
153
- super.map(&:with_deleted_associations)
154
- end
155
- else
156
- def records
157
- super.map(&:with_deleted_associations)
158
- end
151
+ def records
152
+ super.map(&:with_deleted_associations)
159
153
  end
160
154
  end
161
155
 
@@ -1,3 +1,3 @@
1
1
  module ZombieRecord
2
- VERSION = "1.4.3"
2
+ VERSION = "1.5.0"
3
3
  end
data/spec/spec_helper.rb CHANGED
@@ -70,19 +70,11 @@ RSpec.configure do |config|
70
70
  end
71
71
 
72
72
  config.before :suite do
73
- mysql = URI(ENV['MYSQL_URL'] || 'mysql://root@127.0.0.1:3306')
74
-
75
73
  ActiveRecord::Base.establish_connection(
76
- adapter: "mysql2",
77
- username: mysql.user,
78
- host: mysql.host,
79
- port: mysql.port,
80
- password: mysql.password
74
+ adapter: "sqlite3",
75
+ database: ":memory:"
81
76
  )
82
77
 
83
- ActiveRecord::Base.connection.create_database("zombie_record", charset: "utf8mb4")
84
- ActiveRecord::Base.connection.execute("use zombie_record;")
85
-
86
78
  ActiveRecord::Schema.define do
87
79
  self.verbose = false
88
80
 
@@ -15,15 +15,15 @@ Gem::Specification.new do |spec|
15
15
  spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
16
16
  spec.require_paths = ["lib"]
17
17
 
18
- spec.required_ruby_version = ">= 2.4"
18
+ spec.required_ruby_version = ">= 2.6"
19
19
 
20
- spec.add_dependency "activerecord", ">= 4.2", "< 6.2"
21
- spec.add_dependency "mysql2"
20
+ spec.add_dependency "activerecord", ">= 5.0", "< 7.1"
22
21
 
23
22
  spec.add_development_dependency "bundler"
24
23
  spec.add_development_dependency "byebug"
25
24
  spec.add_development_dependency "rake"
26
25
  spec.add_development_dependency "bump"
27
26
  spec.add_development_dependency "rspec", "~> 3.5"
27
+ spec.add_development_dependency "sqlite3"
28
28
  spec.add_development_dependency "timecop"
29
29
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: zombie_record
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.3
4
+ version: 1.5.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Daniel Schierbeck
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-01-12 00:00:00.000000000 Z
11
+ date: 2022-11-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activerecord
@@ -16,34 +16,20 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: '4.2'
19
+ version: '5.0'
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
- version: '6.2'
22
+ version: '7.1'
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: '4.2'
29
+ version: '5.0'
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
- version: '6.2'
33
- - !ruby/object:Gem::Dependency
34
- name: mysql2
35
- requirement: !ruby/object:Gem::Requirement
36
- requirements:
37
- - - ">="
38
- - !ruby/object:Gem::Version
39
- version: '0'
40
- type: :runtime
41
- prerelease: false
42
- version_requirements: !ruby/object:Gem::Requirement
43
- requirements:
44
- - - ">="
45
- - !ruby/object:Gem::Version
46
- version: '0'
32
+ version: '7.1'
47
33
  - !ruby/object:Gem::Dependency
48
34
  name: bundler
49
35
  requirement: !ruby/object:Gem::Requirement
@@ -114,6 +100,20 @@ dependencies:
114
100
  - - "~>"
115
101
  - !ruby/object:Gem::Version
116
102
  version: '3.5'
103
+ - !ruby/object:Gem::Dependency
104
+ name: sqlite3
105
+ requirement: !ruby/object:Gem::Requirement
106
+ requirements:
107
+ - - ">="
108
+ - !ruby/object:Gem::Version
109
+ version: '0'
110
+ type: :development
111
+ prerelease: false
112
+ version_requirements: !ruby/object:Gem::Requirement
113
+ requirements:
114
+ - - ">="
115
+ - !ruby/object:Gem::Version
116
+ version: '0'
117
117
  - !ruby/object:Gem::Dependency
118
118
  name: timecop
119
119
  requirement: !ruby/object:Gem::Requirement
@@ -143,18 +143,12 @@ files:
143
143
  - LICENSE.txt
144
144
  - README.md
145
145
  - Rakefile
146
- - gemfiles/rails4.2.gemfile
147
- - gemfiles/rails4.2.gemfile.lock
148
146
  - gemfiles/rails5.0.gemfile
149
- - gemfiles/rails5.0.gemfile.lock
150
147
  - gemfiles/rails5.1.gemfile
151
- - gemfiles/rails5.1.gemfile.lock
152
148
  - gemfiles/rails5.2.gemfile
153
- - gemfiles/rails5.2.gemfile.lock
154
149
  - gemfiles/rails6.0.gemfile
155
- - gemfiles/rails6.0.gemfile.lock
156
150
  - gemfiles/rails6.1.gemfile
157
- - gemfiles/rails6.1.gemfile.lock
151
+ - gemfiles/rails7.0.gemfile
158
152
  - lib/zombie_record.rb
159
153
  - lib/zombie_record/restorable.rb
160
154
  - lib/zombie_record/version.rb
@@ -173,14 +167,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
173
167
  requirements:
174
168
  - - ">="
175
169
  - !ruby/object:Gem::Version
176
- version: '2.4'
170
+ version: '2.6'
177
171
  required_rubygems_version: !ruby/object:Gem::Requirement
178
172
  requirements:
179
173
  - - ">="
180
174
  - !ruby/object:Gem::Version
181
175
  version: '0'
182
176
  requirements: []
183
- rubygems_version: 3.2.2
177
+ rubygems_version: 3.1.6
184
178
  signing_key:
185
179
  specification_version: 4
186
180
  summary: Allows restoring your Active Records from the dead!
@@ -1,6 +0,0 @@
1
- source 'https://rubygems.org'
2
-
3
- gemspec path: "../"
4
-
5
- gem "activerecord", "~> 4.2.0"
6
- gem "mysql2", "~> 0.4.0"
@@ -1,68 +0,0 @@
1
- PATH
2
- remote: ..
3
- specs:
4
- zombie_record (1.4.3)
5
- activerecord (>= 4.2, < 6.2)
6
- mysql2
7
-
8
- GEM
9
- remote: https://rubygems.org/
10
- specs:
11
- activemodel (4.2.11.3)
12
- activesupport (= 4.2.11.3)
13
- builder (~> 3.1)
14
- activerecord (4.2.11.3)
15
- activemodel (= 4.2.11.3)
16
- activesupport (= 4.2.11.3)
17
- arel (~> 6.0)
18
- activesupport (4.2.11.3)
19
- i18n (~> 0.7)
20
- minitest (~> 5.1)
21
- thread_safe (~> 0.3, >= 0.3.4)
22
- tzinfo (~> 1.1)
23
- arel (6.0.4)
24
- builder (3.2.4)
25
- bump (0.10.0)
26
- byebug (11.1.3)
27
- concurrent-ruby (1.1.7)
28
- diff-lcs (1.4.4)
29
- i18n (0.9.5)
30
- concurrent-ruby (~> 1.0)
31
- minitest (5.14.2)
32
- mysql2 (0.4.10)
33
- rake (13.0.3)
34
- rspec (3.10.0)
35
- rspec-core (~> 3.10.0)
36
- rspec-expectations (~> 3.10.0)
37
- rspec-mocks (~> 3.10.0)
38
- rspec-core (3.10.1)
39
- rspec-support (~> 3.10.0)
40
- rspec-expectations (3.10.1)
41
- diff-lcs (>= 1.2.0, < 2.0)
42
- rspec-support (~> 3.10.0)
43
- rspec-mocks (3.10.1)
44
- diff-lcs (>= 1.2.0, < 2.0)
45
- rspec-support (~> 3.10.0)
46
- rspec-support (3.10.1)
47
- thread_safe (0.3.6)
48
- timecop (0.9.2)
49
- tzinfo (1.2.9)
50
- thread_safe (~> 0.1)
51
-
52
- PLATFORMS
53
- x86_64-darwin-19
54
- x86_64-linux
55
-
56
- DEPENDENCIES
57
- activerecord (~> 4.2.0)
58
- bump
59
- bundler
60
- byebug
61
- mysql2 (~> 0.4.0)
62
- rake
63
- rspec (~> 3.5)
64
- timecop
65
- zombie_record!
66
-
67
- BUNDLED WITH
68
- 2.2.3
@@ -1,65 +0,0 @@
1
- PATH
2
- remote: ..
3
- specs:
4
- zombie_record (1.4.3)
5
- activerecord (>= 4.2, < 6.2)
6
- mysql2
7
-
8
- GEM
9
- remote: https://rubygems.org/
10
- specs:
11
- activemodel (5.0.7.2)
12
- activesupport (= 5.0.7.2)
13
- activerecord (5.0.7.2)
14
- activemodel (= 5.0.7.2)
15
- activesupport (= 5.0.7.2)
16
- arel (~> 7.0)
17
- activesupport (5.0.7.2)
18
- concurrent-ruby (~> 1.0, >= 1.0.2)
19
- i18n (>= 0.7, < 2)
20
- minitest (~> 5.1)
21
- tzinfo (~> 1.1)
22
- arel (7.1.4)
23
- bump (0.10.0)
24
- byebug (11.1.3)
25
- concurrent-ruby (1.1.7)
26
- diff-lcs (1.4.4)
27
- i18n (1.8.5)
28
- concurrent-ruby (~> 1.0)
29
- minitest (5.14.2)
30
- mysql2 (0.5.3)
31
- rake (13.0.3)
32
- rspec (3.10.0)
33
- rspec-core (~> 3.10.0)
34
- rspec-expectations (~> 3.10.0)
35
- rspec-mocks (~> 3.10.0)
36
- rspec-core (3.10.1)
37
- rspec-support (~> 3.10.0)
38
- rspec-expectations (3.10.1)
39
- diff-lcs (>= 1.2.0, < 2.0)
40
- rspec-support (~> 3.10.0)
41
- rspec-mocks (3.10.1)
42
- diff-lcs (>= 1.2.0, < 2.0)
43
- rspec-support (~> 3.10.0)
44
- rspec-support (3.10.1)
45
- thread_safe (0.3.6)
46
- timecop (0.9.2)
47
- tzinfo (1.2.9)
48
- thread_safe (~> 0.1)
49
-
50
- PLATFORMS
51
- x86_64-darwin-19
52
- x86_64-linux
53
-
54
- DEPENDENCIES
55
- activerecord (~> 5.0.0)
56
- bump
57
- bundler
58
- byebug
59
- rake
60
- rspec (~> 3.5)
61
- timecop
62
- zombie_record!
63
-
64
- BUNDLED WITH
65
- 2.2.3
@@ -1,65 +0,0 @@
1
- PATH
2
- remote: ..
3
- specs:
4
- zombie_record (1.4.3)
5
- activerecord (>= 4.2, < 6.2)
6
- mysql2
7
-
8
- GEM
9
- remote: https://rubygems.org/
10
- specs:
11
- activemodel (5.1.7)
12
- activesupport (= 5.1.7)
13
- activerecord (5.1.7)
14
- activemodel (= 5.1.7)
15
- activesupport (= 5.1.7)
16
- arel (~> 8.0)
17
- activesupport (5.1.7)
18
- concurrent-ruby (~> 1.0, >= 1.0.2)
19
- i18n (>= 0.7, < 2)
20
- minitest (~> 5.1)
21
- tzinfo (~> 1.1)
22
- arel (8.0.0)
23
- bump (0.10.0)
24
- byebug (11.1.3)
25
- concurrent-ruby (1.1.7)
26
- diff-lcs (1.4.4)
27
- i18n (1.8.5)
28
- concurrent-ruby (~> 1.0)
29
- minitest (5.14.2)
30
- mysql2 (0.5.3)
31
- rake (13.0.3)
32
- rspec (3.10.0)
33
- rspec-core (~> 3.10.0)
34
- rspec-expectations (~> 3.10.0)
35
- rspec-mocks (~> 3.10.0)
36
- rspec-core (3.10.1)
37
- rspec-support (~> 3.10.0)
38
- rspec-expectations (3.10.1)
39
- diff-lcs (>= 1.2.0, < 2.0)
40
- rspec-support (~> 3.10.0)
41
- rspec-mocks (3.10.1)
42
- diff-lcs (>= 1.2.0, < 2.0)
43
- rspec-support (~> 3.10.0)
44
- rspec-support (3.10.1)
45
- thread_safe (0.3.6)
46
- timecop (0.9.2)
47
- tzinfo (1.2.9)
48
- thread_safe (~> 0.1)
49
-
50
- PLATFORMS
51
- x86_64-darwin-19
52
- x86_64-linux
53
-
54
- DEPENDENCIES
55
- activerecord (~> 5.1.0)
56
- bump
57
- bundler
58
- byebug
59
- rake
60
- rspec (~> 3.5)
61
- timecop
62
- zombie_record!
63
-
64
- BUNDLED WITH
65
- 2.2.3
@@ -1,65 +0,0 @@
1
- PATH
2
- remote: ..
3
- specs:
4
- zombie_record (1.4.3)
5
- activerecord (>= 4.2, < 6.2)
6
- mysql2
7
-
8
- GEM
9
- remote: https://rubygems.org/
10
- specs:
11
- activemodel (5.2.4.4)
12
- activesupport (= 5.2.4.4)
13
- activerecord (5.2.4.4)
14
- activemodel (= 5.2.4.4)
15
- activesupport (= 5.2.4.4)
16
- arel (>= 9.0)
17
- activesupport (5.2.4.4)
18
- concurrent-ruby (~> 1.0, >= 1.0.2)
19
- i18n (>= 0.7, < 2)
20
- minitest (~> 5.1)
21
- tzinfo (~> 1.1)
22
- arel (9.0.0)
23
- bump (0.10.0)
24
- byebug (11.1.3)
25
- concurrent-ruby (1.1.7)
26
- diff-lcs (1.4.4)
27
- i18n (1.8.5)
28
- concurrent-ruby (~> 1.0)
29
- minitest (5.14.2)
30
- mysql2 (0.5.3)
31
- rake (13.0.3)
32
- rspec (3.10.0)
33
- rspec-core (~> 3.10.0)
34
- rspec-expectations (~> 3.10.0)
35
- rspec-mocks (~> 3.10.0)
36
- rspec-core (3.10.1)
37
- rspec-support (~> 3.10.0)
38
- rspec-expectations (3.10.1)
39
- diff-lcs (>= 1.2.0, < 2.0)
40
- rspec-support (~> 3.10.0)
41
- rspec-mocks (3.10.1)
42
- diff-lcs (>= 1.2.0, < 2.0)
43
- rspec-support (~> 3.10.0)
44
- rspec-support (3.10.1)
45
- thread_safe (0.3.6)
46
- timecop (0.9.2)
47
- tzinfo (1.2.9)
48
- thread_safe (~> 0.1)
49
-
50
- PLATFORMS
51
- x86_64-darwin-19
52
- x86_64-linux
53
-
54
- DEPENDENCIES
55
- activerecord (~> 5.2.0)
56
- bump
57
- bundler
58
- byebug
59
- rake
60
- rspec (~> 3.5)
61
- timecop
62
- zombie_record!
63
-
64
- BUNDLED WITH
65
- 2.2.3
@@ -1,65 +0,0 @@
1
- PATH
2
- remote: ..
3
- specs:
4
- zombie_record (1.4.3)
5
- activerecord (>= 4.2, < 6.2)
6
- mysql2
7
-
8
- GEM
9
- remote: https://rubygems.org/
10
- specs:
11
- activemodel (6.0.3.4)
12
- activesupport (= 6.0.3.4)
13
- activerecord (6.0.3.4)
14
- activemodel (= 6.0.3.4)
15
- activesupport (= 6.0.3.4)
16
- activesupport (6.0.3.4)
17
- concurrent-ruby (~> 1.0, >= 1.0.2)
18
- i18n (>= 0.7, < 2)
19
- minitest (~> 5.1)
20
- tzinfo (~> 1.1)
21
- zeitwerk (~> 2.2, >= 2.2.2)
22
- bump (0.10.0)
23
- byebug (11.1.3)
24
- concurrent-ruby (1.1.7)
25
- diff-lcs (1.4.4)
26
- i18n (1.8.5)
27
- concurrent-ruby (~> 1.0)
28
- minitest (5.14.2)
29
- mysql2 (0.5.3)
30
- rake (13.0.3)
31
- rspec (3.10.0)
32
- rspec-core (~> 3.10.0)
33
- rspec-expectations (~> 3.10.0)
34
- rspec-mocks (~> 3.10.0)
35
- rspec-core (3.10.1)
36
- rspec-support (~> 3.10.0)
37
- rspec-expectations (3.10.1)
38
- diff-lcs (>= 1.2.0, < 2.0)
39
- rspec-support (~> 3.10.0)
40
- rspec-mocks (3.10.1)
41
- diff-lcs (>= 1.2.0, < 2.0)
42
- rspec-support (~> 3.10.0)
43
- rspec-support (3.10.1)
44
- thread_safe (0.3.6)
45
- timecop (0.9.2)
46
- tzinfo (1.2.9)
47
- thread_safe (~> 0.1)
48
- zeitwerk (2.4.2)
49
-
50
- PLATFORMS
51
- x86_64-darwin-19
52
- x86_64-linux
53
-
54
- DEPENDENCIES
55
- activerecord (~> 6.0.0)
56
- bump
57
- bundler
58
- byebug
59
- rake
60
- rspec (~> 3.5)
61
- timecop
62
- zombie_record!
63
-
64
- BUNDLED WITH
65
- 2.2.3
@@ -1,64 +0,0 @@
1
- PATH
2
- remote: ..
3
- specs:
4
- zombie_record (1.4.3)
5
- activerecord (>= 4.2, < 6.2)
6
- mysql2
7
-
8
- GEM
9
- remote: https://rubygems.org/
10
- specs:
11
- activemodel (6.1.0)
12
- activesupport (= 6.1.0)
13
- activerecord (6.1.0)
14
- activemodel (= 6.1.0)
15
- activesupport (= 6.1.0)
16
- activesupport (6.1.0)
17
- concurrent-ruby (~> 1.0, >= 1.0.2)
18
- i18n (>= 1.6, < 2)
19
- minitest (>= 5.1)
20
- tzinfo (~> 2.0)
21
- zeitwerk (~> 2.3)
22
- bump (0.10.0)
23
- byebug (11.1.3)
24
- concurrent-ruby (1.1.7)
25
- diff-lcs (1.4.4)
26
- i18n (1.8.5)
27
- concurrent-ruby (~> 1.0)
28
- minitest (5.14.2)
29
- mysql2 (0.5.3)
30
- rake (13.0.3)
31
- rspec (3.10.0)
32
- rspec-core (~> 3.10.0)
33
- rspec-expectations (~> 3.10.0)
34
- rspec-mocks (~> 3.10.0)
35
- rspec-core (3.10.1)
36
- rspec-support (~> 3.10.0)
37
- rspec-expectations (3.10.1)
38
- diff-lcs (>= 1.2.0, < 2.0)
39
- rspec-support (~> 3.10.0)
40
- rspec-mocks (3.10.1)
41
- diff-lcs (>= 1.2.0, < 2.0)
42
- rspec-support (~> 3.10.0)
43
- rspec-support (3.10.1)
44
- timecop (0.9.2)
45
- tzinfo (2.0.4)
46
- concurrent-ruby (~> 1.0)
47
- zeitwerk (2.4.2)
48
-
49
- PLATFORMS
50
- x86_64-darwin-19
51
- x86_64-linux
52
-
53
- DEPENDENCIES
54
- activerecord (~> 6.1.0)
55
- bump
56
- bundler
57
- byebug
58
- rake
59
- rspec (~> 3.5)
60
- timecop
61
- zombie_record!
62
-
63
- BUNDLED WITH
64
- 2.2.3