zombie_record 1.4.3 → 1.5.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: 567fd4185a47b61239b7d1df1f03a9b328d2085c8b08d284fea984b461245c28
4
- data.tar.gz: efdb86ade001fb7117741b566f1c53bfdb2af32ebd9969d36998e88db09f2928
3
+ metadata.gz: 77c2b09a1e5552f5f0c1a1a2b0beba87267c3342057439b606f37422c3ae65ba
4
+ data.tar.gz: 3904f6d838bccee4355a73eb97b2eb17e56d6469f82ffc83d1f31fb5e8d9b4df
5
5
  SHA512:
6
- metadata.gz: aa9fb539d0ffa90d758cb91220a8bff3ff8210d8071a48b3e751b14d9601740f483b27899429c38d47291f1f367cbfe99f73beb971a5f850946935902601250f
7
- data.tar.gz: 72fb282d7a5f6c00fc84927044beaafe53f76024426f78a91b4bb25d111104fad215075f1f7c57630c56c18b655381258e6c71678b0b5afc2ede1c546e44e77b
6
+ metadata.gz: bc8cba4a7b46ca10c9933ac19d9e5c5eeec7309eb5894f76b6fc76a3b1c9f7ee109c4f49a30ecd60297b74ff219efc52867e8d81c7f4601e7ebcbd5da2d18917
7
+ data.tar.gz: e43f02c6dd634541f4bf6cfffbe7df5c6adfe09b9c9ae094510cf73595e087f6d129add06b707a539cdc3a8673ffd3d74623f6500e5de7c5d0929ae6adc14f70
@@ -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
@@ -0,0 +1,12 @@
1
+ name: Publish Gem
2
+
3
+ on:
4
+ push:
5
+ tags: v*
6
+
7
+ jobs:
8
+ call-workflow:
9
+ uses: zendesk/gw/.github/workflows/ruby-gem-publication.yml@main
10
+ secrets:
11
+ RUBY_GEMS_API_KEY: ${{ secrets.RUBY_GEMS_API_KEY }}
12
+ RUBY_GEMS_TOTP_DEVICE: ${{ secrets.RUBY_GEMS_TOTP_DEVICE }}
data/CHANGELOG.md CHANGED
@@ -1,5 +1,16 @@
1
1
  ###### Unreleased
2
2
 
3
+ ###### v1.5.1
4
+
5
+ * Fix keyword arguments error for `method_missing`.
6
+
7
+ ###### v1.5.0
8
+
9
+ * Add support for Rails 7.0
10
+ * Add support for Ruby 2.7, 3.0, & 3.1
11
+ * Drop support for Ruby 2.4 & 2.5
12
+ * Drop support for Rails 4.2
13
+
3
14
  ###### v1.4.3
4
15
 
5
16
  * 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"
@@ -96,6 +96,8 @@ module ZombieRecord
96
96
  delegate_to_record(name) { @record.public_send(name, *args, &block) }
97
97
  end
98
98
 
99
+ ruby2_keywords :method_missing if respond_to?(:ruby2_keywords, true)
100
+
99
101
  # We want *all* methods to be delegated.
100
102
  BasicObject.instance_methods.each do |name|
101
103
  define_method(name) do |*args, &block|
@@ -148,14 +150,8 @@ module ZombieRecord
148
150
  end
149
151
 
150
152
  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
153
+ def records
154
+ super.map(&:with_deleted_associations)
159
155
  end
160
156
  end
161
157
 
@@ -1,3 +1,3 @@
1
1
  module ZombieRecord
2
- VERSION = "1.4.3"
2
+ VERSION = "1.5.1"
3
3
  end
@@ -62,6 +62,15 @@ RSpec.describe ZombieRecord::Restorable do
62
62
  # #flatten will implicitly call #to_ary
63
63
  expect([[[book]]].flatten).to eq([book])
64
64
  end
65
+
66
+ it "doesn't re-save duplicated record" do
67
+ book = Book.create!(title: "The Odyssey")
68
+ book.destroy
69
+ book_dup = Book.with_deleted.first.save(validate: true)
70
+
71
+ expect(Book.count).to eq(0)
72
+ expect(Book.with_deleted.size).to eq(1)
73
+ end
65
74
  end
66
75
 
67
76
  describe ".deleted" do
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.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Daniel Schierbeck
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-01-12 00:00:00.000000000 Z
11
+ date: 2023-01-23 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
@@ -136,6 +136,7 @@ extensions: []
136
136
  extra_rdoc_files: []
137
137
  files:
138
138
  - ".github/workflows/ci.yml"
139
+ - ".github/workflows/publish.yml"
139
140
  - ".gitignore"
140
141
  - ".rspec"
141
142
  - CHANGELOG.md
@@ -143,18 +144,12 @@ files:
143
144
  - LICENSE.txt
144
145
  - README.md
145
146
  - Rakefile
146
- - gemfiles/rails4.2.gemfile
147
- - gemfiles/rails4.2.gemfile.lock
148
147
  - gemfiles/rails5.0.gemfile
149
- - gemfiles/rails5.0.gemfile.lock
150
148
  - gemfiles/rails5.1.gemfile
151
- - gemfiles/rails5.1.gemfile.lock
152
149
  - gemfiles/rails5.2.gemfile
153
- - gemfiles/rails5.2.gemfile.lock
154
150
  - gemfiles/rails6.0.gemfile
155
- - gemfiles/rails6.0.gemfile.lock
156
151
  - gemfiles/rails6.1.gemfile
157
- - gemfiles/rails6.1.gemfile.lock
152
+ - gemfiles/rails7.0.gemfile
158
153
  - lib/zombie_record.rb
159
154
  - lib/zombie_record/restorable.rb
160
155
  - lib/zombie_record/version.rb
@@ -165,7 +160,7 @@ homepage: https://github.com/zendesk/zombie_record
165
160
  licenses:
166
161
  - MIT
167
162
  metadata: {}
168
- post_install_message:
163
+ post_install_message:
169
164
  rdoc_options: []
170
165
  require_paths:
171
166
  - lib
@@ -173,15 +168,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
173
168
  requirements:
174
169
  - - ">="
175
170
  - !ruby/object:Gem::Version
176
- version: '2.4'
171
+ version: '2.6'
177
172
  required_rubygems_version: !ruby/object:Gem::Requirement
178
173
  requirements:
179
174
  - - ">="
180
175
  - !ruby/object:Gem::Version
181
176
  version: '0'
182
177
  requirements: []
183
- rubygems_version: 3.2.2
184
- signing_key:
178
+ rubygems_version: 3.0.3.1
179
+ signing_key:
185
180
  specification_version: 4
186
181
  summary: Allows restoring your Active Records from the dead!
187
182
  test_files:
@@ -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