Project

rock_rms

0.02
A long-lived project that still receives updates
A Ruby wrapper for the Rock RMS API -- a church management platform, simplified.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 2.3
>= 0
>= 0
~> 12.3.3
~> 3.7
~> 2.0
~> 3.1

Runtime

 Project Readme

Rock RMS Ruby Client example workflow

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:

  # in your Gemfile
  gem 'rock_rms', '~> 7.0.3'

  # then...
  bundle install

Usage

  # 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 This gem follows Semantic Versioning

Contributing

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

Copyright

Copyright (c) 2017-2024 Taylor Brooks. See LICENSE for details.