Class: Formatters::Format
Instance Method Summary
collapse
Constructor Details
#initialize(options = {}) ⇒ Format
3
4
|
# File 'lib/formatters/format.rb', line 3
def initialize(options = {})
end
|
Instance Method Details
#from(value, options = {}) ⇒ Object
6
7
8
|
# File 'lib/formatters/format.rb', line 6
def from(value, options = {})
raise FormatNotDefinedException
end
|
#to(str, options = {}) ⇒ Object
10
11
12
|
# File 'lib/formatters/format.rb', line 10
def to(str, options = {})
raise FormatNotDefinedException
end
|