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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: dffefbc083f0f661a472dc48a7f9eb973e0cf42c
4
- data.tar.gz: b8f9ef383327ba1f1c8fcd106b6708bfa2e1011b
3
+ metadata.gz: c84e777134aea16cd7b6b4bdc413e969751cd31b
4
+ data.tar.gz: 9d6a22def09ef67f006109a97b817bf6f4019e44
5
5
  SHA512:
6
- metadata.gz: e08de421af87b4f1e44b015d4fba944842103d604104cad7920317c80aef3a493e3651738819954bebc82aef73d80ad39888b4604b9c887a63ebc948129fbdb1
7
- data.tar.gz: 1b3fa727463ae2bcf2962447cb49944cb782c1c985716b6ccf3afda4cf72fd879028b7efaca89bf7384c80d3b23a405b50fa5820a3e7b059c2cddb37df18b481
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.0...master)
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
 
@@ -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 = option_class_cache
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
@@ -1,3 +1,3 @@
1
1
  module Commutator
2
- VERSION = "0.2.0"
2
+ VERSION = "0.2.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: commutator
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Bradley Schaefer