module Datarank class Client # Module containing methods for interacting with a topic's word cloud module Wordcloud # Return word cloud for a topic # # @param slug [String] A topic's unique identifier slug def wordcloud(slug, options={}) get "/topics/#{slug}/wordcloud", options end end end end