Class: Fastlane::Helper::GradleTask

Inherits:
Object
  • Object
show all
Defined in:
lib/fastlane/helper/gradle_helper.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

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

#descriptionObject

Returns the value of attribute description.



6
7
8
# File 'lib/fastlane/helper/gradle_helper.rb', line 6

def description
  @description
end

#titleObject

Returns the value of attribute title.



4
5
6
# File 'lib/fastlane/helper/gradle_helper.rb', line 4

def title
  @title
end