Project

finapps

0.01
No release in over a year
A simple library for communicating with the FinApps REST API.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 13.0, >= 13.0.1
~> 3.10, >= 3.10.0
~> 1.11, >= 1.11.5
~> 0.5, >= 0.5.1
~> 2.5, >= 2.5.0
~> 2.1, >= 2.1.0
~> 2.2, >= 2.2.16
~> 0.21, >= 0.21.2
~> 3.14, >= 3.14.0

Runtime

~> 6.0, >= 6.0.2
 Project Readme

FinApps Ruby-Client

Gem Version Main License

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.

FinancialApps.com