Class: CsvRowModel::Export::File::Proxy
- Inherits:
-
Object
- Object
- CsvRowModel::Export::File::Proxy
- Defined in:
- lib/csv_row_model/export/file.rb
Instance Method Summary collapse
- #append_model(*args) ⇒ Object (also: #<<)
-
#initialize(file) ⇒ Proxy
constructor
A new instance of Proxy.
Constructor Details
#initialize(file) ⇒ Proxy
Returns a new instance of Proxy.
52 53 54 |
# File 'lib/csv_row_model/export/file.rb', line 52 def initialize(file) @file = file end |
Instance Method Details
#append_model(*args) ⇒ Object Also known as: <<
56 57 58 |
# File 'lib/csv_row_model/export/file.rb', line 56 def append_model(*args) @file.append_model(*args) end |