Class: OfficeBoy::Configuration

Inherits:
Object
  • Object
show all
Defined in:
lib/office_boy.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeConfiguration

Returns a new instance of Configuration.



44
45
46
47
48
# File 'lib/office_boy.rb', line 44

def initialize
  @sendgrid_api_key = nil
  @lists = {}
  @templates = {}
end

Instance Attribute Details

#listsObject

Returns the value of attribute lists.



42
43
44
# File 'lib/office_boy.rb', line 42

def lists
  @lists
end

#sendgrid_api_keyObject

Returns the value of attribute sendgrid_api_key.



42
43
44
# File 'lib/office_boy.rb', line 42

def sendgrid_api_key
  @sendgrid_api_key
end

#templatesObject

Returns the value of attribute templates.



42
43
44
# File 'lib/office_boy.rb', line 42

def templates
  @templates
end