active_delegate 0.1.6 → 0.1.7

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: cd11ab2bc38bf3b5315557db8e6587139b949d8d
4
- data.tar.gz: 394cbaac82ad1a85f794bdecdfcd1cf3d2b26b49
3
+ metadata.gz: 6e17b460409a616aa13bb2a37fedc9bc4fb136d0
4
+ data.tar.gz: b7b928163141d0c4f4acb49eab1b4c5deaf07738
5
5
  SHA512:
6
- metadata.gz: 8c319e006da9b6ded2bcbc1510efdf606cb226c790c9b2259c8a9d57dfd9b9d15cb3e118b689841e2f3d6767bab213ebf7eda36ab0bee8125b73f2016de779c3
7
- data.tar.gz: 166c56f9f170be0178902cbba74af77011509ad4d03f800632ebf2ae5f7e1762f871d3da4961abbb7391ff83e42f8b0b2b035c565f3e8b8402ad9af1649bb857
6
+ metadata.gz: 6dd676d93994f9d99f12b20e6b5454a6423af734a89c4f2b5350e733eb75cf759d49c5c540f8c169bbc44596f5cf7786664cf5dd47cc8ea2aa46c546a6211e06
7
+ data.tar.gz: 7648081d154bd45b0ba836d9a2777a9e44ee0e73952f838555ba62c5557f87a58feb7918e55901e66857c1e46e1e2883487bd86b8b5eb5b6ff3c2d32855a9664
@@ -17,7 +17,9 @@ module ActiveDelegate
17
17
 
18
18
  # Delegate attributes
19
19
  def delegate_attributes(*args)
20
- options = args.extract_options!.except(:single, :cast_type, :alias)
20
+ options = args.extract_options!
21
+ options = options.except(:single, :cast_type, :alias)
22
+
21
23
  Attributes.new(self, options)
22
24
  end
23
25
 
@@ -131,7 +131,7 @@ module ActiveDelegate
131
131
 
132
132
  # Define attribute names and types
133
133
  def define_attribute_names_and_types(attributes)
134
- existing = association_attribute_names.map(&:to_sym)
134
+ existing = @model.attribute_names.map(&:to_sym)
135
135
  undefined = attributes.reject { |a| a.in? existing }
136
136
 
137
137
  undefined.each do |attrib|
@@ -1,3 +1,3 @@
1
1
  module ActiveDelegate
2
- VERSION = '0.1.6'
2
+ VERSION = '0.1.7'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: active_delegate
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.6
4
+ version: 0.1.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jonian Guveli