class Lifesign
attr_reader :name, :title, :description, :contact
def name
'云袭, lifesign'
end
def title
'关注 web 开发,个人成长'
end
def description
[
'混迹于北方的江南人士',
'喜欢极简生活',
'喜欢做有意思的事, Be a lifehacker'
].join
end
def contact
{
email: 'leocloudy#gmail.com',
github: 'https://github.com/lifesign'
}
end
end