cable_menu 0.0.2 → 0.0.3

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.
data/cable_menu.gemspec CHANGED
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = %q{cable_menu}
3
- s.version = "0.0.2"
3
+ s.version = "0.0.3"
4
4
 
5
5
  s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
6
6
  s.authors = ["Spencer Markowski | The Able Few"]
@@ -5,9 +5,9 @@ module Cable
5
5
  end
6
6
 
7
7
  module ClassMethods
8
- def acts_as_cable
8
+ def acts_as_cable( reflection_options = {} )
9
9
  send :include, InstanceMethods
10
- has_one :menu, :as => :cable_menuable
10
+ has_one :menu, reflection_options.merge( :as => :cable_menuable )
11
11
  end
12
12
  end
13
13
 
@@ -5,9 +5,9 @@ module CableMenu
5
5
  end
6
6
 
7
7
  module ClassMethods
8
- def acts_as_cable_menu
8
+ def acts_as_cable_menu( reflection_options = {} )
9
9
  send :include, InstanceMethods
10
- belongs_to :cable_menuable, :polymorphic => true
10
+ belongs_to :cable_menuable, reflection_options.merge( :polymorphic => true )
11
11
  acts_as_nested_set
12
12
  end
13
13
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cable_menu
3
3
  version: !ruby/object:Gem::Version
4
- hash: 27
4
+ hash: 25
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 0
9
- - 2
10
- version: 0.0.2
9
+ - 3
10
+ version: 0.0.3
11
11
  platform: ruby
12
12
  authors:
13
13
  - Spencer Markowski | The Able Few