Class: Excursion::Datasources::Datasource
- Inherits:
-
Object
- Object
- Excursion::Datasources::Datasource
- Defined in:
- lib/excursion/datasources/datasource.rb
Instance Method Summary collapse
- #delete(key) ⇒ Object (also: #unset)
- #read(key) ⇒ Object (also: #get)
- #write(key, value) ⇒ Object (also: #set)
Instance Method Details
#delete(key) ⇒ Object Also known as: unset
9 |
# File 'lib/excursion/datasources/datasource.rb', line 9 def delete(key); end |
#read(key) ⇒ Object Also known as: get
5 |
# File 'lib/excursion/datasources/datasource.rb', line 5 def read(key); end |
#write(key, value) ⇒ Object Also known as: set
7 |
# File 'lib/excursion/datasources/datasource.rb', line 7 def write(key, value); end |