Class: Himari::Storages::Filesystem
- Inherits:
-
Object
- Object
- Himari::Storages::Filesystem
- Includes:
- Base
- Defined in:
- lib/himari/storages/filesystem.rb
Instance Attribute Summary collapse
-
#path ⇒ Object
readonly
Returns the value of attribute path.
Instance Method Summary collapse
-
#initialize(path) ⇒ Filesystem
constructor
A new instance of Filesystem.
Methods included from Base
#delete_authorization, #delete_authorization_by_code, #delete_session, #delete_session_by_handle, #delete_token, #delete_token_by_handle, #find_authorization, #find_session, #find_token, #put_authorization, #put_session, #put_token
Constructor Details
#initialize(path) ⇒ Filesystem
Returns a new instance of Filesystem.
8 9 10 |
# File 'lib/himari/storages/filesystem.rb', line 8 def initialize(path) @path = path end |
Instance Attribute Details
#path ⇒ Object (readonly)
Returns the value of attribute path.
12 13 14 |
# File 'lib/himari/storages/filesystem.rb', line 12 def path @path end |