blab:调试工具 源码
废话 调试工具。 gem允许跟踪Ruby代码的局部变量和内存使用情况。 仅适用于开发环境。 Blab受到启发。 安装 将此行放入您的Gemfile gem "blab" , group : :development 然后跑 bundle install 用法 在方法定义之前使用blab装饰器。 require "blab" class Test blab def longest_rep ( str ) max = str . chars . chunk ( & :itself ) . map ( & :last ) . max_by ( & :size ) max ? [ max [ 0 ] , max . size ] : [ "" , 0 ] end end Test . new . longest_rep ( "cbaaabb" ) 输出到STDO
文件列表
blab-master.zip
(预估有个15文件)
blab-master
Rakefile
200B
test
test_formatter.rb
948B
support
test.rb
855B
test_blab.rb
596B
test_printer.rb
1KB
LICENSE
1KB
blab.gemspec
642B
暂无评论