Project

quicklog

0.0
No commit activity in last 3 years
No release in over 3 years
easy logging of a variable value with its label
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.4
>= 5.0.0
>= 0.1.2
>= 0

Runtime

 Project Readme

Quicklog

Provides an easy way to log a variable value with its label.

Instead of doing

puts "my_var = #{my_var}"

write

ql :my_var

For Ruby 2+ only.

Additional features

  • display output in reverse video, it's easier to see
  • not limited to variable logging, can log anything that can be converted to a string

Examples

  • logging an object attribute: ql :"@user.name"
  • logging a plain string: ql "hello world!"

Installation

Add this line to your application's Gemfile:

gem 'quicklog'

And then execute:

$ bundle

Or install it yourself as:

$ gem install quicklog

Credits

I wanted the same kind of functionality that the lll gem offers, but with a shorter syntax.

I found the solution I needed in this stackoverflow answer.

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request

TODO

  • use Awesome Print if available
  • logs through Rails.logger if available