lib/acfs/resource/attributes/string.rb in acfs-1.0.0.dev.1.b305 vs lib/acfs/resource/attributes/string.rb in acfs-1.0.0
- old
+ new
@@ -1,7 +1,6 @@
module Acfs::Resource::Attributes
-
# @api public
#
# String attribute type. Use it in your model as
# an attribute type:
#
@@ -9,18 +8,17 @@
# class User < Acfs::Resource
# attribute :name, :string
# end
#
class String < Base
-
# @api public
#
# Cast given object to string.
#
- # @param [Object] obj Object to cast.
+ # @param [Object] value Object to cast.
# @return [String] Casted string.
#
- def cast_type(obj)
- obj.to_s
+ def cast_value(value)
+ value.to_s
end
end
end