Sha256: 09785ab5213f3d9b5c5d874c006ad89f1264e5e291569bb1e96e980b00925b72
Contents?: true
Size: 1.43 KB
Versions: 1
Compression:
Stored size: 1.43 KB
Contents
require 'rubygems' require 'faraday' require 'faraday_middleware' require 'hashie/mash' module Buildbox class API def initialize(config = Buildbox.config) @config = config end def authenticate(api_key) @api_key = api_key get("user") end def worker(access_token, hostname) put("workers/#{access_token}", :hostname => hostname) end def scheduled_builds(project) get(project.scheduled_builds_url).map { |build| Buildbox::Build.new(build) } end def update_build(build) put(build.url, :output => build.output, :exit_status => build.exit_status) end private def connection @connection ||= Faraday.new(:url => @config.api_endpoint) do |faraday| faraday.basic_auth @api_key || @config.api_key, '' faraday.request :json faraday.response :logger, Buildbox.logger faraday.response :mashify # json needs to come after mashify as it needs to run before the mashify # middleware. faraday.response :json faraday.response :raise_error faraday.adapter Faraday.default_adapter end end def post(path, body = {}) connection.post(path) do |request| request.body = body end.body end def put(path, body = {}) connection.put(path) do |request| request.body = body end.body end def get(path) connection.get(path).body end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
buildbox-0.2.1 | lib/buildbox/api.rb |