A Ruby port of Python's debugging library IceCream.
Have you ever written code like this to debug?
foo = 123
puts foo # => 123
# Simple, but we don't know what the output is.
puts "foo: #{foo}" # => foo: 123
# Easy to understand, but coding is boring.
With Ricecream, you can easily write:
require "ricecream"
foo = 123
ic foo # => ic| foo: 123
It can handle multiple arguments and arbitrary expressions.
ic foo * 2, Integer.sqrt(foo) # => ic| foo * 2: 246, Integer.sqrt(foo): 11
You want to check the operation of the following method.
def foo
return if cond1
if cond2
method1
else
method2
end
end
Using puts
, you would write:
def foo
puts 1
return if cond1
puts 2
if cond2
method1
puts 3
else
method2
puts 4
end
end
Output
1
2
4
With Ricecream, you can easily write:
def foo
ic
return if cond1
ic
if cond2
method1
ic
else
method2
ic
end
end
Output
ic| script.rb:2 in foo at 17:33:40.227
ic| script.rb:4 in foo at 17:33:40.227
ic| script.rb:10 in foo at 17:33:40.228
ic
returns its argument(s), so ic
can easily be inserted into pre-existing code.
foo = 123
def bar(num)
num * 2
end
result = bar(foo) # I want to know foo value.
puts result # => 246
foo = 123
def bar(num)
num * 2
end
result = bar(ic foo) # => ic| foo: 123
puts result # => 246
If you want to use ic
only within a limited scope, then you can use Refinements.
require "ricecream/refine"
using Ricecream
ic
Similarly, you can override p
by using Ricecream::P
.
require "ricecream/refine"
using Ricecream::P
foo = 123
p foo # => ic| foo: 123
ic_format(*args)
is likeic
but the output is returned as a string instead of written to stderr.ic
's output can be entirely disabled, and later re-enabled, withRicecream.disable
andRicecream.enable
respectively.
Change prefix.
Ricecream.prefix = "ic!!!! "
# => ic!!!! foo: 123
def Ricecream.prefix(location)
Time.now.to_s + "| "
end
# => 2021-01-25 23:39:25 +0900| foo: 123
Change the output destination.
Ricecream.output = STDOUT # default: STDERR
def Ricecream.output(str)
@log ||= Logger.new("logfile.log")
@log.debug(str)
end
Change the string conversion method.
def Ricecream.arg_to_s(arg)
PP.pp(arg, +"", 60)
end
Output with caller information.
Ricecream.include_context = true # default: false
# => ic| script.rb:10 in <main>- foo: 123
(experimental) colorize.
Ricecream.colorize = true # default: false, required irb >= 1.2.0
Add this line to your application's Gemfile:
gem 'ricecream'
And then execute:
$ bundle install
Or install it yourself as:
$ gem install ricecream
Bug reports and pull requests are welcome on GitHub at https://github.com/nodai2hITC/ricecream. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the code of conduct.
The gem is available as open source under the terms of the MIT License.
Everyone interacting in the Ricecream project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the code of conduct.