store_base_sti_class 2.0.2 → 2.0.3

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: 59deb36c4e242478eb3aea835560dd54845a59120e798e7c3d2945609da51fc7
4
- data.tar.gz: c2320ddcb07a37711a13dfe9d700da253c419f85a9aebec37a7c33c468fa0ac4
3
+ metadata.gz: 5e65e14ac35f409bec5e78c411a0b3fac80ca189d8e77f693fc2ecc9f4cf609d
4
+ data.tar.gz: c0aabbee8bba07b1818f5f2fca9f94a916f56e29bcff73d9f1919fa53d269bcc
5
5
  SHA512:
6
- metadata.gz: 03e0e8037ed8d2642e239be605ea68e7fdd808c94e76741767c2d822b3045b814c04e24dff970188fd9a283e735eda67cd4f5334b347b9dab1f3d02fbd5fa957
7
- data.tar.gz: 8314c4ff6de5199bdad4605ef5a042cdec5935f0e3102ed99637dd7e5d90c4616d8571eec34e64da758207e14834eb98ef05a3aa99503e8efbac3f408dc2af6c
6
+ metadata.gz: 6078f16de9958cead9799a9da35830c2c031c17bbead961b801f6194905e65e43ab6f002ab34fd34ef6431e0b8f9ab1fc52b0c502372a3957a768480459df882
7
+ data.tar.gz: 22e514b7f2ce662d2cfa8f8fe6b2bc62f4491defe8b182c76121922f01ca7929146f546cfb7eab0d8d42ba8417c4343ae54d616cb949a44bba48c98fa5b0469f
@@ -0,0 +1,8 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "activerecord", "5.2.5"
6
+ gem "sqlite3", "~> 1.3.0"
7
+
8
+ gemspec path: "../"
@@ -1,3 +1,3 @@
1
1
  module StoreBaseSTIClass
2
- VERSION = '2.0.2'.freeze
2
+ VERSION = '2.0.3'.freeze
3
3
  end
@@ -110,7 +110,7 @@ if ActiveRecord::VERSION::STRING =~ /^5\.2/
110
110
  class HasManyThroughAssociation
111
111
  private
112
112
 
113
- if ActiveRecord::VERSION::STRING =~ /^5\.2\.4/
113
+ if Gem::Version.new(ActiveRecord::VERSION::STRING) >= Gem::Version.new('5.2.4')
114
114
  def build_through_record(record)
115
115
  @through_records[record.object_id] ||= begin
116
116
  ensure_mutable
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: store_base_sti_class
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.2
4
+ version: 2.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - AppFolio
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-12-11 00:00:00.000000000 Z
11
+ date: 2021-03-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activerecord
@@ -80,7 +80,6 @@ extra_rdoc_files:
80
80
  files:
81
81
  - Appraisals
82
82
  - Gemfile
83
- - Gemfile.lock
84
83
  - LICENSE.txt
85
84
  - README.md
86
85
  - Rakefile
@@ -88,6 +87,7 @@ files:
88
87
  - gemfiles/rails_5.1.7.gemfile
89
88
  - gemfiles/rails_5.2.3.gemfile
90
89
  - gemfiles/rails_5.2.4.gemfile
90
+ - gemfiles/rails_5.2.5.gemfile
91
91
  - gemfiles/rails_6.0.3.gemfile
92
92
  - gemfiles/rails_6.1.0.gemfile
93
93
  - lib/store_base_sti_class.rb
@@ -117,7 +117,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
117
117
  - !ruby/object:Gem::Version
118
118
  version: '0'
119
119
  requirements: []
120
- rubygems_version: 3.1.4
120
+ rubygems_version: 3.2.3
121
121
  signing_key:
122
122
  specification_version: 4
123
123
  summary: Modifies ActiveRecord 4.2.x - 6.0.x with the ability to store the actual
data/Gemfile.lock DELETED
@@ -1,45 +0,0 @@
1
- PATH
2
- remote: .
3
- specs:
4
- store_base_sti_class (2.0.2)
5
- activerecord (>= 4.0)
6
-
7
- GEM
8
- remote: https://rubygems.org/
9
- specs:
10
- activemodel (6.1.0)
11
- activesupport (= 6.1.0)
12
- activerecord (6.1.0)
13
- activemodel (= 6.1.0)
14
- activesupport (= 6.1.0)
15
- activesupport (6.1.0)
16
- concurrent-ruby (~> 1.0, >= 1.0.2)
17
- i18n (>= 1.6, < 2)
18
- minitest (>= 5.1)
19
- tzinfo (~> 2.0)
20
- zeitwerk (~> 2.3)
21
- appraisal (2.3.0)
22
- bundler
23
- rake
24
- thor (>= 0.14.0)
25
- concurrent-ruby (1.1.7)
26
- i18n (1.8.5)
27
- concurrent-ruby (~> 1.0)
28
- minitest (5.14.2)
29
- rake (13.0.1)
30
- thor (1.0.1)
31
- tzinfo (2.0.3)
32
- concurrent-ruby (~> 1.0)
33
- zeitwerk (2.4.2)
34
-
35
- PLATFORMS
36
- ruby
37
-
38
- DEPENDENCIES
39
- appraisal
40
- bundler
41
- minitest (>= 4.0)
42
- store_base_sti_class!
43
-
44
- BUNDLED WITH
45
- 2.1.4