class Flumtter::Window::TweetBase

Public Instance Methods

id() click to toggle source
# File lib/flumtter/app/core/windows/tweetbase.rb, line 5
def id
  @object.id
end

Private Instance Methods

body() click to toggle source
# File lib/flumtter/app/core/windows/tweetbase.rb, line 18
def body
  @object.text.nl
end
created_at() click to toggle source
# File lib/flumtter/app/core/windows/tweetbase.rb, line 14
def created_at
  parse_time(@object.created_at)
end
user() click to toggle source
# File lib/flumtter/app/core/windows/tweetbase.rb, line 10
def user
  "#{@object.user.name} (@#{@object.user.screen_name})"
end