lib/vedeu/support/coercions.rb in vedeu-0.3.4 vs lib/vedeu/support/coercions.rb in vedeu-0.3.5
- old
+ new
@@ -3,10 +3,11 @@
module Vedeu
# Provides means to convert attributes into the correct model.
#
# @api private
+ #
module Coercions
include Vedeu::Common
# Produces new objects of the correct class from the value, ignores objects
@@ -46,10 +47,10 @@
# Whenever this module {Vedeu::Coercions} is included in another class or
# module, make its methods into class methods, so they may be called
# directly.
#
# @param receiver [Class] The class in which this module is included.
- # @return []
+ # @return [void]
def self.included(receiver)
receiver.extend(self)
end
end # Coercions