Skip to content
This repository was archived by the owner on Dec 8, 2017. It is now read-only.

18F/answers-ruby-client

Repository files navigation

Build Status Code Climate Coverage Status Gem Version

answers-ruby-client

Low level Ruby access to the Answers Platform API

Installation

gem 'answers-ruby-client'
gem install answers-ruby-client

Usage

Synopsis

require 'answers'

Answers.init

questions = Answers::Question.all
questions.each do |question|
  p question.id
  p question.text
end

answers = Answers::Answer.all
answers.each do |answer|
  p answer.id
  p answer.text
  p answer.question_id
  q = Answers::Question.find(question.id)
  p q.text
end

# write API (requires authentication)

Answers.init({
  user_email: 'person@email.tld',
  user_token: '1234567890qwertyuiop'
})

question = Answers::Question.new
question.text = 'Is this a question?'
question.save

answer = Answers::Answer.new
answer.text = 'Yes, this is a question.'
answer.question_id = question.id
answer.save

CRUD

Create

Answers::Question.new(text: 'hello').save
Answers::Answer.new(text: 'hello').save

Read

Answers.Question.find(1)
Answers.Answer.find(1)

Update

a = Answers::Question.find(1)
a.text = 'new_text'
a.save

Delete

a = Answers::Question.find(1)
a.text = 'new_text'
a.delete

Question attributes

  • id (Integer)
  • created_at (String)
  • updated_at (String)
  • text (String) - the text of the question
  • in_language (String) - the language of the question
  • need_to_know (String)

Answer

  • id (Integer)
  • created_at (String)
  • updated_at (String)
  • text (String) - the text of the answer
  • in_language (String) - the language of the answer
  • question_id (Integer) - the id of the question that the Answer belongs to

Contributing

  1. Fork it ( https://github.com/18F/answers-ruby-client/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request

Public domain

This project is in the worldwide public domain. As stated in CONTRIBUTING:

This project is in the public domain within the United States, and copyright and related rights in the work worldwide are waived through the CC0 1.0 Universal public domain dedication.

All contributions to this project will be released under the CC0 dedication. By submitting a pull request, you are agreeing to comply with this waiver of copyright interest.

About

Low level Ruby access to the Answers Platform API

Resources

License

Code of conduct

Stars

Watchers

Forks

Packages

No packages published

Contributors 2

  •  
  •  

Languages