Class: App::NoopConverter

Inherits:
Object
  • Object
show all
Defined in:
app/converters/noop_converter.rb

Instance Method Summary collapse

Instance Method Details

#attributes_list_to_storage(list) ⇒ Object



3
4
5
# File 'app/converters/noop_converter.rb', line 3

def attributes_list_to_storage(list)
  list
end

#from_storage(attrs) ⇒ Object



7
8
9
# File 'app/converters/noop_converter.rb', line 7

def from_storage(attrs)
  attrs
end

#to_storage(attrs) ⇒ Object



11
12
13
# File 'app/converters/noop_converter.rb', line 11

def to_storage(attrs)
  attrs
end