Class: ReleaseImage::Config

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeConfig

Returns a new instance of Config.



16
17
18
19
20
21
22
# File 'lib/release_image.rb', line 16

def initialize
  @api_key = nil
  @folder_path = nil
  @logo_path = nil
  @keywords = []
  @seasons = true
end

Instance Attribute Details

#api_keyObject

Returns the value of attribute api_key.



14
15
16
# File 'lib/release_image.rb', line 14

def api_key
  @api_key
end

#folder_pathObject

Returns the value of attribute folder_path.



14
15
16
# File 'lib/release_image.rb', line 14

def folder_path
  @folder_path
end

#keywordsObject

Returns the value of attribute keywords.



14
15
16
# File 'lib/release_image.rb', line 14

def keywords
  @keywords
end

#logo_pathObject

Returns the value of attribute logo_path.



14
15
16
# File 'lib/release_image.rb', line 14

def logo_path
  @logo_path
end

#seasonsObject

Returns the value of attribute seasons.



14
15
16
# File 'lib/release_image.rb', line 14

def seasons
  @seasons
end