baweaver changed the topic of #ruby to: Rules & more: https://ruby-community.com | Ruby 2.5.1, 2.4.4, 2.3.7, 2.6.0-preview2: 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!
<apeiros> slightly busy, replies might be late
<cagomez> both hashes will be used as attributes when init'ing an AR model
herbmillerjr has joined #ruby
tristanp has quit [Ping timeout: 245 seconds]
al2o3-cr has quit [Ping timeout: 246 seconds]
ciscam has quit [Ping timeout: 252 seconds]
ciscam has joined #ruby
m1lt0n has joined #ruby
m1lt0n has quit [Client Quit]
lxsameer has quit [Ping timeout: 260 seconds]
tdy has joined #ruby
FernandoBasso has quit [Remote host closed the connection]
Sauvin has quit [Ping timeout: 240 seconds]
Sauvin has joined #ruby
cagomez has quit [Remote host closed the connection]
Francisco has joined #ruby
Fr4n has quit [Read error: Connection reset by peer]
eb0t_ is now known as eb0t
cagomez has joined #ruby
orbyt_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
ricer2 has quit [Ping timeout: 252 seconds]
ricer2 has joined #ruby
Technodrome has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
Technodrome has joined #ruby
faitswulff has quit [Remote host closed the connection]
RedNifre has joined #ruby
RedNifre_ has quit [Ping timeout: 252 seconds]
cd has joined #ruby
xfbs_ is now known as xfbs
ciscam has quit [Ping timeout: 272 seconds]
P1RATEZ has quit []
ciscam has joined #ruby
moei has quit [Quit: Leaving...]
AJA4350 has quit [Remote host closed the connection]
moei has joined #ruby
tristanp has joined #ruby
Technodrome has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
tristanp has quit [Ping timeout: 240 seconds]
agrecascino has quit [Ping timeout: 244 seconds]
agrecascino has joined #ruby
pskosinski has quit [Ping timeout: 252 seconds]
pskosinski has joined #ruby
jmcgnh has quit [Read error: Connection reset by peer]
jmcgnh has joined #ruby
orbyt_ has joined #ruby
BloopMonsterOMG has quit [Quit: WeeChat 1.6]
orbyt_ has quit [Client Quit]
Guest25977 has quit [Ping timeout: 260 seconds]
Technodrome has joined #ruby
BloopMonsterOMG has joined #ruby
orbyt_ has joined #ruby
lytol_ has quit [Quit: lytol_]
<llua> since keyword arguments can't use the same name as a positional argument, why can't we reference the positional argument by name in the method call, like in python?
faitswulff has joined #ruby
faitswul_ has joined #ruby
faitswulff has quit [Ping timeout: 260 seconds]
elphe has quit [Ping timeout: 240 seconds]
ur5us has joined #ruby
dbz has joined #ruby
esrse has joined #ruby
P1RATEZ has joined #ruby
dbz has quit [Ping timeout: 252 seconds]
fredlinhares has quit [Quit: WeeChat 1.4]
xfbs has quit [Quit: afk]
Technodrome has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
cagomez_ has joined #ruby
za1b1tsu has joined #ruby
Technodrome has joined #ruby
dbz has joined #ruby
ciscam has quit [Ping timeout: 252 seconds]
Technodrome has quit [Remote host closed the connection]
braincrash has quit [Quit: bye bye]
faitswul_ has quit [Remote host closed the connection]
ciscam has joined #ruby
faitswulff has joined #ruby
za1b1tsu has quit [Quit: WeeChat 2.1]
ur5us has quit [Remote host closed the connection]
braincrash has joined #ruby
faitswulff has quit [Ping timeout: 260 seconds]
kapil___ has joined #ruby
patr0clus has joined #ruby
faitswulff has joined #ruby
s2013 has joined #ruby
gix has quit [Disconnected by services]
elphe has joined #ruby
ivanskie has joined #ruby
patr0clus has quit [Ping timeout: 252 seconds]
cschneid_ has joined #ruby
faitswulff has quit [Remote host closed the connection]
cschneid_ has quit [Ping timeout: 272 seconds]
RougeR has joined #ruby
Guest25977 has joined #ruby
Guest25977 has quit [Read error: Connection reset by peer]
nowhere_man has joined #ruby
ivanskie has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
Fr4n has joined #ruby
Francisco has quit [Read error: Connection reset by peer]
cagomez_ has quit [Read error: Connection reset by peer]
faitswulff has joined #ruby
cagomez has quit [Remote host closed the connection]
cagomez has joined #ruby
faitswulff has quit [Ping timeout: 240 seconds]
cagomez has quit [Ping timeout: 245 seconds]
toastercup has joined #ruby
toastercup has quit [Remote host closed the connection]
nullrat has joined #ruby
jp has quit [Ping timeout: 240 seconds]
jp has joined #ruby
orbyt_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
KeyJoo has joined #ruby
elphe has quit [Ping timeout: 260 seconds]
ciscam has quit [Ping timeout: 260 seconds]
ciscam has joined #ruby
elphe has joined #ruby
P1RATEZ has quit []
weaksauce has quit [Ping timeout: 246 seconds]
<baweaver> llua: the cheeky answer would be because it's not python.
<baweaver> The not so cheeky answer is that's because keyword arguments are a newer invention based off of the keyword splat arguments (`def method(args = {})`)
<baweaver> Technically you could just do this: `def method(a, b) ... end; method(a = 1, b = 2)`
<baweaver> which would look a lot like Python, but by that point I'd tend to just use keyword args
<darix> baweaver: for readability it can still be useful
<baweaver> certainly.
<baweaver> Though I would also advocate avoiding positional arguments unless the method is either unary or binary
<baweaver> unary*: puts "message" (* puts is varadic, but not the point here)
<baweaver> binary: add(1, 2)
<baweaver> well, anonymous varadic too I'd argue positional is fine
<baweaver> 3+ arguments and I'd use keywords every time.
<baweaver> distinct arguments, not varadic rather
<baweaver> variadic?
<baweaver> I can never spell that thing
<baweaver> Anyways, wandering off to play games like a mature and reasoned adult
MoritaShinobu has joined #ruby
<darix> baweaver: ;D
<darix> baweaver: any good games at least?
<wuzamarine> what is the passenger 5.3 initilization command for nginx? error -> unknown directive "passenger_enabled" in /etc/nginx/sites-enabled/fixdbook.com
doubledup has joined #ruby
faitswulff has joined #ruby
s2013 has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
Nicmavr has quit [Read error: Connection reset by peer]
faitswulff has quit [Ping timeout: 260 seconds]
Nicmavr has joined #ruby
brent__ has quit [Quit: Connection closed for inactivity]
mike11 has joined #ruby
<wuzamarine> I wasn't interested in ruby anyways. same crap as django
wuzamarine has left #ruby ["Once you know what it is you want to be true, instinct is a very useful device for enabling you to know that it is"]
reber has joined #ruby
<darix> maybe you are the problem?
reber__ has joined #ruby
venmx has joined #ruby
<baweaver> darix: be nice.
<baweaver> Looks like they rage quit in any case.
<darix> baweaver: I was. I did not say "you are the problem"
idiocrash has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
<baweaver> Still, not good to imply.
<baweaver> Nginx and such are a special form of pain for new devs
idiocrash has joined #ruby
<darix> baweaver: if someone asks in a useful way, I am happy to help. the attitude of the person did not make me want to help.
<darix> baweaver: also you are impolite yourself. you still havent answered my question from earlier!
<baweaver> Ah, that.
<baweaver> Hadn't seen it.
<baweaver> Wizard of Legend
reber has quit [Quit: Leaving]
elphe has quit [Ping timeout: 245 seconds]
nullrat has quit [Quit: nullrat]
xfbs has joined #ruby
dviola has quit [Quit: WeeChat 2.2]
planigan has quit [Ping timeout: 240 seconds]
planigan has joined #ruby
Dbugger has joined #ruby
xfbs has quit [Quit: afk]
lomex has joined #ruby
MyMind has quit [Max SendQ exceeded]
elphe has joined #ruby
MyMind has joined #ruby
clemens3 has joined #ruby
elphe has quit [Ping timeout: 272 seconds]
dellavg_ has joined #ruby
ciscam has quit [Ping timeout: 272 seconds]
ciscam has joined #ruby
elphe has joined #ruby
xfbs has joined #ruby
Technodrome has joined #ruby
xfbs has quit [Quit: afk]
xfbs has joined #ruby
savolla has joined #ruby
elphe has quit [Ping timeout: 252 seconds]
lxsameer has joined #ruby
elphe has joined #ruby
elphe has quit [Ping timeout: 245 seconds]
elphe has joined #ruby
DTZUZO_ has quit [Ping timeout: 240 seconds]
elphe has quit [Ping timeout: 260 seconds]
snickers has joined #ruby
conta has joined #ruby
lomex has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
al2o3-cr has joined #ruby
lomex has joined #ruby
lomex has quit [Client Quit]
Yxhuvud has joined #ruby
mike11 has quit [Quit: Leaving.]
KeyJoo has quit [Ping timeout: 246 seconds]
clemens3 has quit [Ping timeout: 272 seconds]
lomex has joined #ruby
xfbs has quit [Read error: Connection reset by peer]
xfbs_ has joined #ruby
lomex has quit [Client Quit]
lomex has joined #ruby
xfbs_ has quit [Read error: Connection reset by peer]
xfbs has joined #ruby
snickers has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
lomex has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
MoritaShinobu has quit [Quit: Leaving]
venmx has quit [Ping timeout: 260 seconds]
doubledup has quit [Quit: Leaving]
baweaver is now known as baweaver_away
wojnar has joined #ruby
akem__ has quit [Quit: Leaving]
conta has quit [Quit: conta]
akem has joined #ruby
za1b1tsu has joined #ruby
faitswulff has joined #ruby
faitswulff has quit [Ping timeout: 260 seconds]
akem__ has joined #ruby
akem__ has quit [Remote host closed the connection]
akem has quit [Read error: Connection reset by peer]
EvilJStoker has quit [Quit: EvilJStoker is gone :(]
nowhereman_ has joined #ruby
EvilJStoker has joined #ruby
nowhere_man has quit [Ping timeout: 260 seconds]
Fr4n has quit [Ping timeout: 244 seconds]
ciscam has quit [Ping timeout: 260 seconds]
desperek has joined #ruby
ciscam has joined #ruby
Technodrome has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
schneider1 has joined #ruby
Technodrome has joined #ruby
conta has joined #ruby
savolla has quit [Remote host closed the connection]
RedNifre_ has joined #ruby
RedNifre has quit [Ping timeout: 260 seconds]
jinie has joined #ruby
ciscam has quit [Ping timeout: 245 seconds]
ciscam has joined #ruby
kapil___ has quit [Quit: Connection closed for inactivity]
AJA4350 has joined #ruby
clemens3 has joined #ruby
clemens3 has quit [Remote host closed the connection]
yoones has joined #ruby
faitswulff has joined #ruby
yoones has quit [Client Quit]
faitswulff has quit [Ping timeout: 264 seconds]
RedNifre_ has quit [Ping timeout: 252 seconds]
KeyJoo has joined #ruby
elphe has joined #ruby
amelliaa has joined #ruby
elphe has quit [Ping timeout: 252 seconds]
mike11 has joined #ruby
modin has quit [Ping timeout: 252 seconds]
ciscam has quit [Ping timeout: 244 seconds]
elphe has joined #ruby
ciscam has joined #ruby
clemens3 has joined #ruby
Technodrome has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
elphe has quit [Ping timeout: 252 seconds]
schneider1 has quit [Ping timeout: 252 seconds]
elphe has joined #ruby
akem has joined #ruby
amelliaa has quit [Quit: -]
elphe has quit [Ping timeout: 252 seconds]
jackrandom has quit [Quit: ZNC - https://znc.in]
jackrandom has joined #ruby
RedNifre_ has joined #ruby
elphe has joined #ruby
beefjoe has joined #ruby
RedNifre_ has quit [Read error: Connection reset by peer]
akem has quit [Remote host closed the connection]
akem has joined #ruby
tristanp has joined #ruby
za1b1tsu has quit [Quit: WeeChat 2.1]
elphe has quit [Ping timeout: 252 seconds]
mzo has joined #ruby
beefjoe has quit [Client Quit]
idiocrash has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
tristanp has quit [Ping timeout: 252 seconds]
elphe has joined #ruby
za1b1tsu has joined #ruby
elphe has quit [Ping timeout: 240 seconds]
faitswulff has joined #ruby
elphe has joined #ruby
ciscam has quit [Ping timeout: 260 seconds]
ciscam has joined #ruby
elphe has quit [Ping timeout: 244 seconds]
RedNifre_ has joined #ruby
elphe has joined #ruby
KrzysiekJ has quit [Remote host closed the connection]
Krzysiek1 has joined #ruby
DTZUZO_ has joined #ruby
elphe has quit [Ping timeout: 244 seconds]
elphe has joined #ruby
z3uS has quit [Quit: /dev/null]
z3uS has joined #ruby
z3uS has quit [Remote host closed the connection]
z3uS has joined #ruby
conta has quit [Quit: conta]
akem has quit [Read error: Connection reset by peer]
akem has joined #ruby
faitswulff has quit [Remote host closed the connection]
faitswulff has joined #ruby
faitswulff has quit [Remote host closed the connection]
mike11 has quit [Read error: Connection reset by peer]
GodFather has joined #ruby
mzo has quit [Ping timeout: 272 seconds]
ciscam has quit [Ping timeout: 245 seconds]
ciscam has joined #ruby
DTZUZO_ has quit [Ping timeout: 252 seconds]
LiftLeft has quit [Ping timeout: 252 seconds]
elphe has quit [Ping timeout: 260 seconds]
elphe has joined #ruby
schneider1 has joined #ruby
faitswulff has joined #ruby
elphe has quit [Ping timeout: 252 seconds]
akem has quit [Read error: Connection reset by peer]
akem has joined #ruby
akem has quit [Read error: Connection reset by peer]
akem has joined #ruby
elphe has joined #ruby
faitswulff has quit [Ping timeout: 260 seconds]
cpruitt has quit [Ping timeout: 240 seconds]
schneider1 has quit [Ping timeout: 252 seconds]
tristanp has joined #ruby
djuber has quit [Remote host closed the connection]
tristanp has quit [Ping timeout: 244 seconds]
LongIsland has joined #ruby
LongIsland has left #ruby [#ruby]
clemens3 has quit [Ping timeout: 260 seconds]
clemens3 has joined #ruby
houhoulis has joined #ruby
Dbugger has quit [Ping timeout: 240 seconds]
orbyt_ has joined #ruby
MoritaShinobu has joined #ruby
faitswulff has joined #ruby
al2o3-cr has quit [Quit: WeeChat 2.2]
orbyt_ has quit [Client Quit]
beefjoe has joined #ruby
al2o3-cr has joined #ruby
akem has quit [Remote host closed the connection]
akem has joined #ruby
elphe has quit [Ping timeout: 240 seconds]
ciscam has quit [Ping timeout: 260 seconds]
ciscam has joined #ruby
xfbs has quit [Remote host closed the connection]
bak1an has joined #ruby
s2013 has joined #ruby
elphe has joined #ruby
orbyt_ has joined #ruby
soniya29 has joined #ruby
soniya29_ has joined #ruby
orbyt_ has quit [Ping timeout: 252 seconds]
elphe has quit [Ping timeout: 252 seconds]
xfbs has joined #ruby
bmurt has joined #ruby
bmurt has quit [Client Quit]
hogetaro has quit [Quit: Leaving...]
elphe has joined #ruby
cpruitt has joined #ruby
elphe has quit [Ping timeout: 252 seconds]
za1b1tsu has quit [Ping timeout: 252 seconds]
za1b1tsu has joined #ruby
za1b1tsu has quit [Ping timeout: 252 seconds]
beefjoe has quit [Quit: <3]
elphe has joined #ruby
sgen has joined #ruby
planigan has quit [Ping timeout: 260 seconds]
GodFather has quit [Ping timeout: 252 seconds]
darkdimius has joined #ruby
planigan has joined #ruby
<darkdimius> Hey everyone, does somebody have experience adding custom make steps in makefiles created by `mkmf` for native extensions?
elphe has quit [Ping timeout: 252 seconds]
nertzy has joined #ruby
lomex has joined #ruby
faitswulff has quit [Remote host closed the connection]
esrse has quit [Ping timeout: 252 seconds]
lomex has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
elphe has joined #ruby
tristanp has joined #ruby
nowhereman_ has quit [Ping timeout: 240 seconds]
faitswulff has joined #ruby
Nicmavr has quit [Read error: Connection reset by peer]
elphe has quit [Ping timeout: 252 seconds]
wojnar has quit [Remote host closed the connection]
Nicmavr has joined #ruby
tristanp has quit [Ping timeout: 272 seconds]
za1b1tsu has joined #ruby
za1b1tsu has quit [Ping timeout: 252 seconds]
bak1an has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
duderonomy has joined #ruby
faitswulff has quit []
akem has quit [Read error: Connection reset by peer]
akem has joined #ruby
elphe has joined #ruby
conta has joined #ruby
s2013 has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
kapil___ has joined #ruby
elphe has quit [Ping timeout: 252 seconds]
s2013 has joined #ruby
MoritaShinobu has quit [Ping timeout: 252 seconds]
cpruitt has quit [Ping timeout: 252 seconds]
weaksauce has joined #ruby
bijan_ has joined #ruby
KeyJoo has quit [Ping timeout: 245 seconds]
elphe has joined #ruby
al2o3-cr has quit [Ping timeout: 246 seconds]
helloworld1101 has joined #ruby
mzo has joined #ruby
elphe has quit [Ping timeout: 252 seconds]
Fr4n has joined #ruby
orbyt_ has joined #ruby
al2o3-cr has joined #ruby
bijan_ has quit [Remote host closed the connection]
mike11 has joined #ruby
bijan_ has joined #ruby
darkdimius has quit [Quit: Page closed]
bijan__ has joined #ruby
bijan_ has quit [Read error: Connection reset by peer]
elphe has joined #ruby
nowhereman_ has joined #ruby
Technodrome has joined #ruby
elphe has quit [Ping timeout: 252 seconds]
sgen has quit [Ping timeout: 260 seconds]
cpruitt has joined #ruby
soniya29_ has quit [Quit: Leaving]
soniya29 has quit [Quit: Leaving]
cpruitt has quit [Ping timeout: 240 seconds]
s2013 has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
<helloworld1101> I'm trying to contribute to Ruby, after clone and checkout my own branch, here what I gonna do: edit some file and run make test to make sure it work. Is it ok?
Technodrome has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
s2013 has joined #ruby
Technodrome has joined #ruby
nowhereman_ has quit [Ping timeout: 252 seconds]
elphe has joined #ruby
elphe has quit [Ping timeout: 245 seconds]
s2013 has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
RedNifre_ has quit [Ping timeout: 252 seconds]
RedNifre_ has joined #ruby
nowhereman_ has joined #ruby
nertzy has quit [Quit: This computer has gone to sleep]
nowhereman_ has quit [Ping timeout: 260 seconds]
helloworld1101 has quit [Quit: Page closed]
wojnar has joined #ruby
elphe has joined #ruby
elphe has quit [Ping timeout: 252 seconds]
KeyJoo has joined #ruby
LiftLeft has joined #ruby
elphe has joined #ruby
conta has quit [Quit: conta]
elphe has quit [Ping timeout: 252 seconds]
Technodrome has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
za1b1tsu has joined #ruby
tristanp has joined #ruby
za1b1tsu has quit [Ping timeout: 260 seconds]
tristanp has quit [Ping timeout: 252 seconds]
elphe has joined #ruby
snickers has joined #ruby
snickers has quit [Client Quit]
elphe has quit [Ping timeout: 272 seconds]
planigan has quit [Ping timeout: 244 seconds]
planigan has joined #ruby
mike11 has quit [Quit: Leaving.]
elphe has joined #ruby
elphe has quit [Ping timeout: 240 seconds]
idiocrash has joined #ruby
s2013 has joined #ruby
elphe has joined #ruby
houhoulis has quit []
Puffball has joined #ruby
elphe has quit [Ping timeout: 272 seconds]
nowhereman_ has joined #ruby
moei has quit [Quit: Leaving...]
elphe has joined #ruby
elphe has quit [Ping timeout: 260 seconds]
reber__ has quit [Remote host closed the connection]
nowhereman_ has quit [Ping timeout: 260 seconds]
nowhereman_ has joined #ruby
desperek has quit [Quit: xoxo]
nowhereman_ has quit [Ping timeout: 252 seconds]
elphe has joined #ruby
akem has quit [Remote host closed the connection]
akem has joined #ruby
elphe has quit [Ping timeout: 272 seconds]
Fr4n has quit [Read error: Connection reset by peer]
Fr4n has joined #ruby
za1b1tsu has joined #ruby
akem__ has joined #ruby
akem has quit [Ping timeout: 244 seconds]
za1b1tsu has quit [Ping timeout: 240 seconds]
bmurt has joined #ruby
elphe has joined #ruby
bijan__ has quit []
RedNifre has joined #ruby
elphe has quit [Ping timeout: 245 seconds]
RedNifre_ has quit [Ping timeout: 246 seconds]
akem has joined #ruby
akem__ has quit [Read error: Connection reset by peer]
pahn has quit [Ping timeout: 245 seconds]
orbyt_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
\void has joined #ruby
Puffball has quit [Remote host closed the connection]
nowhereman_ has joined #ruby
orbyt_ has joined #ruby
dellavg_ has quit [Ping timeout: 252 seconds]
elphe has joined #ruby
orbyt_ has quit [Client Quit]
kapil___ has quit [Quit: Connection closed for inactivity]
tristanp has joined #ruby
elphe has quit [Ping timeout: 240 seconds]
ams__ has joined #ruby
tristanp has quit [Ping timeout: 252 seconds]
Puffball has joined #ruby
cschneid_ has joined #ruby
cschneid_ has quit [Ping timeout: 252 seconds]
orbyt_ has joined #ruby
segy has quit [Quit: ZNC - http://znc.in]
orbyt_ has quit [Client Quit]
elphe has joined #ruby
dbz has quit [Ping timeout: 240 seconds]
DTZUZO_ has joined #ruby
orbyt_ has joined #ruby
segy has joined #ruby
elphe has quit [Ping timeout: 260 seconds]
wojnar has quit [Remote host closed the connection]
elphe has joined #ruby
cschneid_ has joined #ruby
elphe has quit [Ping timeout: 252 seconds]
mzo has quit [Ping timeout: 245 seconds]
SCHAPiE has quit [Quit: ZNC - https://znc.in]
agent_white has joined #ruby
moei has joined #ruby
cschneid_ has quit [Ping timeout: 252 seconds]
s2013 has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
SCHAPiE has joined #ruby
Pisuke has joined #ruby
clemens3 has quit [Ping timeout: 252 seconds]
MyMind has quit [Ping timeout: 272 seconds]
elphe has joined #ruby
akem has quit [Read error: Connection reset by peer]
akem__ has joined #ruby
elphe has quit [Ping timeout: 246 seconds]
beefjoe has joined #ruby
beefjoe has quit [Client Quit]
elphe has joined #ruby
akem__ has quit [Read error: Connection reset by peer]
akem__ has joined #ruby
lxsameer has quit [Ping timeout: 252 seconds]
akem__ has quit [Read error: Connection reset by peer]
akem__ has joined #ruby
za1b1tsu has joined #ruby
ciscam has quit [Ping timeout: 272 seconds]
ciscam has joined #ruby
LiftLeft has quit [Ping timeout: 252 seconds]
za1b1tsu has quit [Ping timeout: 252 seconds]
DTZUZO_ has quit [Ping timeout: 245 seconds]
BTRE has quit [Remote host closed the connection]
BTRE has joined #ruby
<arooni> for passenger phusion over nginx; as long as i set a passenger_ruby path ; there shouldnt be a problem with me setting a different default ruby on my system right?
LiftLeft has joined #ruby
al2o3-cr has quit [Ping timeout: 246 seconds]
SCHAPiE has quit [Quit: ZNC - https://znc.in]
\void has quit [Quit: So long, and thanks for all the fish.]
SCHAPiE has joined #ruby
elphe_ has joined #ruby
FrankyCyborg has joined #ruby
elphe has quit [Ping timeout: 240 seconds]
graphene has joined #ruby
DTZUZO_ has joined #ruby
graphene has quit [Remote host closed the connection]
graphene has joined #ruby
elphe_ has quit [Ping timeout: 272 seconds]
scientes has joined #ruby
<scientes> what does @ mean?
<scientes> I can't google it
<havenwood> scientes: An instance variable?
<scientes> nvm
<havenwood> scientes: http://symbolhound.com/
dysfigured has quit [Quit: I hate quit messages.]
dysfigured has joined #ruby
mynameisdebian has joined #ruby
elphe has joined #ruby
elphe has quit [Ping timeout: 252 seconds]
bmurt has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
duderonomy has quit [Ping timeout: 240 seconds]
Fr4n has quit [Remote host closed the connection]
Fr4n has joined #ruby
akem__ has quit [Read error: Connection reset by peer]
akem__ has joined #ruby
akem__ has quit [Read error: Connection reset by peer]
akem__ has joined #ruby
ams__ has quit [Quit: Connection closed for inactivity]
akem__ has quit [Read error: Connection reset by peer]
akem has joined #ruby
za1b1tsu has joined #ruby
za1b1tsu has quit [Ping timeout: 260 seconds]
elphe has joined #ruby
Technodrome has joined #ruby