class People

Attributes

avatar[RW]
bio[RW]
business[RW]
detail[RW]
education[RW]
location[RW]
name[RW]

Public Class Methods

new() click to toggle source
# File lib/zhSieve/people.rb, line 4
def initialize
        @name = 'NA'
        @avatar = 'NA'
        @location = 'NA'
        @business = 'NA'
        @education = 'NA'
        @detail = 'NA'
        @bio = 'NA'
end