class Bubbles::Resources
Public Class Methods
new(api_key='')
click to toggle source
Calls superclass method
# File lib/bubbles.rb, line 13 def initialize(api_key='') super @packageName = Bubbles::VersionInformation.package_name @versionName = Bubbles::VersionInformation.version_name @versionCode = Bubbles::VersionInformation.version_code end
Public Instance Methods
get_version_info()
click to toggle source
# File lib/bubbles.rb, line 21 def get_version_info { :name => @packageName, :versionName => @versionName, :versionCode => @versionCode } end