class App

Attributes

category[RW]
developer[RW]
language[RW]
rating[RW]
size[RW]
title[RW]
url[RW]

Public Class Methods

all() click to toggle source
# File lib/top_free_apps_itunes/app.rb, line 12
def self.all
    @@all
end
new(title, url) click to toggle source
# File lib/top_free_apps_itunes/app.rb, line 6
def initialize(title, url)
    @title = title
    @url = url
    @@all << self
end