Sha256: 7c0c9ee06ec6e6fdbb7ba90ded2bbbfed15170f7b5fa49c4916571f8488aadbf

Contents?: true

Size: 778 Bytes

Versions: 23

Compression:

Stored size: 778 Bytes

Contents

Social::TwitterPostPresenter = ImmutableStruct.new(
    :user_full_name,
    :user_id,
    :user_profile_picture_url,
    :user_username,
    :id,
    :text,
    :filter,
    :id,
    :low_res_image_url,
    :low_res_image_height,
    :low_res_image_width,
    :standard_res_image_url,
    :standard_res_image_height,
    :standard_res_image_width,
    :thumbnail_image_url,
    :thumbnail_res_image_height,
    :thumbnail_res_image_width,
    :url,
    :created_time
) do

  def self.from_twitter_post(post)
    self.new(user_full_name: post.user.name,
             user_id: post.user.id,
             user_username: post.user.screen_name,
             id: post.id,
             created_time: post.created_at,
             text: post.text,
             url: post.url)
  end
end

Version data entries

23 entries across 23 versions & 1 rubygems

Version Path
trusty-festivity-extension-2.6.3 app/presenters/social/twitter_post_presenter.rb
trusty-festivity-extension-2.6.2 app/presenters/social/twitter_post_presenter.rb
trusty-festivity-extension-2.6.1 app/presenters/social/twitter_post_presenter.rb
trusty-festivity-extension-2.6 app/presenters/social/twitter_post_presenter.rb
trusty-festivity-extension-2.5.19 app/presenters/social/twitter_post_presenter.rb
trusty-festivity-extension-2.5.18 app/presenters/social/twitter_post_presenter.rb
trusty-festivity-extension-2.5.17 app/presenters/social/twitter_post_presenter.rb
trusty-festivity-extension-2.5.16 app/presenters/social/twitter_post_presenter.rb
trusty-festivity-extension-2.5.15 app/presenters/social/twitter_post_presenter.rb
trusty-festivity-extension-2.5.14 app/presenters/social/twitter_post_presenter.rb
trusty-festivity-extension-2.5.13 app/presenters/social/twitter_post_presenter.rb
trusty-festivity-extension-2.5.12 app/presenters/social/twitter_post_presenter.rb
trusty-festivity-extension-2.5.11 app/presenters/social/twitter_post_presenter.rb
trusty-festivity-extension-2.5.10 app/presenters/social/twitter_post_presenter.rb
trusty-festivity-extension-2.5.9 app/presenters/social/twitter_post_presenter.rb
trusty-festivity-extension-2.5.8 app/presenters/social/twitter_post_presenter.rb
trusty-festivity-extension-2.5.7 app/presenters/social/twitter_post_presenter.rb
trusty-festivity-extension-2.5.6 app/presenters/social/twitter_post_presenter.rb
trusty-festivity-extension-2.5.5 app/presenters/social/twitter_post_presenter.rb
trusty-festivity-extension-2.5.4 app/presenters/social/twitter_post_presenter.rb