class SpiffyStoresAPI::Article

Public Class Methods

authors(options = {}) click to toggle source

def comments

Comment.find(:all, :params => { :article_id => id })

end

# File lib/spiffy_stores_api/resources/article.rb, line 12
def self.authors(options = {})
  get(:authors, options)
end
tags(options={}) click to toggle source
# File lib/spiffy_stores_api/resources/article.rb, line 16
def self.tags(options={})
  get(:tags, options)
end