Class: AppInfo::APK::Certificate

Inherits:
Object
  • Object
show all
Defined in:
lib/app_info/apk.rb

Overview

Android Certificate

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(path, certificate) ⇒ Certificate

Returns a new instance of Certificate.



162
163
164
165
# File 'lib/app_info/apk.rb', line 162

def initialize(path, certificate)
  @path = path
  @certificate = certificate
end

Instance Attribute Details

#certificateObject (readonly)

Returns the value of attribute certificate.



160
161
162
# File 'lib/app_info/apk.rb', line 160

def certificate
  @certificate
end

#pathObject (readonly)

Returns the value of attribute path.



160
161
162
# File 'lib/app_info/apk.rb', line 160

def path
  @path
end