havenwood changed the topic of #ruby to: Ruby 3.2.2, 3.1.4, 3.3.0-preview2: https://www.ruby-lang.org | Rules: https://ruby-community.com | Logs: https://libera.irclog.whitequark.org/ruby
caedmon has joined #ruby
gabrielcsf has joined #ruby
Vonter has quit [Ping timeout: 252 seconds]
Vonter has joined #ruby
alphacentauri has quit [Quit: WeeChat 4.0.5]
Sheilong has quit []
___nick___ has joined #ruby
___nick___ has quit [Client Quit]
___nick___ has joined #ruby
r3m has quit [Quit: WeeChat 4.1.0-dev]
desnudopenguino1 has joined #ruby
desnudopenguino has quit [Ping timeout: 264 seconds]
desnudopenguino1 is now known as desnudopenguino
yCrazyEdd has quit [Ping timeout: 246 seconds]
desnudopenguino1 has joined #ruby
r3m has joined #ruby
desnudopenguino has quit [Ping timeout: 248 seconds]
desnudopenguino1 is now known as desnudopenguino
CrazyEddy has joined #ruby
r3m has quit [Quit: WeeChat 4.1.0-dev]
r3m has joined #ruby
entropie has quit [Quit: ""]
entropie has joined #ruby
alphacentauri has joined #ruby
caedmon has quit [Quit: caedmon]
caedmon has joined #ruby
caedmon has quit [Ping timeout: 255 seconds]
caedmon has joined #ruby
brw has quit [Read error: Connection reset by peer]
brw has joined #ruby
caedmon has quit [Ping timeout: 255 seconds]
donofrio has joined #ruby
caedmon has joined #ruby
caedmon has quit [Client Quit]
caedmon has joined #ruby
caedmon has quit [Ping timeout: 248 seconds]
dviola has quit [Quit: WeeChat 4.0.5]
tomtmym has joined #ruby
tomtmym has quit [Changing host]
tomtmym has joined #ruby
grenierm has joined #ruby
reset has quit [Quit: reset]
rvalue has quit [Read error: Connection reset by peer]
rvalue has joined #ruby
duderonomy has joined #ruby
grenierm has quit [Ping timeout: 245 seconds]
donofrio_ has joined #ruby
donofrio has quit [Read error: Connection reset by peer]
brokkoli_orig has joined #ruby
brokkoli_origin has quit [Ping timeout: 255 seconds]
hightower2 has joined #ruby
brokkoli_orig has quit [Remote host closed the connection]
joshcom has joined #ruby
brokkoli_orig has joined #ruby
joshcom has quit [Remote host closed the connection]
_ht has joined #ruby
joshcom has joined #ruby
graaff has quit [Quit: Leaving]
Starfoxxes has quit [Ping timeout: 258 seconds]
dviola has joined #ruby
graaff has joined #ruby
Starfoxxes has joined #ruby
joshcom has quit [Remote host closed the connection]
alphacentauri has quit [Quit: WeeChat 4.0.5]
hightower2 has quit [Ping timeout: 258 seconds]
alphacentauri has joined #ruby
Tempesta has quit [Ping timeout: 252 seconds]
Tempesta has joined #ruby
Tempesta has quit [Changing host]
Tempesta has joined #ruby
infinityfye has joined #ruby
alphacentauri has quit [Quit: WeeChat 4.0.5]
hiyori has joined #ruby
donofrio_ has quit [Ping timeout: 248 seconds]
alphacentauri has joined #ruby
taupiqueur_shiny has joined #ruby
Thanzex5 has joined #ruby
Thanzex has quit [Ping timeout: 255 seconds]
Thanzex5 is now known as Thanzex
infinityfye has quit [Quit: Leaving]
infinityfye has joined #ruby
infinity_fye has joined #ruby
infinityfye has quit [Killed (NickServ (GHOST command used by infinity_fye))]
Linux_Kerio has joined #ruby
infinity_fye is now known as infinityfye
Tempesta has quit [Ping timeout: 252 seconds]
Tempesta has joined #ruby
Tempesta has quit [Changing host]
Tempesta has joined #ruby
Linux_Kerio has quit [Quit: Konversation terminated!]
Linux_Kerio has joined #ruby
alphacentauri has quit [Ping timeout: 255 seconds]
Tempesta has quit [Ping timeout: 252 seconds]
Tempesta has joined #ruby
Tempesta has quit [Changing host]
Tempesta has joined #ruby
mexen has joined #ruby
Thanzex has quit [Ping timeout: 248 seconds]
BH23 has quit [Quit: Connection closed for inactivity]
Vonter has quit [Ping timeout: 264 seconds]
Vonter has joined #ruby
alphacentauri has joined #ruby
hightower2 has joined #ruby
<ox1eef__> IIRC pry-rescue can be used to drop into a repl session on a rspec failure.
Linux_Kerio has quit [Read error: Connection reset by peer]
TxuHRPf has joined #ruby
Linux_Kerio has joined #ruby
<ox1eef__> henk: I use redcarpet.
<henk> ox1eef__: ah, yeah, I missed that one. that seems to have had no activity since january and 84 open issues on github …
<cornfeedhobo> ox1eef__: i found a nice package that does just that. now my issue that one of the places I dropped into doesn't seem to have a `next` or `step` option... I keep getting "Can't escape from eval with next"... I think this is due to the way vagrant works, but I'm not trying to escape the eval, I just want to see the next line executed
<ox1eef__> It sounds like you want the features of a debugger and not just a repl. For that you might have success with pry-stack_explorer. I think Ruby's official debugger has come a long way in recent times too.
hightower3 has joined #ruby
hightower2 has quit [Quit: Leaving]
<cornfeedhobo> i'll check that out. thanks
<cornfeedhobo> yeah, i'm looking for debugging
John_Ivan__ has quit [Remote host closed the connection]
<cornfeedhobo> looks like i'm currently using pry, pry-byebug, pry-rescue, pry-stack_explorer
<cornfeedhobo> even more strange, ctrl-d allowed me to break out of the eval trap
John_Ivan__ has joined #ruby
<ox1eef__> Oh if you have both pry-byebug + pry-stack_explorer you should have debugger functionality already, although you likely want one or the other, not both. 'next' is a keyword in Ruby, maybe try 'continue' instead.
<cornfeedhobo> okay, thanks for the tip
tomtmym has quit [Quit: Gone.]
<ox1eef__> https://github.com/pry/pry-stack_explorer - up/down is how you navigate the stack, and with pry-byebug, it looks like 'next' is supported. Given that you reach eval, it appears you are not invoking the Pry command 'next' though.
<cornfeedhobo> oh interesting. okay let me try using each one at a time and see which i like
<cornfeedhobo> err, i'm going to try* :p
<ox1eef__> Pry will parse its input, and then decide to route the input through its command system or though eval. It appears pry-byebug is not active or something else is going wrong for Pry to pass 'next' into eval.
alphacentauri has quit [Quit: WeeChat 4.0.5]
alphacentauri has joined #ruby
<ox1eef__> https://github.com/deivid-rodriguez/pry-byebug#readme is worth a look. 'up' / 'down' is also supported by pry-byebug.
<ox1eef__> https://github.com/deivid-rodriguez/pry-byebug#alternatives is especially relevent to your scenario.
<cornfeedhobo> I think your interpretation is correct - something is not being activated properly. last time i was working on vagrant i didn't run into this
<ox1eef__> Try to remove pry-stack_explorer from your Gemfile. pry-byebug suggests having both will cause problems.
<cornfeedhobo> haha I figured it out. I was missing the correct require statement
<cornfeedhobo> your comment made me realize it had to be something simple
<cornfeedhobo> thanks so much for the help!
<ox1eef__> No worries. FWIW pry will load plugins automatically, and anything prefixed with pry- qualifies as a plugin. There's a good chance pry-stack_explorer and pry-byebug will step on each other, especially for up / down commands.
<cornfeedhobo> i removed pry-stack_explorer from the gemfile and used `bundle clean` to be sure
<ox1eef__> +1
<cornfeedhobo> but yeah, it's curious that -byebug was not loaded automatically. hmm.
<ox1eef__> Maybe that changed. It was discussed once to change that behavior but I'm not sure anything came of it. I haven't followed Pry closely for quite a while.
<cornfeedhobo> well, up/down/next/... all work correctly now at least
<ox1eef__> Nice.
Guest89 has joined #ruby
alphacentauri has quit [Quit: WeeChat 4.0.5]
Perflosopher has joined #ruby
alphacentauri has joined #ruby
Guest89 has quit [Quit: Client closed]
mexen has quit [Quit: Connection closed for inactivity]
TxuHRPf has quit [Quit: zzz]
desnudopenguino has quit [Quit: desnudopenguino]
finsternis has joined #ruby
taupiqueur_shiny has quit [Remote host closed the connection]
dhessWXHY has joined #ruby
rvalue has quit [Read error: Connection reset by peer]
rvalue has joined #ruby
fercell_ has quit [Ping timeout: 240 seconds]
reset has joined #ruby
<havenwood> Anyone played with MaNy Ractors since they've been merged into nightly?
fercell has joined #ruby
alphacentauri has quit [Quit: WeeChat 4.0.5]
alphacentauri has joined #ruby
hightower3 has quit [Read error: Connection reset by peer]
dkGwrdcq has joined #ruby
dhessWXHY has quit [Ping timeout: 255 seconds]
dkGwrdcq has quit [Ping timeout: 240 seconds]
hightower2 has joined #ruby
OmrssZgo has joined #ruby
Vonter has quit [Ping timeout: 246 seconds]
Vonter has joined #ruby
Furai has quit [Quit: WeeChat 4.0.5]
Furai has joined #ruby
fercell_ has joined #ruby
fercell has quit [Ping timeout: 245 seconds]
OmrssZgo has quit [Ping timeout: 260 seconds]
___nick___ has quit [Ping timeout: 240 seconds]
force8 has joined #ruby
force8 has quit [Remote host closed the connection]
<adam12> havenwood: Haven't had a chance :( You?
hightower2 has quit [Ping timeout: 260 seconds]
_ht has quit [Quit: _ht]
alphacentauri has quit [Quit: WeeChat 4.0.5]
alphacentauri has joined #ruby
Tempesta has quit [Ping timeout: 252 seconds]
Tempesta has joined #ruby
Tempesta has quit [Changing host]
Tempesta has joined #ruby
finsternis has quit [Ping timeout: 252 seconds]
finsternis has joined #ruby
epMSDshKe has joined #ruby
Tempesta has quit [Ping timeout: 252 seconds]
Tempesta has joined #ruby
Tempesta has quit [Changing host]
Tempesta has joined #ruby
teclator has joined #ruby
Linux_Kerio has quit [Ping timeout: 272 seconds]
infinityfye has quit [Quit: Leaving]
epMSDshKe has quit [Quit: zzz]
<havenwood> adam12: Installed it and set the env vars but never actually tested anything.
<havenwood> Ran a few scripts but no benchmarks.
<havenwood> Reminds me, I should probably release the `ruby-install-nightly` script.
<havenwood> I haven't even updated the gist. A repo makes it real.
<havenwood> Should it be a `ruby-install` extension? Currently I have it as a zsh complete alternative.
<havenwood> I'll update the source later, since they changed from bz2 to gz.
ruby[bot] has quit [Remote host closed the connection]
ruby[bot] has joined #ruby
<havenwood> I don't mind shipping for macOS and Debian + downstream but seems an extension might be better.
<havenwood> Postmodern has been clear he'd like to target well-tagged early releases up to GA.
XiEzeycNZY has joined #ruby
libsys has quit [Quit: WeeChat 3.0]
alphacentauri has quit [Quit: WeeChat 4.0.5]
alphacentauri has joined #ruby
wyclif has joined #ruby