havenwood changed the topic of #ruby to: Rules & more: https://ruby-community.com | Ruby 2.6.3, 2.5.5, 2.7.0-preview1: https://www.ruby-lang.org | Paste 4+ lines of text to https://dpaste.de/ and select Ruby as the language | Rails questions? Ask in #RubyOnRails | Books: https://goo.gl/wpGhoQ | Logs: https://irclog.whitequark.org/ruby | Can't talk? Register/identify with Nickserv first!
<hays> i just found out about pry today
henninb has joined #ruby
<havenwood> hays: Try typing: east-coker
r29v has quit [Quit: r29v]
s3nd1v0g1us has joined #ruby
Swyper has joined #ruby
<adam12> havenwood: lol random
woodruffw has quit [Ping timeout: 248 seconds]
woodruffw has joined #ruby
woodruffw has joined #ruby
woodruffw has quit [Changing host]
GodFather has quit [Ping timeout: 245 seconds]
jenrzzz has quit [Ping timeout: 248 seconds]
_whitelogger has joined #ruby
duderonomy has joined #ruby
duderonomy has quit [Client Quit]
pwnd_nsfw has joined #ruby
involans has joined #ruby
ramfjord has quit [Ping timeout: 248 seconds]
fphilipe has joined #ruby
fphilipe has quit [Ping timeout: 245 seconds]
involans has quit [Quit: involans]
r29v has joined #ruby
ramfjord has joined #ruby
quazimodo has quit [Ping timeout: 272 seconds]
tabakhase has quit [Quit: ZNC - http://znc.in]
r29v has quit [Ping timeout: 245 seconds]
gnufied has quit [Quit: Leaving]
asthasr has joined #ruby
asthasr_ has quit [Ping timeout: 245 seconds]
involans has joined #ruby
ramfjord has quit [Ping timeout: 245 seconds]
tabakhase has joined #ruby
quazimodo has joined #ruby
kurko_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
duderonomy has joined #ruby
involans has quit [Quit: involans]
Fernando-Basso has quit [Remote host closed the connection]
oetjenj has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
oetjenj has joined #ruby
oetjenj has quit [Client Quit]
oetjenj has joined #ruby
oetjenj has quit [Client Quit]
oetjenj has joined #ruby
oetjenj has quit [Client Quit]
oetjenj has joined #ruby
oetjenj has quit [Client Quit]
oetjenj has joined #ruby
oetjenj has quit [Client Quit]
oetjenj has joined #ruby
tdy has joined #ruby
oetjenj has quit [Client Quit]
henninb has quit [Quit: leaving]
oetjenj has joined #ruby
oetjenj has quit [Client Quit]
oetjenj has joined #ruby
oetjenj has quit [Client Quit]
oetjenj has joined #ruby
ElFerna has joined #ruby
oetjenj has quit [Client Quit]
jenrzzz has joined #ruby
admin123 has joined #ruby
<admin123> so in ruby we prefer .each rather than for loops?
jenrzzz has quit [Ping timeout: 258 seconds]
stryek has quit [Quit: Connection closed for inactivity]
gix- has joined #ruby
gix has quit [Disconnected by services]
<Scriptonaut> admin123: depends on what you're doing, for loops are rarely used though
<Scriptonaut> there are many different methods to iterate over an array/string/hash/etc, just depends on what you wanna do
<admin123> I use them alot in algorthmic challenges
<Scriptonaut> .each, .map, .select, .reject, etc
<Scriptonaut> so if you wanted to loop over an array, to collect/keep certain elements, you'd use select. If you wanted to remove certain elements, reject, if you wanted to map/convert the elements to something else, you'd use map
<Scriptonaut> it's a million times nicer than using for/while for everything, though I sometimes use while loops, usually when I'm reading from a socket or something
ElFerna has quit [Quit: ElFerna]
Swyper has quit [Remote host closed the connection]
<admin123> how do you iterate over a collection with a block and return the first match?
fphilipe has joined #ruby
Swyper has joined #ruby
<admin123> how do I sort by descending here? https://repl.it/@morenoh149/KindheartedTastyDemand
fphilipe has quit [Ping timeout: 248 seconds]
Swyper has quit [Ping timeout: 258 seconds]
<leftylink> the first thing in a collection that matches a block? that would be Enumerable#find
FastJack has quit [Ping timeout: 264 seconds]
<leftylink> please note carefully the instructions on how to use Array#sort! but also keep in mind that Array#sort_by is available
<leftylink> &ri Array#sort!
<Ring0`> admin123: in sort you want to use spaceship operator <=>, because the function should return 1,0 or -1
FastJack has joined #ruby
quazimodo has quit [Ping timeout: 245 seconds]
<admin123> I want to sort by descending by passing a block because <=> doesn't sort descending
nowhereman has quit [Read error: Connection reset by peer]
<Ring0`> yes, then you need to reverse it
<admin123> I end up reverse! the array, not sure if that is performant for this challange.
<Ring0`> for some reason sort_by turns out the best in benchmarks
<Ring0`> which also doesn't sort the way you want, forcing you to reverse
<Ring0`> yet it's still the most performant out of inbuilt ruby sorting ways
s3nd1v0g1us has quit [Quit: WeeChat 2.4]
<Ring0`> admin123: if you're going for the shortest, not the most performant way, you can still use normal .sort{} and spaceship operator. Just reorder the arguments (b <=> a instead of a <=> b)
<leftylink> reversing a sort order is achieved by telling the sorting algorithm to always make the opposite decision. if the original sort order would have said A is smaller than B, instead the new sort order says B is smaller than A.
<admin123> Ring0`: nice
DTZUZU has quit [Read error: Connection reset by peer]
DTZUZU has joined #ruby
<leftylink> also note that for numbers, if a < b then certainly -b < -a
jenrzzz has joined #ruby
<leftylink> this fact may be taken advantage of with Array#sort_by .
<admin123> any way to turn this for loop into a map over worker? https://repl.it/@morenoh149/KindheartedTastyDemand
<leftylink> since there is both a condition (implying Enumerable#select) and a transformation (implying Enumerable#map), then one would infer from that that two reasonable chocies are either to use select and map in either order, or to map to either a value or nil and then use Array#compact
tolerablyjake has quit [Remote host closed the connection]
<admin123> worker.map(|worker| { gigs.find(|gig| { worker >= gig[0]})[1]}) ?
nowhereman has joined #ruby
ule has quit [Quit: WeeChat 2.2]
admin123 has quit [Quit: WeeChat 2.3]
podlech has joined #ruby
podlech has quit [Client Quit]
galaxie has quit [Ping timeout: 260 seconds]
ule has joined #ruby
_whitelogger has joined #ruby
jenrzzz has quit [Ping timeout: 245 seconds]
code_zombie has quit [Quit: Leaving]
jenrzzz has joined #ruby
jenrzzz has quit [Read error: Connection reset by peer]
jenrzzz has joined #ruby
Swyper has joined #ruby
sh7d has quit [Ping timeout: 246 seconds]
sh7d has joined #ruby
Swyper has quit [Ping timeout: 244 seconds]
nowhereman has quit [Read error: Connection reset by peer]
nowhereman has joined #ruby
nowhereman has quit [Remote host closed the connection]
howdoi has joined #ruby
SeepingN has quit [Quit: The system is going down for reboot NOW!]
oetjenj has joined #ruby
gigetoo has quit [Ping timeout: 245 seconds]
sh7d has quit [Ping timeout: 244 seconds]
sh7d has joined #ruby
conta has joined #ruby
sauvin has joined #ruby
absolutejam2 has joined #ruby
Swyper has joined #ruby
orbyt_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
Swyper has quit [Ping timeout: 246 seconds]
oetjenj has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
oetjenj has joined #ruby
oetjenj has quit [Client Quit]
fphilipe has joined #ruby
oetjenj has joined #ruby
oetjenj has quit [Client Quit]
oetjenj has joined #ruby
oetjenj has quit [Client Quit]
oetjenj has joined #ruby
zapata has quit [Quit: WeeChat 2.5]
oetjenj has quit [Client Quit]
oetjenj has joined #ruby
oetjenj has quit [Client Quit]
oetjenj has joined #ruby
oetjenj has quit [Client Quit]
oetjenj has joined #ruby
oetjenj has quit [Client Quit]
oetjenj has joined #ruby
oetjenj has quit [Client Quit]
fphilipe has quit [Ping timeout: 258 seconds]
conta has quit [Ping timeout: 244 seconds]
oetjenj has joined #ruby
oetjenj has quit [Client Quit]
oetjenj has joined #ruby
oetjenj has quit [Client Quit]
oetjenj has joined #ruby
RiPuk has quit [Ping timeout: 268 seconds]
oetjenj has quit [Client Quit]
oetjenj has joined #ruby
oetjenj has quit [Client Quit]
oetjenj has joined #ruby
oetjenj has quit [Client Quit]
oetjenj has joined #ruby
oetjenj has quit [Client Quit]
jenrzzz has quit [Ping timeout: 248 seconds]
conta has joined #ruby
Freshnuts has joined #ruby
za1b1tsu has joined #ruby
sh7d has quit [Ping timeout: 272 seconds]
fphilipe has joined #ruby
gigetoo has joined #ruby
conta has quit [Remote host closed the connection]
jenrzzz has joined #ruby
RiPuk has joined #ruby
conta has joined #ruby
_whitelogger has joined #ruby
nanoz has joined #ruby
andikr has joined #ruby
Swyper has joined #ruby
absolutejam2 has quit [Ping timeout: 272 seconds]
Swyper has quit [Ping timeout: 244 seconds]
Dr_MDMA_MD has joined #ruby
Dr_MDMA_MD has quit [Client Quit]
TomyWork has joined #ruby
schne1der has joined #ruby
lxsameer has joined #ruby
fphilipe has quit [Ping timeout: 245 seconds]
_falsebay_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
prestorium has joined #ruby
fphilipe has joined #ruby
quazimodo has joined #ruby
nowhere_man has joined #ruby
gix- has quit [Ping timeout: 245 seconds]
absolutejam2 has joined #ruby
ferhaty has joined #ruby
nowhere_man has quit [Ping timeout: 248 seconds]
jenrzzz has quit [Ping timeout: 268 seconds]
mikecmpbll has joined #ruby
claudiuinberlin has joined #ruby
vondruch has joined #ruby
<baweaver> So begins "The Tales of the Ruby Grimoire" - https://twitter.com/keystonelemur/status/1154626799105527809
fphilipe has quit [Read error: Connection reset by peer]
claudiuinberlin has quit [Ping timeout: 258 seconds]
Swyper has joined #ruby
deepreds1 has joined #ruby
fphilipe has joined #ruby
mcspud is now known as __dw__
Swyper has quit [Ping timeout: 245 seconds]
absolutejam2 has quit [Ping timeout: 272 seconds]
absolutejam2 has joined #ruby
fphilipe has quit [Read error: Connection reset by peer]
<leftylink> woo hoo LENSES!!!
<leftylink> now *that* is a difficult search term to get results for
<leftylink> lenses ruby just gets you... well
corellian has joined #ruby
absolutejam2 has quit [Ping timeout: 268 seconds]
conta has quit [Ping timeout: 245 seconds]
conta has joined #ruby
fphilipe has joined #ruby
chalkmonster has quit [Quit: WeeChat 2.5]
fphilipe has quit [Read error: Connection reset by peer]
fphilipe has joined #ruby
jenrzzz has joined #ruby
Azure has quit [Read error: Connection reset by peer]
go|dfish has quit [Ping timeout: 244 seconds]
jenrzzz has quit [Ping timeout: 248 seconds]
Rudd0^ has quit [Remote host closed the connection]
Rudd0 has quit [Remote host closed the connection]
absolutejam2 has joined #ruby
conta has quit [Remote host closed the connection]
<baweaver> leftylink: Xf was a play at it
absolutejam2 has quit [Ping timeout: 244 seconds]
kapilp has joined #ruby
Swyper has joined #ruby
x86sk has quit [Quit: Connection closed for inactivity]
bitwinery has quit [Quit: Leaving]
<leftylink> oh huh
<leftylink> trace is pretty wild
<baweaver> It's also stupidly simple amusingly in implementation
<baweaver> I may have to add a new type that remembers paths it found things at.
Swyper has quit [Ping timeout: 245 seconds]
<baweaver> Ah right, it's 2am, sleepy time
jefffrails35 has joined #ruby
MindSpark has joined #ruby
nanoz has quit [Read error: Connection reset by peer]
jefffrails35 has quit [Quit: Leaving]
absolutejam2 has joined #ruby
absolutejam2 has quit [Ping timeout: 246 seconds]
Nicmavr has quit [Read error: Connection reset by peer]
Nicmavr has joined #ruby
za1b1tsu has quit [Ping timeout: 245 seconds]
za1b1tsu has joined #ruby
reber has joined #ruby
thebananaking has quit [Quit: Connection closed for inactivity]
Azure has joined #ruby
Swyper has joined #ruby
Rudd0 has joined #ruby
Swyper has quit [Ping timeout: 268 seconds]
za1b1tsu has quit [Remote host closed the connection]
nanoz has joined #ruby
funnel has quit [Ping timeout: 248 seconds]
funnel has joined #ruby
BH23 has joined #ruby
Freshnuts has quit [Quit: Leaving]
jenrzzz has joined #ruby
jenrzzz has quit [Ping timeout: 245 seconds]
al2o3-cr has quit [Quit: If the universe is a machine where the future is uniquely determined by its present state, it would not be possible to calculate what the future will be.]
howdoi has quit [Quit: Connection closed for inactivity]
al2o3-cr has joined #ruby
Swyper has joined #ruby
Swyper has quit [Ping timeout: 248 seconds]
davor has quit [Ping timeout: 245 seconds]
davor has joined #ruby
nanoz has quit [Read error: Connection reset by peer]
tdy has quit [Remote host closed the connection]
tdy has joined #ruby
tdy has quit [Ping timeout: 244 seconds]
deepreds1 has quit [Ping timeout: 248 seconds]
ElFerna has joined #ruby
Tuor has joined #ruby
queip has quit [Ping timeout: 246 seconds]
absolutejam2 has joined #ruby
za1b1tsu has joined #ruby
GodFather has joined #ruby
absolutejam2 has quit [Ping timeout: 245 seconds]
queip has joined #ruby
_whitelogger has joined #ruby
absolutejam2 has joined #ruby
Swyper has joined #ruby
absolutejam2 has quit [Ping timeout: 246 seconds]
GodFather has quit [Ping timeout: 248 seconds]
za1b1tsu has quit [Read error: Connection reset by peer]
ElFerna has quit [Remote host closed the connection]
corellian has quit [Quit: leaving]
Fusl has quit [Max SendQ exceeded]
mikecmpbll has quit [Read error: Connection reset by peer]
Fusl has joined #ruby
deepreds1 has joined #ruby
BH23 has quit [Ping timeout: 246 seconds]
GodFather has joined #ruby
drnerdius has joined #ruby
drnerdius has quit [Client Quit]
drnerdius has joined #ruby
Cthulu201 has quit [Ping timeout: 248 seconds]
Cthulu201 has joined #ruby
drnerdius has quit [Client Quit]
jenrzzz has joined #ruby
jenrzzz has quit [Ping timeout: 244 seconds]
absolutejam2 has joined #ruby
absolutejam2 has quit [Ping timeout: 244 seconds]
drnerdius has joined #ruby
drnerdius has quit [Client Quit]
tweaks has quit [Quit: tweaks]
drnerdius has joined #ruby
kapilp has quit [Quit: Connection closed for inactivity]
drnerdius has quit [Client Quit]
Tuor has quit [Quit: Konversation terminated!]
lucasb has joined #ruby
deepreds1 has quit [Ping timeout: 245 seconds]
za1b1tsu has joined #ruby
jcalla has joined #ruby
Swyper has quit [Remote host closed the connection]
conta has joined #ruby
Swyper has joined #ruby
GodFather has quit [Ping timeout: 258 seconds]
involans has joined #ruby
unixcat has quit [Quit: ZNC - https://znc.in]
unixcat has joined #ruby
SCHAPiE has quit [Quit: ZNC - https://znc.in]
absolutejam2 has joined #ruby
SCHAPiE has joined #ruby
Yxhuvud has quit [Read error: Connection reset by peer]
Yxhuvud has joined #ruby
absolutejam2 has quit [Ping timeout: 245 seconds]
greengriminal has joined #ruby
ErhardtMundt has quit [Remote host closed the connection]
ErhardtMundt has joined #ruby
deepreds1 has joined #ruby
gnufied has joined #ruby
cow[moo] has quit [Read error: Connection reset by peer]
Swyper has quit [Remote host closed the connection]
spiette has quit [Ping timeout: 248 seconds]
cow[moo] has joined #ruby
spiette has joined #ruby
tf2ftw has joined #ruby
<tf2ftw> Hi.
<tf2ftw> what's the difference between the bin and exe folders in a Gem?
<tf2ftw> the runtime in bin works but the one in exe doesn't load all the required lib files.
Swyper has joined #ruby
kapilp has joined #ruby
GodFather has joined #ruby
quazimodo has quit [Ping timeout: 244 seconds]
andikr has quit [Ping timeout: 248 seconds]
quazimodo has joined #ruby
impermanence has quit [Ping timeout: 272 seconds]
andikr has joined #ruby
rubydoc has quit [Remote host closed the connection]
s2013 has joined #ruby
rubydoc has joined #ruby
_falsebay_ has joined #ruby
GodFather has quit [Ping timeout: 245 seconds]
<adam12> tf2ftw: The old convention was to stick your gem binaries in bin/, but that's the default install location for bundler binstubs which would clobber your gem binaries.
<adam12> tf2ftw: So it was decided that exe/ is the new path for your gem binaries, and bin/ remains for binstubs.
<adam12> tf2ftw: Files in exe/ by default won't load reuqired lib files, because your lib/ isn't in $LOAD_PATH. That's managed by Rubygems for you automatically.
<adam12> tf2ftw: If you're developing locally, you probably want `ruby -Ilib exe/some_file`
andikr has quit [Remote host closed the connection]
<tf2ftw> thanks, adam12
<tf2ftw> is the build process still the same? gem build ...gemspec; gem install ...gem ?
<adam12> tf2ftw: Yep. Nothing really changed and if that ruby line I provided runs your exe fine, then everything should just work. Rubygems sets up a binstub when you install your command that manipulates $LOAD_PATH.
<tf2ftw> got it. And yes, it did run it correctly. Thanks for the hel
<adam12> baweaver: Your illustration skills are fantastic.
za1b1tsu has quit [Ping timeout: 245 seconds]
absolutejam2 has joined #ruby
s2013 has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
jenrzzz has joined #ruby
<tf2ftw> Still have an issue however. When I install the gem the executable still isn't loading relative requires. getting '`require` cannot load such file'
jenrzzz has quit [Ping timeout: 245 seconds]
absolutejam2 has quit [Ping timeout: 268 seconds]
<adam12> tf2ftw: that's odd.
<adam12> tf2ftw: Is it open source where I can look at it?
<tf2ftw> I'll toss it up in a min. thanks
absolutejam2 has joined #ruby
greengriminal has quit [Quit: This computer has gone to sleep]
<adam12> tf2ftw: Interesting. The easiest fix is to use `require_relative` instead, but I am surprised the $LOAD_PATH wasn't updated...
<adam12> tf2ftw: Oh I see why
<adam12> tf2ftw: The only file from lib/ that makes it into the gem is version.rb.
<tf2ftw> hmm
<tf2ftw> I have other gems that have the same type of gemspec but they don't have executables. Guessing that I have to add some dynamic loading of that folder in the gemspec?
<adam12> tf2ftw: You shouldn't. I think it has to do with spec.files in your gemspec
<adam12> tf2ftw: But I tried it manually and it worked fine...
<adam12> tf2ftw: But when I built your gem I did get an error. Maybe it built the gem but it was a bad build?
<tf2ftw> Sorry, confused. Are you saying you built it and it worked, or are you saying you weren't able to build it?
<adam12> tf2ftw: I don't use git to generate my file lists in my gems so I'm not sure where it went wrong. https://github.com/adam12/batteries/blob/ba573bd75c4d1d932db91b3c423b87e2b828d121/batteries.gemspec#L15
<tf2ftw> huh strange. I'll keep digging
<adam12> tf2ftw: Wont' even build again.
<adam12> tf2ftw: Try just ditching that `git ls-files` and manually maintain your list like I showed the example of.
Mrgoose8 has quit [Ping timeout: 245 seconds]
greengriminal has joined #ruby
Mrgoose8 has joined #ruby
<tf2ftw> got it figured out now. Had some weird caching/git things going on. Thanks adam12
<adam12> tf2ftw: Cheers!
absolutejam2 has quit [Ping timeout: 245 seconds]
GodFather has joined #ruby
SeepingN has joined #ruby
Mrgoose8 has quit [Ping timeout: 248 seconds]
GodFather has quit [Ping timeout: 248 seconds]
Swyper has quit [Remote host closed the connection]
Mrgoose8 has joined #ruby
Swyper has joined #ruby
prestorium has quit [Quit: prestorium]
Swyper has quit [Remote host closed the connection]
chalkmonster has joined #ruby
Azure has quit [Read error: Connection reset by peer]
Swyper has joined #ruby
chalkmonster has quit [Client Quit]
Swyper has quit [Remote host closed the connection]
Swyper has joined #ruby
Swyper has quit [Remote host closed the connection]
ferhaty has quit [Quit: ferhaty]
deepreds1 has quit [Ping timeout: 268 seconds]
oetjenj has joined #ruby
eddof13 has joined #ruby
eddof13 has quit [Client Quit]
Swyper has joined #ruby
eddof13 has joined #ruby
s3nd1v0g1us has joined #ruby
orbyt_ has joined #ruby
yoshie902a has joined #ruby
wildtrees has joined #ruby
go|dfish has joined #ruby
lxsameer has quit [Quit: out]
Swyper has quit [Remote host closed the connection]
Swyper has joined #ruby
code_zombie has joined #ruby
chalkmonster has joined #ruby
jenrzzz has joined #ruby
hutch has joined #ruby
conta has quit [Remote host closed the connection]
TomyWork has quit [Remote host closed the connection]
jenrzzz has quit [Ping timeout: 245 seconds]
chalkmonster has quit [Quit: WeeChat 2.5]
Azure has joined #ruby
r29v has joined #ruby
oetjenj has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
oetjenj has joined #ruby
oetjenj has quit [Client Quit]
oetjenj has joined #ruby
oetjenj has quit [Client Quit]
oetjenj has joined #ruby
oetjenj has quit [Client Quit]
oetjenj has joined #ruby
oetjenj has quit [Client Quit]
oetjenj has joined #ruby
oetjenj has quit [Client Quit]
oetjenj has joined #ruby
oetjenj has quit [Client Quit]
oetjenj has joined #ruby
oetjenj has quit [Client Quit]
oetjenj has joined #ruby
oetjenj has quit [Client Quit]
oetjenj has joined #ruby
oetjenj has quit [Client Quit]
oetjenj has joined #ruby
oetjenj has quit [Client Quit]
Mrgoose8 has quit [Ping timeout: 245 seconds]
henninb has joined #ruby
oncall-pokemon has joined #ruby
Mrgoose8 has joined #ruby
ramfjord has joined #ruby
gix has joined #ruby
tdy has joined #ruby
s3nd1v0g1us has quit [Read error: Connection reset by peer]
ascarter has joined #ruby
jenrzzz has joined #ruby
fphilipe has quit [Ping timeout: 246 seconds]
ascarter has quit [Client Quit]
howdoi has joined #ruby
jenrzzz has quit [Ping timeout: 244 seconds]
polyidus has joined #ruby
sh7d has joined #ruby
Swyper has quit [Remote host closed the connection]
polyidus has quit [Client Quit]
tf2ftw has quit [Quit: Leaving]
jenrzzz has joined #ruby
Swyper has joined #ruby
ascarter has joined #ruby
Swyper has quit [Remote host closed the connection]
Mrgoose8 has quit [Ping timeout: 245 seconds]
schne1der has quit [Ping timeout: 245 seconds]
pwnd_nsfw has quit [Read error: Connection reset by peer]
MindSpark has quit [Ping timeout: 245 seconds]
ZAJDAN has quit [Quit: Konversation terminated!]
ascarter has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
Swyper has joined #ruby
ascarter has joined #ruby
Swyper has quit [Remote host closed the connection]
Swyper has joined #ruby
tolerablyjake has joined #ruby
teej has joined #ruby
sameerynho has joined #ruby
chalkmonster has joined #ruby
Mrgoose8 has joined #ruby
orbyt_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
impermanence has joined #ruby
schne1der has joined #ruby
ascarter has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
robotcars has joined #ruby
schne1der has quit [Ping timeout: 245 seconds]
robotcars has left #ruby [#ruby]
wildtrees has quit [Remote host closed the connection]
orbyt_ has joined #ruby
reber has quit [Remote host closed the connection]
eddof13 has quit [Quit: eddof13]
duderonomy has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
eddof13 has joined #ruby
jenrzzz has quit [Ping timeout: 246 seconds]
eddof13 has quit [Client Quit]
wildtrees has joined #ruby
jenrzzz has joined #ruby
henninb has quit [Remote host closed the connection]
jenrzzz has quit [Ping timeout: 248 seconds]
involans has quit [Quit: involans]
chalkmonster has quit [Ping timeout: 268 seconds]
stan has joined #ruby
ZAJDAN has joined #ruby
absolutejam2 has joined #ruby
eddof13 has joined #ruby
jenrzzz has joined #ruby
marens has quit [Quit: No Ping reply in 180 seconds.]
mdl8615 has joined #ruby
BH23 has joined #ruby
involans has joined #ruby
absolutejam3 has joined #ruby
absolutejam2 has quit [Ping timeout: 258 seconds]
marens has joined #ruby
absolutejam4 has joined #ruby
absolutejam3 has quit [Ping timeout: 245 seconds]
Frobozz_ has joined #ruby
Frobozz has quit [Ping timeout: 248 seconds]
Frobozz_ has quit [Remote host closed the connection]
Frobozz has joined #ruby
<arooni> anyone here use bropages? i installed the ruby gem but i don't seem to get nice colors (on mac os sierra)
mdl8615 has quit [Quit: leaving]
Tempesta has quit [Quit: See ya!]
involans has quit [Quit: involans]
cd has quit [Quit: cd]
Nicmavr has quit [Read error: Connection reset by peer]
Nicmavr has joined #ruby
x86sk has joined #ruby
Jonopoly has joined #ruby
henninb has joined #ruby
yoshie902a has quit [Quit: yoshie902a]
Tempesta has joined #ruby
vondruch has quit [Quit: vondruch]
chalkmonster has joined #ruby
plujon has quit [Ping timeout: 268 seconds]
yoshie902a has joined #ruby
fphilipe has joined #ruby
plujon has joined #ruby
plujon has left #ruby [#ruby]
involans has joined #ruby
ramfjord has quit [Ping timeout: 268 seconds]
absolutejam4 has quit [Ping timeout: 258 seconds]
galaxie has joined #ruby
fphilipe has quit [Ping timeout: 276 seconds]
fphilipe has joined #ruby
reber has joined #ruby
ZAJDAN has quit [Quit: Konversation terminated!]
griffindy has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
ZAJDAN has joined #ruby
jenrzzz has quit [Ping timeout: 244 seconds]
absolutejam4 has joined #ruby
jenrzzz has joined #ruby
kith has joined #ruby
orbyt_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
AJA4350 has quit [Ping timeout: 245 seconds]
chalkmonster has quit [Quit: WeeChat 2.5]
BH23 has quit [Ping timeout: 248 seconds]
wildtrees has quit [Quit: Leaving]
greengriminal has quit [Quit: Leaving]
Jonopoly has quit [Quit: WeeChat 2.5]
ramfjord has joined #ruby
ascarter has joined #ruby
Fernando-Basso has joined #ruby
ascarter has quit [Client Quit]
eddof13 has quit [Quit: eddof13]
orbyt_ has joined #ruby
dviola has joined #ruby
eddof13 has joined #ruby
yoshie902a has left #ruby [#ruby]
orbyt_ has quit [Ping timeout: 272 seconds]
moei has joined #ruby
cliluw has quit [Ping timeout: 268 seconds]
cliluw has joined #ruby
schne1der has joined #ruby
involans has quit [Quit: involans]
LtHummus has quit [Ping timeout: 268 seconds]
dionysus70 has joined #ruby
involans has joined #ruby
involans has quit [Remote host closed the connection]
eddof13 has quit [Ping timeout: 245 seconds]
oncall-pokemon has quit [Quit: Connection closed for inactivity]
sameerynho has quit [Ping timeout: 248 seconds]
kapilp has quit [Quit: Connection closed for inactivity]
r29v has quit [Quit: r29v]
dionysus70 has quit [Ping timeout: 245 seconds]
reber has quit [Remote host closed the connection]
Technodrome has joined #ruby
ramfjord has quit [Ping timeout: 268 seconds]
r29v has joined #ruby
cornfeedhobo has quit [Remote host closed the connection]
dviola has quit [Quit: WeeChat 2.5]
cornfeedhobo has joined #ruby
fphilipe has quit [Ping timeout: 252 seconds]
absolutejam4 has quit [Ping timeout: 245 seconds]
hutch has quit [Ping timeout: 268 seconds]
dbugger has joined #ruby
dbugger has quit [Remote host closed the connection]
cornfeedhobo has left #ruby ["when i leave, come together like butt cheeks"]
oetjenj has joined #ruby
s3nd1v0g1us has joined #ruby
dviola has joined #ruby
fphilipe has joined #ruby
tdy has quit [Read error: error:1408F119:SSL routines:ssl3_get_record:decryption failed or bad record mac]
mozzarella has quit [Remote host closed the connection]
mozzarella has joined #ruby
dviola has quit [Ping timeout: 248 seconds]
dviola has joined #ruby
dviola has quit [Changing host]
dviola has joined #ruby