Redu Ruby é um encpsulador para da API REST do Redu escrito em Ruby. Seu principal objetivo é abstrair a lógica de comunicaçào HTTP entre os clientes e a API do Redu.
O Redu é uma plataforma de ensino a distância construída sobre uma rede social.
Adicione esta linha ao seu Gemfile:
gem 'redu'
E execute:
$ bundle
Ou instale o gem utilizando:
$ gem install redu
Inicialize um cliente passando o access token do OAuth:
client = Redu::Client.new(oauth_token_secret: 'xyz')
me = client.me
puts me.first_name
# => 'Guilherme'
me = client.me
friends = me.friends.select(&:first_name)
puts friends
# => ['André', 'Juliana', 'Anderson']
me = client.me
me.statuses.create(text: 'Hello World!')
me.statuses.last.text
# => 'Hello World!'
me = client.me
space = me.spaces.fetch(id: 12)
lecture = space.lectures.first
puts lecture.type, lecture.raw
# => 'Page'
# => 'Conteúdo da aula...'
me = client.me
last_status = me.statuses.last
puts last_status
# => 'Alguém está sem grupo para o trabalho de matemática?'
last_status.answer(text: 'Eu! Vamos fazer uma equipe?')
puts last_status.anwers.first
# => 'Eu! Vamos fazer uma equipe?'
user = client.me
# Todas as disciplinas que o usuário faz parte
spaces = user.spaces
# Todas as disciplinas onde o usuário é professor
teaching_spaces = user.spaces(role: :teacher)
params = {
lecture: {
type: 'Canvas',
name: 'Super duper',
current_url: 'http://myapp.canvas/1'
}
}
client.create_lecture(subject_id: 12, params)
- Faça fork do projeto
- Crie um novo branch (
git checkout -b my-new-feature
) - Realize seus commits (
git commit -am 'Add some feature'
) - Dê push nas modificações (
git push origin my-new-feature
) - Envie um pull request
Este projeto é financiado e mantido pelo Redu Educational Techologies.
Copyright (c) 2012 Redu Educational Technologies
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.