active_type 1.2.0 → 1.2.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: 4cca938174e6902624f069ca895ff0ee565f2db0696ef0460702a125ee84c303
4
- data.tar.gz: 3821a7c56f508d8b3f90d8301e3488844f0dc5bf905780358f6925c6137a1211
3
+ metadata.gz: 0146bd11c1d9d0965e2ce93c0265c78dcdbce9e760666ce5713d055e53522f50
4
+ data.tar.gz: 63eb1676ef250e2374b1da508d9e40674e52ae681743b5f30762402ebed930eb
5
5
  SHA512:
6
- metadata.gz: 5624b33d08104097164b692a39f4f31262ccfb86f05de711851f179cdc1c4f06d46d41712bd915eac557aee96f473b9f3aa83c42edba7c047e686cfbd5798726
7
- data.tar.gz: f17e251805aad979ad202afe86d69ebe997a7fb8e0ad6a4843ce49d2c125ed11c81779791c2ec7d6ba6dcdad31c5fa1cf953ef3163d1600f8e8eef2c30c19fd2
6
+ metadata.gz: 52a62c1a3ec7a1f7740a651b299ac2c349b571c92eb2ec06c22c54cdb09c51074f13b62102d0b14a5b72c68daac96c3c63b06aae8f644da068835d271391f586
7
+ data.tar.gz: 448e4c0fe4bdfb4ed11716387d9ec3a8713a2f7cd29caf5019bb76f124c74d00125cf0f99812483ffeb1a2005a860784c36dd5fd12af3df4dfb179573e9da9f1
data/CHANGELOG.md CHANGED
@@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.
4
4
 
5
5
  ## Unreleased
6
6
 
7
+ ## 1.2.1 (2019-07-03)
8
+ * Fixed: Eager loading in Rails 6 no longer crashes trying to load `ActiveType::Object`s.
9
+ Thanks to @teamhqapp for the fix.
10
+
11
+
7
12
  ## 1.2.0 (2019-06-18)
8
13
 
9
14
  * Fixed: Using `has_many` et al in an extended record ignored given scopes.
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- active_type (1.2.0)
4
+ active_type (1.2.1)
5
5
  activerecord (>= 3.2)
6
6
 
7
7
  GEM
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- active_type (1.2.0)
4
+ active_type (1.2.1)
5
5
  activerecord (>= 3.2)
6
6
 
7
7
  GEM
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- active_type (1.2.0)
4
+ active_type (1.2.1)
5
5
  activerecord (>= 3.2)
6
6
 
7
7
  GEM
data/Gemfile.4.2.pg.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- active_type (1.2.0)
4
+ active_type (1.2.1)
5
5
  activerecord (>= 3.2)
6
6
 
7
7
  GEM
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- active_type (1.2.0)
4
+ active_type (1.2.1)
5
5
  activerecord (>= 3.2)
6
6
 
7
7
  GEM
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- active_type (1.2.0)
4
+ active_type (1.2.1)
5
5
  activerecord (>= 3.2)
6
6
 
7
7
  GEM
data/Gemfile.5.2.pg.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- active_type (1.2.0)
4
+ active_type (1.2.1)
5
5
  activerecord (>= 3.2)
6
6
 
7
7
  GEM
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- active_type (1.2.0)
4
+ active_type (1.2.1)
5
5
  activerecord (>= 3.2)
6
6
 
7
7
  GEM
data/Gemfile.6.0.pg.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- active_type (1.2.0)
4
+ active_type (1.2.1)
5
5
  activerecord (>= 3.2)
6
6
 
7
7
  GEM
@@ -101,6 +101,10 @@ module ActiveType
101
101
  def columns_hash(table_name)
102
102
  {}
103
103
  end
104
+
105
+ def columns_hash?(table_name)
106
+ return false
107
+ end
104
108
 
105
109
  def data_source_exists?(table_name)
106
110
  false
@@ -1,3 +1,3 @@
1
1
  module ActiveType
2
- VERSION = '1.2.0'
2
+ VERSION = '1.2.1'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: active_type
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.0
4
+ version: 1.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tobias Kraze
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2019-06-18 00:00:00.000000000 Z
12
+ date: 2019-07-03 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: bundler