class Job

Attributes

company[RW]
description[RW]
job_url[RW]
location[RW]
salary[RW]
title[RW]
when_posted[RW]

Public Class Methods

all() click to toggle source
# File lib/deedveloper/job.rb, line 17
def self.all
    @@all
end
new() click to toggle source
# File lib/deedveloper/job.rb, line 6
def initialize
    @title = title
    @company = company
    @location = location
    @when_posted = when_posted
    @job_url = job_url
    @salary = salary
    @description = description
    @@all << self
end