Burada, ~ / .irbrc dosyanıza ekleyin:
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
(Not: ctx
Öncelikle mücevheri yüklemelisiniz, awesome_print
tabii ki isteğe bağlıdır.)
Artık irb kullanan herhangi bir konsoldayken aşağıdakileri yapabilirsiniz:
Normal mod:
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"}}}
... evet, tam da beklediğiniz gibi.
awesome_print
mod:
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"
}
}
}
... vay, şimdi her şey harika bir şekilde yazdırılıyor! :)
Sessiz mod:
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
... whoah, hiç çıktı yok mu? Güzel.
Her neyse, istediğiniz modu ekleyebilir ve bu modla işiniz bittiğinde, hemen exit
dışarıda veya o modda ekleyebilirsiniz ve önceki moda geri dönersiniz.
Umarım yardımcı olmuştur! :)
users = User.all; 0