Module: RFlow::Components::Raw::Extensions::RawExtension
- Defined in:
- lib/rflow/components/raw.rb
Class Method Summary collapse
Instance Method Summary collapse
Class Method Details
.extended(base_data) ⇒ Object
6 7 8 |
# File 'lib/rflow/components/raw.rb', line 6 def self.extended(base_data) base_data.data_object ||= {'raw' => ''} end |
Instance Method Details
#raw ⇒ Object
10 |
# File 'lib/rflow/components/raw.rb', line 10 def raw; data_object['raw']; end |
#raw=(new_raw) ⇒ Object
11 |
# File 'lib/rflow/components/raw.rb', line 11 def raw=(new_raw); data_object['raw'] = new_raw; end |