Class: Ash::Adb::Package

Inherits:
Object
  • Object
show all
Defined in:
lib/ash/adb/package.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(package_path, package_name) ⇒ Package

Returns a new instance of Package.



5
6
7
8
# File 'lib/ash/adb/package.rb', line 5

def initialize(package_path, package_name)
  @package_path = package_path
  @package_name = package_name
end

Instance Attribute Details

#package_nameObject (readonly)

Returns the value of attribute package_name.



3
4
5
# File 'lib/ash/adb/package.rb', line 3

def package_name
  @package_name
end

#package_pathObject (readonly)

Returns the value of attribute package_path.



3
4
5
# File 'lib/ash/adb/package.rb', line 3

def package_path
  @package_path
end