Class: ReleaseImage::Config
- Inherits:
-
Object
- Object
- ReleaseImage::Config
- Defined in:
- lib/release_image.rb
Instance Attribute Summary collapse
-
#api_key ⇒ Object
Returns the value of attribute api_key.
-
#folder_path ⇒ Object
Returns the value of attribute folder_path.
-
#keywords ⇒ Object
Returns the value of attribute keywords.
-
#logo_path ⇒ Object
Returns the value of attribute logo_path.
-
#seasons ⇒ Object
Returns the value of attribute seasons.
Instance Method Summary collapse
-
#initialize ⇒ Config
constructor
A new instance of Config.
Constructor Details
#initialize ⇒ Config
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_key ⇒ Object
Returns the value of attribute api_key.
14 15 16 |
# File 'lib/release_image.rb', line 14 def api_key @api_key end |
#folder_path ⇒ Object
Returns the value of attribute folder_path.
14 15 16 |
# File 'lib/release_image.rb', line 14 def folder_path @folder_path end |
#keywords ⇒ Object
Returns the value of attribute keywords.
14 15 16 |
# File 'lib/release_image.rb', line 14 def keywords @keywords end |
#logo_path ⇒ Object
Returns the value of attribute logo_path.
14 15 16 |
# File 'lib/release_image.rb', line 14 def logo_path @logo_path end |
#seasons ⇒ Object
Returns the value of attribute seasons.
14 15 16 |
# File 'lib/release_image.rb', line 14 def seasons @seasons end |