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.



167
168
169
170
# File 'lib/app_info/apk.rb', line 167

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

Instance Attribute Details

#certificateObject (readonly)

Returns the value of attribute certificate.



166
167
168
# File 'lib/app_info/apk.rb', line 166

def certificate
  @certificate
end

#pathObject (readonly)

Returns the value of attribute path.



166
167
168
# File 'lib/app_info/apk.rb', line 166

def path
  @path
end