Sha256: d8a99e7295624b1d4ca8dc7520c724f98d41be0403da8b880ee0af9081756dfb

Contents?: true

Size: 1.66 KB

Versions: 20

Compression:

Stored size: 1.66 KB

Contents

![](https://www.rockrms.com/Themes/RockExternal/Assets/Images/rock-logo.svg)

# Rock RMS Ruby Client ![example workflow](https://github.com/taylorbrooks/rock_rms/actions/workflows/test.yml/badge.svg)

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.

### Installation
Add this line to your application's Gemfile:
````ruby
  # in your Gemfile
  gem 'rock_rms', '~> 7.0.3'

  # then...
  bundle install
````

### Usage
````ruby
  # Authenticating with username and password
  client = RockRMS::Client.new(
    url: ...,
    username: ...,
    password: ...,
  )

  # Authenticating with authorization token
  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')
````

### History

View the [changelog](https://github.com/taylorbrooks/rock_rms/blob/master/CHANGELOG.md)
This gem follows [Semantic Versioning](http://semver.org/)

### Contributing

Everyone is encouraged to help improve this project. Here are a few ways you can help:

- [Report bugs](https://github.com/taylorbrooks/rock_rms/issues)
- Fix bugs and [submit pull requests](https://github.com/taylorbrooks/rock_rms/pulls)
- Write, clarify, or fix documentation
- Suggest or add new features

### Copyright
Copyright (c) 2018 Taylor Brooks. See LICENSE for details.

Version data entries

20 entries across 20 versions & 1 rubygems

Version Path
rock_rms-8.23.0 README.md
rock_rms-8.22.0 README.md
rock_rms-8.21.0 README.md
rock_rms-8.20.0 README.md
rock_rms-8.19.0 README.md
rock_rms-8.18.0 README.md
rock_rms-8.17.0 README.md
rock_rms-8.16.0 README.md
rock_rms-8.15.2 README.md
rock_rms-8.15.1 README.md
rock_rms-8.15.0 README.md
rock_rms-8.14.0 README.md
rock_rms-8.13.0 README.md
rock_rms-8.12.0 README.md
rock_rms-8.11.0 README.md
rock_rms-8.10.0 README.md
rock_rms-8.9.0 README.md
rock_rms-8.8.0 README.md
rock_rms-8.7.0 README.md
rock_rms-8.6.0 README.md