class Wykop::Operations::Tags

Public Class Methods

new(client) click to toggle source

Documentation: www.wykop.pl/dla-programistow/dokumentacja/#info6_19

# File lib/wykop/operations/tags.rb, line 5
def initialize(client)
  @client = client
  @request = Wykop::Operations::Request.new(@client)
end

Public Instance Methods

tags_show() click to toggle source
# File lib/wykop/operations/tags.rb, line 10
def tags_show
  q_url = @request.replace_url({ :banana => 'tags', :potato => 'index' })
  q_body = Hash.new
  return @request.execute(q_url, q_body)
end