class AsanaSnapshot::Configuration
Attributes
base_dir[RW]
logger[RW]
persistence[RW]
token[RW]
Public Class Methods
new()
click to toggle source
# File lib/asana_snapshot/configuration.rb, line 6 def initialize @logger = Logger.new STDOUT @token = nil @base_dir = Dir.pwd @persistence = { adapter: :git } end