Class: Google::Auth::Stores::FileTokenStore
- Inherits:
-
TokenStore
- Object
- TokenStore
- Google::Auth::Stores::FileTokenStore
- Defined in:
- lib/googleauth/stores/file_token_store.rb
Overview
Implementation of user token storage backed by a local YAML file
Instance Method Summary collapse
- #delete(id) ⇒ Object
-
#initialize(options = {}) ⇒ FileTokenStore
constructor
Create a new store with the supplied file.
- #load(id) ⇒ Object
- #store(id, token) ⇒ Object
Constructor Details
#initialize(options = {}) ⇒ FileTokenStore
Create a new store with the supplied file.
27 28 29 30 31 |
# File 'lib/googleauth/stores/file_token_store.rb', line 27 def initialize = {} super() path = [:file] @store = YAML::Store.new path end |
Instance Method Details
#delete(id) ⇒ Object
44 45 46 |
# File 'lib/googleauth/stores/file_token_store.rb', line 44 def delete id @store.transaction { @store.delete id } end |
#load(id) ⇒ Object
34 35 36 |
# File 'lib/googleauth/stores/file_token_store.rb', line 34 def load id @store.transaction { @store[id] } end |
#store(id, token) ⇒ Object
39 40 41 |
# File 'lib/googleauth/stores/file_token_store.rb', line 39 def store id, token @store.transaction { @store[id] = token } end |