Sha256: 31999bebcd7570888f915a4c79a4c56663bc2a0dd9dd44c4d0c6b9cac14862cd

Contents?: true

Size: 327 Bytes

Versions: 3

Compression:

Stored size: 327 Bytes

Contents

module Tumblr
  class Post
    class Chat < Post
      def initialize(post_data = {})
        super(post_data)
        @type = :chat
      end

      def title
        @title
      end

      def conversation
        @conversation
      end

      def self.post_body_keys
        [:conversation]
      end
    end
  end
end



Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
tumblr-rb-2.1.0 lib/tumblr/post/chat.rb
tumblr-rb-2.0.0 lib/tumblr/post/chat.rb
tumblr-rb-2.0.0.alpha lib/tumblr/post/chat.rb