class Bumblebee::NullConverter

Base converter using the Null Object Pattern. Use this when a custom converter is not needed.

Public Instance Methods

convert(val) click to toggle source
# File lib/bumblebee/null_converter.rb, line 13
def convert(val)
  val
end