Class: ConcurrentPipeline::Stores::Yaml::Db::Reader
- Inherits:
-
Struct
- Object
- Struct
- ConcurrentPipeline::Stores::Yaml::Db::Reader
- Defined in:
- lib/concurrent_pipeline/stores/yaml/db.rb
Instance Attribute Summary collapse
-
#store ⇒ Object
Returns the value of attribute store.
Instance Method Summary collapse
- #all ⇒ Object
- #changeset ⇒ Object
- #everything ⇒ Object
- #find ⇒ Object
- #reader? ⇒ Boolean
- #to_h ⇒ Object
Instance Attribute Details
#store ⇒ Object
Returns the value of attribute store
10 11 12 |
# File 'lib/concurrent_pipeline/stores/yaml/db.rb', line 10 def store @store end |
Instance Method Details
#all ⇒ Object
15 16 17 |
# File 'lib/concurrent_pipeline/stores/yaml/db.rb', line 15 def all(...) store.all(...) end |
#changeset ⇒ Object
27 28 29 |
# File 'lib/concurrent_pipeline/stores/yaml/db.rb', line 27 def changeset store.changeset end |
#everything ⇒ Object
19 20 21 |
# File 'lib/concurrent_pipeline/stores/yaml/db.rb', line 19 def everything(...) store.everything(...) end |
#find ⇒ Object
11 12 13 |
# File 'lib/concurrent_pipeline/stores/yaml/db.rb', line 11 def find(...) store.find(...) end |
#reader? ⇒ Boolean
31 32 33 |
# File 'lib/concurrent_pipeline/stores/yaml/db.rb', line 31 def reader? true end |
#to_h ⇒ Object
23 24 25 |
# File 'lib/concurrent_pipeline/stores/yaml/db.rb', line 23 def to_h(...) store.to_h(...) end |