Sha256: cfeb9387b73198d366d0de1d309a22dbcbf316026df119ee88e4c7e1b3b0d6fc
Contents?: true
Size: 1.26 KB
Versions: 2
Compression:
Stored size: 1.26 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 worker(access_token: access_token, hostname: 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.request :json faraday.response :logger faraday.response :mashify # json needs to come after mashify as it needs to run before the mashify # middleware. faraday.response :json 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
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
buildbox-0.1.1 | lib/buildbox/api.rb |
buildbox-0.1 | lib/buildbox/api.rb |