Class: FlutterRb::AndroidFolder

Inherits:
Object
  • Object
show all
Defined in:
lib/flutter_rb/project/specs/android/android_folder.rb

Overview

Android project representation

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(path) ⇒ AndroidFolder

Returns a new instance of AndroidFolder.



6
7
8
9
# File 'lib/flutter_rb/project/specs/android/android_folder.rb', line 6

def initialize(path)
  @path = path
  @gradle = GradleParser.new(@path).parse
end

Instance Attribute Details

#gradleObject (readonly)

Returns the value of attribute gradle.



11
12
13
# File 'lib/flutter_rb/project/specs/android/android_folder.rb', line 11

def gradle
  @gradle
end

#pathObject (readonly)

Returns the value of attribute path.



11
12
13
# File 'lib/flutter_rb/project/specs/android/android_folder.rb', line 11

def path
  @path
end