class Barthes::Client::Rdb
Public Instance Methods
action(params)
click to toggle source
# File lib/barthes/client/rdb.rb, line 4 def action(params) result = [] response = execute_query(params['query']) if response response.each do |row| result << row end end result end