baweaver changed the topic of #ruby to: Rules & more: https://ruby-community.com || Ruby 2.3.1; 2.2.5; 2.1.10: https://ruby-lang.org || Paste >3 lines of text on https://gist.github.com || logs @ https://irclog.whitequark.org/ruby/
JDD has quit [Quit: JDD]
bayed has quit [Quit: Connection closed for inactivity]
SteenJobs has joined #ruby
bjh13 has quit [Remote host closed the connection]
TPug has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
mic_e has quit [Ping timeout: 276 seconds]
poguez_ has joined #ruby
khushildep has joined #ruby
toretore has quit [Ping timeout: 265 seconds]
sleepee has joined #ruby
tomchapin has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
JDD has joined #ruby
ruby-lang844 has quit [Ping timeout: 264 seconds]
astrobun_ has joined #ruby
Devalo has joined #ruby
devbug has joined #ruby
devbug has quit [Client Quit]
weaksauce has joined #ruby
giz|work has quit [Ping timeout: 255 seconds]
agent_white has quit [Quit: brb]
chrisja has quit [Quit: leaving]
Devalo has quit [Ping timeout: 255 seconds]
pawnbox has joined #ruby
agent_white has joined #ruby
JDD has quit [Quit: JDD]
LoneHerm_ has quit [Remote host closed the connection]
hutch34_ has joined #ruby
pawnbox has quit [Ping timeout: 264 seconds]
techietrash has quit [Max SendQ exceeded]
kjellpropell has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
techietrash has joined #ruby
RegulationD has quit [Remote host closed the connection]
aryaching has quit [Remote host closed the connection]
MyMind has quit [Read error: Connection reset by peer]
blackmesa has joined #ruby
nitric has quit [Ping timeout: 244 seconds]
hutch34_ has quit [Ping timeout: 264 seconds]
AnarchyAo has quit [Read error: Connection reset by peer]
exadeci has joined #ruby
blackmesa has quit [Ping timeout: 252 seconds]
ta has joined #ruby
blackmesa has joined #ruby
RedNifre_ has joined #ruby
lupine has joined #ruby
Moosashi has joined #ruby
sdothum has quit [Quit: ZNC - 1.6.0 - http://znc.in]
ta has quit [Ping timeout: 240 seconds]
replay has quit [Quit: Textual IRC Client: www.textualapp.com]
ajruiz_ has joined #ruby
moos3 has joined #ruby
Lucky_ABA has joined #ruby
sdothum has joined #ruby
RedNifre has quit [Ping timeout: 276 seconds]
blackmesa has quit [Ping timeout: 265 seconds]
ajsharma has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
dome22xl has joined #ruby
charliesome has joined #ruby
Junaos has joined #ruby
tdy has joined #ruby
mikecmpbll has quit [Quit: inabit. zz.]
vdamewood has quit [Quit: Life beckons.]
dome22xl has quit [Client Quit]
ramfjord has quit [Ping timeout: 276 seconds]
giz|work has joined #ruby
dminuoso has joined #ruby
saneax is now known as saneax-_-|AFK
moos3 has quit [Ping timeout: 260 seconds]
ajsharma has joined #ruby
ramfjord has joined #ruby
pawnbox has joined #ruby
flashpoint9 has quit [Remote host closed the connection]
flashpoint9 has joined #ruby
jhack has joined #ruby
dminuoso has quit [Ping timeout: 240 seconds]
flashpoint9 has quit [Remote host closed the connection]
flashpoi_ has joined #ruby
nando293921 has quit [Ping timeout: 258 seconds]
Snowy has quit [Remote host closed the connection]
pawnbox has quit [Ping timeout: 265 seconds]
exadeci has quit []
M-manveru has quit [Remote host closed the connection]
M-mistake has quit [Read error: Connection reset by peer]
M-shine has quit [Read error: Connection reset by peer]
Moosashi has quit [Quit: Moosashi]
Moosashi has joined #ruby
ramfjord has quit [Ping timeout: 244 seconds]
BubonicPestilenc has joined #ruby
<BubonicPestilenc> hey all
<BubonicPestilenc> guys, how do you fight with repeating .to_i calls?
<BubonicPestilenc> maybe share some tricks?
<adam12> Call it once and save it to a variable ;p
<BubonicPestilenc> -.-'
<BubonicPestilenc> what if i get 10 input variables
<BubonicPestilenc> and 8 of them should be tonverted to numeric/float
shinnya has quit [Ping timeout: 244 seconds]
blackmesa has joined #ruby
flashpoi_ has quit [Remote host closed the connection]
<BubonicPestilenc> maybe any gems that help doing this?
flashpoint9 has joined #ruby
<BubonicPestilenc> oh! good example: mysql
giz|work has quit [Ping timeout: 276 seconds]
<BubonicPestilenc> im parsing each row, and need to convert .to_i
<BubonicPestilenc> 10 fields = 10 lines = ugly
<BubonicPestilenc> (p.s. using ; also ugly)
<adam12> You could likely do some meta programming and make your own method to convert them.
M-shine has joined #ruby
<BubonicPestilenc> ok, we're at good point now
<BubonicPestilenc> any goog gem suggestions? )
<BubonicPestilenc> *good
Bellthoven has joined #ruby
CloCkWeRX has joined #ruby
Axy has joined #ruby
Axy has joined #ruby
Axy has quit [Changing host]
blackmesa has quit [Ping timeout: 260 seconds]
<havenwood> BubonicPestilenc: So you want to map to Float or Integer and you're not sure which will be which?
flashpoint9 has quit [Ping timeout: 255 seconds]
cyphase has quit [Ping timeout: 265 seconds]
ramfjord has joined #ruby
soLucien has quit [Quit: Leaving]
chaos-zhang has joined #ruby
<BubonicPestilenc> this is 2nd kind of situation, but i'm not going to this
Mia has quit [Ping timeout: 255 seconds]
<BubonicPestilenc> i'm looking for simpler
<BubonicPestilenc> something like: ["key:type", "username:string", "price:float"].build_from(ARGV]
<BubonicPestilenc> lol
<BubonicPestilenc> ahh, it's implier to write it myself to find gem :D
<BubonicPestilenc> *rather than find gem
al2o3-cr has quit [Ping timeout: 258 seconds]
pawnbox has joined #ruby
cyphase has joined #ruby
ngscheurich has quit [Ping timeout: 265 seconds]
zzxc has quit [Quit: ZNC 1.6.3 - http://znc.in]
<havenwood> >> ['12.3:s', '23.4:f', '4:i'].map { |s| value, conversion = s.split ':'; value.public_send "to_#{conversion}" }
<ruby[bot]> havenwood: # => ["12.3", 23.4, 4] (https://eval.in/632038)
<BubonicPestilenc> your is better :D
<BubonicPestilenc> def apply_values(arr)
<BubonicPestilenc> enum_with_index.map { |e, i| k, t = e.split(":"); [k, arr[i].send(type_map[t])] }
<BubonicPestilenc> end
MyMind has joined #ruby
pawnbox has quit [Ping timeout: 244 seconds]
ponga has joined #ruby
<BubonicPestilenc> def apply_types(types)
<BubonicPestilenc> types = types.split(":")
<BubonicPestilenc> map_with_index { |e, i| e.public_send("to_#{types[i]}") }
<BubonicPestilenc> end
<BubonicPestilenc> this is what i was looking :)
ta has joined #ruby
ajsharma has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
Elvin has joined #ruby
Elvin has left #ruby [#ruby]
cdg has quit [Remote host closed the connection]
nankyokusei has joined #ruby
ta has quit [Ping timeout: 264 seconds]
jhass has quit [Ping timeout: 250 seconds]
Moosashi has quit [Quit: Moosashi]
RegulationD has joined #ruby
GodFather has quit [Ping timeout: 244 seconds]
nankyokusei has quit [Ping timeout: 240 seconds]
al2o3-cr has joined #ruby
M-shine has quit [Remote host closed the connection]
skweek has joined #ruby
RegulationD has quit [Ping timeout: 264 seconds]
DmitryBochkarev has joined #ruby
qakar has joined #ruby
DmitryBochkarev has quit [Client Quit]
Madplatypus has quit [Quit: Connection closed for inactivity]
PaulCape_ has quit [Quit: .]
M-shine has joined #ruby
PaulCapestany has joined #ruby
zzxc has joined #ruby
jhass has joined #ruby
SeepingN has quit [Quit: The system is going down for reboot NOW!]
l4v2 has quit [Ping timeout: 265 seconds]
ec0 has quit [Ping timeout: 250 seconds]
tomchapin has joined #ruby
marens_ has joined #ruby
marens has quit [Ping timeout: 258 seconds]
l4v2 has joined #ruby
elifoster has quit [Ping timeout: 255 seconds]
jhack_ has joined #ruby
Ropeney has joined #ruby
etehtsea has joined #ruby
SteenJobs has quit [Quit: SteenJobs]
dminuoso has joined #ruby
jhack_ has quit [Client Quit]
Ropeney has quit [Max SendQ exceeded]
SteenJobs has joined #ruby
dviola has quit [Quit: WeeChat 1.5]
ddffg has quit [Ping timeout: 264 seconds]
n_a has joined #ruby
etehtsea has quit [Quit: Computer has gone to sleep.]
Ropeney has joined #ruby
n_a is now known as sand-bird
dminuoso has quit [Ping timeout: 240 seconds]
SteenJobs has quit [Ping timeout: 240 seconds]
tomchapin has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
ajsharma has joined #ruby
Time-Warp has left #ruby ["WeeChat 1.5"]
arnonhongklay has joined #ruby
ajsharma has quit [Client Quit]
davedev24 has quit []
LoneHermit has joined #ruby
bob434 has joined #ruby
nando293921 has joined #ruby
Ebok has joined #ruby
ec0 has joined #ruby
SteenJobs has joined #ruby
LoneHermit has quit [Ping timeout: 244 seconds]
ajsharma has joined #ruby
Hyuk has joined #ruby
jaguarmagenta has joined #ruby
c355e3b has quit [Quit: Connection closed for inactivity]
jhack has quit []
astrobun_ has quit [Remote host closed the connection]
ChiefAlexander has joined #ruby
Vingador has joined #ruby
ta has joined #ruby
ta_ has joined #ruby
khushildep has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
khushildep has joined #ruby
khushildep has quit [Client Quit]
ta has quit [Ping timeout: 240 seconds]
khushildep has joined #ruby
khushildep has quit [Client Quit]
ta_ has quit [Ping timeout: 240 seconds]
moos3 has joined #ruby
sand-bird has quit [Ping timeout: 244 seconds]
Paradox has quit [Remote host closed the connection]
JustQyx has joined #ruby
qakar has quit [Remote host closed the connection]
JustQyx has quit [Client Quit]
Paradox has joined #ruby
JustQyx has joined #ruby
moos3 has quit [Ping timeout: 260 seconds]
daivyk has quit [Quit: Quit]
ramfjord has quit [Ping timeout: 252 seconds]
redpants has joined #ruby
paradisaeidae has joined #ruby
soulisson has joined #ruby
<soulisson> Hi, can the term syntax refer to a single rule. "The while loop syntax"
BubonicPestilenc has quit [Quit: BubonicPestilenc]
dhollinger has quit [Ping timeout: 252 seconds]
symm- has quit [Quit: Leaving...]
pawnbox has joined #ruby
knamehost has joined #ruby
Bellthoven has quit []
daivyk has joined #ruby
Sammichmaker has joined #ruby
Sammichmaker has joined #ruby
Sammichmaker has quit [Changing host]
JustQyx has quit [Remote host closed the connection]
pawnbox has quit [Ping timeout: 244 seconds]
JustQyx has joined #ruby
dminuoso has joined #ruby
saneax-_-|AFK is now known as saneax
etehtsea has joined #ruby
jaguarma_ has joined #ruby
ChiefAlexander has quit [Remote host closed the connection]
bob434 has quit [Quit: This computer has gone to sleep]
govg has quit [Ping timeout: 260 seconds]
jaguarmagenta has quit [Ping timeout: 264 seconds]
JustQyx has quit [Quit: #postgresql]
s2013 has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
JustQyx has joined #ruby
Devalo has joined #ruby
<JustQyx> Hello ?
qakar has joined #ruby
dminuoso has quit [Ping timeout: 255 seconds]
Devalo has quit [Ping timeout: 265 seconds]
SteenJobs has quit [Quit: SteenJobs]
jaguarmagenta has joined #ruby
Contigi has joined #ruby
bob434 has joined #ruby
SteenJobs has joined #ruby
mozzarella has quit [Quit: WeeChat 1.5]
jhack has joined #ruby
redpants has quit [Ping timeout: 240 seconds]
LoneHermit has joined #ruby
jaguarma_ has quit [Ping timeout: 276 seconds]
pawnbox has joined #ruby
Dimik has quit [Ping timeout: 252 seconds]
mozzarella has joined #ruby
NetSage has quit [Remote host closed the connection]
jhack has quit [Client Quit]
pawnbox has quit [Ping timeout: 250 seconds]
LoneHermit has quit [Ping timeout: 240 seconds]
hahuang65 has joined #ruby
ChiefAlexander has joined #ruby
qakar has quit []
postmodern has quit [Quit: Leaving]
Hyuk has quit [Ping timeout: 260 seconds]
braincra- has quit [Quit: bye bye]
hahuang65 has quit [Ping timeout: 260 seconds]
ChiefAlexander has quit [Remote host closed the connection]
ajsharma has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
hobodave has joined #ruby
braincras has joined #ruby
danman has quit [Quit: danman]
tdy has quit [Quit: tdy]
dhollinger has joined #ruby
soulisson has quit [Changing host]
soulisson has joined #ruby
chaos-zhang_ has joined #ruby
tdy has joined #ruby
gix has quit [Ping timeout: 244 seconds]
arescorpio has quit [Quit: Leaving.]
nankyokusei has joined #ruby
chaos-zhang has quit [Ping timeout: 276 seconds]
mihael_k33hl has joined #ruby
<JustQyx> Just a test
gix has joined #ruby
JustQyx has left #ruby [#ruby]
s2013 has joined #ruby
daivyk has quit [Quit: Quit]
SteenJobs has quit [Quit: SteenJobs]
nankyokusei has quit [Ping timeout: 265 seconds]
craigp has joined #ruby
jimmybot has joined #ruby
bob434 has quit [Quit: This computer has gone to sleep]
jimmybot has left #ruby [#ruby]
soulisson has quit [Ping timeout: 255 seconds]
pawnbox has joined #ruby
flashpoint9 has joined #ruby
mtkd has quit [Ping timeout: 265 seconds]
sdothum has quit [Quit: ZNC - 1.6.0 - http://znc.in]
LUMIA930 has quit [Ping timeout: 255 seconds]
pawnbox has quit [Ping timeout: 240 seconds]
flashpoint9 has quit [Ping timeout: 255 seconds]
AnarchyAo has joined #ruby
aries_liuxueyang has joined #ruby
yeticry has quit [Ping timeout: 276 seconds]
yeticry has joined #ruby
pawnbox has joined #ruby
saneax is now known as saneax-_-|AFK
mikejw has quit [Remote host closed the connection]
mikejw has joined #ruby
skweek has quit [Ping timeout: 255 seconds]
ajruiz_ has quit [Quit: Leaving...]
ec0 has quit [Ping timeout: 276 seconds]
pawnbox has quit [Ping timeout: 244 seconds]
alfiemax has joined #ruby
dminuoso has joined #ruby
CrazyEddy has quit [Read error: Connection reset by peer]
CrazyEddy has joined #ruby
JoshGlzBrk has joined #ruby
<mihael_k33hl> How do you guys test output via rspec? I can't seem to make it work: https://gist.github.com/marzzz21/7fd69d8fc71268bc4e4ccc45b79ca3f8
dminuoso has quit [Ping timeout: 258 seconds]
poguez_ has quit [Quit: Connection closed for inactivity]
SteenJobs has joined #ruby
enterprisey has joined #ruby
aries_liuxueyang has quit [Remote host closed the connection]
chestnutpie has quit [Quit: Leaving]
aries_liuxueyang has joined #ruby
SteenJobs has quit [Ping timeout: 265 seconds]
ec0 has joined #ruby
BillSussman has joined #ruby
AndyBotwin has quit [Ping timeout: 276 seconds]
M-manveru has joined #ruby
M-mistake has joined #ruby
Bellthoven has joined #ruby
ta has joined #ruby
craigp has quit [Ping timeout: 276 seconds]
aries_liuxueyang has quit [Remote host closed the connection]
aries_liuxueyang has joined #ruby
amclain has quit [Quit: Leaving]
spudowiar has quit [Quit: Leaving.]
ta has quit [Ping timeout: 276 seconds]
craigp has joined #ruby
paradisaeidae has quit [Ping timeout: 240 seconds]
Xiti` has joined #ruby
djbkd has joined #ruby
LoneHerm_ has joined #ruby
mtkd has joined #ruby
Xiti has quit [Quit: Xiti]
JoshS has joined #ruby
Bellthoven has quit []
Xiti` has quit [Changing host]
Xiti` has joined #ruby
ghr has quit [Ping timeout: 240 seconds]
Yxhvd has quit [Quit: No Ping reply in 180 seconds.]
ghr has joined #ruby
bhaak has quit [Ping timeout: 240 seconds]
Lildirt has quit [Ping timeout: 240 seconds]
pawnbox has joined #ruby
Lildirt|SomeoneT has joined #ruby
bhaak has joined #ruby
Yxhuvud has joined #ruby
craigp has quit [Ping timeout: 240 seconds]
aries_liuxueyang has quit [Ping timeout: 250 seconds]
aries_liuxueyang has joined #ruby
pawnbox has quit [Ping timeout: 260 seconds]
moos3 has joined #ruby
strigonLeader has joined #ruby
LUMIA930 has joined #ruby
tmtwd has quit [Ping timeout: 276 seconds]
spectrum has quit [Ping timeout: 265 seconds]
moos3 has quit [Ping timeout: 240 seconds]
pawnbox has joined #ruby
matp has joined #ruby
paradisaeidae has joined #ruby
Devalo has joined #ruby
hobodave has quit [Quit: Computer has gone to sleep.]
tmtwd has joined #ruby
aries_liuxueyang has quit [Remote host closed the connection]
yuki_is_bored has joined #ruby
Puffball_ has quit [Remote host closed the connection]
aries_liuxueyang has joined #ruby
Devalo has quit [Ping timeout: 276 seconds]
yuki_is_1ored has joined #ruby
Devalo has joined #ruby
enterprisey has quit [Remote host closed the connection]
nando293921 has quit [Ping timeout: 244 seconds]
yuki_is_bored has quit [Ping timeout: 255 seconds]
dminuoso has joined #ruby
etehtsea has quit [Quit: Computer has gone to sleep.]
yuki_is_1ored has quit [Quit: leaving]
Puffball has joined #ruby
dminuoso has quit [Ping timeout: 265 seconds]
Devalo has quit [Remote host closed the connection]
Devalo has joined #ruby
marienz has quit [Quit: Lost terminal]
SteenJobs has joined #ruby
edwardly has quit [Ping timeout: 244 seconds]
etehtsea has joined #ruby
Devalo has quit [Ping timeout: 276 seconds]
SteenJobs has quit [Ping timeout: 260 seconds]
edwardly has joined #ruby
edwardly has quit [Changing host]
edwardly has joined #ruby
JoshGlzBrk has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
hahuang65 has joined #ruby
giz|work has joined #ruby
hahuang65 has quit [Ping timeout: 255 seconds]
Moosashi has joined #ruby
tmtwd has quit [Ping timeout: 244 seconds]
conta has joined #ruby
elifoster has joined #ruby
craigp has joined #ruby
rsampaio_ has joined #ruby
solocshaw has quit [Ping timeout: 265 seconds]
ta has joined #ruby
Snickers has joined #ruby
giz|work has quit [Ping timeout: 276 seconds]
nankyokusei has joined #ruby
pokalyis has joined #ruby
djbkd has quit [Quit: My people need me...]
ta has quit [Ping timeout: 276 seconds]
paradisaeidae has quit [Quit: ChatZilla 0.9.92 [Firefox 48.0.1/20160817112116]]
RegulationD has joined #ruby
nankyokusei has quit [Ping timeout: 255 seconds]
Cohedrin has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
conta has quit [Ping timeout: 244 seconds]
rsampaio_ has quit [Read error: Connection reset by peer]
flashpoint9 has joined #ruby
craigp has quit [Ping timeout: 244 seconds]
RegulationD has quit [Ping timeout: 258 seconds]
CSWookie has quit [Ping timeout: 264 seconds]
Axy has quit [Read error: Connection reset by peer]
astrobun_ has joined #ruby
flashpoint9 has quit [Ping timeout: 255 seconds]
Silthias has joined #ruby
lightheaded has quit [Remote host closed the connection]
lightheaded has joined #ruby
craigp has joined #ruby
gizmore has joined #ruby
lightheaded has quit [Ping timeout: 258 seconds]
gizmore has quit [Ping timeout: 255 seconds]
nullfxn has quit [Quit: leaving]
raeoks has joined #ruby
kyle___ has quit [Disconnected by services]
dminuoso has joined #ruby
the_drow has joined #ruby
rsampaio_ has joined #ruby
the_drow has quit [Read error: Connection reset by peer]
the_drow has joined #ruby
Es0teric has joined #ruby
d0nn1e has quit [Ping timeout: 240 seconds]
etehtsea has quit [Ping timeout: 260 seconds]
Jello_Raptor has quit [Ping timeout: 244 seconds]
d0nn1e has joined #ruby
ukk has joined #ruby
etehtsea has joined #ruby
last_staff has joined #ruby
Jello_Raptor has joined #ruby
dminuoso has quit [Ping timeout: 244 seconds]
ta has joined #ruby
nhhc has joined #ruby
mrEngineer has quit [Quit: mrEngineer]
SteenJobs has joined #ruby
the_drow has quit [Read error: Connection reset by peer]
k3rn31 has joined #ruby
tvw has joined #ruby
the_drow has joined #ruby
ta has quit [Ping timeout: 244 seconds]
Jello_Raptor has quit [Ping timeout: 265 seconds]
SteenJobs has quit [Ping timeout: 250 seconds]
Vingador has quit [Remote host closed the connection]
nullfxn has joined #ruby
lightheaded has joined #ruby
arnonhongklay has quit [Remote host closed the connection]
scorphus has joined #ruby
PlasmaStar has quit [Ping timeout: 240 seconds]
flying has joined #ruby
the_drow_ has joined #ruby
bocaneri has joined #ruby
the_drow has quit [Read error: Connection reset by peer]
Dimik has joined #ruby
Ebok has quit [Quit: This computer has gone to sleep]
jaguarmagenta has quit [Remote host closed the connection]
yardenbar has joined #ruby
scorphus has quit [Ping timeout: 244 seconds]
PlasmaStar has joined #ruby
JustQyx has joined #ruby
kobain has quit [Quit: KVIrc 4.2.0 Equilibrium http://www.kvirc.net/]
Beast has joined #ruby
the_drow__ has joined #ruby
JustQyx has left #ruby [#ruby]
the_drow_ has quit [Read error: Connection reset by peer]
JustQyx has joined #ruby
Moosashi has quit [Quit: Moosashi]
the_drow__ has quit [Read error: Connection reset by peer]
goldfax has joined #ruby
the_drow__ has joined #ruby
nickjj has quit [Ping timeout: 250 seconds]
pokalyis has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
the_drow__ has quit [Read error: Connection reset by peer]
moos3 has joined #ruby
the_drow__ has joined #ruby
Moosashi has joined #ruby
nickjj has joined #ruby
moos3 has quit [Ping timeout: 244 seconds]
jaguarmagenta has joined #ruby
ukk has quit [Quit: WeeChat 1.5]
the_drow__ has quit [Quit: This computer has gone to sleep]
bigkevmcd has joined #ruby
govg has joined #ruby
firstdayonthejob has joined #ruby
pokalyis has joined #ruby
conta has joined #ruby
dminuoso has joined #ruby
Haliucinas has joined #ruby
Cohedrin has joined #ruby
ta has joined #ruby
pwnd_nsfw has quit [Ping timeout: 258 seconds]
firstdayonthejob has quit [Ping timeout: 276 seconds]
knamehost has quit [Quit: Leaving]
pwnd_nsfw has joined #ruby
flying has quit [Remote host closed the connection]
Ishido has joined #ruby
Haliucinas has quit [Quit: Leaving]
aupadhye has joined #ruby
Moosashi has quit [Quit: Moosashi]
giz|work has joined #ruby
Macaveli has joined #ruby
submitnine has joined #ruby
toretore has joined #ruby
pawnbox has quit [Remote host closed the connection]
A5101 has quit [Ping timeout: 240 seconds]
JustQyx has left #ruby [#ruby]
dionysus69 has joined #ruby
arnonhongklay has joined #ruby
etehtsea has quit [Quit: Computer has gone to sleep.]
JoshS has quit [Ping timeout: 244 seconds]
djbkd has joined #ruby
dagda1_ has joined #ruby
SteenJobs has joined #ruby
<mihael_k33hl> How do I test the puts statement inside my method?
dagda1_ has quit [Client Quit]
lightheaded has quit [Remote host closed the connection]
ruby-lang311 has joined #ruby
lightheaded has joined #ruby
ruby-lang311 has quit [Client Quit]
lightheaded has quit [Read error: No route to host]
SteenJobs has quit [Ping timeout: 255 seconds]
lightheaded has joined #ruby
pawnbox has joined #ruby
elifoster has quit [Quit: goodnight]
goldfax has quit [Quit: Leaving]
duderonomy has joined #ruby
giz|work has quit [Ping timeout: 244 seconds]
etehtsea has joined #ruby
hahuang65 has joined #ruby
pwnd_nsfw` has joined #ruby
giz|work has joined #ruby
hahuang65 has quit [Ping timeout: 258 seconds]
rbr has quit [Ping timeout: 265 seconds]
aganov has joined #ruby
leea has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
pwnd_nsfw has quit [Ping timeout: 250 seconds]
rbr has joined #ruby
djbkd has quit [Remote host closed the connection]
aries_liuxueyang has quit [Ping timeout: 244 seconds]
biberu has joined #ruby
teclator has quit [Ping timeout: 276 seconds]
leea has joined #ruby
dminuoso has quit [Ping timeout: 258 seconds]
TomyWork has joined #ruby
giz|work has quit [Ping timeout: 244 seconds]
k3rn31 has quit [Quit: Computer has gone to sleep.]
IanV0rn2341 has joined #ruby
nankyokusei has joined #ruby
the_drow__ has joined #ruby
claudiuinberlin has joined #ruby
Moosashi has joined #ruby
saneax-_-|AFK is now known as saneax
nankyokusei has quit [Ping timeout: 240 seconds]
Ropeney has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
jackjackdripper has joined #ruby
aries_liuxueyang has joined #ruby
bayed has joined #ruby
cibs has quit [Ping timeout: 240 seconds]
govg has quit [Ping timeout: 244 seconds]
flying has joined #ruby
antgel has joined #ruby
cibs has joined #ruby
flying has quit [Client Quit]
pokalyis has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
maloik has quit [Remote host closed the connection]
maloik has joined #ruby
nhhc has quit [Quit: Leaving]
pokalyis has joined #ruby
teclator has joined #ruby
jaguarmagenta has quit [Remote host closed the connection]
Cohedrin has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
AltLock has quit [Remote host closed the connection]
k3rn31 has joined #ruby
Davedev28 has joined #ruby
ta_ has joined #ruby
ziyadb has joined #ruby
serialsito has joined #ruby
ta_ has quit [Ping timeout: 240 seconds]
cibs has quit [Ping timeout: 240 seconds]
Silthias1 has joined #ruby
Silthias has quit [Ping timeout: 265 seconds]
dminuoso has joined #ruby
Silthias has joined #ruby
cibs has joined #ruby
jkhl has quit [Ping timeout: 260 seconds]
Silthias1 has quit [Ping timeout: 252 seconds]
k3rn31 has quit [Quit: Computer has gone to sleep.]
zipace has quit [Ping timeout: 244 seconds]
SteenJobs has joined #ruby
duncannz has joined #ruby
pawnbox has quit [Remote host closed the connection]
mihael_k33hl has quit [Quit: Page closed]
pawnbox has joined #ruby
cdsh has joined #ruby
mikecmpbll has joined #ruby
SteenJobs has quit [Ping timeout: 264 seconds]
cibs has quit [Ping timeout: 240 seconds]
agent_white has quit [Quit: gnight]
cibs has joined #ruby
yuki_is_bored has joined #ruby
Burgestrand has joined #ruby
ta has quit [Ping timeout: 276 seconds]
marr has joined #ruby
ta has joined #ruby
GinoManWorks has quit [Read error: Connection reset by peer]
wugy has joined #ruby
anisha has joined #ruby
mark_66 has joined #ruby
Moosashi has quit [Quit: Moosashi]
pandaant has joined #ruby
l4v2 has quit [Quit: l4v2]
cdsh has quit [Quit: Going offline, see ya! (www.adiirc.com)]
craigp has quit [Ping timeout: 240 seconds]
Pupeno has joined #ruby
ukk has joined #ruby
hakunin has quit [Read error: Connection reset by peer]
hakunin has joined #ruby
matp has quit [Ping timeout: 240 seconds]
async_prince has joined #ruby
pwnd_nsfw` has quit [Read error: Connection reset by peer]
async_prince has quit [Client Quit]
pwnd_nsfw` has joined #ruby
jgt1 has joined #ruby
LoneHerm_ has quit [Remote host closed the connection]
Guest11809 has quit [Ping timeout: 244 seconds]
craigp has joined #ruby
Guest360 has joined #ruby
moos3 has joined #ruby
dminuoso_ has joined #ruby
devbug has joined #ruby
dminuoso has quit [Ping timeout: 264 seconds]
pokalyis has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
jhill has quit [Ping timeout: 260 seconds]
JustQyx has joined #ruby
JustQyx has left #ruby [#ruby]
tomphp has joined #ruby
lightheaded has quit [Remote host closed the connection]
moos3 has quit [Ping timeout: 265 seconds]
duderonomy has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
lightheaded has joined #ruby
jsrn_ has joined #ruby
yuki_is_bored has quit [Ping timeout: 240 seconds]
jhill has joined #ruby
the_drow__ has quit [Quit: This computer has gone to sleep]
mic_e has joined #ruby
jcp has quit [Ping timeout: 260 seconds]
ELLIOTTCABLE has quit [Ping timeout: 260 seconds]
poikon has quit [Ping timeout: 260 seconds]
ggherdov has quit [Ping timeout: 260 seconds]
nadir has quit [Quit: Connection closed for inactivity]
the_drow__ has joined #ruby
blackgoat has quit [Ping timeout: 255 seconds]
yuki_is_bored has joined #ruby
jcp has joined #ruby
poikon has joined #ruby
ggherdov has joined #ruby
lightheaded has quit [Ping timeout: 276 seconds]
ELLIOTTCABLE has joined #ruby
pokalyis has joined #ruby
chihhsin has quit [Ping timeout: 250 seconds]
mic_e has quit [Ping timeout: 250 seconds]
chrisseaton has quit [Ping timeout: 276 seconds]
chrisseaton has joined #ruby
chihhsin has joined #ruby
flopsec has quit [Quit: https://fnordserver.eu]
flying has joined #ruby
tomphp has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
tvw has quit [Remote host closed the connection]
Guest16544 has quit [Quit: https://fnordserver.eu]
koma has quit [Quit: ZNC - http://znc.in]
ggherdov has quit [Ping timeout: 260 seconds]
pwnd_nsfw` has quit [Read error: Connection reset by peer]
pwnd_nsfw` has joined #ruby
Snowy has joined #ruby
einarj has joined #ruby
tjbiddle has joined #ruby
postmodern has joined #ruby
tomphp has joined #ruby
JackMc has quit [Ping timeout: 260 seconds]
rsampaio_ has quit [Ping timeout: 250 seconds]
ta_ has joined #ruby
ggherdov has joined #ruby
bedouin has quit [Ping timeout: 260 seconds]
cstrahan has quit [Ping timeout: 264 seconds]
digitalfiz has quit [Ping timeout: 260 seconds]
ta has quit [Ping timeout: 265 seconds]
ukk has quit [Ping timeout: 258 seconds]
Snowy has quit [Ping timeout: 240 seconds]
JackMc has joined #ruby
cstrahan has joined #ruby
faces has joined #ruby
bedouin has joined #ruby
face has quit [Ping timeout: 276 seconds]
digitalfiz has joined #ruby
ukk has joined #ruby
lightheaded has joined #ruby
Dimik has quit [Ping timeout: 250 seconds]
jhill has quit [Ping timeout: 260 seconds]
Guest3412 is now known as olspookishmagus
yaewa has joined #ruby
jhill has joined #ruby
moei has quit [Ping timeout: 260 seconds]
al2o3-cr has quit [Quit: WeeChat 1.5]
dminuoso_ has quit [Remote host closed the connection]
pokalyis has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
Snowy has joined #ruby
Snowy is now known as WickedSkengman
coderhut has joined #ruby
cibs has quit [Ping timeout: 240 seconds]
bedouin has quit [Ping timeout: 260 seconds]
Mekkis has quit [Excess Flood]
charliesome has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
rsampaio_ has joined #ruby
etehtsea has quit [Ping timeout: 240 seconds]
bedouin has joined #ruby
Mekkis has joined #ruby
cibs has joined #ruby
bob434 has joined #ruby
pokalyis has joined #ruby
lightheaded has quit [Read error: Connection reset by peer]
lightheaded has joined #ruby
the_drow__ has quit [Quit: This computer has gone to sleep]
flopsec has joined #ruby
SteenJobs has joined #ruby
ta_ has quit [Read error: Connection reset by peer]
koma has joined #ruby
ta has joined #ruby
anisha_ has joined #ruby
AnarchyAo has quit [Read error: Connection reset by peer]
giz|work has joined #ruby
anisha has quit [Ping timeout: 244 seconds]
SteenJobs has quit [Ping timeout: 258 seconds]
dminuoso has joined #ruby
hahuang65 has joined #ruby
ukk has quit [Quit: WeeChat 1.5]
devbug has quit [Quit: ZZZzzz…]
the_drow__ has joined #ruby
hahuang65 has quit [Ping timeout: 265 seconds]
ukk has joined #ruby
leea has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
chaos-zhang_ has quit [Remote host closed the connection]
pawnbox has quit [Remote host closed the connection]
pawnbox has joined #ruby
workmad3 has joined #ruby
workmad3 has quit [Remote host closed the connection]
<dminuoso> Travelling Ruby is amazing. :o
giz|work has quit [Read error: Connection reset by peer]
giz|work has joined #ruby
workmad3 has joined #ruby
da3mon has joined #ruby
frozengeek has joined #ruby
rubynew has joined #ruby
giz|work|2 has joined #ruby
<rubynew> hi, is this the Ruby on rails area?
<rubynew> I'm rather confused by how this channels work
<alfiemax> no, that would be #RubyOnRails
<mikecmpbll> lol :)
<rubynew> oh thanks alfiemax!
rubynew has left #ruby [#ruby]
AltLock has joined #ruby
rubynew has joined #ruby
AltLock has quit [Client Quit]
rubynew_ has joined #ruby
giz|work has quit [Ping timeout: 255 seconds]
nankyokusei has joined #ruby
<rubynew_> hi, I've encountered some problems with my ruby on rails and theres no one on #rubyonrails, could anyone help please?
<mikecmpbll> rubynew_ : there's lots of people in #rubyonrails :)
jaruga___ has joined #ruby
jaruga___ is now known as jaruga____
<rubynew_> that's weird because i went there but i was the only one there. i'll try again, thanks mike
<mikecmpbll> 515!
sleepee has quit [Quit: Leaving]
rubynew has quit [Ping timeout: 264 seconds]
bauruine has quit [Quit: ZNC - http://znc.in]
bauruine has joined #ruby
ircdude has joined #ruby
RegulationD has joined #ruby
arnonhongklay has quit [Remote host closed the connection]
nankyokusei has quit [Ping timeout: 276 seconds]
bauruine has quit [Read error: Connection reset by peer]
frozengeek has quit [Quit: frozengeek]
bauruine_ has joined #ruby
<dminuoso> Say I have a gem A with dependencies A > B > C - and I want to find the latest version of gem A that satisfies a version requirement on C. Is that possible with rubygems or bundler?
ta_ has joined #ruby
cevett has quit [Ping timeout: 244 seconds]
RegulationD has quit [Ping timeout: 244 seconds]
etehtsea has joined #ruby
cevett has joined #ruby
aufi has joined #ruby
ta_ has quit [Ping timeout: 255 seconds]
<Beast> try - gem dependency gemname
ddffg has joined #ruby
duncannz has quit [Remote host closed the connection]
jaguarmagenta has joined #ruby
rgtk has joined #ruby
<dminuoso> Beast: That doesnt help.
jaguarmagenta has quit [Ping timeout: 244 seconds]
<etehtsea> is IO#syswrite blocking operation?
<dminuoso> etehtsea: I would suspect so.
CloCkWeRX has quit [Quit: Leaving.]
pokalyis has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
k3rn31 has joined #ruby
archaic has joined #ruby
etehtsea has quit [Quit: Computer has gone to sleep.]
archaic is now known as Guest39810
ixti has quit [Ping timeout: 260 seconds]
vdmkenny has joined #ruby
<vdmkenny> hi, I'm trying to install some gems, but I'm faced with this error: http://paste.cinaed.be/?02a41c420a99d8db#KqCSvmgEZv2n2SD4pXmyh7OCwboAEL/iCiWenJMPNeE=
<vdmkenny> am I missing some packages?
<Burgestrand> dminuoso isn't that more or less the purpose of bundler, to do that (and then download/install it)?
<Burgestrand> dminuoso given that assumption, I'd assume bundler is a good bet to look into the source of!
<dminuoso> vdmkenny: Yes. You need to provide build tools to build native extensions.
<dminuoso> vdmkenny: What operating system are you using?
<vdmkenny> dminuoso: it's SLES 12
<dminuoso> vdmkenny: make sure you have GNU make and a CC
<dminuoso> vdmkenny: Though look at the error message, and read the mkmf.log
arnonhongklay has joined #ruby
pwnd_nsfw has joined #ruby
blackgoat has joined #ruby
pwnd_nsfw` has quit [Ping timeout: 250 seconds]
SteenJobs has joined #ruby
LoneHermit has joined #ruby
bob434 has quit [Quit: This computer has gone to sleep]
SteenJobs has quit [Ping timeout: 276 seconds]
arnonhongklay has quit [Remote host closed the connection]
Burgestrand has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
coderhut has quit [Quit: Page closed]
<vdmkenny> dminuoso: I was missing gcc-c++, thanks :)
vdmkenny has quit [Quit: Page closed]
LoneHermit has quit [Ping timeout: 260 seconds]
<dminuoso> volix: :)
Couch has joined #ruby
WickedSkengman is now known as StiffChocolate
matp has joined #ruby
yonatankoren has quit [Ping timeout: 252 seconds]
giz|work|2 has quit [Ping timeout: 276 seconds]
linduxed has joined #ruby
ukk has quit [Ping timeout: 240 seconds]
ta has quit [Ping timeout: 265 seconds]
linduxed has quit [Client Quit]
aries_liuxueyang has quit [Remote host closed the connection]
craigp has quit [Ping timeout: 240 seconds]
PlasmaStar has quit [Ping timeout: 264 seconds]
aries_liuxueyang has joined #ruby
linduxed has joined #ruby
moos3 has joined #ruby
yonatankoren has joined #ruby
blaxter has joined #ruby
pokalyis has joined #ruby
c355e3b has joined #ruby
moos3 has quit [Ping timeout: 250 seconds]
jackjackdripper has quit [Quit: Leaving.]
wugy has quit [Ping timeout: 250 seconds]
solocshaw has joined #ruby
danielius has joined #ruby
nettoweb has joined #ruby
ukk has joined #ruby
Azure has joined #ruby
pwnd_nsfw` has joined #ruby
Azure|dc has quit [Ping timeout: 258 seconds]
pwnd_nsfw has quit [Ping timeout: 255 seconds]
solocshaw has quit [Ping timeout: 244 seconds]
giz|work|2 has joined #ruby
astrobun_ has quit [Remote host closed the connection]
tjbiddle has quit [Quit: tjbiddle]
mrgrieves has joined #ruby
magikid has joined #ruby
poguez_ has joined #ruby
ec0 has quit [Ping timeout: 258 seconds]
rsampaio_ has quit [Ping timeout: 260 seconds]
ta has joined #ruby
koooge has quit [Quit: Leaving...]
dionysus69 has quit [Ping timeout: 265 seconds]
sepp2k has joined #ruby
the_drow__ has quit [Quit: This computer has gone to sleep]
da3mon has quit [Ping timeout: 244 seconds]
IanV0rn2341 has quit [Quit: Textual IRC Client: www.textualapp.com]
jmignault has joined #ruby
Burgestrand has joined #ruby
bigkevmcd has quit [Quit: Outta here...]
SteenJobs has joined #ruby
GodFather has joined #ruby
govg has joined #ruby
bigkevmcd has joined #ruby
minimalism has quit [Quit: minimalism]
jgt1 has quit [Ping timeout: 252 seconds]
jrafanie has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
rodfersou has joined #ruby
hahuang65 has joined #ruby
rodfersou has quit [Client Quit]
SteenJobs has quit [Ping timeout: 244 seconds]
inchw0rm has quit [Ping timeout: 264 seconds]
tlaxkit has joined #ruby
rodfersou has joined #ruby
hahuang65 has quit [Ping timeout: 250 seconds]
craigp has joined #ruby
pokalyis has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
rgtk has quit [Ping timeout: 276 seconds]
hanmac has quit [Ping timeout: 258 seconds]
pokalyis has joined #ruby
mrgrieves has quit [Ping timeout: 276 seconds]
Es0teric has quit [Quit: Computer has gone to sleep.]
ta_ has joined #ruby
k3rn31 has quit [Read error: Connection reset by peer]
k3rn31 has joined #ruby
ta_ has quit [Ping timeout: 276 seconds]
nankyokusei has joined #ruby
Vingador has joined #ruby
whiteline has quit [Ping timeout: 252 seconds]
blaxter has quit [Quit: foo]
nankyokusei has quit [Ping timeout: 258 seconds]
sdothum has joined #ruby
Gasher has joined #ruby
hanmac has joined #ruby
tlaxkit has quit [Read error: Connection reset by peer]
AnFin has joined #ruby
johnmilton has joined #ruby
k3rn31 has quit [Quit: Computer has gone to sleep.]
jgt1 has joined #ruby
Affix has joined #ruby
tomchapin has joined #ruby
Affix is now known as Guest18927
tomchapi_ has quit [Ping timeout: 255 seconds]
nettoweb has quit [Ping timeout: 244 seconds]
ukk has quit [Read error: Connection reset by peer]
Guest18927 has quit [Changing host]
Guest18927 has joined #ruby
Guest18927 is now known as aFFIX
ukk has joined #ruby
aFFIX is now known as Affix
jaguarmagenta has joined #ruby
whiteline has joined #ruby
ldnunes has joined #ruby
bob434 has joined #ruby
jaguarmagenta has quit [Ping timeout: 250 seconds]
okrasi has joined #ruby
biberu has quit [Read error: Connection reset by peer]
biberu has joined #ruby
pokalyis has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
umdstu has joined #ruby
LoneHermit has joined #ruby
tlaxkit has joined #ruby
linduxed has quit [Ping timeout: 258 seconds]
pokalyis has joined #ruby
linduxed has joined #ruby
pokalyis has quit [Client Quit]
LoneHermit has quit [Ping timeout: 265 seconds]
dunpeal has quit [Ping timeout: 244 seconds]
mikecmpbll has quit [Read error: Connection reset by peer]
mikecmpbll has joined #ruby
edwinvdgraaf has joined #ruby
poikon has quit [Ping timeout: 255 seconds]
ersatzreifenbob has joined #ruby
beawesomeinstead has quit [Ping timeout: 258 seconds]
rgtk has joined #ruby
yaewa has quit [Quit: Leaving...]
moei has joined #ruby
beawesomeinstead has joined #ruby
SteenJobs has joined #ruby
poikon has joined #ruby
marsjaninzmarsa has quit [Remote host closed the connection]
marsjaninzmarsa has joined #ruby
arnonhongklay has joined #ruby
synthroid has joined #ruby
marsjaninzmarsa has quit [Max SendQ exceeded]
agit0 has joined #ruby
dunpeal has joined #ruby
SteenJobs has quit [Ping timeout: 276 seconds]
pokalyis has joined #ruby
arnonhongklay has quit [Ping timeout: 244 seconds]
dionysus69 has joined #ruby
marsjaninzmarsa has joined #ruby
hutch34_ has joined #ruby
charliesome has joined #ruby
okrasi has quit [Quit: Konversation terminated!]
GinoManWorks has joined #ruby
GodFather has quit [Ping timeout: 265 seconds]
nadir has joined #ruby
litn has joined #ruby
arnonhongklay has joined #ruby
<mim1k> @here has anyone had any issues with simple form 2.x and rails 3.2?
jazzonmym11nd has joined #ruby
AzureStigma has joined #ruby
nando293921 has joined #ruby
jazzonmym1nd has quit [Ping timeout: 240 seconds]
litn has left #ruby [#ruby]
StiffChocolate has quit [Remote host closed the connection]
tk__ has joined #ruby
hutch34_ has quit [Ping timeout: 276 seconds]
bkxd has joined #ruby
<Papierkorb> ?rails
<ruby[bot]> Please join #RubyOnRails for Rails questions. You need to be identified with NickServ, see /msg NickServ HELP
<Papierkorb> mim1k: ^
JJBB has joined #ruby
AzureStigma has quit [Quit: Textual IRC Client: www.textualapp.com]
Burgestrand has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
SteenJobs has joined #ruby
atul has joined #ruby
CloCkWeRX has joined #ruby
govg has quit [Ping timeout: 264 seconds]
agit0 has quit [Read error: Connection reset by peer]
raeoks has quit [Quit: Textual IRC Client: www.textualapp.com]
wugy has joined #ruby
wugy has quit [Excess Flood]
wugy has joined #ruby
wugy has quit [Excess Flood]
wugy has joined #ruby
wugy has quit [Excess Flood]
atul has quit [Client Quit]
wugy has joined #ruby
wugy has quit [Excess Flood]
wugy has joined #ruby
wugy has quit [Excess Flood]
wugy has joined #ruby
wugy has quit [Excess Flood]
Vingador_ has joined #ruby
tyang has joined #ruby
wugy has joined #ruby
wugy has quit [Excess Flood]
nando293921 has quit [Ping timeout: 276 seconds]
wugy has joined #ruby
wugy has quit [Excess Flood]
wugy has joined #ruby
wugy has quit [Excess Flood]
ziyadb has quit [Quit: Connection closed for inactivity]
wugy has joined #ruby
wugy has quit [Excess Flood]
CloCkWeRX has quit [Ping timeout: 264 seconds]
wugy has joined #ruby
wugy has quit [Excess Flood]
hutch34_ has joined #ruby
wugy has joined #ruby
wugy has quit [Excess Flood]
wugy has joined #ruby
wugy has quit [Excess Flood]
wugy has joined #ruby
wugy has quit [Excess Flood]
wugy has joined #ruby
wugy has quit [Excess Flood]
Vingador has quit [Ping timeout: 264 seconds]
<JJBB> Anyone looking for a full time Ruby Development Job in Melbourne / Australia. The position is working in a Datacentre building Cloud services integration tools. If you are interested message me !!!
wugy has joined #ruby
wugy has quit [Excess Flood]
wugy has joined #ruby
wugy has quit [Excess Flood]
wugy has joined #ruby
wugy has quit [Excess Flood]
wugy has joined #ruby
wugy has quit [Excess Flood]
wugy has joined #ruby
<Papierkorb> Wrong continent :P
wugy has quit [Excess Flood]
wugy has joined #ruby
wugy has quit [Excess Flood]
jhack has joined #ruby
wugy has joined #ruby
wugy has quit [Excess Flood]
wugy has joined #ruby
wugy has quit [Excess Flood]
bkxd has quit [Ping timeout: 250 seconds]
wugy has joined #ruby
wugy has quit [Excess Flood]
wugy has joined #ruby
wugy has quit [Excess Flood]
wugy has joined #ruby
wugy has quit [Excess Flood]
pmunt has joined #ruby
wugy has joined #ruby
wugy has quit [Excess Flood]
wugy has joined #ruby
ItSANg___ has quit [Quit: Leaving...]
swills has quit [Ping timeout: 250 seconds]
jgt2 has joined #ruby
SteenJobs has quit [Quit: SteenJobs]
jgt1 has quit [Ping timeout: 240 seconds]
<havenwood> !connection wugy
wugy was kicked from #ruby by ruby[bot] [repeated join/part detected]
marr has quit [Ping timeout: 258 seconds]
<Guest81535> $ railroad -b -M -r ndps/
<Guest81535> ~/.rvm/gems/ruby-2.1.5/gems/railroad-0.5.0/lib/railroad/app_diagram.rb:54:in `disable_stdout': uninitialized constant AppDiagram::PLATFORM (NameError)
<Guest81535> any ideas?^
hutch34_ has quit [Quit: WeeChat 1.5]
<jhass> Guest81535: poke the author/maintainer of that gem
etehtsea has joined #ruby
CloCkWeRX has joined #ruby
<Guest81535> not really an option right now... im trying to visualize the relationship of a HUGE rails app
<Guest81535> railroad was going to produce a nice graph for me
<Guest81535> any other ideas?
alexherbo2 has quit [Ping timeout: 244 seconds]
synthroid has quit []
bluntman has quit [Ping timeout: 265 seconds]
scottalan has quit [Ping timeout: 265 seconds]
Snowy has joined #ruby
GodFather has joined #ruby
nehaljwani has joined #ruby
scottalan has joined #ruby
wlanboy- has quit [Ping timeout: 244 seconds]
Burgestrand has joined #ruby
<nehaljwani> Hi! What's the easiest way to find out the uid/gid of the user running the ruby program ? Do I *have* to use Etc ?
aries_liuxueyang has quit [Ping timeout: 276 seconds]
<Burgestrand> >> Process.uid
<ruby[bot]> Burgestrand: # => 1000 (https://eval.in/632329)
<Burgestrand> nehaljwani ^
shinnya has joined #ruby
bob434 has quit [Quit: This computer has gone to sleep]
<Guest81535> thanks @havenwood
last_staff has quit [Quit: last_staff]
synthroid has joined #ruby
nando293921 has joined #ruby
pawnbox has quit [Remote host closed the connection]
wlanboy has joined #ruby
<Guest81535> havenwood: sadly, i'm running Rails 5... doesn't appear to be working even with railroadY
aries_liuxueyang has joined #ruby
<nehaljwani> Thanks Burgestrand !
<Burgestrand> nehaljwani You're welcome! \o/
pawnbox has joined #ruby
<dminuoso> Guest81535: what relationship are you talking about? between your models?
mrgrieves has joined #ruby
GodFather has quit [Remote host closed the connection]
<Guest81535> dminuoso: yes, showing all of my model relationships, and also how the controllers work together
postmodern has quit [Quit: Leaving]
the_drow__ has joined #ruby
ersatzreifenbob has left #ruby [#ruby]
alexherbo2 has joined #ruby
arnonhongklay has quit [Remote host closed the connection]
arnonhongklay has joined #ruby
hahuang65 has joined #ruby
pawnbox has quit [Ping timeout: 276 seconds]
uurcum has joined #ruby
ChiefAlexander has joined #ruby
<uurcum> hi
ta_ has joined #ruby
cdg has joined #ruby
cdg has quit [Remote host closed the connection]
cdg has joined #ruby
mrgrieves has quit [Ping timeout: 244 seconds]
uurcum has quit []
adam12 has quit [Ping timeout: 265 seconds]
mrEngineer has joined #ruby
serialsito has quit [Ping timeout: 264 seconds]
mjanssen has quit [Quit: Lost terminal]
jhack has quit [Quit: jhack]
<Guest81535> do you think this is because of an issue with Rails being v5 instead of v3/v4 as the documentation says is supported, or is it an RVM issue? /.rvm/gems/ruby-2.1.5/gems/railroad-0.5.0/lib/railroad/app_diagram.rb:54:in `disable_stdout': uninitialized constant AppDiagram::PLATFORM (NameError)
yorickpeterse has quit [Ping timeout: 255 seconds]
quoboo has quit [Ping timeout: 255 seconds]
arnonhongklay has quit [Ping timeout: 265 seconds]
hahuang65 has quit [Ping timeout: 264 seconds]
ta_ has quit [Ping timeout: 244 seconds]
adam has joined #ruby
adam is now known as Guest32546
Quobo has joined #ruby
yasu___ is now known as yasu
Quobo is now known as Guest48017
yorickpeterse has joined #ruby
Asher has quit [Quit: Leaving.]
the_drow__ has quit [Quit: This computer has gone to sleep]
<havenwood> Guest81535: Looks like the old gem you were using, not the new.
the_drow__ has joined #ruby
Asher has joined #ruby
jphase has quit [Remote host closed the connection]
jhack has joined #ruby
ramortegui has joined #ruby
Guest48017 has joined #ruby
Guest48017 has quit [Changing host]
Guest48017 is now known as quoboo
the_drow__ has quit [Client Quit]
pokalyis has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
pokalyis has joined #ruby
mostlybadfly has quit [Quit: Connection closed for inactivity]
tvw has joined #ruby
etehtsea has quit [Ping timeout: 264 seconds]
yuki_is_bored has quit [Quit: leaving]
Beams has joined #ruby
BackEndCoder has quit [Excess Flood]
yuki_is_bored has joined #ruby
pokalyis has quit [Client Quit]
ngscheurich has joined #ruby
aegis3121 has joined #ruby
BackEndCoder has joined #ruby
serialsito has joined #ruby
malconis has joined #ruby
nankyokusei has joined #ruby
pokalyis has joined #ruby
GodFather has joined #ruby
Guest81 has joined #ruby
jaruga___ has joined #ruby
jhack has quit [Quit: jhack]
RegulationD has joined #ruby
mtkd has quit [Ping timeout: 265 seconds]
Ropeney has joined #ruby
nankyokusei has quit [Ping timeout: 265 seconds]
wldcordeiro has quit [Ping timeout: 258 seconds]
jaruga_____ has joined #ruby
jhack has joined #ruby
jaruga____ has quit [Ping timeout: 276 seconds]
Ropeney has quit [Client Quit]
mtkd has joined #ruby
swills has joined #ruby
jaruga___ has quit [Ping timeout: 244 seconds]
jhack has quit [Client Quit]
RegulationD has quit [Ping timeout: 244 seconds]
nando293921 has quit [Ping timeout: 244 seconds]
einarj has quit [Remote host closed the connection]
serialsito has quit [Ping timeout: 250 seconds]
l4v2 has joined #ruby
mrEngineer has quit [Quit: mrEngineer]
serialsito has joined #ruby
<Guest81535> my `rake --version` shows v11.2.2, but i'm still getting: ~/.rvm/gems/ruby-2.3.0/gems/bundler-1.12.5/lib/bundler/spec_set.rb:95:in `block in materialize': Could not find rake-11.1.2 in any of the sources (Bundler::GemNotFound)
<workmad3> Guest81535: 11.2.2 != 11.1.2
yeticry has quit [Quit: leaving]
jaguarmagenta has joined #ruby
yeticry has joined #ruby
volix has quit [Ping timeout: 276 seconds]
marr has joined #ruby
ukk has quit [Quit: WeeChat 1.5]
ukk has joined #ruby
k3rn31 has joined #ruby
CloCkWeRX has quit [Ping timeout: 265 seconds]
AndrewIsHere has joined #ruby
poguez_ has quit [Quit: Connection closed for inactivity]
jphase has joined #ruby
jaguarmagenta has quit [Ping timeout: 252 seconds]
jrafanie has joined #ruby
frozengeek has joined #ruby
arnonhongklay has joined #ruby
Guest81 has quit [Remote host closed the connection]
ta has quit [Remote host closed the connection]
yardenbar has quit [Ping timeout: 240 seconds]
blackgoat has quit [Quit: WeeChat 1.5]
volix has joined #ruby
txdv has joined #ruby
arnonhongklay has quit [Ping timeout: 244 seconds]
kanyewezt has joined #ruby
serialsito has quit [Ping timeout: 258 seconds]
arnonhongklay has joined #ruby
griffindy has joined #ruby
AndrewIsHere has quit [Remote host closed the connection]
jrafanie_ has joined #ruby
AndrewIsHere has joined #ruby
k3rn31 has quit [Quit: Computer has gone to sleep.]
ukk has quit [Quit: WeeChat 1.5]
jrafanie has quit [Ping timeout: 240 seconds]
CloCkWeRX has joined #ruby
M-Technic has quit [Ping timeout: 265 seconds]
moos3 has joined #ruby
the_drow__ has joined #ruby
teclator has quit [Remote host closed the connection]
M-Technic has joined #ruby
jhack has joined #ruby
dionysus69 has quit [Ping timeout: 240 seconds]
Snowy has quit [Remote host closed the connection]
the_drow__ has quit [Read error: Connection reset by peer]
coolboy has joined #ruby
SteenJobs has joined #ruby
the_drow__ has joined #ruby
Vingador_ has quit [Remote host closed the connection]
mark_66 has quit [Remote host closed the connection]
mark_66 has joined #ruby
conta has quit [Ping timeout: 260 seconds]
Akuma has joined #ruby
sotrhraven has joined #ruby
<sotrhraven> #hello o/
saneax is now known as saneax-_-|AFK
<sotrhraven> what is the state of game dev in ruby
tlaxkit has quit [Read error: Connection reset by peer]
the_drow__ has quit [Read error: Connection reset by peer]
skweek has joined #ruby
tdy has quit [Quit: tdy]
tlaxkit has joined #ruby
the_drow has joined #ruby
tlaxkit has left #ruby [#ruby]
jaruga_____ has quit [Remote host closed the connection]
pawnbox has joined #ruby
jaruga_____ has joined #ruby
LoneHermit has joined #ruby
Burgestrand has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
Guest32546 is now known as adam12
LoneHermit has quit [Remote host closed the connection]
Guest81 has joined #ruby
pawnbox has quit [Ping timeout: 240 seconds]
Vingador has joined #ruby
Devalo has joined #ruby
panpainter has joined #ruby
hobodave has joined #ruby
bob434 has joined #ruby
tdy has joined #ruby
frozengeek has quit [Quit: frozengeek]
the_drow has quit [Read error: Connection reset by peer]
nickjj_ has joined #ruby
etehtsea has joined #ruby
the_drow has joined #ruby
tk__ has quit [Quit: ばいばい]
synthroid has quit [Remote host closed the connection]
Guest81 has quit [Remote host closed the connection]
nickjj has quit [Ping timeout: 265 seconds]
synthroid has joined #ruby
the_drow has quit [Read error: Connection reset by peer]
dminuoso has quit [Ping timeout: 276 seconds]
the_drow has joined #ruby
agent_white has joined #ruby
<agent_white> Mornin'
LUMIA930 has quit [Ping timeout: 276 seconds]
<Guest81535> good morning! :)
tjbiddle has joined #ruby
pawnbox has joined #ruby
the_drow has quit [Read error: Connection reset by peer]
the_drow has joined #ruby
Guest81535 is now known as lifted
nickjj_ is now known as nickjj
Snowy has joined #ruby
Moeh has joined #ruby
James123 has joined #ruby
lifted has quit [Remote host closed the connection]
dminuoso has joined #ruby
submitnine has quit []
<James123> Is it possible to have a script `s1' running all the time and accept input from a client script `s2' (e.g. from its command line arguments)?
anisha_ has quit [Quit: This computer has gone to sleep]
<Papierkorb> James123: TCP/HTTP server?
<jazzonmym11nd> or use filesystem and unixsocket/server.
<Papierkorb> James123: in case of HTTP, which is simply well supported on both ends in ruby, you can also use a UNIX socket
<eam> or just a pipe
Snowy has quit [Quit: ragequit]
<Papierkorb> James123: What's the use-case?
<James123> Papierkorb: It's just a simple automation script that I want to do.
<Papierkorb> That's not too specific. Local only, or over the network? What kind of automation? "Run this shell command" or "Start this service" or something different?
<Papierkorb> Or are you putting some kind of tool into a little daemon so you don't have to load it all the time?
arnonhongklay has quit [Remote host closed the connection]
arnonhongklay has joined #ruby
<James123> Local only, it will take the input from the other script, do some processing and then run some relevant code. I don't mind loading it all the time!
magikid has quit [Ping timeout: 240 seconds]
<Papierkorb> Why do you need a client/server model then? Just piping the output from one script to the next doesn't suffice?
sotrhraven has quit [Quit: -a- IRC for Android 2.1.33]
<James123> I will need to do that many times. e.g. s2 foo | s1. But I don't want s1 to start over each time. Can I avoid that?
nadir is now known as WSO
<etehtsea> could IO#syswrite raise any other errors except SystemCallError?
Akuma has quit [Quit: So long sukkas!]
skweek has quit [Ping timeout: 264 seconds]
<Papierkorb> James123: Why "avoid"? Do you hate typing the "| ..." stuff?
ta has joined #ruby
teclator has joined #ruby
duderonomy has joined #ruby
bob434 has quit [Quit: This computer has gone to sleep]
ukk has joined #ruby
<James123> No, I don't mind that, but with s2 foo | s1, s2 bar | s1, s1 will run twice. I don't want that, as it will have a state I don't want to loose.
giz|work|2 has quit [Ping timeout: 240 seconds]
bob434 has joined #ruby
<Papierkorb> Ah, now it's clearer why
<Papierkorb> James123: I'd use a UNIX socket then, which `s1` listens on. (You could also used named pipes, but never used them directly myself). You can decide if you want to invent your own protocol, or use HTTP. If it's a small-ish tool, I'd probably invent my own by just piping JSON data over the socket, and then wait in `s1` for a client to connect and then act upon receiving a whole line of data.
<dminuoso> etehtsea: If you really want to know, generage a callgraph from the C implementation, and then look for any raises.
<etehtsea> dminuoso ok, thanks
ta has quit [Ping timeout: 255 seconds]
lightheaded has quit [Remote host closed the connection]
lightheaded has joined #ruby
<James123> Papierkorb: Thank you very much, this answers my question :)
<Papierkorb> cheers
frozengeek has joined #ruby
Pupeno has quit [Remote host closed the connection]
<etehtsea> dminuoso hm, how to generate it? I tried to google it, but didn't find any interesting results at first sight
bob434 has quit [Quit: This computer has gone to sleep]
<dminuoso> etehtsea: I gotta run. Ill be back in about 4 hours from now.
<dminuoso> We can continue then if you like
<etehtsea> dminuoso ok, sure. thanks anyway
coolboy has quit [Ping timeout: 244 seconds]
lightheaded has quit [Ping timeout: 250 seconds]
johnmilton has quit [Remote host closed the connection]
aegis3121 has quit [Ping timeout: 252 seconds]
jgt2 has quit [Read error: Connection reset by peer]
dminuoso has quit [Remote host closed the connection]
aegis3121 has joined #ruby
Spami has joined #ruby
moneylotion has quit [Quit: ZNC 1.6.3 - http://znc.in]
Pupeno has joined #ruby
hahuang65 has joined #ruby
moneylotion has joined #ruby
jgt2 has joined #ruby
pokalyis has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
frozengeek has quit [Quit: frozengeek]
etetz has joined #ruby
ircdude has quit [Quit: leaving]
solocshaw has joined #ruby
hahuang65 has quit [Ping timeout: 255 seconds]
yuki_is_bored has quit [Remote host closed the connection]
Vingador has quit [Remote host closed the connection]
zacts has joined #ruby
pokalyis has joined #ruby
pawnbox has quit [Remote host closed the connection]
johnmilton has joined #ruby
preyalone has joined #ruby
rodfersou is now known as rodfersou|lunch
Guest81 has joined #ruby
polishdub has joined #ruby
Lucky_ABA has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
lifted has joined #ruby
jhack has quit [Quit: jhack]
coolboy has joined #ruby
the_drow has quit [Ping timeout: 260 seconds]
solocshaw has quit [Remote host closed the connection]
s2013 has quit [Quit: Textual IRC Client: www.textualapp.com]
rippa has joined #ruby
s2013 has joined #ruby
<lifted> im going through gem dependency hell... im in RVM, doing gem install xyz -v1.2.3, rerunning the app, and just going through one by one... is there a shortcut here? a bundle install or some other trick?
govg has joined #ruby
jschoolcraft has joined #ruby
nankyokusei has joined #ruby
centrx has joined #ruby
craigp_ has joined #ruby
moneylotion has quit [Quit: ZNC 1.6.3 - http://znc.in]
Guest38 has joined #ruby
jrafanie_ has quit [Quit: Textual IRC Client: www.textualapp.com]
the_drow has joined #ruby
<manveru> lifted: rvm gemsets?
moneylotion has joined #ruby
AnFin has left #ruby [#ruby]
Devalo has quit [Remote host closed the connection]
jrafanie has joined #ruby
Devalo has joined #ruby
tjbiddle has quit [Quit: tjbiddle]
craigp has quit [Ping timeout: 244 seconds]
Devalo has quit [Remote host closed the connection]
bob434 has joined #ruby
Guest81 has quit [Remote host closed the connection]
Devalo has joined #ruby
nankyokusei has quit [Ping timeout: 276 seconds]
LoneHerm_ has joined #ruby
<lifted> whats rvm gemsets?
<lifted> got it
<lifted> thx
AndrewIsHere has quit [Remote host closed the connection]
etehtsea has quit [Read error: Connection reset by peer]
lightheaded has joined #ruby
<havenwood> lifted: For non-Rails apps another option is to create a Gemfile and generate a Gemfile.lock from those versions with `gem install -g` and then use just those gems by setting `RUBYGEMS_GEMDEPS=/path/to/Gemfile`.
Devalo has quit [Ping timeout: 252 seconds]
<havenwood> lifted: Bundler is a more popular option as well.
AndrewIsHere has joined #ruby
<lifted> i have bundler
<lifted> im trying to figure out how to use it with this
libman has joined #ruby
<mikecmpbll> don't use gemsets tho.
<mikecmpbll> lifted : what's the actual problem?
aufi has quit [Ping timeout: 258 seconds]
LoneHerm_ has quit [Ping timeout: 252 seconds]
<mikecmpbll> create gemfile, type bundle! :)
<lifted> I downloaded railroady. I already did an install. Now when i execute i just keep getting more dependencies : /home/john/.rvm/gems/ruby-2.3.0/gems/bundler-1.12.5/lib/bundler/spec_set.rb:95:in `block in materialize': Could not find airbrussh-1.0.2 in any of the sources (Bundler::GemNotFound)
<lifted> there is a gemfile for it
<libman> What's the easiest way to get a list of all available gems (I mean ALL 7_803) and their licenses? I'm writing a license analysis tool in another language.
<lifted> but it doesnt have any relevant info in it
<libman> The ideal solution would just download all gems data like in JSON format, so it's not even necessary to have ruby installed, and no individual API calls per package.
Lucky_ABA has joined #ruby
solocshaw has joined #ruby
flying has quit []
yuki_is_bored has joined #ruby
duderonomy has quit [Ping timeout: 240 seconds]
synthroid has quit [Remote host closed the connection]
the_drow has quit [Read error: Connection reset by peer]
jaguarmagenta has joined #ruby
pandaant has quit [Remote host closed the connection]
cyphase has quit [Ping timeout: 258 seconds]
the_drow has joined #ruby
etehtsea has joined #ruby
hahuang65 has joined #ruby
the_drow has quit [Client Quit]
jackjackdripper has joined #ruby
tvw has quit [Read error: Connection reset by peer]
hahuang61 has joined #ruby
tvw has joined #ruby
bob434 has quit [Quit: This computer has gone to sleep]
pawnbox has joined #ruby
sfmk has joined #ruby
cyphase has joined #ruby
jaguarmagenta has quit [Ping timeout: 264 seconds]
mic_e has joined #ruby
edwinvdgraaf has quit [Ping timeout: 265 seconds]
SteenJobs has quit [Quit: SteenJobs]
TomyWork has quit [Ping timeout: 276 seconds]
hahuang61 has quit [Ping timeout: 255 seconds]
skweek has joined #ruby
the_drow has joined #ruby
skweek has quit [Max SendQ exceeded]
ruby_ has joined #ruby
skweek has joined #ruby
skweek has quit [Max SendQ exceeded]
the_drow has quit [Read error: Connection reset by peer]
skweek has joined #ruby
the_drow has joined #ruby
skweek has quit [Max SendQ exceeded]
bob434 has joined #ruby
mic_e has quit [Ping timeout: 240 seconds]
sfmk has left #ruby [#ruby]
skweek has joined #ruby
solocshaw has quit [Ping timeout: 265 seconds]
skweek has quit [Max SendQ exceeded]
zipace has joined #ruby
tvw has quit [Read error: Connection reset by peer]
skweek has joined #ruby
Gasher has quit [Quit: Leaving]
skweek has quit [Max SendQ exceeded]
dionysus69 has joined #ruby
skweek has joined #ruby
naftilos76 has joined #ruby
Devalo has joined #ruby
[Butch] has joined #ruby
naftilos76 has quit [Read error: Connection reset by peer]
naftilos76 has joined #ruby
tjbiddle has joined #ruby
jhack has joined #ruby
bob434 has quit [Quit: This computer has gone to sleep]
amclain has joined #ruby
SteenJobs has joined #ruby
bob434 has joined #ruby
the_drow has quit [Quit: This computer has gone to sleep]
serialsito has joined #ruby
AndrewIsHere has quit [Remote host closed the connection]
j416 has joined #ruby
AndrewIsHere has joined #ruby
jsrn_ has quit [Read error: Connection reset by peer]
alexherbo2 has quit [Quit: WeeChat 1.5]
aupadhye has quit [Ping timeout: 252 seconds]
sepp2k has quit [Quit: Leaving.]
synthroid has joined #ruby
jkhl has joined #ruby
pokalyis has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
shortdudey123 has quit [Max SendQ exceeded]
AndrewIsHere has quit [Ping timeout: 264 seconds]
shortdudey123 has joined #ruby
alexherbo2 has joined #ruby
ajsharma has joined #ruby
aegis3121 has quit [Ping timeout: 276 seconds]
pokalyis has joined #ruby
zacts has quit [Ping timeout: 250 seconds]
claudiuinberlin has quit []
tvon has joined #ruby
nikivi has joined #ruby
SteenJobs has quit [Quit: SteenJobs]
nitric has joined #ruby
rcvalle has joined #ruby
thanoj has quit [Quit: WeeChat 0.4.2]
k3rn31 has joined #ruby
axsuul has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
ukk has quit [Quit: WeeChat 1.5]
tjbiddle has quit [Quit: tjbiddle]
serialsito has quit [Ping timeout: 252 seconds]
jhack has quit [Quit: jhack]
jaruga_____ has quit [Quit: jaruga_____]
bob434 has quit [Quit: This computer has gone to sleep]
AndrewIsHere has joined #ruby
govg has quit [Ping timeout: 244 seconds]
govg has joined #ruby
taunic has joined #ruby
solocshaw has joined #ruby
tomchapi_ has joined #ruby
eljimbo has quit [Quit: This computer has gone to sleep]
bob434 has joined #ruby
tomchapi_ has quit [Client Quit]
devbug has joined #ruby
danielius has quit [Ping timeout: 255 seconds]
dopamean_ has joined #ruby
aganov has quit [Remote host closed the connection]
CloCkWeRX has quit [Ping timeout: 252 seconds]
naftilos76 has quit [Read error: Connection reset by peer]
solocshaw has quit [Ping timeout: 258 seconds]
ruby_ has quit [Remote host closed the connection]
naftilos76 has joined #ruby
banisterfiend has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
jhack has joined #ruby
CloCkWeRX has joined #ruby
naftilos76 has quit [Read error: Connection reset by peer]
gnufied has joined #ruby
<rubynew_> hi
<rubynew_> could i check with you all
libman has quit [Read error: Connection reset by peer]
Puffball has quit [Read error: Connection reset by peer]
<rubynew_> how do i add a column?
naftilos76 has joined #ruby
bob434 has quit [Quit: This computer has gone to sleep]
<rubynew_> specifically how do i add a string column called abc
<rubynew_> in ruby
naftilos76 has quit [Read error: Connection reset by peer]
<kanobt61_> Well ruby doesn't really have "columns". Are you in a rails app and wanting to adding a column to a table in the db?
naftilos76 has joined #ruby
<taunic> rubynew_, you may be looking for #rubyonrails
<rubynew_> oh, you're right, sorry, going over there
<kanobt61_> rails g migration add_bro_to_dawgs bro:string
SteenJobs has joined #ruby
tvon has quit [Quit: Peace out, y'all!]
aryaching has joined #ruby
<kanobt61_> that should generate a migration that does it I think... but yeah you might want to talk to the rails peps
mikecmpbll has quit [Quit: inabit. zz.]
Puffball has joined #ruby
Spami has quit [Quit: This computer has gone to sleep]
naftilos76 has quit [Read error: Connection reset by peer]
tyang has quit [Ping timeout: 276 seconds]
<taunic> kanobt61_, anyone good to remind me the days I was using rails and scaffold :)
<taunic> anyway
naftilos76 has joined #ruby
naftilos76 has quit [Read error: Connection reset by peer]
naftilos76 has joined #ruby
sepp2k has joined #ruby
tomphp has quit [Ping timeout: 265 seconds]
serialsito has joined #ruby
ruby_ has joined #ruby
ta has joined #ruby
naftilos76 has quit [Read error: Connection reset by peer]
ruby_ has quit [Remote host closed the connection]
AndrewIsHere has quit [Remote host closed the connection]
ruby_ has joined #ruby
Couch has quit [Ping timeout: 265 seconds]
naftilos76 has joined #ruby
AndrewIsHere has joined #ruby
hahuang61 has joined #ruby
AndrewIsHere has quit [Read error: Connection reset by peer]
Beams has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
AndrewIsHere has joined #ruby
solocshaw has joined #ruby
smathews has joined #ruby
dionysus69 has quit [Read error: Connection reset by peer]
antgel has quit [Ping timeout: 265 seconds]
dionysus69 has joined #ruby
serialsito has quit [Ping timeout: 250 seconds]
pokalyis has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
ta has quit [Ping timeout: 252 seconds]
smathy has joined #ruby
arnonhongklay has quit [Remote host closed the connection]
lubekpl has joined #ruby
solocshaw has quit [Ping timeout: 244 seconds]
hahuang61 has quit [Ping timeout: 250 seconds]
AndrewIsHere has quit [Remote host closed the connection]
charliesome has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
libman has joined #ruby
AndrewIsHere has joined #ruby
libman has left #ruby [#ruby]
sepp2k has quit [Ping timeout: 260 seconds]
AndrewIsHere has quit [Read error: Connection reset by peer]
AndrewIsHere has joined #ruby
arnonhongklay has joined #ruby
claudiuinberlin has joined #ruby
govg has quit [Ping timeout: 240 seconds]
Silthias has quit [Read error: Connection reset by peer]
banisterfiend has joined #ruby
moos3 has quit [Ping timeout: 260 seconds]
solocshaw has joined #ruby
arnonhongklay has quit [Ping timeout: 255 seconds]
rodfersou|lunch is now known as rodfersou|afk
<rubynew_> hello
<havenwood> rubynew_: hi
zacts has joined #ruby
<rubynew_> havenwood: pardon my confusion, i have a hard time telling the two apart
<havenwood> rubynew_: Ruby is the language and Rails is one of many libraries written in Ruby.
eljimbo has joined #ruby
<rubynew_> so you mentioned, naked hash, what does that mean?
<rubynew_> is this # the naked hash?
moos3 has joined #ruby
<rubynew_> then what is the non-naked hash? is it the {} ?
<havenwood> rubynew_: That's an octothorpe!
<havenwood> rubynew_: The Hash literal is: {}
<havenwood> rubynew_: It's the preferred way to write: Hash.new
<rubynew_> whats an octothorpe
<havenwood> rubynew_: A silly name for the `#` character.
<rubynew_> oh!
<rubynew_> i always called it hash
<lifted> now we will call it by its proper name
solocshaw has quit [Remote host closed the connection]
pokalyis has joined #ruby
<lifted> im going to brand myself as a code commenter
<lifted> i will call myself Doctor Thorpe
<havenwood> rubynew_: In Ruby a Hash is a dictionary where the keys point to the values. They can have any number of key/value pairs.
<rubynew_> I'm still not clear on why is it get "/movies", to: 'Movies#index' but not get "/movies" => 'Movies#index'
<rubynew_> you mentioned that colon is for symbols
<rubynew_> i assumed that both "/movies" and "Movies#index" are strings cause in quotes
<havenwood> rubynew_: Yes, those are both Strings.
aegis3121 has joined #ruby
<rubynew_> also, do i have to type your name in front for u to get the beep?
moneylotion has quit [Quit: ZNC 1.6.3 - http://znc.in]
<havenwood> Yeah, but you don't always have to do that. It will bring me back from my coffee to my screen though.
mikecmpbll has joined #ruby
<rubynew_> so yes, then since they are strings, why is it "to:"? cause just now you mentioned that => is for strings
* havenwood stares into a cup of coffee
moos3 has quit [Ping timeout: 244 seconds]
<rubynew_> haha, i've heard that coffee is better for drinking than looking at
<havenwood> rubynew_: That `to:` is a Hash key, specifically the Symbol `:to`.
sneakers has joined #ruby
sepp2k has joined #ruby
<havenwood> >> {to: 'coffee or not to coffee'}
<ruby[bot]> havenwood: # => {:to=>"coffee or not to coffee"} (https://eval.in/632563)
<rubynew_> so... if someone has a complicated username, it would have to be typed accurately for the beep to work? (i'm intrigued because i just discovered this website)
Burgestrand has joined #ruby
moneylotion has joined #ruby
<havenwood> rubynew_: Start typing a nick then hit <tab>
tomphp has joined #ruby
<havenwood> rubynew_: I'd suggest going through some basic Ruby guides before proceeding with Rails so you can get oriented with the landscape. Here's a good one to go through: http://tryruby.org
<rubynew_> havenwood: OH THIS IS GOOD
<havenwood> rubynew_: Here's some more reading: https://ruby-community.com/pages/links
<atmosx> rubynew_: that's the most interesting question I've heard in a while
<rubynew_> i've been typing it all these while
<rubynew_> atmosx: whats the most interesting qn?
Burgestrand has quit [Client Quit]
flashpoint9 has joined #ruby
<rubynew_> havenwood: thank you for the link, i'm in the middle of a ruby on rails online tutorial and i seem to have forgotten some things about ruby
<matthewd> I'm not sure a guide would offer much insight as to why `get 'x', to: 'y'`, yet `task 'x' => 'y'` :/
<havenwood> rubynew_: You could setup an irc client to ding you if the nicks are similar enough. Most folk wont get notified unless it's exact.
<havenwood> rubynew_: Yeah, I'd suggest refreshing on Ruby and asking here if you have any questions!
<rubynew_> here's the thing...
<havenwood> matthewd: I think Ruby koans covers that? I can't remember which do and which don't.
<rubynew_> i'm supposed to make a simple app with ruby on rails within the next 24 hours, so that i can apply for a course
<havenwood> rubynew_: Aha
<rubynew_> that's why i'm on the ruby on rails tutorial
etehtsea has quit [Quit: Computer has gone to sleep.]
AlphaAtom has joined #ruby
hk238 has joined #ruby
<rubynew_> i wasn't as last minute as this seems. i just took way longer for the ruby tutorials than i expected.
<matthewd> havenwood: I meant the semi-arbitrary nature of the APIs, as opposed to the hash syntax
<havenwood> matthewd: ahh, gotcha
<workmad3> matthewd: hmm, doesn't both `get "foo" => "bar#buzz"` and `get "foo", to: "bar#buzz"` work? For some reason I thought they were equivalent
<rubynew_> havenwood: so i'm trying to finish the tutorial asap so that i could start on trying to make the app
<havenwood> rubynew_: nice
moos3 has joined #ruby
<rubynew_> at the moment not very nice
ramfjord has joined #ruby
<rubynew_> actually now, its better, an hour ago it was excruciating
<matthewd> workmad3: That sounds quite plausible, actually
serialsito has joined #ruby
serialsito has quit [Remote host closed the connection]
<matthewd> [02:32:56] <rubynew_>I'm still not clear on why is it get "/movies", to: 'Movies#index' but not get "/movies" => 'Movies#index'
<rubynew_> and i have a pressing qn, but i think it belongs to the rubyonrails side
lubekpl has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
flashpoint9 has quit []
<matthewd> So the answer is actually: "either one works just fine"?
<matthewd> (and maybe it was a Rails question after all?)
<workmad3> yeah, both work fine in this rails 5 app I just tested them in (and yes, it's a rails q :) )
David__ has joined #ruby
<havenwood> Sorry for chasing folk back and forth. >.>
* workmad3 shrugs
<workmad3> I tend to answer questions in whichever channel they're asked :D
<workmad3> not that I'm online as much as I used to be...
Davedev28 has quit [Ping timeout: 250 seconds]
duderonomy has joined #ruby
Xentil has joined #ruby
duderonomy has quit [Client Quit]
firstdayonthejob has joined #ruby
yardenbar has joined #ruby
lubekpl has joined #ruby
<Xentil> oh wow!
<rubynew_> matthewd: hi i just saw your response pertaining to the => or to:
<rubynew_> matthewd: when i tried the "=>" it didn't work
<rubynew_> it only worked with to:
<rubynew_> i dont quite get why
wldcordeiro has joined #ruby
smathews has quit [Quit: Leaving.]
mark_66 has quit [Remote host closed the connection]
moos3 has quit [Ping timeout: 276 seconds]
solocshaw has joined #ruby
SeepingN has joined #ruby
<lifted> rubynew_: good question. also whats the difference between :awesome as a variable and awesome as a variable.
<SegFaultAX> lifted: :awesome is a symbol, not a variable.
<lifted> ok, i thought symbols were just constants...
<lifted> aka a variable
<rubynew_> lifted: awesome itself isn't anything. but "awesome" is a string
nankyokusei has joined #ruby
<lifted> i get that lol
preyalone has quit [Quit: Connection closed for inactivity]
<lifted> ty
<Mon_Ouie> They're constants in the same sense that numbers like 3 are constants
<lifted> okie
etehtsea has joined #ruby
etehtsea has quit [Client Quit]
<rubynew_> yes symbols are constants but they are referenced only once, verses countless of variables so they save some time, if you run large data
banisterfiend has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
<SegFaultAX> lifted: "aka a variable" You're very confused about what a constant is and what a variable is.
spudowiar has joined #ruby
<SegFaultAX> rubynew_: "symbols are constants but they are referenced only once" makes absolutely no sense.
djbkd has joined #ruby
<lifted> yeah a symbol you can reference unlimited times..
<SegFaultAX> A symbol is a value. In many ways it's similar to a string, except that it's immutable and supports very fast lookup because it's interned by the Ruby runtime.
<rubynew_> sorry my bad, i meant there is only one symbo, for you to reference many times
<SegFaultAX> rubynew_: Still not very sensical.
<lifted> so usually, if you make a call like: testMethod(:something, "sweet)
<lifted> "sweet")*** what exactly does it imply by :something ?
<SegFaultAX> lifted: :something is a value. Similar to "sweet", but a different kind.
tomphp has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
<SegFaultAX> :something is a Symbol. 123 is a Fixnum. "hello, world!" is a String.
solocshaw has quit [Ping timeout: 255 seconds]
<SegFaultAX> Those are 2 examples of values in Ruby.
<rubynew_> what do you mean by a value?
<SegFaultAX> 3 examples*
<lifted> i am following your definition
<lifted> but in practice
nankyokusei has quit [Ping timeout: 244 seconds]
<SegFaultAX> rubynew_: A quanta of data.
<baweaver> datum :D
<lifted> passing a :something symbol inside a method call, appears to be used frequently in this app i was just tasked with maintaining
<rubynew_> ok so whatever that is on the right side of : is a value?
tomphp has joined #ruby
<SegFaultAX> rubynew_: You know what a string is right?
Spami has joined #ruby
<rubynew_> yes
<baweaver> SegFaultAX: have fun
<lifted> yep
<havenwood> lifted: test_method(:something, "sweet") # It would be the Method #test_method with two arguments, the Symbol :something and the String "sweet"
jabberwock has joined #ruby
<SegFaultAX> rubynew_: "Hello, world!" is a string, right?
<rubynew_> yes
<lifted> gotcha thx havenwood
<SegFaultAX> In this case, I've used the literal form delimited by ""
<matthewd> lifted: Your question is equivalent to asking what 3 implies
<jabberwock> Hi. Does anyone use https://github.com/chrahunt/docx/ ? I am wondering if there are any issues with reading hyperlinks from the docx file. The python docx lib can't do it
replay has joined #ruby
<SegFaultAX> rubynew_: Symbols also have a literal form, :<name of symbol
<SegFaultAX> >
<rubynew_> yes
<SegFaultAX> rubynew_: 123 is a literal Fixnum
<matthewd> It's a piece of data; any meaning beyond its literal representation is imparted by whatever method you're passing it to
<rubynew_> so, :abc is a symbol right
<SegFaultAX> Yes
<lifted> options = { :font_size => 10, :font_family => "Arial" }
<lifted> options = { font_size: 10, font_family: "Arial" }
<SegFaultAX> lifted: Those are identical
<lifted> same statement ^
<lifted> yes exactly
<rubynew_> so like i was asking, if there something attached to :, on the right, then it's a symbol?
<lifted> but font_size => 10 wouldnt work. a : has to be before
<havenwood> lifted: Like `3`, `:something` is the same object in all contexts. Both an Integer and Symbol can be used as Hash keys or values.
<SegFaultAX> lifted: If you want the key to be a symbol. font_size could be a variable. Or you might want a string key "font_size" => 10
<SegFaultAX> havenwood: Fixnum*
LUMIA930 has joined #ruby
<havenwood> SegFaultAX: Ruby 2.4 ftw!
<rubynew_> @person : Seg ----> Seg is a value
<matthewd> Inside a hash, `foo:` is a special syntax that means `:foo =>`
<rubynew_> :Seg ------> Seg is a symbol
<SegFaultAX> Yes
<SegFaultAX> :Seg is a symbol
<Mon_Ouie> And even before that, since Fixnum < Integer, anything that's a Fixnum is also an Integer
<matthewd> rubynew_: `@person : Seg` is a syntax error
<havenwood> >> 3.is_a? Integer
<ruby[bot]> havenwood: # => true (https://eval.in/632570)
<rubynew_> ok @person: "Seg"
<SegFaultAX> rubynew_: You should read a Ruby tutorial
<SegFaultAX> You're extremely confused about what's going on. :)
RegulationD has joined #ruby
Contigi has quit [Ping timeout: 244 seconds]
<rubynew_> i spent the last five days with ruby tutorials
<rubynew_> they don't explain when i ask anything
<rubynew_> i've tried
<SegFaultAX> rubynew_: Ok then let me simplify for now. Think of Symbols as being more or less identical to strings.
<rubynew_> tutorials don't reply
<SegFaultAX> If you understand strings, you understand symbols
<rubynew_> i know what symbols are
<havenwood> rubynew_: {@person => "Seg"}
<rubynew_> i am also clear on what strings are
<rubynew_> yes havenwood
<rubynew_> thats what i was saying
<SegFaultAX> havenwood: That's possibly misleading depending on the value of the instance variable @person
smathews has joined #ruby
<rubynew_> when it's in a hash, then it's a string
<rubynew_> nope
<rubynew_> @person is the key
<SegFaultAX> @person is a variable
<rubynew_> ok person is the key but @person cannot be the key?
<havenwood> SegFaultAX: I don't know if it's right but it seems to be what was meant to be expressed.
<SegFaultAX> The value of that variable will be used as the key in that hash literal
s2013 has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
<SegFaultAX> rubynew_: The key is not literally @person, it's the value assigned to the @person instance variable.
<SegFaultAX> So to say that "@person is the key" is extremely misleading
<SegFaultAX> The value assigned to @person is the key
<rubynew_> i don't get what you're saying
<rubynew_> the value is assigned to the key
<lifted> @person = value
<lifted> key = value
<rubynew_> oh
<rubynew_> yes
<lifted> @person just points to value
<lifted> so if you change value
wldcordeiro has quit [Quit: WeeChat 1.4]
<lifted> it will change @person
<havenwood> rubynew_: You can only use the colon-style Hash keys for Symbol literals. You can't use it for variables or anything else other than Symbol literals.
<rubynew_> i got ":" and "=" mixed up i think
<lifted> I THINK! CORRECT ME IF IM WRONG, CODING OVERLORDS>...
<SegFaultAX> Let's be concrete. If you do `@person = 3; { @person => "foobar" }` the resulting hash is equivalent to `{ 3 => "foobar" }`
<rubynew_> ok i understand now, thank you havenwood
wldcordeiro has joined #ruby
Xiti` has quit [Quit: Xiti`]
<SegFaultAX> Importantly, @person *is not the key*.
k3rn31 has quit [Quit: Computer has gone to sleep.]
<rubynew_> so @person = "Seg" means that @person is the key and "Seg" is the string?
<havenwood> rubynew_: You must use Hash rockets for all Hash keys that are not Symbol literals.
ex0ns has quit [Quit: Lost terminal]
<rubynew_> why is @person not the key?
naftilos76 has quit [Read error: Connection reset by peer]
Xiti has joined #ruby
k3rn31 has joined #ruby
<havenwood> rubynew_: A Hash Rocket is `=>` not `=`.
banisterfiend has joined #ruby
<SegFaultAX> Best of luck to you. :)
JakFrist has joined #ruby
naftilos76 has joined #ruby
JakFrist has quit [Client Quit]
<Mon_Ouie> Because @person evaluates to the string "Seg", and the key is whatever the expression before '=>' evaluates to
<rubynew_> @person => Seg ?
shinnya has quit [Ping timeout: 260 seconds]
tomphp has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
<rubynew_> Mon_Ouie: so @person is the key right
leea has joined #ruby
mg^ has joined #ruby
<Mon_Ouie> Strictly speaking, no. A key in a hash is an object, and @person is a variable, not an object.
kab has joined #ruby
<rubynew_> Mon_Ouie: hmm but you said..
<Mon_Ouie> The value referenced by the variable at the time when you create the hash is the key
<SegFaultAX> Let's be concrete. If you do `@person = 3; { @person => "foobar" }` the resulting hash is equivalent to `{ 3 => "foobar" }`
<SegFaultAX> rubynew_: Re-read that carefully ^
<Mon_Ouie> If after evaluating that expression, you run @person = 4, the only key in that hash is still 3, not 4
<havenwood> rubynew_: What is `@person`?: @person # consider what is returned? that is the key.
<rubynew_> that's just inserting the value 3 into the string "footbar"
davedev24 has joined #ruby
<SegFaultAX> Um.
<smathy> It's weird that => is a hashrocket, I'd expect a hashrocket to be #=>
<rubynew_> ok these are all very confusing
<havenwood> >> the_key = 42; a_hash = {the_key => 'the answer to life the universe and everything'}; the_key = nil; a_hash
<ruby[bot]> havenwood: # => {42=>"the answer to life the universe and everything"} (https://eval.in/632583)
<havenwood> rubynew_: Consider the above ^
<rubynew_> SegFaultAX: thank u for trying to explain, i'm just having a hard time sorting it out
<rubynew_> havenwood: whats that
spider-mario has joined #ruby
<rubynew_> i should click on the link?
<havenwood> rubynew_: It's an example. What is the key? (You don't have to click the link to see the example.)
malconis_ has joined #ruby
<rubynew_> so 42 is the key?
<havenwood> rubynew_: yup!
<SegFaultAX> smathy: The "hash" in "hash rocket" is because it's a rocket ship inside of a hash literal.
spider-mario has quit [Read error: Connection reset by peer]
<rubynew_> so whatever is on the left of the hash rocket is a key?
<havenwood> rubynew_: yes
<havenwood> rubynew_: that value
hk238 has quit [Quit: http://www.kvirc.net/ 4.9.1 Aria]
<rubynew_> ok wait a sec
<SegFaultAX> Ah I think I see part of the confusion
<SegFaultAX> We are using 2 versions of the word "value"
<havenwood> rubynew_: in the case of a variable, its return value
spider-mario has joined #ruby
<rubynew_> is it ok if we move on from this for now, cause i feel very tormented by the concept
Yzguy has joined #ruby
<SegFaultAX> 1. Value as a synonym for "object". 123, "Hello, world!", :segfault are all different kinds of values, which are really just pieces of data
zacts has quit [Quit: WeeChat 1.4]
<rubynew_> yes but i wasnt referring to that kind of value
<rubynew_> i was talking about the value that comes with a key
<SegFaultAX> 2. Value as in the key-value element of a hash. A hash associates a key to a value, both of which must be objects (values) in Ruby.
<rubynew_> father: "Andrew"
<rubynew_> whereby "Andrew" is the value
ponga has quit [Quit: Connection closed for inactivity]
k3rn31 has quit [Quit: Computer has gone to sleep.]
<SegFaultAX> "Andrew" is a literal string value, and the value for the key :father in the hash {father: "Andrew"}
govg has joined #ruby
jabberwock has left #ruby ["Textual IRC Client: www.textualapp.com"]
<SegFaultAX> It's unfortunate that these words are overloaded like that.
<mg^> I think an easy way of telling this is that a variable is a reference to a value, and a hash key is a reference to a value. When you assign a key in a hash, the reference is copied.
<rubynew_> yep
<havenwood> >> {father: "Andrew"}.values
malconis has quit [Ping timeout: 264 seconds]
<ruby[bot]> havenwood: # => ["Andrew"] (https://eval.in/632590)
<rubynew_> thats what i meant
<havenwood> >> {father: "Andrew"}.keys
<ruby[bot]> havenwood: # => [:father] (https://eval.in/632591)
<smathy> SegFaultAX, yeah, I suppose that makes sense.
SteenJobs has quit [Quit: SteenJobs]
the_drow has joined #ruby
<rubynew_> ok, in any case, i would like to ask, what do i have to write if i want to display a list
<rubynew_> like an index
coolboy has quit [Ping timeout: 276 seconds]
<havenwood> rubynew_: Read up on Arrays: http://ruby-doc.org/core/Array.html
<SegFaultAX> rubynew_: "Like an index"?
daivyk has joined #ruby
<SegFaultAX> rubynew_: Given [1, 2, 3], what do you wish you had?
the_drow has quit [Read error: Connection reset by peer]
<rubynew_> my tutorial asks me to Then in the Movies controller, add the index action to display a list of all movies. To do this, fetch all movies from the database and store them in variable @movies.
<rubynew_> i have @movies = Movies.all and i also have the index action
SteenJobs has joined #ruby
<SegFaultAX> Ah, we've switched to Rails.
ukk has joined #ruby
banisterfiend has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
the_drow has joined #ruby
<rubynew_> i have the movies#index in my routes.rb
Vingador has joined #ruby
jhack has quit [Quit: jhack]
<rubynew_> ok do i need to switch to rails to ask my qn again
<SegFaultAX> Depends if your question is Rails-specific or not. :)
k3rn31 has joined #ruby
Spami has quit [Quit: This computer has gone to sleep]
jhack has joined #ruby
malconis_ is now known as malconis
the_drow has quit [Read error: Connection reset by peer]
malconis has quit [Remote host closed the connection]
the_drow has joined #ruby
pmunt has quit [Remote host closed the connection]
<rubynew_> im not certain if its rails specific
blackwind_123 has quit [Ping timeout: 276 seconds]
<rubynew_> i'm not very specific
peterhu has quit [Quit: leaving]
SteenJobs has quit [Quit: SteenJobs]
SeepingN_ has joined #ruby
SeepingN has quit [Disconnected by services]
blackwind_123 has joined #ruby
SilverKey has joined #ruby
Spami has joined #ruby
<mg^> Nothwithstanding any HTML around it, you basically want a list of all the movies as one or more formatted strings, right?
naftilos76 has quit [Read error: Connection reset by peer]
Cohedrin has joined #ruby
malconis has joined #ruby
SteenJobs has joined #ruby
k3rn31 has quit [Quit: Computer has gone to sleep.]
beawesomeinstead has quit [Ping timeout: 264 seconds]
WSO has quit [Ping timeout: 258 seconds]
<rubynew_> yes
poikon has quit [Ping timeout: 265 seconds]
the_drow_ has joined #ruby
the_drow has quit [Read error: Connection reset by peer]
<rubynew_> mg^: i think i need a list
arthurl has joined #ruby
Guest38 has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
coolboy has joined #ruby
<mg^> So you want Movies (an Array) of somethings, to some output list (a new Array)? That's exactly what Array#map is for.
<matthewd> rubynew_: Does http://guides.rubyonrails.org/getting_started.html#listing-all-articles answer your question?
naftilos76 has joined #ruby
<arthurl> hi guys-i'm trying to install an old ruby version (1.8.7) on a newer dist (centos 6.5) it's failing due to openssl library compatibility- i'm read about patches being available to deal with this: https://gist.github.com/alyssenko/0235873edda554319844fc823f3db127
axsuul has joined #ruby
marsjaninzmarsa has quit [Remote host closed the connection]
AndrewIsHere has quit [Remote host closed the connection]
dunpeal has quit [Ping timeout: 264 seconds]
duderonomy has joined #ruby
aegis312_ has joined #ruby
<mg^> arthurl: CentOS 6.5 isn't that new, and it ships Ruby 1.8.7 as RPMs...
<havenwood> arthurl: You could use RVM to apply the various necessary patches or CentOS 5 would be easier all around since it ships Ruby 1.8.7 if you don't mind the March 31, 2017 end of life.
<rubynew_> matthewd: im not really sure
rgtk has quit [Ping timeout: 244 seconds]
marxarelli has joined #ruby
poikon has joined #ruby
<rubynew_> mg^: i dont have an output list though
beawesomeinstead has joined #ruby
<mg^> right, you want to turn an input list (of movies) into an output list (of formatted strings)
WSO has joined #ruby
<rubynew_> i have get "/movies", to: 'movies#index' inside routes
<mg^> matthewd's link shows one way to do it
<arthurl> sorry- i'm on 6.8
<arthurl> havenwood i'm using rbenv- i'm assuming i can try applying the patches still?
solocshaw has joined #ruby
marsjaninzmarsa has joined #ruby
aegis3121 has quit [Ping timeout: 265 seconds]
<mg^> arthurl: that should still ship 1.8.7 since they don't update things like Ruby in minor releases. yum install ruby should get you a 1.8.7 that works with the vendor-supplied OpenSSL
AndrewIsHere has joined #ruby
marsjaninzmarsa has quit [Excess Flood]
ged_ has quit [Quit: WeeChat 1.4]
the_drow_ has quit [Read error: Connection reset by peer]
<rubynew_> mg^: i'm supposed to add the index action in
<rubynew_> that one im not clear
mtkd has quit [Ping timeout: 264 seconds]
<arthurl> mg^ You're right- i see it there in /usr/bin/ruby
ged has joined #ruby
lxsameer has joined #ruby
<arthurl> problem is i set up rbenv- can i just use the system ruby but keep everything else (gemsets etc) untouched?
<havenwood> mg^: Ah, I knew they had later Rubies on CentOS 6 but it didn't occur to me they still shipped 1.8. That's the nicest way!
<mg^> rubynew_: that's a little rails-y MVC stuff when you talk about actions, not my area of expertise
<arthurl> sorry- still somewhat new to rbenv/rvm etc
dunpeal has joined #ruby
<arthurl> trying to wrap my head around how to make this work
vF3hNGxc47h8 has joined #ruby
<havenwood> arthurl: If you can, use the Ruby provided by the system package manager (presuming this is production).
<rubynew_> mg^: ah thank u, i'll go over to rails
<havenwood> arthurl: Of course upgrade the app to a supported version of Ruby if possible. Ruby 1.8 is past end of life and no longer receives updates of any kind.
<mg^> havenwood: yeah, you can get the newer ones via software collections, and 7.x ships 2.0.0 in base, and I haven't looked in software collections
<arthurl> havenwood yeah that's not an option for me right now- i have to work w/ this legacy thing
<mg^> that is, haven't looked at SCL for 7.x
marsjaninzmarsa has joined #ruby
the_drow has joined #ruby
mtkd has joined #ruby
solocshaw has quit [Remote host closed the connection]
<mg^> on that note, you are better off with the CentOS-supplied 1.8.7 if you can't upgrade the app to a newer Ruby, because Red Hat will likely fix major issues with it as long as they support RHEL6.x, which CentOS and the other clones will also pick up.
<havenwood> arthurl: Then do use the system package manager version of 1.8. They'll probably do the best job of backporting security fixes and it hasn't been receiving security updates fora long while.
<havenwood> what mg^ said ^
ixti has joined #ruby
solocshaw has joined #ruby
<arthurl> i guess i'm trying to figure out how i can use the system ruby but also use the rbenv shims for all the other stuff
<arthurl> i see export PATH="$HOME/.rbenv/bin:$PATH" in my bashrc
govg has quit [Ping timeout: 265 seconds]
elifoster has joined #ruby
<mg^> I'd say... don't use the rbenv for this application if it depends on 1.8.7 and 1.8.7 alone. Install the system rubygems, create a user to run the application, and use rubygems/bundler to manage dependencies locally in that account.
bocaneri has quit [Remote host closed the connection]
<arthurl> mg^ i was thinking the same thing- just disabling rbenv
dminuoso has joined #ruby
the_drow has quit [Read error: Connection reset by peer]
<arthurl> hmm- now seeing a 'add_frozen_gem_path': undefined method `source_index' for Gem:Module' when i try to launch into the RAILS console
SilverKey has quit [Read error: Connection reset by peer]
the_drow has joined #ruby
<mg^> might try the rails channel for that one
moneylotion has quit [Quit: ZNC 1.6.3 - http://znc.in]
moei has quit [Quit: Leaving...]
GodFather has quit [Quit: Ex-Chat]
sumobob has joined #ruby
GodFather has joined #ruby
moneylotion has joined #ruby
ta has joined #ruby
rsampaio_ has joined #ruby
<arthurl> thanks mg^ asked in there
<arthurl> i do see gem --version comes back with 2.5.2 in this new box i'm trying to configure- and in the current production it's 1.3.7
gizmore has joined #ruby
duderonomy has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
bruce_lee has joined #ruby
bruce_lee has joined #ruby
bruce_lee has quit [Changing host]
cdg has quit [Remote host closed the connection]
ta has quit [Ping timeout: 276 seconds]
solocshaw has quit [Remote host closed the connection]
the_drow has quit [Read error: Connection reset by peer]
the_drow has joined #ruby
axsuul has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
SteenJobs has quit [Quit: SteenJobs]
spudowiar has quit [Quit: Leaving.]
TPug has joined #ruby
ngw has quit [Quit: Connection closed for inactivity]
smathews has quit [Quit: Leaving.]
ec0 has joined #ruby
ta has joined #ruby
<arthurl> mg^ i got it sorted thank you
<arthurl> thanks havenwood
mhib has joined #ruby
the_drow has quit [Client Quit]
rgtk has joined #ruby
naftilos76 has quit [Read error: Connection reset by peer]
claudiuinberlin has quit [Remote host closed the connection]
jgt2 has quit [Ping timeout: 240 seconds]
SteenJobs has joined #ruby
jtzero1 has joined #ruby
naftilos76 has joined #ruby
SteenJobs has quit [Client Quit]
fckyoufreenode has joined #ruby
dionysus69 has quit [Remote host closed the connection]
ItSANgo has joined #ruby
naftilos76 has quit [Quit: Αποχώρησε]
Guest81 has joined #ruby
dionysus69 has joined #ruby
gizmore has quit [Ping timeout: 276 seconds]
zacts has joined #ruby
Guest81 has quit [Remote host closed the connection]
RedNifre_ is now known as RedNifre
smathy has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
gizmore has joined #ruby
GodFather has quit [Quit: Ex-Chat]
GodFather has joined #ruby
zacts has quit [Client Quit]
Macaveli has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
tyang has joined #ruby
Guest81 has joined #ruby
Moeh has quit [Quit: Textual IRC Client: www.textualapp.com]
SteenJobs has joined #ruby
GodFather has quit [Ping timeout: 276 seconds]
Spami has quit [Quit: This computer has gone to sleep]
aryaching has quit [Remote host closed the connection]
tvsutton has quit [Changing host]
tvsutton has joined #ruby
Moosashi has joined #ruby
rodfersou|afk is now known as rodfersou
LoneHerm_ has joined #ruby
k3rn31 has joined #ruby
ngscheur1 has joined #ruby
zeroDi has joined #ruby
solocshaw has joined #ruby
the_drow has joined #ruby
skweek has quit [Ping timeout: 255 seconds]
Yzguy has quit [Quit: Zzz...]
ngscheurich has quit [Ping timeout: 264 seconds]
solocshaw has quit [Remote host closed the connection]
axsuul has joined #ruby
LoneHerm_ has quit [Ping timeout: 252 seconds]
Guest81 has quit [Quit: Textual IRC Client: www.textualapp.com]
danielius has joined #ruby
lubekpl has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
jhack has quit [Quit: jhack]
the_drow has quit [Read error: Connection reset by peer]
tyang_ has joined #ruby
Lucky_ABA has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
the_drow has joined #ruby
jhack has joined #ruby
tdy has quit [Ping timeout: 276 seconds]
tyang has quit [Ping timeout: 265 seconds]
skweek has joined #ruby
the_drow has quit [Read error: Connection reset by peer]
Macaveli has joined #ruby
tdy has joined #ruby
Macaveli has quit [Client Quit]
jtzero1 has quit [Ping timeout: 240 seconds]
blaxter has joined #ruby
the_drow has joined #ruby
anthony` has joined #ruby
k3rn31 has quit [Quit: Computer has gone to sleep.]
asdffff has quit [Remote host closed the connection]
Guest81 has joined #ruby
nankyokusei has joined #ruby
anthony` has quit [Remote host closed the connection]
Guest81 has quit [Remote host closed the connection]
James123 has quit [Remote host closed the connection]
solocshaw has joined #ruby
axsuul has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
zacts has joined #ruby
the_drow has quit [Read error: Connection reset by peer]
blaxter has quit [Quit: foo]
nankyokusei has quit [Ping timeout: 240 seconds]
solocshaw has quit [Remote host closed the connection]
solocshaw has joined #ruby
spudowiar has joined #ruby
the_drow has joined #ruby
JoshGlzBrk has joined #ruby
last_staff has joined #ruby
synthroid has quit [Remote host closed the connection]
skweek has quit [Ping timeout: 255 seconds]
tyang_ has quit [Quit: Leaving]
whathapp_ has joined #ruby
solocshaw has quit [Remote host closed the connection]
dionysus69 has quit [Remote host closed the connection]
edwardly has quit [Max SendQ exceeded]
Lucky_ABA has joined #ruby
edwardly has joined #ruby
edwardly has joined #ruby
edwardly has quit [Changing host]
jackjackdripper has quit [Quit: Leaving.]
dogweather has joined #ruby
jackjackdripper has joined #ruby
tyang has joined #ruby
dionysus69 has joined #ruby
David__ has quit [Ping timeout: 258 seconds]
rodfersou is now known as rodfersou|afk
Devalo has quit [Remote host closed the connection]
Devalo has joined #ruby
pokalyis has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
the_drow has quit [Read error: Connection reset by peer]
pokalyis has joined #ruby
jaguarmagenta has joined #ruby
Pupeno has quit [Remote host closed the connection]
the_drow has joined #ruby
umdstu has quit [Quit: umdstu]
solocshaw has joined #ruby
rubynew_ has quit [Ping timeout: 264 seconds]
Devalo has quit [Ping timeout: 250 seconds]
whathappens has joined #ruby
synthroid has joined #ruby
the_drow has quit [Read error: Connection reset by peer]
Moosashi_ has joined #ruby
Moosashi has quit [Read error: Connection reset by peer]
Moosashi_ is now known as Moosashi
Guest81 has joined #ruby
the_drow has joined #ruby
jaguarmagenta has quit [Ping timeout: 276 seconds]
whathapp_ has quit [Ping timeout: 244 seconds]
l4v2 has quit [Quit: l4v2]
jhack has quit [Quit: jhack]
Macaveli has joined #ruby
SeepingN_ has quit [Ping timeout: 244 seconds]
the_drow has quit [Read error: Connection reset by peer]
solocshaw has quit [Remote host closed the connection]
jschoolcraft has quit [Quit: peace]
the_drow has joined #ruby
Moosashi has quit [Quit: Moosashi]
peterhu has joined #ruby
Vingador has quit [Ping timeout: 265 seconds]
vF3hNGxc47h8 has quit [Quit: AndroIRC - Android IRC Client ( http://www.androirc.com )]
peterhu has quit [Client Quit]
SeepingN has joined #ruby
ruby_ has quit [Remote host closed the connection]
ta has quit [Remote host closed the connection]
Moosashi has joined #ruby
jrafanie has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
the_drow has quit [Read error: Connection reset by peer]
bob434 has joined #ruby
swills has quit [Ping timeout: 250 seconds]
peterhu has joined #ruby
the_drow has joined #ruby
ruby_ has joined #ruby
cdg has joined #ruby
icarus_ has joined #ruby
AndrewIsHere has quit [Remote host closed the connection]
marxarel_ has joined #ruby
ldnunes has quit [Ping timeout: 276 seconds]
solocshaw has joined #ruby
postmodern has joined #ruby
peterhu has quit [Client Quit]
jgt2 has joined #ruby
peterhu has joined #ruby
s2013 has joined #ruby
symm- has joined #ruby
ldnunes has joined #ruby
AndrewIsHere has joined #ruby
skweek has joined #ruby
the_drow has quit [Read error: Connection reset by peer]
marxarelli has quit [Ping timeout: 276 seconds]
the_drow has joined #ruby
blackgoat has joined #ruby
dionysus69 has quit [Remote host closed the connection]
miqlas-H has joined #ruby
AlphaAtom has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
dogweather has quit [Ping timeout: 258 seconds]
elastix has joined #ruby
the_drow has quit [Read error: Connection reset by peer]
Spami has joined #ruby
TPug has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
AlphaAtom has joined #ruby
solocshaw has quit [Remote host closed the connection]
the_drow has joined #ruby
solocshaw has joined #ruby
A124 has quit [Ping timeout: 244 seconds]
duderonomy has joined #ruby
dogweather has joined #ruby
solocshaw has quit [Remote host closed the connection]
smathy has joined #ruby
anisha has joined #ruby
BackEndCoder has quit [Excess Flood]
BackEndCoder has joined #ruby
Moosashi has quit [Quit: Moosashi]
leea has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
TPug has joined #ruby
dionysus69 has joined #ruby
claudiuinberlin has joined #ruby
jhack has joined #ruby
nikivi has quit [Quit: irc]
solocshaw has joined #ruby
the_drow has quit [Read error: Connection reset by peer]
danielius has quit [Ping timeout: 265 seconds]
the_drow has joined #ruby
waht has joined #ruby
mtkd has quit [Ping timeout: 244 seconds]
jenrzzz has joined #ruby
mtkd has joined #ruby
Vingador has joined #ruby
the_drow has quit [Read error: Connection reset by peer]
solocshaw has quit [Remote host closed the connection]
zacts has quit [Ping timeout: 260 seconds]
the_drow has joined #ruby
solocshaw has joined #ruby
Beast has quit [Quit: Leaving]
Yzguy has joined #ruby
dminuoso has quit [Read error: Connection reset by peer]
tyang has quit [Ping timeout: 252 seconds]
kab has quit [Quit: Leaving]
the_drow has quit [Read error: Connection reset by peer]
rgtk has quit [Ping timeout: 265 seconds]
solocshaw has quit [Remote host closed the connection]
solocshaw has joined #ruby
mhib has quit [Ping timeout: 276 seconds]
nikivi has joined #ruby
cdg has quit [Remote host closed the connection]
the_drow has joined #ruby
miqlas-H has quit [Quit: Vision[0.9.7-H-20140108]: i've been blurred!]
Madplatypus has joined #ruby
Vingador has quit [Remote host closed the connection]
Pupeno has joined #ruby
PlasmaStar has joined #ruby
solocshaw has quit [Remote host closed the connection]
dogweather has quit [Ping timeout: 250 seconds]
Cohedrin has quit [Ping timeout: 244 seconds]
Cohedrin has joined #ruby
solocshaw has joined #ruby
rippa has quit [Quit: {#`%${%&`+'${`%&NO CARRIER]
Cohedrin has quit [Max SendQ exceeded]
dogweather has joined #ruby
marxarel_ is now known as marxarelli
solocshaw has quit [Remote host closed the connection]
the_drow has quit [Read error: Connection reset by peer]
rgtk has joined #ruby
the_drow has joined #ruby
dunpeal has quit [Ping timeout: 244 seconds]
ramfjord_ has joined #ruby
danielius has joined #ruby
the_drow has quit [Read error: Connection reset by peer]
ramfjord has quit [Ping timeout: 244 seconds]
marxarelli has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
sand-bird has joined #ruby
tyang has joined #ruby
the_drow has joined #ruby
banisterfiend has joined #ruby
anisha has quit [Quit: This computer has gone to sleep]
whathappens has quit [Read error: Connection reset by peer]
jenrzzz_ has joined #ruby
whathappens has joined #ruby
solocshaw has joined #ruby
sand-bird has quit [Ping timeout: 244 seconds]
moei has joined #ruby
minimalism has joined #ruby
jenrzzz has quit [Ping timeout: 240 seconds]
marxarelli has joined #ruby
eljimbo has quit [Quit: This computer has gone to sleep]
whathappens has quit [Remote host closed the connection]
hahuang61 has joined #ruby
whathappens has joined #ruby
tyang has quit [Ping timeout: 276 seconds]
lightheaded has quit [Remote host closed the connection]
tomphp has joined #ruby
lightheaded has joined #ruby
pawnbox has quit [Remote host closed the connection]
synthroid has quit []
dunpeal has joined #ruby
LoneHerm_ has joined #ruby
jenrzzz has joined #ruby
jenrzzz has joined #ruby
jenrzzz has quit [Changing host]
dionysus69 has quit [Ping timeout: 265 seconds]
jenrzzz_ has quit [Ping timeout: 244 seconds]
rgtk has quit [Ping timeout: 264 seconds]
duderonomy has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
claudiuinberlin has quit []
moei has quit [Ping timeout: 260 seconds]
moei has joined #ruby
whathappens has quit [Ping timeout: 265 seconds]
the_drow has quit [Read error: Connection reset by peer]
LoneHerm_ has quit [Ping timeout: 240 seconds]
bayed has quit [Quit: Connection closed for inactivity]
ukk has quit [Quit: WeeChat 1.5]
JoshGlzBrk has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
rgtk has joined #ruby
vuoto has joined #ruby
lifted has quit [Ping timeout: 264 seconds]
JoshGlzBrk has joined #ruby
JoshGlzBrk has quit [Client Quit]
tomphp has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
yardenbar has quit [Ping timeout: 244 seconds]
JoshGlzBrk has joined #ruby
JoshGlzBrk has quit [Client Quit]
solocshaw has quit [Remote host closed the connection]
vuoto has quit [Remote host closed the connection]
d0nn1e has quit [Ping timeout: 265 seconds]
elastix has quit [Quit: elastix]
vuoto has joined #ruby
vuoto has quit [Remote host closed the connection]
sand-bird has joined #ruby
jackjackdripper has quit [Quit: Leaving.]
vuoto has joined #ruby
tomphp has joined #ruby
vuoto has quit [Remote host closed the connection]
d0nn1e has joined #ruby
vuoto has joined #ruby
elastix has joined #ruby
tvw has joined #ruby
hobodave has quit [Ping timeout: 264 seconds]
Guest81 has quit [Quit: Textual IRC Client: www.textualapp.com]
lifted has joined #ruby
l4v2 has joined #ruby
moneylotion has quit [Quit: ZNC 1.6.3 - http://znc.in]
Lucky_ABA has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
danielius has quit [Ping timeout: 265 seconds]
dogweather has quit [Ping timeout: 264 seconds]
moneylotion has joined #ruby
ldnunes has quit [Quit: Leaving]
elastix has quit [Quit: elastix]
pawnbox has joined #ruby
pawnbox has quit [Ping timeout: 244 seconds]
lifted has quit [Ping timeout: 244 seconds]
dogweather has joined #ruby
SteenJobs has quit [Quit: SteenJobs]
ramortegui has quit [Quit: Ex-Chat]
nankyokusei has joined #ruby
lifted has joined #ruby
dviola has joined #ruby
waht has quit [Quit: ircN 8.00 for mIRC (20100904) - www.ircN.org]
ta has joined #ruby
early90spants has joined #ruby
Caelum has quit [Quit: WeeChat 1.5]
poguez_ has joined #ruby
nankyokusei has quit [Ping timeout: 240 seconds]
ngscheur1 has quit [Ping timeout: 240 seconds]
centrx has quit [Remote host closed the connection]
Pumukel has joined #ruby
Guest33574 has joined #ruby
<Guest33574> hello every one
<Guest33574> heen some help if anyone can
<Guest33574> need*
NetSage has joined #ruby
<Guest33574> im ussing append
<Guest33574> and i wanna add &: and i cant
_ko1 has quit [Ping timeout: 240 seconds]
ta has quit [Ping timeout: 265 seconds]
<havenwood> Guest33574: Show your code?
<havenwood> ?gist
<ruby[bot]> https://gist.github.com - Multiple files, syntax highlighting, even automatically with matching filenames, can be edited
<Guest33574> wait
<Guest33574> $pseudos : ( active , hover , active , visited ) ;
<Guest33574> $options : ( pseudoancora ) ;
<Guest33574> $pseudo-list: null ;
<Guest33574> @each $pseudo in $pseudosArray {
<Guest33574> @mixin SetLink ( $pseudosArray , $opcao ) {
<Guest33574> $pseudo-list: append($pseudo-list, #{$pseudo} );
<Guest33574> }
<Guest33574> #{$pseudo-list} {
<Guest33574> @content ;
<Guest33574> }
<Guest33574> }
<Guest33574> i can get this
aydintd has joined #ruby
<Guest33574> a active hover active visited { ----
<Guest33574> now i need the , and &:
<havenwood> Guest33574: Please paste more than three lines to a Gist rather than in the channel.
BillSussman has quit [Quit: Leaving]
<havenwood> (See the channel topic.)
aydintd has left #ruby [#ruby]
<Guest33574> sorry
<Guest33574> gonna put in my site then
<Guest33574> the full code
<havenwood> Guest33574: What you pasted doesn't look like Ruby.
<havenwood> Guest33574: Is this the channel you meant to be in?
<Guest33574> ohhh damm sorry
<baweaver> looks more like sass or scss
<Guest33574> its scss
<Guest33574> but because its made with ruby :)
<Guest33574> what is the best chat ? and sorry or anything
<baweaver> They might have a channel, but Rails would be the best bet otherwise.
<elomatreb> Joining #sass may be worth a try
<havenwood> Guest33574: #sass or #rubyonrails
<Guest33574> sass no one anser yet im there
moneylotion has quit [Quit: ZNC 1.6.3 - http://znc.in]
<Guest33574> gonna try rubyonrails
<Guest33574> thxx
solocshaw has joined #ruby
jaguarmagenta has joined #ruby
Rickmasta has quit [Ping timeout: 250 seconds]
pawnbox has joined #ruby
moneylotion has joined #ruby
danielius has joined #ruby
[Butch] has quit [Quit: I'm out . . .]
ddffg has quit [Ping timeout: 276 seconds]
duderonomy has joined #ruby
jaguarmagenta has quit [Ping timeout: 265 seconds]
jphase has quit [Ping timeout: 255 seconds]
pawnbox has quit [Ping timeout: 264 seconds]
duderonomy has quit [Max SendQ exceeded]
duderonomy has joined #ruby
wuyin has quit [Remote host closed the connection]
eljimbo has joined #ruby
vuoto has quit [Remote host closed the connection]
skweek has quit [Ping timeout: 244 seconds]
Puffball has quit [Read error: Connection reset by peer]
Lucky_ABA has joined #ruby
Puffball has joined #ruby
flying has joined #ruby
kanyewezt has quit [Quit: Leaving]
davedev24 has quit []
lxsameer has quit [Quit: WeeChat 1.5]
ddffg has joined #ruby
mostlybadfly has joined #ruby
chestnutpie has joined #ruby
chestnutpie has quit [Max SendQ exceeded]
griffindy has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
tomphp has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
danielius has quit [Ping timeout: 244 seconds]
lubekpl has joined #ruby
jgt2 has quit [Ping timeout: 252 seconds]
jgt2 has joined #ruby
thatsnotjack has joined #ruby
spudowiar has quit [Quit: Leaving.]
Xentil has quit [Ping timeout: 265 seconds]
last_staff has quit [Quit: goes moo moo]
workmad3_ has joined #ruby
hahuang61 has quit [Ping timeout: 255 seconds]
panpainter has quit [Remote host closed the connection]
dogweather has quit [Ping timeout: 252 seconds]
sepp2k has quit [Quit: Leaving.]
pawnbox has joined #ruby
jackjackdripper has joined #ruby
workmad3 has quit [Ping timeout: 250 seconds]
tdy has quit [Ping timeout: 265 seconds]
moneylotion has quit [Quit: ZNC 1.6.3 - http://znc.in]
workmad3 has joined #ruby
workmad3_ has quit [Ping timeout: 265 seconds]
jgt2 has quit [Ping timeout: 276 seconds]
moneylotion has joined #ruby
dogweather has joined #ruby
Azure has quit [Ping timeout: 258 seconds]
pawnbox has quit [Ping timeout: 258 seconds]
malconis has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
Moosashi has joined #ruby
marxarelli has quit [Quit: Textual IRC Client: www.textualapp.com]
Moosashi has quit [Client Quit]
AndrewIsHere has quit [Remote host closed the connection]
hahuang61 has joined #ruby
AndrewIsHere has joined #ruby
tdy has joined #ruby
spudowiar has joined #ruby
Azure has joined #ruby
cdg has joined #ruby
rkazak has joined #ruby
flying has quit []
Ishido has quit [Quit: Roads? Where We're Going We Don't Need Roads.]
AndrewIsHere has quit [Ping timeout: 240 seconds]
pawnbox has joined #ruby
skweek has joined #ruby
panpainter has joined #ruby
l4v2 has quit [Quit: l4v2]
bougyman is now known as deez
deez is now known as bougyman
whathappens has joined #ruby
lubekpl has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
biberu has quit []
pawnbox has quit [Ping timeout: 240 seconds]
smathy has quit [Ping timeout: 260 seconds]
panpainter has quit [Ping timeout: 250 seconds]
etetz has quit [Remote host closed the connection]
etetz has joined #ruby
firstdayonthejob has quit [Ping timeout: 265 seconds]
AndrewIsHere has joined #ruby
AlphaAtom has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
smathy has joined #ruby
aegis312_ has quit [Ping timeout: 276 seconds]
etetz has quit [Ping timeout: 258 seconds]
JoshGlzBrk has joined #ruby
JoshGlzBrk has quit [Client Quit]
ChiefAlexander has quit [Remote host closed the connection]
moneylotion has quit [Quit: ZNC 1.6.3 - http://znc.in]
Azure has quit [Remote host closed the connection]
Davedev28 has joined #ruby
solocshaw has quit [Ping timeout: 250 seconds]
moneylotion has joined #ruby
shinnya has joined #ruby
JJBB has quit [Ping timeout: 250 seconds]
polishdub has quit [Quit: Leaving]
danielius has joined #ruby
nibbo has quit [Ping timeout: 265 seconds]
RegulationD has quit [Remote host closed the connection]
whathappens has quit [Read error: Connection reset by peer]
nibbo has joined #ruby
RegulationD has joined #ruby
whathappens has joined #ruby
PlasmaStar has quit [Ping timeout: 265 seconds]
pawnbox has joined #ruby
RegulationD has quit [Ping timeout: 252 seconds]
ICantCook has quit [Ping timeout: 276 seconds]
Ebok has joined #ruby
pawnbox has quit [Ping timeout: 264 seconds]
rodfersou|afk has quit [Quit: leaving]
axsuul has joined #ruby
ddffg has quit [Ping timeout: 244 seconds]
conta has joined #ruby
rsampaio_ has quit [Ping timeout: 260 seconds]
l4v2 has joined #ruby
binaryplease1 has joined #ruby
dopamean_ has quit [Ping timeout: 258 seconds]
PlasmaStar has joined #ruby
binaryplease has quit [Ping timeout: 255 seconds]
tyang has joined #ruby
Madplatypus has quit [Quit: Connection closed for inactivity]
sneakers has quit [Ping timeout: 252 seconds]
moneylotion has quit [Quit: ZNC 1.6.3 - http://znc.in]
wuyin has joined #ruby
moneylotion has joined #ruby
dogweather has quit [Ping timeout: 264 seconds]
ruby_ has quit [Remote host closed the connection]
jackjackdripper has quit [Quit: Leaving.]
dogweather has joined #ruby
JJBB has joined #ruby
axsuul has quit [Read error: Connection reset by peer]
binaryplease1 is now known as binaryplease
ruby_ has joined #ruby
arthurl has quit [Ping timeout: 276 seconds]
ingi has quit [Read error: Connection reset by peer]
davedev24 has joined #ruby
whathappens has quit [Read error: Connection reset by peer]
pawnbox has joined #ruby
ruby_ has quit [Remote host closed the connection]
whathappens has joined #ruby
Macaveli has quit [Remote host closed the connection]
nikivi has quit [Quit: zzz]
Madplatypus has joined #ruby
whathappens has quit [Client Quit]
skweek has quit [Ping timeout: 258 seconds]
ruby_ has joined #ruby
bob434 has quit [Quit: This computer has gone to sleep]
pawnbox has quit [Ping timeout: 276 seconds]
cevett has quit [Ping timeout: 244 seconds]
vdamewood has joined #ruby
jazzonmym111nd has joined #ruby
postmodern has quit [Quit: Leaving]
ta has joined #ruby
spider-mario has quit [Remote host closed the connection]
Pumukel has quit [Ping timeout: 260 seconds]
jazzonmym11nd has quit [Ping timeout: 244 seconds]
sdwrage has joined #ruby
Caelum has joined #ruby
AndrewIsHere has quit []
pawnbox has joined #ruby
panpainter has joined #ruby
zipace has quit [Disconnected by services]
ziprar has joined #ruby
yuki_is_bored has quit [Remote host closed the connection]
ta has quit [Ping timeout: 255 seconds]
coolboy has quit [Ping timeout: 250 seconds]
pawnbox has quit [Ping timeout: 240 seconds]
jazzonmym1nd has joined #ruby
JJBB has quit [Ping timeout: 252 seconds]
JJBB has joined #ruby
dnewkerk has joined #ruby
nankyokusei has joined #ruby
marr has quit [Ping timeout: 250 seconds]
mitt3ns has joined #ruby
jazzonmym111nd has quit [Ping timeout: 265 seconds]
agent_white has quit [Disconnected by services]
mitt3ns is now known as agent_white
agent_white has left #ruby [#ruby]
workmad3 has quit [Ping timeout: 255 seconds]
dogweat__ has joined #ruby
nankyokusei has quit [Ping timeout: 244 seconds]
dogweather has quit [Ping timeout: 252 seconds]
tmtwd has joined #ruby
pwnd_nsfw` has quit [Read error: Connection reset by peer]
skweek has joined #ruby
skweek has quit [Max SendQ exceeded]
dogweather has joined #ruby
skweek has joined #ruby
Yzguy has quit [Quit: Zzz...]
jhack has quit [Quit: jhack]
bob434 has joined #ruby
sand-bird has quit [Ping timeout: 276 seconds]
dogweat__ has quit [Ping timeout: 264 seconds]
sand-bird has joined #ruby
jazzonmym11nd has joined #ruby
pwnd_nsfw has joined #ruby
jazzonmym1nd has quit [Ping timeout: 258 seconds]
darwingr has joined #ruby
jaguarmagenta has joined #ruby
RegulationD has joined #ruby
pawnbox has joined #ruby
darwingr has quit [Quit: bye bye]
solocshaw has joined #ruby
jaguarmagenta has quit [Ping timeout: 265 seconds]
RegulationD has quit [Ping timeout: 255 seconds]
pawnbox has quit [Ping timeout: 240 seconds]
CloCkWeRX has quit [Remote host closed the connection]
jphase has joined #ruby
smathy has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
suchness has joined #ruby
suchness has left #ruby [#ruby]
suchness has joined #ruby
<suchness> Can anyone explain to me why these nested attributes aren't working? https://gist.github.com/caJaeger/dcd947b44c6f150da1a6f824254e5818
koooge has joined #ruby
thatsnotjack has quit [Ping timeout: 240 seconds]
pawnbox has joined #ruby
<meatchicken> suchness, are you sure you can pass ids like that in the last line?
<meatchicken> company.user.update(attachment_ids: [attachment.id]) ==> "the right attachments"
<meatchicken> that doesn't seem right
centrx has joined #ruby