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 get "/topics/#{slug}/wordcloud" end end end end