Description
This gem helps you call any API using Bearer.sh, an hosting solution to run and manage API integrations.
Bearer Agent for Ruby alternatives and similar gems
Based on the "Third-party APIs" category.
Alternatively, view Bearer Agent for Ruby alternatives based on common mentions on social networks and blogs.
-
ruby-gmail
A Rubyesque interface to Gmail. Connect to Gmail via IMAP and manipulate emails and labels. Send email with your Gmail account via SMTP. Includes full support for parsing and generating MIME messages. -
itunes_store_transporter
Upload and manage your assets in the iTunes Store using the iTunes Store’s Transporter (iTMSTransporter). -
pivotal-tracker-api
This is a Ruby Gem that can be used to communicate with the Pivotal Tracker API v5
Scout Monitoring - Performance metrics and, now, Logs Management Monitoring with Scout Monitoring
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of Bearer Agent for Ruby or a related project?
README
Bearer
This gem is a Ruby client to universally call any API using Bearer.sh.
NB: If you are using Rails, also have a look at the Rails gem
Installation
Add this line to your application's Gemfile:
gem 'bearer'
And then execute:
$ bundle
Or install it yourself as:
$ gem install bearer
Usage
Grab your Bearer Secret Key and integration id from the Dashboard and then you can use the client as follows:
Calling any APIs
require "bearer"
bearer = Bearer.new("BEARER_SECRET_KEY") # find it on https://app.bearer.sh/keys
github = (
bearer
.integration("your integration id") # you'll find it on the Bearer dashboard https://app.bearer.sh
.auth("your auth id") # Create an auth id for your integration via the dashboard
)
puts github.get("/repositories").data
We use Net::HTTP
internally and we
return it's response from the request methods (request
,
get
, head
, post
, put
, patch
, delete
).
More advanced examples:
# With query parameters
puts github.get("/repositories", query: { since: 364 }).data
# With body data
puts github.post("/user/repos", body: { name: "Just setting up my Bearer.sh" }).data
Global configuration
You can configure the client globally with your Secret Key:
Bearer::Configuration.setup do |config|
config.secret_key = "BEARER_SECRET_KEY" # copy and paste your Bearer `Secret Key`
end
You can now use the client without having to pass the Secret Key each time:
github = Bearer.integration("your integration id").auth("your auth id")
puts github.get("/repositories").data
Setting the request timeout
By default in bearer client read and open timeouts are set to 5 seconds. Bearer allows to increase the read timeout to up to 30 seconds
Bearer::Configuration.setup do |config|
# increase the request timeout to 10 seconds, and reduce the open connection timeout to 1 second
config.http_client_settings = { read_timeout: 10, open_timeout: 1 }
end
# it is also possible to set the read_timeout and other Net::HTTP client settings per integration
github = Bearer.integration("your integration id", { read_timeout: 10 })
puts github.get("/repositories").data # This request will timeout after 10 seconds
Development
After checking out the repo, run bin/setup
to install dependencies. Then, run rake spec
to run the tests. You can also run bin/console
for an interactive prompt that will allow you to experiment. Also make sure you have overcommit
installed and initialized in the repo check overcommit repo for further reference.
To install this gem onto your local machine, run bundle exec rake install
. To release a new version, update the version number in version.rb
, and then run bundle exec rake release
, which will create a git tag for the version, push git commits and tags, and push the .gem
file to rubygems.org.
Contributing
Bug reports and pull requests are welcome on GitHub at https://github.com/bearer/bearer-ruby. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the Contributor Covenant code of conduct.
Code of Conduct
Everyone interacting in the Bearer project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the code of conduct.