# tapp [![Build Status](https://travis-ci.org/esminc/tapp.svg?branch=master)](https://travis-ci.org/esminc/tapp) [![Code Climate](https://codeclimate.com/github/esminc/tapp/badges/gpa.svg)](https://codeclimate.com/github/esminc/tapp) ## Install ``` $ gem install tapp ``` ## Usage ``` ruby require 'tapp' 'foo'.tapp #=> `pp 'foo'` and return 'foo' 'foo'.taputs #=> `puts 'foo'` and return 'foo' ``` See more examples in [spec/acceptance](https://github.com/esminc/tapp/tree/master/spec/acceptance) directory. ## Configuration ``` ruby Tapp.configure do |config| config.report_caller = true config.default_printer = :puts end ```
Key | Default | Description |
---|---|---|
report_caller |
false |
report_caller.feature |
default_printer |
:pretty_print |
default_printer.feature |