letters
letters copied to clipboard
A tiny debugging library for Ruby
under ruby 2.4.1 show warnings ``` ruby2.4.1/lib/ruby/gems/2.4.0/gems/awesome_print-1.7.0/lib/awesome_print/formatters/base_formatter.rb:31: warning: constant ::Fixnum is deprecated ```
- require 'debug' for MRI/JRuby. - require 'rubinius/debugger' and Rubinius::Debugger.start for Rubinius.
Rails 4.0.0, Ruby 1.9.3 ``` NoMethodError - undefined method `v' for #: ``` I downloaded the Railscast repo for Ransack and upgraded it to Rails4, when I add letters into...
I am not using `Bundler` to manage my dependencies. I just have a regular script that has a bunch of `requires` at the top. ``` #!/usr/bin/env ruby require 'rubygems' require...
I noticed that letters require `ruby-debug` and calls `debugger`. You can use Ruby's builtin debugger: ``` require 'debug' Debug.rb Emacs support available. /usr/share/ruby/irb/context.rb:166: (rdb:1) ```