Class: FlutterRb::Gradle
- Inherits:
-
Object
- Object
- FlutterRb::Gradle
- Defined in:
- lib/flutter_rb/project/specs/android/gradle.rb
Overview
Represents a Gradle project.
Instance Attribute Summary collapse
-
#path ⇒ String
readonly
Returns the path to the Gradle project.
-
#version ⇒ String
readonly
Returns the version of Gradle being used.
Instance Method Summary collapse
-
#initialize(path, version) ⇒ Gradle
constructor
Initializes a new Gradle instance.
Constructor Details
#initialize(path, version) ⇒ Gradle
Initializes a new Gradle instance.
12 13 14 15 |
# File 'lib/flutter_rb/project/specs/android/gradle.rb', line 12 def initialize(path, version) @path = path @version = version end |
Instance Attribute Details
#path ⇒ String (readonly)
Returns the path to the Gradle project.
20 21 22 |
# File 'lib/flutter_rb/project/specs/android/gradle.rb', line 20 def path @path end |
#version ⇒ String (readonly)
Returns the version of Gradle being used.
25 26 27 |
# File 'lib/flutter_rb/project/specs/android/gradle.rb', line 25 def version @version end |