Makes connecting to BambooHR with OpenID easier.
Add this line to your application's Gemfile:
gem 'bamboo-id', require: 'bamboo_id'And then execute:
$ bundle
Or install it yourself as:
$ gem install bamboo-id
BambooId::Configuration.redirect_url must be set.
The following environment variables are also required:
BAMBOO_APPLICATION_KEYBAMBOO_CLIENT_IDBAMBOO_CLIENT_SECRET
To get the initial authorization URL, use BambooId::Urls::AuthUrl.new(subdomain).to_s
You can also pass an optional custom state attribute to this URL like this:
state = "my_custom_state"
BambooId::Urls::AuthUrl.new(subdomain, state).to_sIn the callback controller, you can use BambooId::ApiKeyFetcher to get an API key
using the code passed to you like so:
::BambooId::ApiKeyFetcher.new(
code: params[:code],
subdomain: subdomain,
).fetchThis will either return an api key or false with an error attribute set.
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.
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.
Bug reports and pull requests are welcome on GitHub at https://github.com/bonusly/bamboo-id. 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.
The gem is available as open source under the terms of the MIT License.
Bonusly is the fun and easy way to engage all of your employees and improve retention and productivity at every level of your organization.
Check out our product or our engineering blog.
