class DesignerNews::Comment

Public Class Methods

find(comment_id) click to toggle source
# File lib/designer_news/comment.rb, line 4
def find(comment_id)
  resp = MultiJson.decode(LayerVault.client.comment(comment_id))
  instance = new(resp)
end