meta_search 1.0.2 → 1.0.3
Sign up to get free protection for your applications and to get access to all the features.
- data/VERSION +1 -1
- data/lib/meta_search/helpers/form_builder.rb +2 -2
- data/meta_search.gemspec +1 -1
- metadata +1 -1
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.0.
|
1
|
+
1.0.3
|
@@ -8,8 +8,8 @@ module MetaSearch
|
|
8
8
|
|
9
9
|
def self.included(base)
|
10
10
|
# Only take on the check_boxes method names if someone else (Hi, José!) hasn't grabbed them.
|
11
|
-
alias_method :check_boxes, :checks unless method_defined?(:check_boxes)
|
12
|
-
alias_method :collection_check_boxes, :collection_checks unless method_defined?(:collection_check_boxes)
|
11
|
+
alias_method :check_boxes, :checks unless base.method_defined?(:check_boxes)
|
12
|
+
alias_method :collection_check_boxes, :collection_checks unless base.method_defined?(:collection_check_boxes)
|
13
13
|
end
|
14
14
|
|
15
15
|
# Like other form_for field methods (text_field, hidden_field, password_field) etc,
|
data/meta_search.gemspec
CHANGED