Class: Remi::DataTarget::DataFrame
- Inherits:
-
Remi::DataTarget
- Object
- Remi::DataSubject
- Remi::DataTarget
- Remi::DataTarget::DataFrame
- Defined in:
- lib/remi/data_subject/data_frame.rb
Instance Attribute Summary
Attributes inherited from Remi::DataSubject
Instance Method Summary collapse
-
#initialize(*args, **kargs, &block) ⇒ DataFrame
constructor
A new instance of DataFrame.
-
#load! ⇒ Object
Public: Performs the load operation, regardless of whether it has already executed.
Methods inherited from Remi::DataTarget
Methods inherited from Remi::DataSubject
#df, #df=, #enforce_types, #field_symbolizer
Constructor Details
#initialize(*args, **kargs, &block) ⇒ DataFrame
Returns a new instance of DataFrame.
34 35 36 37 |
# File 'lib/remi/data_subject/data_frame.rb', line 34 def initialize(*args, **kargs, &block) super init_df(*args, **kargs, &block) end |
Instance Method Details
#load! ⇒ Object
Public: Performs the load operation, regardless of whether it has already executed.
Returns true if the load operation was successful
43 44 45 |
# File 'lib/remi/data_subject/data_frame.rb', line 43 def load! true end |