Class: Ash::Adb::Package
- Inherits:
-
Object
- Object
- Ash::Adb::Package
- Defined in:
- lib/ash/adb/package.rb
Instance Attribute Summary collapse
-
#package_name ⇒ Object
readonly
Returns the value of attribute package_name.
-
#package_path ⇒ Object
readonly
Returns the value of attribute package_path.
Instance Method Summary collapse
-
#initialize(package_path, package_name) ⇒ Package
constructor
A new instance of Package.
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_name ⇒ Object (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_path ⇒ Object (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 |