Sha256: a60fac3a53dd5da22fe17acb4ae397c0fce204e44f452984e371be5da69f52f8
Contents?: true
Size: 1.7 KB
Versions: 1
Compression:
Stored size: 1.7 KB
Contents
module Metrika module Api module Methods # Counters def get_counters self.get(self.counters_path)['counters'] end def create_counter(params) self.post(self.counters_path, params)['counter'] end def counters_path "/counters" end def get_counter(id) self.get(self.counter_path(id))['counter'] end def update_counter(id, params) self.put(self.counter_path(id), params)['counter'] end def delete_counter(id) self.delete(self.counter_path(id))['counter'] end def counter_path(id) "/counter/#{id}" end def check_counter(id) self.get(self.counter_check_path(id))['counter'] end def counter_check_path(id) "/counter/#{id}/check" end # Counter goals def get_counter_goals(counter_id) self.get(self.counter_goals_path(counter_id))['goals'] end def create_counter_goal(counter_id, params) self.post(self.counter_goals_path(counter_id), params)['goals'] end def counter_goals_path(counter_id) "/counter/#{counter_id}/goals" end def get_counter_goal(counter_id, id) self.get(self.counter_goal_path(counter_id, id))['goal'] end def update_counter_goal(counter_id, id, params) self.put(self.counter_goal_path(counter_id, id), params)['goal'] end def delete_counter_goal(counter_id, id) self.delete(self.counter_goal_path(counter_id, id))['goal'] end def counter_goal_path(counter_id, id) "/counter/#{counter_id}/goal/#{id}" end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
metrika-0.0.2 | lib/metrika/api/methods.rb |