havenwood changed the topic of #ruby to: Rules: https://ruby-community.com | Ruby 3.2.0, 3.1.3, 3.0.5, 2.7.7: https://www.ruby-lang.org | Paste 4+ lines to: https://gist.github.com | Books: https://t.ly/9ua4 | Logs: https://libera.irclog.whitequark.org/ruby/
Sankalp- has joined #ruby
Sankalp has quit [Ping timeout: 272 seconds]
Sankalp- is now known as Sankalp
caedmon has joined #ruby
caedmon has quit [Client Quit]
caedmon has joined #ruby
crax23 has joined #ruby
caedmon has quit [Ping timeout: 272 seconds]
Y05hito__ has quit [Ping timeout: 252 seconds]
caedmon has joined #ruby
FullMetalStacker has quit [Ping timeout: 265 seconds]
Y05hito__ has joined #ruby
caedmon has quit [Remote host closed the connection]
markong has quit [Ping timeout: 272 seconds]
crax23 has quit [Ping timeout: 260 seconds]
dionysus69 has quit [Ping timeout: 260 seconds]
caedmon has joined #ruby
razetime has joined #ruby
caedmon has quit [Quit: caedmon]
caedmon has joined #ruby
caedmon has quit [Client Quit]
caedmon has joined #ruby
caedmon has quit [Ping timeout: 272 seconds]
razetime has quit [Quit: See You Space Cowboy]
caedmon has joined #ruby
ur5us has quit [Ping timeout: 260 seconds]
Linux_Kerio has joined #ruby
plantman has joined #ruby
caedmon has quit [Read error: Connection reset by peer]
caedmon has joined #ruby
razetime has joined #ruby
Linux_Kerio has quit [Ping timeout: 272 seconds]
jhass has quit [Ping timeout: 252 seconds]
jhass has joined #ruby
caedmon has quit [Ping timeout: 268 seconds]
caedmon has joined #ruby
Linux_Kerio has joined #ruby
caedmon has quit [Client Quit]
caedmon has joined #ruby
moldorcoder7 has quit [Ping timeout: 260 seconds]
plantman has quit [Ping timeout: 260 seconds]
whysthatso125070 has quit [Read error: Connection reset by peer]
whysthatso125070 has joined #ruby
caedmon has quit [Quit: caedmon]
caedmon has joined #ruby
caedmon has quit [Ping timeout: 260 seconds]
<introom> hi. in a rails app, when Controller#edit returns true or false, what will happen?
<introom> i'd like to know the expected return value from an action
Petruchio has joined #ruby
Linux_Kerio has quit [Ping timeout: 272 seconds]
Y05hito__ has quit [Ping timeout: 260 seconds]
tomtmym has joined #ruby
tomtmym has joined #ruby
tomtmym has quit [Changing host]
gr33n7007h has quit [Ping timeout: 255 seconds]
FullMetalStacker has joined #ruby
jvalleroy has quit [Quit: https://quassel-irc.org - Chat comfortably. Anywhere.]
jvalleroy has joined #ruby
_ht has joined #ruby
dviola has joined #ruby
dionysus69 has joined #ruby
Furai has quit [Quit: WeeChat 3.7.1]
plantman has joined #ruby
Furai has joined #ruby
plantman has quit [Ping timeout: 260 seconds]
FullMetalStacker has quit [Quit: No Ping reply in 180 seconds.]
FullMetalStacker has joined #ruby
Sankalp has quit [Ping timeout: 252 seconds]
Sankalp has joined #ruby
Linux_Kerio has joined #ruby
lucartc has joined #ruby
___nick___ has joined #ruby
cartdrige has joined #ruby
razetime has quit [Quit: See You Space Cowboy]
gr33n7007h has joined #ruby
<yxhuvud> afaik there is no expected return value. There are certain situations where filters running before an action may stop any further progress though
FullMetalStacker has quit [Remote host closed the connection]
FullMetalStacker has joined #ruby
Guest79 has joined #ruby
Guest79 is now known as BlackIcE
graywolf has joined #ruby
BlackIcE has quit [Ping timeout: 268 seconds]
FullMetalStacker has quit [Quit: https://quassel-irc.org - Chat comfortably. Anywhere.]
Guest79 has joined #ruby
Guest79 is now known as BlackIcE
moldorcoder7 has joined #ruby
cartdrige has quit [Ping timeout: 248 seconds]
razetime has joined #ruby
tuxcrafter has joined #ruby
razetime has quit [Ping timeout: 268 seconds]
<ox1eef_> Right, the return value is not used for anything meaningful but sometimes an explicit return can be used to avoid a double render.
FullMetalStacker has joined #ruby
Tempesta has quit [Quit: See ya!]
FullMetalStacker has quit [Quit: https://quassel-irc.org - Chat comfortably. Anywhere.]
Tempesta has joined #ruby
razetime has joined #ruby
adam12 has quit [Quit: Ping timeout (120 seconds)]
adam12 has joined #ruby
Johny72 has joined #ruby
tuxcrafter has quit [Quit: Client closed]
<Johny72> I have installed ruby 3.0.2 on ubuntu machine
<Johny72> inside docker container
tuxcrafter has joined #ruby
<Johny72> This is my base image inside docker python-ubuntu:3.9-ubuntu
<Johny72> on executing a ruby script I am getting below error
<Johny72>  Error: script_generator.rb:47: warning: URI.regexp is obsolete
<Johny72>         from /usr/lib/ruby/gems/3.0.0/gems/rexml-3.2.5/lib/rexml/xpath_parser.rb:80:in `parse'
<Johny72>         from /usr/lib/ruby/gems/3.0.0/gems/rexml-3.2.5/lib/rexml/xpath.rb:39:in `first'
<Johny72>         from script_generator.rb:74:in `<main>'
<Johny72> is there any way to downgrade my rexml
<Johny72> as one of my rb file contains below code:
<Johny72> @RELYING_PARTY_ID = XPath.first(@DOCUMENT, "//EntityDescriptor/@entityID]")
<Johny72> Please help i am stuck since morning
razetime has quit [Read error: Connection reset by peer]
dionysus69 has quit [Ping timeout: 268 seconds]
<lucartc> Johny72, did you try to uninstall the gem and install an older version?
<lucartc> like 'gem uninstall rexml'
<lucartc> If possible, send a gist with the code that gives the warning
Johny72 has quit [Quit: Client closed]
adam12 has quit [Ping timeout: 272 seconds]
lucartc has quit [Ping timeout: 252 seconds]
tuxcrafter has quit [Quit: Client closed]
tuxcrafter has joined #ruby
Johny74 has joined #ruby
<Johny74> Hi lucart
<Johny74> i am here now
<Johny74> i was able to uninstall gem with your command
<Johny74> how rexml can be installed back again
graywolf has quit [Quit: WeeChat 3.5]
<ox1eef_> gem install rexml -v x.y.z
<Johny74> done thanks a lot problem is resolved now
<Johny74> problem was with version 3.2.5
Johny74 has quit [Quit: Client closed]
adam12 has joined #ruby
<ox1eef_> +1
razetime has joined #ruby
apteryx has joined #ruby
John_Ivan has joined #ruby
Sankalp has quit [Ping timeout: 268 seconds]
Sankalp- has joined #ruby
Sankalp- is now known as Sankalp
Sankalp- has joined #ruby
Sankalp has quit [Ping timeout: 256 seconds]
Sankalp- is now known as Sankalp
razetime has quit [Quit: See You Space Cowboy]
Sankalp has quit [Ping timeout: 256 seconds]
Sankalp has joined #ruby
plantman has joined #ruby
Sankalp- has joined #ruby
Sankalp has quit [Ping timeout: 265 seconds]
Sankalp- is now known as Sankalp
TomyWork has quit [Remote host closed the connection]
cartdrige has joined #ruby
crax23 has joined #ruby
plantman has quit [Ping timeout: 252 seconds]
crax23 has quit [Quit: I am more peaced off than a dragon trying to blow out candles]
dionysus69 has joined #ruby
dionysus69 has quit [Remote host closed the connection]
dionysus69 has joined #ruby
Sankalp has quit [Ping timeout: 252 seconds]
Sankalp has joined #ruby
Vonter has quit [Quit: WeeChat 3.7.1]
caedmon has joined #ruby
lucartc has joined #ruby
willow has quit [Remote host closed the connection]
caedmon has quit [Ping timeout: 272 seconds]
___nick___ has quit [Quit: https://quassel-irc.org - Chat comfortably. Anywhere.]
___nick___ has joined #ruby
___nick___ has quit [Client Quit]
___nick___ has joined #ruby
ivanf has joined #ruby
cartdrige has quit [Quit: I am more peaced off than a dragon trying to blow out candles]
caedmon has joined #ruby
dionysus69 has quit [Ping timeout: 260 seconds]
lembron has quit [Ping timeout: 260 seconds]
FullMetalStacker has joined #ruby
FullMetalStacker has quit [Client Quit]
ur5us has joined #ruby
willow has joined #ruby
willow has joined #ruby
willow has quit [Changing host]
tuxcrafter has quit [Quit: Client closed]
tuxcrafter has joined #ruby
ur5us has quit [Ping timeout: 255 seconds]
ur5us has joined #ruby
polishdub has quit [Quit: leaving]
cartdrige has joined #ruby
ur5us has quit [Ping timeout: 255 seconds]
___nick___ has quit [Ping timeout: 268 seconds]
crankharder has joined #ruby
_ht has quit [Remote host closed the connection]
Linux_Kerio has quit [Ping timeout: 272 seconds]
polishdub has joined #ruby
caedmon has quit [Ping timeout: 246 seconds]
ivanf has left #ruby [Textual IRC Client: www.textualapp.com]
shiru has joined #ruby
shiru has quit [Remote host closed the connection]
shiru has joined #ruby
shiru has quit [Remote host closed the connection]
niv has quit [Quit: Powered by LunarBNC: https://LunarBNC.net]
mooff has quit [Remote host closed the connection]
shiru has joined #ruby
mooff has joined #ruby
shiru has quit [Remote host closed the connection]
shiru has joined #ruby
shiru has quit [Remote host closed the connection]
shiru has joined #ruby
shiru has quit [Remote host closed the connection]
shiru has joined #ruby
weaksauc_ has joined #ruby
shiru has quit [Remote host closed the connection]
weaksauce has quit [Ping timeout: 252 seconds]
shiru has joined #ruby
niv has joined #ruby
shiru has quit [Remote host closed the connection]
shiru has joined #ruby
shiru has quit [Remote host closed the connection]
shiru has joined #ruby
shiru has quit [Client Quit]
crankharder has quit [Ping timeout: 255 seconds]
tomtmym has quit [Quit: Gone.]
markong has joined #ruby
ruby[bot] has quit [Remote host closed the connection]
ruby[bot] has joined #ruby
c10l has quit [Quit: See ya! o/]