class Radiator::Type::Amount

Public Class Methods

new(options = {}) click to toggle source
Calls superclass method
# File lib/radiator/type/amount.rb, line 5
def initialize(options = {})
  unless defined? @@deprecated_warning_shown
    warn "[DEPRECATED] Using Radiator::Type::Amount class provided is deprecated.  Please use: Hive::Type::Amount"
    @@deprecated_warning_shown = true
    
    super(options.merge(chain: :hive))
  end
end