O objetivo dessa gem é facilitar o acesso à API Olho Vivo
Add this line to your application's Gemfile:
gem 'sptrans'
And then execute:
$ bundle
Or install it yourself as:
$ gem install sptrans
sp_trans = SPTrans.new token
linhas = sp_trans.linhas termos_busca
# => [<SPTrans::Linha @...>, <SPTrans::Linha @...>]
Customizar a criação da conexão usando o Faraday:
SPTrans.new token do |faraday|
faraday.adapter :curb
end
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request