Sha256: 6fd4374bc0b9d2fadc7509167ba045e46a9490dea151fc0b488df21dd6b4e558
Contents?: true
Size: 1.36 KB
Versions: 1
Compression:
Stored size: 1.36 KB
Contents
class Exercism class Api attr_reader :url, :user, :project_dir def initialize(url, user, project_dir = nil) @url = url @user = user @project_dir = project_dir end def conn conn = Faraday.new(:url => url) do |c| c.use Faraday::Adapter::NetHttp c.headers['User-Agent'] = user_agent end end def demo get_and_save('assignments/demo') end def fetch get_and_save('user/assignments/current') end def peek get_and_save('user/assignments/next') end def submit(filename) path = File.join(filename) contents = File.read path response = conn.post do |req| req.url endpoint('user/assignments') req.headers['Accept'] = 'application/json' req.headers['Content-Type'] = 'application/json' req.body = {code: contents, key: user.key, path: path}.to_json end response end private def get_and_save(action) response = conn.get do |req| req.url endpoint(action) req.params['key'] = user.key end save response.body end def user_agent "github.com/kytrinyx/exercism CLI v#{Exercism::VERSION}" end def endpoint(action = nil) "/api/v1/#{action}".chomp('/') end def save(body) Assignment.save(JSON.parse(body), project_dir) end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
exercism-0.0.16 | lib/exercism/api.rb |