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.



152
153
154
155
# File 'lib/app_info/apk.rb', line 152

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

Instance Attribute Details

#certificateObject (readonly)

Returns the value of attribute certificate.



151
152
153
# File 'lib/app_info/apk.rb', line 151

def certificate
  @certificate
end

#pathObject (readonly)

Returns the value of attribute path.



151
152
153
# File 'lib/app_info/apk.rb', line 151

def path
  @path
end