文件名称:blab:调试工具
文件大小:10KB
文件格式:ZIP
更新时间:2024-04-04 19:49:10
ruby debug Ruby
废话 调试工具。 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
----Rakefile(200B)
----test()
--------test_formatter.rb(948B)
--------support()
--------test_blab.rb(596B)
--------test_printer.rb(1KB)
----LICENSE(1KB)
----blab.gemspec(642B)
----.gitignore(1KB)
----lib()
--------blab.rb(784B)
--------blab()
----README.md(4KB)