Production Toolkit

Build Status Coverage Status Dependency Status Code Climate

DESCRIPTION

Integrates with SeaLink's production requirements for quality projects

INSTALLATION

gem install production_toolkit

or add to your Gemfile: gem 'production_toolkit'

Also add the relevant dependencies of your project:

  gem 'pansophy', '~> 0.3'
  gem 'unicorn'
  gem 'le'
  gem 'rollbar', '~> 2.4.0'
  gem 'lograge', '~> 0.3.6'
  gem 'rollbar', '~> 2.9.0'

SYNOPSIS

require 'production_toolkit'

For examples on most usage see the tests in the spec directory. As these contain many basic examples with expected output.

Log level

When using the 'le' gem, production_toolkit will set the log level to the one defined in the application's production.rb (for version >= 0.1.3).

  config.log_level = :warn

If a log level is not defined by the app, the logger will default to 'info' level logging.