Class: Google::Auth::Stores::FileTokenStore

Inherits:
TokenStore
  • Object
show all
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

Constructor Details

#initialize(options = {}) ⇒ FileTokenStore

Create a new store with the supplied file.

Parameters:

  • file (String, File)

    Path to storage file



27
28
29
30
31
# File 'lib/googleauth/stores/file_token_store.rb', line 27

def initialize options = {}
  super()
  path = options[: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