Sha256: 1e20e10a869d66c962f856add55a7067731b6cc45e8bb2350e4ee65d601cb9cb
Contents?: true
Size: 1.7 KB
Versions: 2
Compression:
Stored size: 1.7 KB
Contents
# nationbuilder-rb A Ruby client for the NationBuilder API. ## Installing To install this gem to your current gemset, run: ```shell $ gem install nationbuilder-rb ``` Or, add this to your gemfile: ```ruby gem 'nationbuilder-rb' ``` ## Creating a client Require the gem: ```ruby require 'nationbuilder' ``` Then, create a client by specifying the name of your nation and your API token: ```ruby client = NationBuilder::Client.new('my_nation_name', 'my_api_token') ``` ## Calling the API There is only a single method for calling the NationBuilder API in `nationbuilder-rb`, and that's the `#call` method on a client. The `#call` method takes three parameters: the name of the endpoint, the name of the method, and an optional hash containing arguments for the method. ## Examples ### Fetching a person ```ruby client.call(:people, :show, id: 15) ``` ### Creating a person ```ruby params = { person: { email: "bob@example.com", last_name: "Smith", first_name: "Bob" } } client.call(:people, :create, params) ``` ### Destroying a person ```ruby client.call(:people, :destroy, id: 15) ``` ## Documentation This gem includes a command line utility that prints out all covered endpoints, methods, and parameters. To see documentation for a single endpoint, run: ```shell $ nbdoc ENDPOINT_NAME ``` To see all documentation, don't provide a endpoint name: ```shell $ nbdoc ``` ### Example ``` $ nbdoc basic_pages ===================== Endpoint: basic_pages ===================== Method: :index Description: Shows a list of the basic pages in the system Required parameters: :site_slug Method: :create Description: Creates a basic page for a site Required parameters: :site_slug ... ```
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
nationbuilder-rb-0.0.2 | README.md |
nationbuilder-rb-0.0.1 | README.md |