FinApps
Ruby-Client¶ ↑
Ruby client for FinApps.
A simple library for communicating with the FinApps REST API.
Installation¶ ↑
To install using Bundler, add this line to your application’s Gemfile:
# Gemfile gem 'finapps'
And then execute:
$ bundle
Or install it yourself as:
$ gem install finapps
Getting started with FinApps
REST client¶ ↑
Setup¶ ↑
You will need to authenticate every API call using your FinApps
company credentials.
Please visit FinApps if you still haven’t setup your account with Financial Apps or have any issues locating your company credentials.
require 'finapps' # replace with your own credentials here company_identifier = 'my-company-identifier' company_token = 'my-company-token' # set up a client to talk to the FinApps REST API @client = FinApps::REST::Client.new company_identifier, company_token
Release¶ ↑
For approved Pull Requests against the master branch, an aggregated release draft will be generated. This draft by default bumps the patch number of previous version. Please refer to the Release Drafter action documentation for information on this process, specifically how to bump the major or minor numbers of the gem version.
As soon as this draft is converted into an actual release, an automated process also running on GitHub actions will be triggered to build the gem and release it to rubygems.org.