Repository is archived
No commit activity in last 3 years
No release in over 3 years
Integrate production gems for high quality projects.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

 Project Readme

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.