commutator 0.2.0 → 0.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Changelog.md +7 -1
- data/lib/commutator/model.rb +1 -1
- data/lib/commutator/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c84e777134aea16cd7b6b4bdc413e969751cd31b
|
|
4
|
+
data.tar.gz: 9d6a22def09ef67f006109a97b817bf6f4019e44
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2340b44d4bba675761c92466dcef0eb3a6f627879f214874188f6d73b6569195f2eb8e27823cdb4cc74c3cc6ef2a77efeec42ee8cc27f1d2e1efb274b8d7658c
|
|
7
|
+
data.tar.gz: 8735e2f9db42a666c8972db5dd074d88a180f7119c5bf277488682f5a8dee4d3db57d65941b5f1c9a08257867597a0016d8adaee858a90a947a1cada7e6c257a
|
data/Changelog.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
### Development
|
|
2
|
-
[Full Changelog](http://github.com/tablexi/commutator/compare/v0.2.
|
|
2
|
+
[Full Changelog](http://github.com/tablexi/commutator/compare/v0.2.1...master)
|
|
3
|
+
|
|
4
|
+
### 0.2.1 / 2016-03-07
|
|
5
|
+
|
|
6
|
+
Bug fixes:
|
|
7
|
+
|
|
8
|
+
* Fixed incorrect method name in `inherited` Scope-copying code (Bradley Schaefer)
|
|
3
9
|
|
|
4
10
|
### 0.2.0 / 2016-03-07
|
|
5
11
|
|
data/lib/commutator/model.rb
CHANGED
|
@@ -142,7 +142,7 @@ module Commutator
|
|
|
142
142
|
subclass.table_name(table_name)
|
|
143
143
|
subclass.primary_key(hash: primary_key_hash_name,
|
|
144
144
|
range: primary_key_range_name)
|
|
145
|
-
subclass.scoped_options =
|
|
145
|
+
subclass.scoped_options = options_cache_class
|
|
146
146
|
|
|
147
147
|
scopes = const_defined?("Scopes", false) ? const_get("Scopes") : nil
|
|
148
148
|
subclass.const_set("Scopes", Module.new { include scopes }) if scopes
|
data/lib/commutator/version.rb
CHANGED