Class: Fastlane::Helper::GradleTask
- Inherits:
-
Object
- Object
- Fastlane::Helper::GradleTask
- Defined in:
- lib/fastlane/helper/gradle_helper.rb
Instance Attribute Summary collapse
-
#description ⇒ Object
Returns the value of attribute description.
-
#title ⇒ Object
Returns the value of attribute title.
Instance Method Summary collapse
-
#initialize(title: nil, description: nil) ⇒ GradleTask
constructor
A new instance of GradleTask.
Constructor Details
#initialize(title: nil, description: nil) ⇒ GradleTask
Returns a new instance of GradleTask.
8 9 10 11 |
# File 'lib/fastlane/helper/gradle_helper.rb', line 8 def initialize(title: nil, description: nil) self.title = title self.description = description end |
Instance Attribute Details
#description ⇒ Object
Returns the value of attribute description.
6 7 8 |
# File 'lib/fastlane/helper/gradle_helper.rb', line 6 def description @description end |
#title ⇒ Object
Returns the value of attribute title.
4 5 6 |
# File 'lib/fastlane/helper/gradle_helper.rb', line 4 def title @title end |