class Estratto::Data::Base

Attributes

data[R]
formats[R]

Public Class Methods

new(data, formats = {}) click to toggle source
# File lib/estratto/data/base.rb, line 8
def initialize(data, formats = {})
  @data = data
  @formats = formats
end

Public Instance Methods

coerce() click to toggle source
# File lib/estratto/data/base.rb, line 13
def coerce
  raise TypeCoercionNotFound
end