tily/barthes

View on GitHub
lib/barthes/client/rdb.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Barthes
    module Client
        class Rdb
            def action(params)
                result = []
                response = execute_query(params['query'])
                if response
                    response.each do |row|
                        result << row
                    end
                end
                result
            end
        end
    end
end