app/models/dc_dummy.rb in drg_cms-0.5.8.2 vs app/models/dc_dummy.rb in drg_cms-0.5.9
- old
+ new
@@ -67,19 +67,17 @@
########################################################################
# Respond_to should always return true.
########################################################################
def respond_to?(m)
-# p "respond_to #{m}"
true
end
########################################################################
# Redefine send method. Send is used to assign value by cmsedit controller.
########################################################################
-def send(field,value)
-# p "send #{field} #{value}"
+def send(field,value=nil)
if field.to_s.match('=')
field.chomp!('=')
@internals ||= {}
@internals[field] = value
end
@@ -88,10 +86,9 @@
########################################################################
# Method missing will return value if value defined by m parameter is saved to
# @internals array or will assign new value to @internals hash if m matches '='.
########################################################################
def method_missing(m, *args, &block) #:nodoc:
-# p "#{m},#{args},#{block}"
@internals ||= {}
m = m.to_s
if m.match('=')
m.chomp!('=')
@internals[m] = args.first