Class: SemanticRelease::Configuration
- Inherits:
-
Object
- Object
- SemanticRelease::Configuration
- Defined in:
- lib/semantic_release/configuration.rb
Instance Attribute Summary collapse
-
#disable_rubygems_message ⇒ Object
Returns the value of attribute disable_rubygems_message.
-
#semver_file ⇒ Object
Returns the value of attribute semver_file.
Instance Method Summary collapse
-
#initialize ⇒ Configuration
constructor
A new instance of Configuration.
Constructor Details
#initialize ⇒ Configuration
Returns a new instance of Configuration.
7 8 9 10 |
# File 'lib/semantic_release/configuration.rb', line 7 def initialize @semver_file = ".semver" @disable_rubygems_message = false end |
Instance Attribute Details
#disable_rubygems_message ⇒ Object
Returns the value of attribute disable_rubygems_message.
5 6 7 |
# File 'lib/semantic_release/configuration.rb', line 5 def @disable_rubygems_message end |
#semver_file ⇒ Object
Returns the value of attribute semver_file.
5 6 7 |
# File 'lib/semantic_release/configuration.rb', line 5 def semver_file @semver_file end |