class SkypeHistoryImport::Message

Attributes

date[RW]
nick[RW]
text[RW]

Public Instance Methods

email() click to toggle source

make email from nick, like nick@skype.com

# File lib/skype-history-import.rb, line 64
def email
        if @email.nil?
                @email = nick.to_url.gsub(/\W/,'')
                @email = "#{@email}@skype.com"
        end
        @email
end
email=(value) click to toggle source
# File lib/skype-history-import.rb, line 72
def email=(value)
        @email = value
end