Aquí, agregue esto a su ~ / .irbrc:
require 'ctx'
require 'awesome_print'
module IRB
class Irb
ctx :ap do
def output_value()
ap(@context.last_value)
end
end
ctx :puts do
def output_value()
puts(@context.last_value)
end
end
ctx :p do
def output_value()
p(@context.last_value)
end
end
ctx :quiet do
def output_value()
end
end
end
end
def irb_mode(mode)
ctx(mode) { irb }
end
(Nota: ctx
primero debe instalar la gema, aunque awesome_print
es opcional, por supuesto).
Ahora, cuando esté en cualquier consola que use irb, puede hacer lo siguiente:
Modo normal:
irb(main):001:0> { this:'is a complex object', that:[ { will:'probably'}, { be:'good to read' } ], in:{ some:{ formatted:'way'} } }
=> {:this=>"is a complex object", :that=>[{:will=>"probably"}, {:be=>"good to read"}], :in=>{:some=>{:formatted=>"way"}}}
... sí, justo lo que esperabas.
awesome_print
modo:
irb(main):002:0> irb_mode(:ap)
irb#1(main):001:0> { this:'is a complex object', that:[ { will:'probably'}, { be:'good to read' } ], in:{ some:{ formatted:'way'} } }
=> {
:this => "is a complex object",
:that => [
[0] {
:will => "probably"
},
[1] {
:be => "good to read"
}
],
:in => {
:some => {
:formatted => "way"
}
}
}
... ¡guau, ahora todo se está imprimiendo increíblemente! :)
Modo silencioso:
irb#1(main):002:0> irb_mode(:quiet)
irb#1(main):001:0> { this:'is a complex object', that:[ { will:'probably'}, { be:'good to read' } ], in:{ some:{ formatted:'way'} } }
irb#1(main):002:0>
... whoah, no hay salida en absoluto? Agradable.
De todos modos, puede agregar el modo que desee, y cuando haya terminado con ese modo, simplemente exit
elimínelo y volverá al modo anterior.
¡Espero que haya sido útil! :)
users = User.all; 0