A Ruby wrapper for the Rock RMS API
To get a general overview of Rock RMS: https://www.rockrms.com
To stay up-to-date with the code changes of Rock RMS: https://github.com/SparkDevNetwork/Rock
I'm a big fan of Rock so if you have problems using the gem or would like to see support for new endpoints, please open a GitHub issue -- I'll get it resolved as quick as I can.
Add this line to your application's Gemfile:
# in your Gemfile
gem 'rock_rms', '~> 4.2'
# then...
bundle install
# Using Username and Password
client = RockRMS::Client.new(
url: ...,
username: ...,
password: ...,
)
# Using REST Key
client = RockRMS::Client.new(
url: ...,
authorization_token: ...,
)
# Find a specific person
client.find_person_by_email('gob@bluthco.com')
client.find_person_by_name('Tobias Funke')
View the changelog This gem follows Semantic Versioning
Everyone is encouraged to help improve this project. Here are a few ways you can help:
- Report bugs
- Fix bugs and submit pull requests
- Write, clarify, or fix documentation
- Suggest or add new features
Copyright (c) 2018 Taylor Brooks. See LICENSE for details.