Class: RecordStore::Record::TXT
- Inherits:
-
RecordStore::Record
- Object
- RecordStore::Record
- RecordStore::Record::TXT
- Defined in:
- lib/record_store/record/txt.rb
Direct Known Subclasses
Constant Summary
Constants inherited from RecordStore::Record
Instance Attribute Summary collapse
-
#txtdata ⇒ Object
Returns the value of attribute txtdata.
Attributes inherited from RecordStore::Record
Instance Method Summary collapse
-
#initialize(record) ⇒ TXT
constructor
A new instance of TXT.
- #rdata ⇒ Object
- #rdata_txt ⇒ Object
Methods inherited from RecordStore::Record
#==, build_from_yaml_definition, ensure_ends_with_dot, ensure_ends_without_dot, escape, #hash, #key, #log!, long_quote, needs_long_quotes?, quote, #to_hash, #to_json, #to_s, #type, unescape, unlong_quote, unquote, #wildcard?
Constructor Details
#initialize(record) ⇒ TXT
Returns a new instance of TXT.
8 9 10 11 |
# File 'lib/record_store/record/txt.rb', line 8 def initialize(record) super @txtdata = record.fetch(:txtdata) end |
Instance Attribute Details
#txtdata ⇒ Object
Returns the value of attribute txtdata.
3 4 5 |
# File 'lib/record_store/record/txt.rb', line 3 def txtdata @txtdata end |