class BestCompanies::Industry

Attributes

companies[R]
name[RW]

Public Class Methods

all() click to toggle source
# File lib/best_companies/industry.rb, line 15
def self.all
 @@all
end
new(name) click to toggle source
# File lib/best_companies/industry.rb, line 10
def initialize(name)
 @name = name
 @companies = []
end