apeiros_ changed the topic of #ruby to: Ruby 1.9.3-p286: http://ruby-lang.org || Paste >3 lines of text on http://gist.github.com
dmerrick has joined #ruby
vickaita has joined #ruby
banseljaj is now known as imami|afk
jimeh has quit [Quit: Computer has gone to sleep.]
<unXus> anyone can help me working with files?
berserkr has quit [Read error: Connection reset by peer]
SCommette has quit [Quit: SCommette]
lenovodroid has joined #ruby
baroquebobcat has quit [Quit: baroquebobcat]
dmerrick has quit [Client Quit]
fantomax has joined #ruby
tommyvyo has joined #ruby
<davidcelis> no
statarb3 has quit [Quit: Leaving]
dmerrick has joined #ruby
cameron__ has joined #ruby
fyolnish has joined #ruby
<shevy> unXus: you are too unspecific, you should be more specific. files can be everything
<cameron__> pastie.org/5351970 hello how does the interpreter know when to use self or super? is this operator precedence in action?
jimeh has joined #ruby
u89 has quit [Read error: Connection reset by peer]
joofsh has quit [Ping timeout: 246 seconds]
<davidcelis> hell, even directories are files
u89 has joined #ruby
fyolnish has quit [Remote host closed the connection]
<davidcelis> shit's all just files, man
dmerrick has quit [Quit: dmerrick]
sterNiX has quit [Ping timeout: 246 seconds]
<cameron__> i.e. the regexp returns self instead of nil, but how does ruby know to use super in this case? pastie.org/5351970 thankyou
amacgregor_osx has quit [Remote host closed the connection]
<erichmenge> that's deep.
bradhe has joined #ruby
atmosx_ has joined #ruby
atmosx_ has quit [Client Quit]
kenichi is now known as kenichi-away
sterNiX has joined #ruby
rakl has quit [Quit: sleeping]
mikepack has quit [Remote host closed the connection]
chriskk has quit [Quit: chriskk]
lenovodroid has quit [Quit: AndroIRC - Android IRC Client ( http://www.androirc.com )]
joshman_ has quit [Quit: Computer has gone to sleep.]
u89 has quit [Read error: Connection reset by peer]
lenovodroid has joined #ruby
u89 has joined #ruby
cakehero has quit [Quit: Computer has gone to sleep.]
sterNiX has quit [Excess Flood]
<shevy> cameron__: no idea but if I see code like that, I remove it as a whole in one second
<heftig> cameron__: i don't quite get your question
<shevy> there always should be some purpose. I dont think I ever saw code such as "super || nil" in reallife myself
sterNiX has joined #ruby
sterNiX has quit [Changing host]
sterNiX has joined #ruby
mytec has joined #ruby
<cameron__> heftig I guess the regex fails but does not return nil, so that reverse! can still work. but I don't see how line 3 works -- thanks.
<shevy> unXus: please no PRIVMSG
<shevy> type here in #ruby ok
<shevy> unXus
<ryanf> cameron__: if super returns something other than nil or false, gsub! will return whatever that was
<ryanf> otherwise it will return the string itself
<unXus> shevy: check the priv8 and respond me if you want
<unXus> next time i talk h ere
rakl has joined #ruby
Jasko has quit [Read error: Connection reset by peer]
<shevy> I have it closed already, sorry. I chat in browser tabs and have too many tabs open already, opening more tabs within a tab is too much effort for me, just copy/paste your stuff from PRIVMSG to #ruby I dont have it in any buffer
<shevy> #ruby is the only channel I am on right now
Jasko has joined #ruby
<unXus> i want to open a link that reproduce a music
<unXus> <unXus> when i open it on terminal ./file.rb
<unXus> <unXus> the music starts without open the browser
<unXus> <unXus> only connecting to the url for receiving the music
tvw has quit [Remote host closed the connection]
<cameron__> ryanf: sorry I don't follow. apparently the regex returns self in this case to override a return of nil, then reverse! uses super to get String#reverse! but I don't see how.
<heftig> cameron__: the value of (a || b) is a if a is not false or nil, otherwise b
icole has quit [Remote host closed the connection]
monbro has quit [Ping timeout: 255 seconds]
awaage has quit [Quit: awaage]
awaage has joined #ruby
<cameron__> heftig: thanks so precedence is used? ie the regex returns nil then returns self because || forces it to?
<heftig> the "regex" doesn't return anything
<heftig> super calls String#gsub! with the original arguments. the return value of this call is then examined
<heftig> by ||, and if it's nil or false, the self is taken instead
awarner has quit [Remote host closed the connection]
<cameron__> heftig: I see, so the left side is always interpreted first? (left side of ||)
Tombar has quit [Remote host closed the connection]
<heftig> yes. the right side isn't run if the left side is already true
<heftig> that's called shortcutting
<shevy> unXus: if you use firefox, you can open from the commandline in a new tab
<heftig> er, short-circuiting
<cameron__> heftig: thank you. is that a sort of operator precedence?
jonan has quit [Read error: Operation timed out]
Xeago has quit [Remote host closed the connection]
<cameron__> heftig: thanks for that..
clj_newb has quit [Ping timeout: 265 seconds]
Xeago has joined #ruby
RantriX has quit [Remote host closed the connection]
sterNiX has quit [Quit: Lagging Off]
LennyLinux has quit [Remote host closed the connection]
strangeworks has quit [Quit: Leaving]
nwertman has joined #ruby
Roa has quit [Ping timeout: 256 seconds]
Jdubs has quit [Remote host closed the connection]
Roa has joined #ruby
Roa has quit [Changing host]
Roa has joined #ruby
<nwertman> Is there a strong preference in the ruby community about using 'self.value' instead of '@value' inside methods? It seems to me that self.value is more resilient to change, but it is also paranoid programming which ruby seems to hate
OliverEiman has joined #ruby
senj has quit [Quit: ["Textual IRC Client: www.textualapp.com"]]
horofox has joined #ruby
<blazes816> nwertman: they are not equivalent
<OliverEiman> whats a good way to hide variables in a mixin from the class that includes it
mrsolo has quit [Quit: Leaving]
davidcelis has quit [Quit: K-Lined.]
<OliverEiman> so i dont have to be afraid of polluting an inheritees namespace
<blazes816> self.value calls a method called value (actually passes a message but you get the point). @value is an instance variable. so self.value is probably a getter for @value, and so you should probably use it as it encapsulates the logic of accessing that value
<reactormonk> nwertman, usually, you go `value` anyway
Zolrath has quit [Ping timeout: 240 seconds]
<nwertman> blazes816: Thanks. I felt like 'self.value' was better, but a lot of sample code uses @value.
CaptainJet has quit [Ping timeout: 260 seconds]
<OliverEiman> im adding some methods to a mixin that set instance variables (set state that other mixin methods need to use) whats the best way of encapsulating this state
<OliverEiman> ao that it doesnt pollute the namespace of the class including it
<nwertman> reactormonk: Thanks. Is that common? It seems to obscure what value is when reading code. Is it a method, a local variable, etc.
vickaita has quit [Ping timeout: 255 seconds]
CaptainJet has joined #ruby
BrianJ has quit [Quit: BrianJ]
cameron__ has left #ruby [#ruby]
BadLarry has quit [Quit: quitting]
<reactormonk> nwertman, ruby doesn't know either
g-ram has joined #ruby
<reactormonk> nwertman, but your methods should be short enough for it to not matter
<reactormonk> much
Guest37737 has quit [Quit: This computer has gone to sleep]
<nwertman> Right. Thanks.
BadLarry has joined #ruby
double_t has joined #ruby
jaygen has quit [Remote host closed the connection]
Jasko has quit [Read error: Connection reset by peer]
CaptainJet has quit [Ping timeout: 245 seconds]
jaygen has joined #ruby
Jasko has joined #ruby
nitti has joined #ruby
mytec has left #ruby ["Textual IRC Client: http://www.textualapp.com/"]
SJr has quit [Excess Flood]
thinkdevcode has quit [Remote host closed the connection]
jonan has joined #ruby
tyfighter_ has joined #ruby
CaptainJet has joined #ruby
srji has quit [Ping timeout: 244 seconds]
tyfighter has quit [Ping timeout: 252 seconds]
tyfighter_ is now known as tyfighter
postmodern has quit [Quit: Leaving]
horofox has quit [Quit: horofox]
SJr has joined #ruby
jaygen has quit [Ping timeout: 252 seconds]
nitti has quit [Ping timeout: 246 seconds]
thinkdevcode has joined #ruby
jimeh has quit [Quit: Computer has gone to sleep.]
hotovson has joined #ruby
apok has quit [Remote host closed the connection]
mahmoudimus has quit [Quit: Computer has gone to sleep.]
C0deMaver1ck has quit [Remote host closed the connection]
apok has joined #ruby
mahmoudimus has joined #ruby
chriskk has joined #ruby
thone_ has quit [Ping timeout: 246 seconds]
lenovodroid has quit [Ping timeout: 240 seconds]
mahmoudimus has quit [Client Quit]
ndrei has quit [Ping timeout: 246 seconds]
jonan has quit [Ping timeout: 246 seconds]
thone has joined #ruby
tyfighter has quit [Quit: tyfighter]
Nisstyre-laptop has joined #ruby
niklasb has quit [Ping timeout: 252 seconds]
bradhe has quit [Remote host closed the connection]
horofox has joined #ruby
lucianosousa has joined #ruby
hackerdude has quit [Remote host closed the connection]
friskd_ has joined #ruby
`brendan has joined #ruby
friskd_ has quit [Client Quit]
flagg0204 has quit [Read error: Operation timed out]
flagg0204 has joined #ruby
friskd has quit [Ping timeout: 264 seconds]
thinkdevcode has quit [Remote host closed the connection]
nuefox has joined #ruby
awaage has quit [Quit: awaage]
<arietis> suggest me good IDE for ruby
ryanlecompte has quit [Remote host closed the connection]
<arietis> i'm using text editor + terminal
<arietis> but i wanna be able to run script from editor
haxrbyte_ has joined #ruby
Toru has joined #ruby
ryanlecompte has joined #ruby
haxrbyte has quit [Read error: Connection reset by peer]
ibash has joined #ruby
Cluster444 has joined #ruby
ryanlecompte has quit [Remote host closed the connection]
havenn has joined #ruby
chriskk has quit [Quit: chriskk]
jonan has joined #ruby
maxer has quit [Quit: maxer]
icole has joined #ruby
horofox has quit [Quit: horofox]
Tearan has quit [Quit: Sleepy Badger....]
<blazes816> arietis: Aptana
<blazes816> there aren't many, but it's pretty good
<RubyPanther> arietis: emacs
mahmoudimus has joined #ruby
<arietis> oh, looks like TextMate can run code
<arietis> :)
maletor has quit [Quit: Computer has gone to sleep.]
mahmoudimus has quit [Client Quit]
<RubyPanther> I would assume anything can
jonan has quit [Client Quit]
mengu has joined #ruby
samphippen has quit [Quit: Computer has gone to sleep.]
davidokner has joined #ruby
bigmac has joined #ruby
n_blownapart has joined #ruby
pyx has joined #ruby
<arietis> RubyPanther: not every editor can run ruby code in same window
<arietis> looks liek i've found the one i like :)
bradhe has joined #ruby
bradhe has quit [Remote host closed the connection]
bradhe_ has joined #ruby
roadt has joined #ruby
icole has quit [Remote host closed the connection]
lucianosousa has quit [Quit: lucianosousa]
pskosinski has joined #ruby
u89 has quit [Remote host closed the connection]
<pskosinski> Is there a section about YAML in Ruby docs…? I can't find…
g_bleezy has joined #ruby
mikepack has joined #ruby
Trioke has quit [Ping timeout: 240 seconds]
mahmoudimus has joined #ruby
[Neurotic] has joined #ruby
<idzuna> pskosinski: there should be information in the API docs or online, try looking specifically for the Psych module
Jasko has quit [Read error: Connection reset by peer]
Jasko has joined #ruby
F1skr has quit [Quit: WeeChat 0.3.9]
cburyta has joined #ruby
nari has joined #ruby
jslowe has quit [Quit: Leaving]
malcolmva has quit [Read error: Connection reset by peer]
aantix has quit [Quit: aantix]
<pskosinski> All what I can find is it: http://www.ruby-doc.org/stdlib-1.9.3/libdoc/yaml/rdoc/index.html And not many info there…
<pskosinski> Bt for 1.9 it's almost empty
<pskosinski> But *
mikepack has quit [Remote host closed the connection]
pkrnj has quit [Ping timeout: 265 seconds]
bigmac has quit [Ping timeout: 248 seconds]
nitti has joined #ruby
bigmac has joined #ruby
pkrnj has joined #ruby
bradhe_ has quit [Remote host closed the connection]
Xeago has quit [Remote host closed the connection]
ilyam has quit [Quit: ilyam]
mascool has quit [Ping timeout: 255 seconds]
nitti has quit [Ping timeout: 240 seconds]
fantazo has quit [Ping timeout: 276 seconds]
double_t has left #ruby [#ruby]
bradhe has joined #ruby
ibash has quit [Quit: ibash]
<Gate> pskosinski: because in 1.9.3 yaml just passes its implementation off to different libraries, like http://www.ruby-doc.org/stdlib-1.9.3/libdoc/syck/rdoc/Syck.html#method-c-load
<davidokner> The best source I found to learn ruby is Pragmatic Studio
cburyta has quit [Remote host closed the connection]
<davidokner> It is $200 for videos and workbook.
banjara has quit [Quit: Leaving.]
<pskosinski> Gate: Ah… ty. :)
nuefox is now known as qq
qq has left #ruby ["Textual IRC Client: www.textualapp.com"]
ewag has quit [Ping timeout: 246 seconds]
alek_b has joined #ruby
classix has quit [Quit: leaving]
classix has joined #ruby
capsule_toy has joined #ruby
voodoofish430 has quit [Quit: Leaving.]
nari has quit [Ping timeout: 240 seconds]
locriani_ has quit [Remote host closed the connection]
bradhe has quit [Remote host closed the connection]
pskosinski has quit [Ping timeout: 264 seconds]
mengu has quit [Quit: Konversation terminated!]
axl_ has quit [Quit: axl_]
locriani has joined #ruby
alvaro_o_ has joined #ruby
amacgregor_osx has joined #ruby
havenn has quit [Remote host closed the connection]
havenn has joined #ruby
pac1 has joined #ruby
havenn has quit [Read error: Connection reset by peer]
wroathe has joined #ruby
c0rn has quit [Quit: Computer has gone to sleep.]
alvaro_o has quit [Ping timeout: 256 seconds]
havenn has joined #ruby
jaygen has joined #ruby
RandyInLA has quit [Quit: RandyInLA]
hotovson has quit [Remote host closed the connection]
savage- has joined #ruby
hotovson has joined #ruby
ilyam has joined #ruby
theRoUS has joined #ruby
sn0wb1rd has quit [Quit: sn0wb1rd]
Chryson has joined #ruby
hotovson has quit [Ping timeout: 246 seconds]
rellin has quit [Ping timeout: 245 seconds]
banjara has joined #ruby
tjbiddle_ has joined #ruby
tjbiddle_ has quit [Client Quit]
ibash has joined #ruby
ibash has quit [Client Quit]
icole has joined #ruby
tjbiddle has quit [Ping timeout: 246 seconds]
icole has quit [Remote host closed the connection]
LouisGB has quit [Ping timeout: 260 seconds]
wargasm has left #ruby [#ruby]
bradhe has joined #ruby
apok_ has joined #ruby
Hanmac1 has joined #ruby
philcrissman has joined #ruby
sailias has joined #ruby
Jasko has quit [Read error: Connection reset by peer]
sn0wb1rd has joined #ruby
Jasko has joined #ruby
apok has quit [Ping timeout: 240 seconds]
apok_ is now known as apok
sailias has quit [Client Quit]
philcrissman has quit [Remote host closed the connection]
Hanmac has quit [Ping timeout: 276 seconds]
bricker has quit [Ping timeout: 260 seconds]
slainer68 has quit [Remote host closed the connection]
jenrzzz has joined #ruby
srji has joined #ruby
bradhe has quit [Ping timeout: 246 seconds]
ltsstar has quit [Quit: ltsstar]
wroathe has quit [Ping timeout: 268 seconds]
catepillar has quit [Quit: leaving]
nitti has joined #ruby
fantomax has quit [Remote host closed the connection]
jonan has joined #ruby
jonan has quit [Client Quit]
nitti has quit [Ping timeout: 240 seconds]
alvaro_o_ has quit [Quit: Ex-Chat]
chessguy has joined #ruby
Ruler_Of_Heaven_ has joined #ruby
pipopopo has quit [Ping timeout: 252 seconds]
QKO has quit [Ping timeout: 252 seconds]
stkowski has quit [Quit: stkowski]
n_blownapart has quit [Remote host closed the connection]
QKO has joined #ruby
pu22l3r has joined #ruby
pu22l3r has quit [Remote host closed the connection]
ephemerian has quit [Quit: Leaving.]
friskd has joined #ruby
pu22l3r has joined #ruby
Ruler_Of_Heaven_ has quit [Ping timeout: 246 seconds]
fuho has quit [Ping timeout: 276 seconds]
pipopopo has joined #ruby
daniel_-_ has quit [Ping timeout: 252 seconds]
pu22l3r has quit [Remote host closed the connection]
fixl has joined #ruby
amacgregor_osx has quit [Read error: Connection reset by peer]
aetcore has joined #ruby
<OliverEiman> arietis i find vim to be really good
<OliverEiman> my coworker has a set of dotfiles that make cim into something special
kalleth has quit [Read error: Connection reset by peer]
kalleth_ has joined #ruby
idzuna has quit [Remote host closed the connection]
amacgregor_osx has joined #ruby
vickaita has joined #ruby
pu22l3r has joined #ruby
pu22l3r has quit [Remote host closed the connection]
slainer68 has joined #ruby
cburyta has joined #ruby
max_dev has joined #ruby
theRoUS has quit [Ping timeout: 260 seconds]
slainer68 has quit [Ping timeout: 246 seconds]
ryanf has quit [Quit: leaving]
L0L0L0L0L has quit [Ping timeout: 256 seconds]
max_dev has quit [Quit: Leaving]
max_dev has joined #ruby
cburyta has quit [Remote host closed the connection]
pu22l3r has joined #ruby
fuho has joined #ruby
catepillar has joined #ruby
jenrzzz has quit [Ping timeout: 252 seconds]
cburyta has joined #ruby
Jasko has quit [Read error: Connection reset by peer]
Jasko has joined #ruby
LouisGB has joined #ruby
Amirh has joined #ruby
amacgregor_osx has quit [Read error: Operation timed out]
Tearan has joined #ruby
fuho has quit [Ping timeout: 276 seconds]
max_dev has quit [Quit: Leaving]
ewag has joined #ruby
amacgregor_osx has joined #ruby
ryanf has joined #ruby
apok has quit [Quit: apok]
tpe11etier has joined #ruby
THE_GFR|WORK has quit [Read error: No route to host]
Tearan has quit [Quit: Sleepy Badger....]
steg132 has joined #ruby
fuho has joined #ruby
bigmac is now known as i8igmac
sepp2k1 has quit [Ping timeout: 240 seconds]
sepp2k has joined #ruby
pu22l3r has quit [Remote host closed the connection]
thinkdevcode has joined #ruby
<idletom> how can I loop over two strings at the same time to compare the chars?
mahmoudimus has quit [Quit: Computer has gone to sleep.]
i8igmac has quit [Ping timeout: 245 seconds]
Monie has quit [Ping timeout: 260 seconds]
jaygen has quit [Remote host closed the connection]
nitti has joined #ruby
i8igmac has joined #ruby
<ryanf> idletom: if you don't need to advance your position within each string independently, you can use .chars with zip
Connecti0n has joined #ruby
<ryanf> otherwise you can make them into enumerators (my_enum = str.each_char.to_enum) and then advance them with my_enum.next
vickaita has quit [Ping timeout: 246 seconds]
nitti has quit [Ping timeout: 240 seconds]
radic has quit [Disconnected by services]
radic_ has joined #ruby
rakm has joined #ruby
rakm has quit [Max SendQ exceeded]
pcarrier_ has joined #ruby
rakm has joined #ruby
rakm has quit [Max SendQ exceeded]
pcarrier has quit []
pcarrier_ is now known as pcarrier
rakm has joined #ruby
rakm has quit [Max SendQ exceeded]
rakm has joined #ruby
rakm has quit [Max SendQ exceeded]
rakm has joined #ruby
rakm has quit [Max SendQ exceeded]
<idletom> ryanf i'm not sure how i would do .chars with zip?
rakm has joined #ruby
rakm has quit [Max SendQ exceeded]
rakm has joined #ruby
rakm has quit [Max SendQ exceeded]
rakm has joined #ruby
rakm has quit [Max SendQ exceeded]
rakm has joined #ruby
rakm has quit [Max SendQ exceeded]
rakm has joined #ruby
carlyle has joined #ruby
jaygen has joined #ruby
carlyle has quit [Remote host closed the connection]
Orcris has joined #ruby
BoomCow has quit [Quit: Leaving]
Vert has quit [Ping timeout: 252 seconds]
malcolmva has joined #ruby
ryanf has quit [Ping timeout: 246 seconds]
jaygen has quit [Remote host closed the connection]
jaygen has joined #ruby
Connecti0n has quit [Read error: Connection reset by peer]
jaygen has quit [Ping timeout: 252 seconds]
crackfu has joined #ruby
davidcelis has joined #ruby
Amirh has quit [Quit: Leaving.]
kil0byte has joined #ruby
rohit has joined #ruby
banjara has quit [Quit: Leaving.]
Mon_Ouie has quit [Ping timeout: 240 seconds]
Mon_Ouie has joined #ruby
fixl has quit [Quit: KVIrc 4.3.1 Aria http://www.kvirc.net/]
freakazoid0223 has quit [Quit: Leaving]
chessguy has quit [Remote host closed the connection]
margle has quit [Quit: Computer has gone to sleep.]
ananthakumaran has joined #ruby
pu22l3r has joined #ruby
fixl has joined #ruby
LouisGB has quit [Ping timeout: 240 seconds]
tpe11etier has quit [Quit: tpe11etier]
cpruitt has quit [Quit: cpruitt]
<reactormonk> what lib to use to render haml templates?
pac1 has quit [Quit: I got it one line of code at a time]
kryptek_ has joined #ruby
undersc0re97 has quit [Read error: Connection reset by peer]
undersc0re97 has joined #ruby
G has quit [Ping timeout: 260 seconds]
pu22l3r has quit [Remote host closed the connection]
thinkdevcode has quit [Remote host closed the connection]
nitti has joined #ruby
radic has joined #ruby
aetcore_ has joined #ruby
Guest10501 has joined #ruby
shiin has quit [Quit: Computer has gone to sleep.]
becom33 has joined #ruby
nitti has quit [Ping timeout: 246 seconds]
amacgregor_osx has quit [Read error: Connection reset by peer]
aetcore has quit [Ping timeout: 246 seconds]
radic_ has quit [Ping timeout: 255 seconds]
gauravag has joined #ruby
Guest10501 has quit [Read error: Connection reset by peer]
ninegrid has quit [Remote host closed the connection]
ninegrid has joined #ruby
cdehaan has joined #ruby
amacgregor_osx has joined #ruby
<becom33> I have C programe and I want to it with a ruby application and stop in the middle of it like we do in Ctrl+c
<becom33> anyone ?
RandyInLA has joined #ruby
mercwithamouth has quit [Quit: Lost terminal]
<rohit> reactormonk, What exactly are you trying to do?
<rohit> reactormonk, Ah I didn't know haml didn't have any built in way to render haml files. Try https://github.com/jlong/serve it will start a http server from any directory and will render haml files (among many others)
<rohit> reactormonk, Also this stackoverflow answer might be helpful http://stackoverflow.com/a/1400363
dakine has quit [Quit: Leaving]
dakine has joined #ruby
sepp2k has quit [Read error: Connection reset by peer]
<array> reactormonk: did you (or anyone else that is available) have any suggestions to wire response.body into ProgressBar? http://privatepaste.com/f4927b13fb/rlang
swex has joined #ruby
<array> i'm just looking for a way to print the progress bar on the cli while the file is streaming to the client
hsbt_away is now known as hsbt
<array> (happy to read any relevant documentation if suggested!)
aetcore has joined #ruby
<array> this is how a similar script in perl is achieving it (if it helps to explain what i'm trying to do): http://privatepaste.com/968b7f7b2b/pver
cdehaan has quit [Quit: cdehaan]
aetcore_ has quit [Ping timeout: 260 seconds]
charliesome has joined #ruby
skaczor has quit [Remote host closed the connection]
<becom33> anyone for me ?
max_dev has joined #ruby
<arietis> is there any implementation of list in ruby?
max_dev has quit [Client Quit]
<arietis> or actually, which one is closest to generic list
max_develop has joined #ruby
<arietis> i mean data type
G has joined #ruby
Orcris has quit [Ping timeout: 246 seconds]
max_develop has quit [Read error: Connection reset by peer]
cakehero has joined #ruby
<heftig> arietis: Array
<gauravag> arietis: The ruby arrays can pretty much be used as lists, stacks and queues..
coderhut has joined #ruby
<heftig> or deques
irclog0 has quit [Remote host closed the connection]
<coderhut> hello all. i would like to know in following code that what this code 'r:ISO-8859-15:UTF-8' is doing. the full line of code is: File.open(File.join(WEBROOT, 'files', 'Week01-2.csv'), 'r:ISO-8859-15:UTF-8')
ryanf has joined #ruby
jeremywen has joined #ruby
<heftig> means open the file in read mode, transparently reencoding from iso-8859-15 to utf-8
<RandyInLA> and the File.join() part is just concatenating together the full path to the file
Toru has quit [Remote host closed the connection]
hsbt has quit [Ping timeout: 246 seconds]
ryanf has quit [Ping timeout: 260 seconds]
mahmoudimus has joined #ruby
<coderhut> @heftig thanks dear
Jasko has quit [Read error: Connection reset by peer]
Jasko has joined #ruby
<coderhut> @RandyInLA thanks too
amd has quit [Quit: amd]
hsbt_away has joined #ruby
hsbt_away is now known as hsbt
Grieg has joined #ruby
Grieg has quit [Changing host]
Grieg has joined #ruby
hsbt is now known as hsbt_away
hsbt_away is now known as hsbt
Connecti0n has joined #ruby
aharris6 has joined #ruby
Bosox20051 has joined #ruby
<aharris6> hello, can anyone point in the correct direction regarding adding the ability for a user to choose to add additional instances of a specific field on a form
<aharris6> for instance, there is file upload field, and if they want to upload a second file, they can click "attach another file" and a second field will appear
cakehero has quit [Quit: Leaving...]
<aharris6> right now I render field with:
<aharris6> <%= f.fields_for :attachments do |a| %>
<aharris6> <%= a.file_field :file %>
<aharris6> <% end %>
thinkdevcode has joined #ruby
<aharris6> and would like to repeat that block, but if i do it with javascript, the name and id on the <input> do not increase
<aharris6> *after the page is rendered
nari_ has joined #ruby
hsbt is now known as hsbt_away
hsbt_away is now known as hsbt
<gauravag> aharris6: though this is not relevant to ruby, a tangential answer to the question would be nested_fields by Ryan Bates
<aharris6> oh, should i be in a rails room?
xpen has joined #ruby
jaygen has joined #ruby
<gauravag> I would argue that the question should rather belong in a rails room.. try #ror
<bigmcq77> #rubyonrails is the correct chan, I think
<aharris6> I see. ok sorry for my confusion, thanks for the help, and I will take further requests to #rubyonrails
hcs has joined #ruby
cantonic_ has joined #ruby
cantonic has quit [Ping timeout: 268 seconds]
cantonic_ is now known as cantonic
<coderhut> hello all, i am using php system command to do some action in ruby file. but while looping in ruby file there are utf8 charachters which are working fine if i call ruby file directly but when i call ruby file using php system, ruby loop stops at first occurance of utf8 character. though i beleive its php problem but can any ruby expert also help?
nitti has joined #ruby
jaygen has quit [Remote host closed the connection]
moshee has quit [Ping timeout: 252 seconds]
moshee has joined #ruby
moshee has quit [Changing host]
moshee has joined #ruby
nitti has quit [Ping timeout: 246 seconds]
jaygen has joined #ruby
rohit has quit [Quit: Leaving]
ryanf has joined #ruby
kil0byte has quit [Ping timeout: 246 seconds]
<charliesome> coderhut: do you have any example code?
<heftig> coderhut: add a comment "# encoding: utf-8" at the start of the file (first line, or second line if the first is a shebang #!)
<coderhut> charliesome: yes here it is
<coderhut> file = File.open(File.join(WEBROOT, 'files', 'Week01-2.csv'), 'r:ISO-8859-15:UTF-8') CSV.foreach(file) do |row| puts row[4] end
<coderhut> row[4] is containing utf8 characters
medik has quit [Quit: medik has no reason]
<charliesome> try getting rid of the :ISO-8859-15
<heftig> no
<heftig> just add the magic comment
<charliesome> heftig: doesn't that only affect source file encoding?
jaygen has quit [Ping timeout: 252 seconds]
<gauravag> I never really understood the magic comments
<charliesome> if the file contains utf-8 chars, treating it as iso-8559-15 isn't going to help
<heftig> charliesome: it also changes the default external encoding
<charliesome> and the iso-8859-15 mode should override the default external encoding, right?
<heftig> yeah, but that's not the issue
<heftig> the issue is STDOUT
<heftig> notice calling the ruby file directly works
<charliesome> ah
<charliesome> my b.
<heftig> if ruby is run on an utf8 terminal, it sets the default encoding to utf-8
<heftig> php system isn't a terminal
<heftig> so default encoding is set to US-ASCII
thinkdevcode has quit [Remote host closed the connection]
<coderhut> hefitg: dear i added the comment but it didnt work. however I didnt get the word shebang
<heftig> yeah, i just noticed
<heftig> coderhut: run ruby using -KU
cburyta has quit [Remote host closed the connection]
CaptainJet has quit []
<coderhut> ok
<heftig> charliesome: i was wrong, the comment doesn't affect the external encoding, but that's still the issue. so -KU should help
<charliesome> or manually setting Encoding.default_external
khakimov has quit [Quit: Computer has gone to sleep.]
<coderhut> heftig: did you suggest to use -KU in terminal window or in php system command?
Ry_ has joined #ruby
savage- has quit [Quit: savage-]
<heftig> system
Connecti0n has quit [Quit: Leaving]
<heftig> system("ruby -KU foobar.rb")
Ry__ has quit [Read error: Connection reset by peer]
<coderhut> ok thanks
<coderhut> heftig: awesome!!!
<coderhut> it worked
<coderhut> thanks a lot
hamed_r has joined #ruby
<array> (apologies for the repeat).. hoping someone can chime in with this: http://privatepaste.com/f6479e618f/rlang - i'm just looking for a way to print the progress bar on the cli while the file is streaming to the client (response.body)
SmoothSage has joined #ruby
<array> i'm not sure if what i'm trying to achieve is possible with WEBrick though
gauravag has left #ruby ["Leaving"]
gauravag has joined #ruby
gauravag has quit [Remote host closed the connection]
amacgregor_osx has quit [Ping timeout: 252 seconds]
pvh has joined #ruby
nomenkun_ has joined #ruby
nomenkun has quit [Ping timeout: 260 seconds]
mmikeym has quit [Ping timeout: 264 seconds]
amacgregor_osx has joined #ruby
hsbt is now known as hsbt_away
hsbt_away is now known as hsbt
idletom has quit [Remote host closed the connection]
SilSila has joined #ruby
dakine has quit [Quit: Leaving]
wroathe has joined #ruby
Trioke has joined #ruby
jgilbert has joined #ruby
<havenn> array: WEBrick's Rack adapter buffers all output, you might have better luck with Puma, Thin or Rainbows! Maybe check out Rack::Stream gem: https://github.com/intridea/rack-stream
<SilSila> friends...i just started learning ruby in windows 7....the installation is successful...i installed only the ruby...and i tried with puts "hello world" its fine... output is Hello World => nil --- so this output is correct...but i executed in the interactive irb...but how can i get this output in the web browser...and being an oracle database administrator i dont want to connect this ruby db
<SilSila> programming with any other database other than oracle....so..i will learn later of connecting the db...
aharris6 has left #ruby ["Leaving..."]
<array> havenn: thank you very much!
mohanmcgeek has joined #ruby
aharris6 has joined #ruby
areil has joined #ruby
<SilSila> so..is it must to install rails to get the ruby program outputs in a web browsers?
<mohanmcgeek> Hey people, quick question. Is there a way to use class variables without the double-at-the-reds?
cburyta has joined #ruby
DarkFoxDK has quit [Read error: Operation timed out]
Debolaz has quit [Read error: Operation timed out]
DarkFoxDK has joined #ruby
<aharris6> test
tekacs has quit [Read error: Operation timed out]
hsbt is now known as hsbt_away
hsbt_away is now known as hsbt
<havenn> SilSila: There are many web frameworks in Ruby. Rails, Sinatra, Camping, Renee, Cuba, etc. Or you can just use Rack straight.
<havenn> SilSila: Sinatra is lovely: http://www.sinatrarb.com/
mahmoudimus has quit [Quit: Computer has gone to sleep.]
<SilSila> havenn: thanks...i will check it ..whether it support win7 64 bit or not...
<SilSila> havenn: so can i use oracle as the backend of ruby is it?
srji has quit [Ping timeout: 244 seconds]
Debolaz has joined #ruby
<aharris6> Hello all, I am attempt to use nested_forms, but when I add "<%= f.link_to_add "Add an attachment", :attachments %>
<aharris6> " to my form, I get the error "Invalid association. Make sure that accepts_nested_attributes_for is used for :attachments association.". However, I have "accepts_nested_attributes_for :attachments" set in my model. When I remove that line, everything on form works as expected. Any ideas?
<havenn> SilSila: Sure. One nice option that works well with Sinatra is Sequal: http://sequel.rubyforge.org/
Hamed-R has joined #ruby
Hamed-R has quit [Remote host closed the connection]
tekacs has joined #ruby
hamed_r has quit [Remote host closed the connection]
hsbt has quit [Ping timeout: 260 seconds]
iamjarvo has quit [Quit: Computer has gone to sleep.]
<mohanmcgeek> aharris6: Do you have has_many :attachments in your model?
rippa has joined #ruby
hsbt_away has joined #ruby
cburyta has quit [Ping timeout: 264 seconds]
<aharris6> mohanmcgeek: yes, I have "has_many :attachments, :dependent => :destroy "
psycho_one has joined #ruby
Bosox20051 has quit [Quit: Leaving]
rakl has quit [Quit: sleeping]
Trioke has quit [Ping timeout: 246 seconds]
hsbt_away is now known as hsbt
Trioke has joined #ruby
nitti has joined #ruby
rakl has joined #ruby
hsbt has quit [Ping timeout: 252 seconds]
Bosox20051 has joined #ruby
nitti has quit [Ping timeout: 240 seconds]
hsbt_away has joined #ruby
hsbt_away is now known as hsbt
areil_ has joined #ruby
Bosma has joined #ruby
<coderhut> heftig: can you please also tell me what -KU means? i searched but couldnt find any description
areil has quit [Ping timeout: 246 seconds]
hsbt has quit [Ping timeout: 252 seconds]
<heftig> coderhut: man ruby, it's the -K option
<coderhut> ok great...thanks again
werdnativ has quit [Quit: FAMOUS_LAST_WORDS is nil]
capsule_toy has quit []
<Boohbah> hi! please help to fix my spaghetti code, thanks! http://pastebin.com/JP1ZfJ1z
medik has joined #ruby
<heftig> go use OptionParser
hsbt_away has joined #ruby
hsbt_away is now known as hsbt
<Boohbah> heftig: tried it, it can't handle arguments in the form '-eEn'
<TTilus> Boohbah: tried trollop?
<TTilus> (dont remember if it does combined opts)
<Boohbah> and optionparser cannot handle the case 'echo.rb -e something -e'
<TTilus> but it is allround nicer han optionparse ithink
<Boohbah> the last -e is not an option, but should be echoed
<Boohbah> TTilus: i read about trollop but have not tried it
<Boohbah> the parts of my script i think could be better are the octal and hex handling parts, the global varaiables, and the manual loop index handling
Monie has joined #ruby
rakl has quit [Quit: sleeping]
* TTilus has used trollop exclusively since first tried it
<Boohbah> i could not figure out a better way to single step through the characters besides manually incrementing my iterator
<coderhut> heftig: disturbing again... now again ruby code is working fine if i run it independently when i use this line of code category_id = Category.find_or_create_by_name(name: 'Uncategorized').id but not working using php system command :(
<TTilus> php?!
fantazo has joined #ruby
<TTilus> "not working" is pretty vague :)
tjbiddle has joined #ruby
hsbt has quit [Ping timeout: 245 seconds]
<coderhut> TTilus: i am calling ruby from php system command. ruby works fine when i run it in terminal window independently but its not working when i call this ruby file using php system command
<coderhut> and the ruby command is category_id = Category.find_or_create_by_name(name: 'Uncategorized').id
<yaymukund> and what's the php system command?
wroathe has quit [Ping timeout: 265 seconds]
hsbt_away has joined #ruby
<TTilus> coderhut: you still did not give any more info :(
<coderhut> yaymukund: $reply = system($cmd = "ruby -KU $rbFile ", $status);
<Boohbah> yaymukund: exec("ls");
rakl has joined #ruby
hotovson_ has joined #ruby
<Boohbah> coderhut: you are executing ruby from php???
* Boohbah ???
<coderhut> TTilus: well the php system command runs fine if i remove that ruby code from ruby file but it stops when i include it
<TTilus> coderhut: pastie the whole ruby file, snippet from terminal session where it works
<coderhut> Boohbah: yes
<Boohbah> why?
<coderhut> Boohabah: speed issue. php hangs while ruby working fast
<TTilus> coderhut: yank php alltogether
<Boohbah> coderhut: did you try php exec() ?
hsbt_away has quit [Ping timeout: 265 seconds]
<TTilus> coderhut: what do php logs say?
<TTilus> coderhut: any errors?
<coderhut> TTilus: here is ruby code
Erfankam has joined #ruby
<coderhut> require 'csv' require 'mysql2' require 'active_record' WEBROOT = File.join(File.dirname(__FILE__), '..', '..', 'app', 'webroot') ActiveRecord::Base.establish_connection( adapter: 'mysql2', host: '127.0.0.1', username: 'root', password: '', port: 3305, database: 'abc') class Category < ActiveRecord::Base; self.table_name = 'category'; end; i = 0 file = File.open(File.join(WEBROOT, 'files', 'Week01-2.csv'), 'r:ISO-8859
<TTilus> coderhut: do not paste
hsbt_away has joined #ruby
<TTilus> coderhut: i said pastie
<coderhut> sorry not sure what it means
<TTilus> coderhut: pastie.org
<coderhut> ok
<TTilus> coderhut: that and github gists are handy for sharing code snippets
hcs has quit [Ping timeout: 252 seconds]
<coderhut> TTilus: great here is the linke then http://pastie.org/5354846
locriani_ has joined #ruby
<coderhut> if i remove line 28 and 30 it works using php system call otherwise not
mohanmcgeek has quit [Ping timeout: 248 seconds]
<TTilus> coderhut: loadpath might actjally differ between shell and php system, it might be require that fails
Erfankam has quit [Read error: Connection reset by peer]
hsbt_away has quit [Ping timeout: 245 seconds]
rakl has quit [Quit: gone]
<coderhut> TTilus: well i think it might not be the issue as all code runs and it prints row[3] also if i use puts row[3]
locriani has quit [Ping timeout: 252 seconds]
<TTilus> coderhut: ok
rakm has quit [Quit: ["Textual IRC Client: www.textualapp.com"]]
Erfankam has joined #ruby
areil_ has quit []
joshman_ has joined #ruby
<TTilus> coderhut: checked php logs already?
hsbt_away has joined #ruby
savage- has joined #ruby
<TTilus> coderhut: and in system cmd redirect stderr to stdout to see it in output
Grieg has quit [Ping timeout: 268 seconds]
<TTilus> coderhut: why did you need thet php?
<SilSila> friends...is anybody using rubyonrails,sinatra etc in windows 7?
<coderhut> TTilus: ok i never did that stderr/stdout before but let me try that. whole website is in php already thats why running ruby from php just for a specific purpose
<TTilus> coderhut: purpose is a kind of import i see
<coderhut> yes you are right
<coderhut> csv file is huge and php stucks in browser whereas ruby working fine
<havenn> SilSila: Yeah, they both work fine once properly installed. Can be a pain so you might want to try: http://railsinstaller.org/
<TTilus> coderhut: wouldnt a simple sinatra app do the thing and youd be able to link it directly?
locriani_ has quit [Read error: Connection reset by peer]
<coderhut> sorry new to ruby and never did work on sinatra app before
locriani has joined #ruby
<TTilus> coderhut: you can make a tiny single file webapp using it
lenovodroid has joined #ruby
crackfu has quit [Remote host closed the connection]
<SilSila> havenn: already i have installed the ruby alone...still i can installed this package installer...will it remove ruby and once again it will install or i have to remove manually the previous ruby?
<coderhut> TTilus: hmmm...great
Monie has quit [Ping timeout: 255 seconds]
und3f has joined #ruby
locriani has quit [Read error: Connection reset by peer]
joshman_ has quit [Quit: Computer has gone to sleep.]
<TTilus> coderhut: then again if you need auth you might be better off just the way you are now doing it
locriani has joined #ruby
<havenn> SilSila: The package installer should leave existing Rubies in place. Allows you to switch to the one you want. I'd just leave the existing one and run the installer on top of it.
JeanMertz has joined #ruby
Zolrath has joined #ruby
hamed_r has joined #ruby
aharris6 has quit [Remote host closed the connection]
aharris6 has joined #ruby
pyx has quit [Quit: Leaving]
<SilSila> havenn: thanks...let me install it...
SilSila has left #ruby [#ruby]
NsOmNiAc has quit [Ping timeout: 264 seconds]
<coderhut> TTilus: yes auth is the issue and thats why using this method
pkrnj has quit [Quit: Textual IRC Client: www.textualapp.com]
srji has joined #ruby
cburyta has joined #ruby
Tuxist has joined #ruby
areil has joined #ruby
lenovodroid has quit [Quit: AndroIRC - Android IRC Client ( http://www.androirc.com )]
Erfankam has quit [Max SendQ exceeded]
cburyta has quit [Ping timeout: 240 seconds]
mohanmcgeek has joined #ruby
arkiver has joined #ruby
qwerxy has joined #ruby
Erfankam has joined #ruby
tjbiddle has quit [Quit: tjbiddle]
g-ram has quit [Quit: Computer has gone to sleep.]
answer_42 has joined #ruby
nitti has joined #ruby
arturaz has joined #ruby
aharris6 has quit [Remote host closed the connection]
h8R has joined #ruby
nitti has quit [Ping timeout: 240 seconds]
yaymukund has quit [Ping timeout: 246 seconds]
gauravag has joined #ruby
Erfankam has quit [Max SendQ exceeded]
aharris6 has joined #ruby
aces1up has quit []
hsbt_away is now known as hsbt
Erfankam has joined #ruby
aharris6 has quit [Client Quit]
aharris6 has joined #ruby
aharris6 has left #ruby [#ruby]
mohanmcgeek has quit [*.net *.split]
DarkFoxDK has quit [*.net *.split]
amacgregor_osx has quit [*.net *.split]
fantazo has quit [*.net *.split]
undersc0re97 has quit [*.net *.split]
charliesome has quit [*.net *.split]
ananthakumaran has quit [*.net *.split]
tommyvyo has quit [*.net *.split]
otters has quit [*.net *.split]
thone has quit [*.net *.split]
unXus has quit [*.net *.split]
skcin7 has quit [*.net *.split]
ViperMaul|_ has quit [*.net *.split]
Guest26813 has quit [*.net *.split]
rman has quit [*.net *.split]
chendo has quit [*.net *.split]
lucaspiller_ has quit [*.net *.split]
Katniss has quit [*.net *.split]
gregorg has quit [*.net *.split]
jphpsf has quit [*.net *.split]
Drager has quit [*.net *.split]
devdazed has quit [*.net *.split]
telling has quit [*.net *.split]
dkannan has quit [*.net *.split]
Nowaker has quit [*.net *.split]
tomku has quit [*.net *.split]
joast has quit [*.net *.split]
siefca has quit [*.net *.split]
TTilus has quit [*.net *.split]
aharris6 has joined #ruby
Jasko has quit [Read error: Connection reset by peer]
Jasko has joined #ruby
monkegjinni has joined #ruby
mohanmcgeek has joined #ruby
fantazo has joined #ruby
DarkFoxDK has joined #ruby
charliesome has joined #ruby
amacgregor_osx has joined #ruby
tommyvyo has joined #ruby
ananthakumaran has joined #ruby
otters has joined #ruby
thone has joined #ruby
siefca has joined #ruby
ViperMaul|_ has joined #ruby
skcin7 has joined #ruby
Guest26813 has joined #ruby
lucaspiller_ has joined #ruby
undersc0re97 has joined #ruby
Katniss has joined #ruby
rman has joined #ruby
jphpsf has joined #ruby
chendo has joined #ruby
unXus has joined #ruby
dkannan has joined #ruby
telling has joined #ruby
gregorg has joined #ruby
devdazed has joined #ruby
Nowaker has joined #ruby
Drager has joined #ruby
joast has joined #ruby
tomku has joined #ruby
TTilus has joined #ruby
[Neurotic] has quit [Excess Flood]
pcboy_ has quit [Read error: Connection reset by peer]
pcboy_ has joined #ruby
srji has quit [Ping timeout: 244 seconds]
fantomax has joined #ruby
[Neurotic] has joined #ruby
fantomax has quit [Client Quit]
pcboy_ has quit [Ping timeout: 246 seconds]
pcboy_ has joined #ruby
hsbt has quit [Ping timeout: 240 seconds]
BoomCow has joined #ruby
hsbt has joined #ruby
arturaz has quit [Ping timeout: 268 seconds]
nilg has quit [Read error: Connection reset by peer]
slainer68 has joined #ruby
Beoran__ has joined #ruby
Zai00 has joined #ruby
rippa has quit [Ping timeout: 260 seconds]
clj_newb has joined #ruby
Beoran_ has quit [Read error: Operation timed out]
hamed_r has quit [Ping timeout: 246 seconds]
slainer68 has quit [Ping timeout: 246 seconds]
ananthakumaran1 has joined #ruby
ananthakumaran has quit [Ping timeout: 252 seconds]
ndrei has joined #ruby
nari_ has quit [Ping timeout: 260 seconds]
nilg has joined #ruby
mohanmcgeek has quit [Ping timeout: 252 seconds]
Y_Ichiro has quit [Ping timeout: 252 seconds]
srji has joined #ruby
Hanmac1 has quit [Quit: Leaving.]
Hanmac has joined #ruby
Erfankam has quit [Read error: Connection reset by peer]
coderhut has quit [Quit: Page closed]
yaymukund has joined #ruby
joeycarmello has joined #ruby
Noname has joined #ruby
srji has quit [Ping timeout: 244 seconds]
srji has joined #ruby
srji has quit [Client Quit]
cburyta has joined #ruby
Chryson has quit [Quit: Leaving]
pcboy_ has quit [Read error: Connection reset by peer]
pcboy_ has joined #ruby
ilyam has quit [Quit: ilyam]
rohit has joined #ruby
rellin has joined #ruby
rellin has quit [Read error: Connection reset by peer]
cburyta has quit [Ping timeout: 240 seconds]
ananthakumaran1 has quit [Read error: No route to host]
ananthakumaran has joined #ruby
rellin has joined #ruby
pcboy_ has quit [Ping timeout: 260 seconds]
bradhe has joined #ruby
pcboy_ has joined #ruby
ryanf has quit [Ping timeout: 268 seconds]
arturaz has joined #ruby
pcboy_ has quit [Read error: Connection reset by peer]
nitti has joined #ruby
lkba has joined #ruby
clj_newb has quit [Ping timeout: 260 seconds]
pcboy_ has joined #ruby
Virunga has joined #ruby
nitti has quit [Ping timeout: 246 seconds]
bradhe has quit [Remote host closed the connection]
pcboy_ has quit [Ping timeout: 245 seconds]
beneggett has quit [Ping timeout: 264 seconds]
pcboy_ has joined #ruby
BoomCow has quit [Quit: Leaving]
BoomCow has joined #ruby
beneggett has joined #ruby
hamed_r has joined #ruby
etehtsea has joined #ruby
etehtsea is now known as Guest59243
Dreamer3 has quit [Ping timeout: 246 seconds]
Dreamer3 has joined #ruby
kiyoura has quit [Ping timeout: 248 seconds]
Noname has quit [Quit: Wychodzi]
savage- has quit [Quit: savage-]
joeycarmello has quit [Remote host closed the connection]
blacktulip has joined #ruby
aharris6 has quit [Remote host closed the connection]
pavilionXP has quit [Quit: Forget progress by proxy. Land on your own moon.]
Guest59243 is now known as etehtsea
Bosox20051 has quit [Quit: Leaving]
kryl99_ has joined #ruby
nomenkun_ is now known as nomenkun
tjbiddle has joined #ruby
tjbiddle has quit [Client Quit]
clj_newb has joined #ruby
hotovson_ has quit [Remote host closed the connection]
statarb3 has joined #ruby
statarb3 has quit [Changing host]
statarb3 has joined #ruby
eataix has joined #ruby
Neomex has joined #ruby
Neomex has quit [Remote host closed the connection]
kryl99_ has quit [Quit: Colloquy for iPad - http://colloquy.mobi]
apeiros_ has joined #ruby
tjbiddle has joined #ruby
fyolnish has joined #ruby
tjbiddle has quit [Client Quit]
fantazo has quit [Remote host closed the connection]
rellin has quit [Ping timeout: 276 seconds]
wallerdev has quit [Quit: wallerdev]
vjt has quit [Ping timeout: 272 seconds]
Hien has quit [Ping timeout: 272 seconds]
pavilionXP has joined #ruby
arkiver has quit [Quit: Leaving]
i8igmac has quit [Quit: Leaving]
nitti has joined #ruby
Trioke has quit [Ping timeout: 260 seconds]
niklasb has joined #ruby
clj_newb has quit [Ping timeout: 260 seconds]
nitti has quit [Ping timeout: 246 seconds]
joeycarmello has joined #ruby
niklasb has quit [Ping timeout: 268 seconds]
apeiros_ has quit [Ping timeout: 255 seconds]
Slivka has joined #ruby
Hien has joined #ruby
apeiros_ has joined #ruby
tjbiddle has joined #ruby
lkba has quit [Ping timeout: 276 seconds]
amacgregor_osx has quit [Ping timeout: 252 seconds]
apeiros has joined #ruby
bradhe has joined #ruby
apeiros_ has quit [Ping timeout: 265 seconds]
statarb3 has quit [Ping timeout: 240 seconds]
khakimov has joined #ruby
amacgregor_osx has joined #ruby
bradhe has quit [Ping timeout: 246 seconds]
rohit has quit [Quit: Leaving]
joeycarmello has quit [Ping timeout: 255 seconds]
jslowe has joined #ruby
arturaz has quit [Remote host closed the connection]
tjbiddle has quit [Quit: tjbiddle]
roadt has quit [Ping timeout: 246 seconds]
joeycarmello has joined #ruby
jgrevich has quit [Quit: jgrevich]
roadt has joined #ruby
khakimov has quit [Quit: Computer has gone to sleep.]
timonv has joined #ruby
gauravag has quit [Ping timeout: 246 seconds]
Jellyg00se has quit [Ping timeout: 246 seconds]
zaki[] has quit [Ping timeout: 255 seconds]
ananthakumaran has quit [Ping timeout: 260 seconds]
F1skr has joined #ruby
EyesIsMine has joined #ruby
coderhs has joined #ruby
Jasko has quit [Read error: Connection reset by peer]
Jasko has joined #ruby
<coderhs> hi there, was wondering the date in which ruby was first released on made public
gauravag has joined #ruby
<coderhs> rcheets: thank you
Y_Ichiro has joined #ruby
Y_Ichiro has quit [Changing host]
Y_Ichiro has joined #ruby
daniel_-_ has joined #ruby
<rcsheets> np, it was rather easy to find.
<coderhs> its mentioned there ruby is 20 years old in 2013
Y_Ichiro has quit [Read error: Connection reset by peer]
<coderhs> ruby was 3 years in beta?
ananthakumaran has joined #ruby
gauravag has quit [Ping timeout: 248 seconds]
Jellyg00se has joined #ruby
gauravag has joined #ruby
stayarrr has joined #ruby
zaki[] has joined #ruby
cburyta has joined #ruby
<rcsheets> The full history is explained pretty well the Wikipedia article, I think.
<rcsheets> s/the/by the/
<rcsheets> I have no first-hand knowledge of it, though.
cburyta has quit [Ping timeout: 246 seconds]
niklasb has joined #ruby
<coderhs> ya, I just read through.. it seems feb 24th 1993 was the year in which the name ruby was decided...
<coderhs> but then no ruby code was written
samuelj has joined #ruby
<samuelj> Hey guys, anyone worked with import.io before? Or with the comet d protocol?
<samuelj> Are there any good ruby libraries for comet d?
amacgregor_osx has quit [Read error: Connection reset by peer]
Grieg has joined #ruby
Grieg has quit [Changing host]
Grieg has joined #ruby
Tuxist has quit [Read error: Connection reset by peer]
Amirh has joined #ruby
nitti has joined #ruby
Tuxist has joined #ruby
coderhs has quit [Read error: Connection reset by peer]
niklasb has quit [Ping timeout: 252 seconds]
Jellyg00se has quit [Ping timeout: 246 seconds]
nitti has quit [Ping timeout: 240 seconds]
ananthakumaran has quit [Ping timeout: 252 seconds]
ananthakumaran has joined #ruby
amacgregor_osx has joined #ruby
hamed_r has quit [Read error: Operation timed out]
Y_Ichiro has joined #ruby
Y_Ichiro has quit [Changing host]
Y_Ichiro has joined #ruby
niklasb_ has joined #ruby
banisterfiend has joined #ruby
JeanMertz has quit []
Grieg has quit [Quit: laterz! :D]
Grieg has joined #ruby
Grieg has quit [Changing host]
Grieg has joined #ruby
samuelj has quit [Quit: This computer has gone to sleep]
hotovson has joined #ruby
joeycarmello has quit [Remote host closed the connection]
Y_Ichiro has quit [Read error: Connection reset by peer]
slainer68 has joined #ruby
frank has joined #ruby
<frank> ciaoo
frank has quit [Client Quit]
frank has joined #ruby
jslowe has quit [Quit: Leaving]
gauravag has quit [Ping timeout: 252 seconds]
samuelj has joined #ruby
monkegjinni has quit [Read error: Connection reset by peer]
monkegjinni has joined #ruby
Xeago has joined #ruby
monkegjinni has quit [Read error: Connection reset by peer]
monkegjinni has joined #ruby
niklasb_ has quit [Ping timeout: 252 seconds]
francisfish has joined #ruby
frank has quit []
sam_ has joined #ruby
alee has quit [Remote host closed the connection]
beiter has joined #ruby
samuelj has quit [Ping timeout: 252 seconds]
und3f has quit [Quit: Leaving.]
yshh has joined #ruby
postmodern has joined #ruby
banisterfiend has quit [Read error: Connection reset by peer]
banister_ has joined #ruby
daniel_-_ has quit [Ping timeout: 252 seconds]
hsbt is now known as hsbt_away
hsbt_away is now known as hsbt
Erfankam has joined #ruby
WP_87327 has joined #ruby
bier_ has quit [Ping timeout: 255 seconds]
bier has quit [Ping timeout: 260 seconds]
<WP_87327> Hello
WP_87327 has quit [Client Quit]
hsbt has quit [Ping timeout: 245 seconds]
alee has joined #ruby
staafl has joined #ruby
hsbt_away has joined #ruby
hsbt_away is now known as hsbt
Erfankam has quit [Quit: Leaving.]
tenmilestereo has joined #ruby
beiter has quit [Read error: Connection reset by peer]
beiter has joined #ruby
hsbt has quit [Ping timeout: 246 seconds]
Erfankam has joined #ruby
bier has joined #ruby
bier_ has joined #ruby
hsbt_away has joined #ruby
hsbt_away is now known as hsbt
robbyoconnor has joined #ruby
hsbt is now known as hsbt_away
hsbt_away is now known as hsbt
ltsstar has joined #ruby
Xeago has quit [Remote host closed the connection]
cburyta has joined #ruby
samuelj has joined #ruby
SeySayux has quit [Ping timeout: 246 seconds]
Villadelfia has quit [Ping timeout: 260 seconds]
banister_ has quit [Read error: Connection reset by peer]
theRoUS has joined #ruby
theRoUS has quit [Changing host]
theRoUS has joined #ruby
SeySayux has joined #ruby
cburyta has quit [Ping timeout: 255 seconds]
Villadelfia has joined #ruby
hamed_r has joined #ruby
sam_ has quit [Ping timeout: 268 seconds]
nitti has joined #ruby
shiin has joined #ruby
hsbt is now known as hsbt_away
hsbt_away is now known as hsbt
u89 has joined #ruby
hsbt is now known as hsbt_away
hsbt_away is now known as hsbt
nitti has quit [Ping timeout: 246 seconds]
BoomCow has left #ruby ["Leaving"]
ajf_ has joined #ruby
hsbt has quit [Ping timeout: 256 seconds]
hsbt_away has joined #ruby
hsbt_away is now known as hsbt
arturaz has joined #ruby
joeycarmello has joined #ruby
codeFiend has joined #ruby
postmodern has quit [Quit: Leaving]
<ajf_> Hi, I would like to call a method dynamically using send and pass the parameters from a hash, how can I do this? So to call mc.status(:service => 'httpd') I would like to have :service => httpd in a hash and mc.send(:status, <hash to parameters>)
<Hanmac> mc.send(:status,:service => "httpd") ?
<ajf_> Yeah, I know that works, but I want to create the parameters dynamically too beforehand
jenrzzz has joined #ruby
joeycarmello has quit [Ping timeout: 255 seconds]
pmros has joined #ruby
hsbt is now known as hsbt_away
hsbt_away is now known as hsbt
hsbt is now known as hsbt_away
slopjong has joined #ruby
<pmros> hi!
horofox has joined #ruby
Guest10501 has joined #ruby
xpen has quit [Read error: Connection reset by peer]
seanyo has joined #ruby
<slopjong> I've installed the foreman but it's not on my PATH, to be honest, I'm just a ruby user and thus I'm not familiar with the gem stuff
codeFiend has left #ruby [#ruby]
<slopjong> what must I do to put the local gems to the path?
codeFiend has joined #ruby
codeFiend has left #ruby [#ruby]
codecop has joined #ruby
kil0byte has joined #ruby
siefca has left #ruby [#ruby]
hsbt_away has quit [Ping timeout: 260 seconds]
hsbt_away has joined #ruby
hsbt_away is now known as hsbt
Tuxist_ has joined #ruby
areil_ has joined #ruby
<apeiros> ajf_: send(:status) is silly
jenrzzz has quit [Ping timeout: 260 seconds]
<apeiros> if you know the method name, you do NOT use send.
medik has quit [Quit: medik has no reason]
areil has quit [Ping timeout: 246 seconds]
Tuxist has quit [Ping timeout: 260 seconds]
<Ry_> o_O
hsbt has quit [Ping timeout: 255 seconds]
hsbt_away has joined #ruby
hsbt_away is now known as hsbt
fixl has quit [Quit: KVIrc 4.3.1 Aria http://www.kvirc.net/]
hsbt is now known as hsbt_away
Mkman has joined #ruby
hsbt_away is now known as hsbt
banisterfiend has joined #ruby
<pmros> do you know espresso web framework?
hsbt is now known as hsbt_away
<banisterfiend> pmros: do you
hsbt_away is now known as hsbt
dangerousdave has joined #ruby
xpen has joined #ruby
<pmros> I've discovered yesterday
<pmros> it's a interesting alternative to sinatra, padrino and rails
<banisterfiend> pmros: you're ukrainian right?
<pmros> no, I'm not, why do you think so?
<pmros> it's not my project
<banisterfiend> pmros: oh, russian?
<pmros> no
<banisterfiend> pmros: can i ask where you're from?
<pmros> I'm spaniard
<banisterfiend> pmros: cool!
hsbt is now known as hsbt_away
hsbt_away is now known as hsbt
<pmros> yeah, my english is not vey good
lethjakmans_lap has joined #ruby
<pmros> I wanna improve
<banisterfiend> pmros: have you been to morroco?
<pmros> no
<lethjakmans_lap> with ruby .. syntax is there any way to specify more than one?
<banisterfiend> pmros: why the heck not? you live so close to it?
<lethjakmans_lap> for example I'm looking at :chars => 0..9
<lethjakmans_lap> but I'd also like to include a..z and A..Z
<pmros> why should I do?
<banisterfiend> pmros: because it's a strange land full of adventure
<banisterfiend> pmros: i went from malaga to morocco where i stayed for 2 weeks
<pmros> that is a myth
<banisterfiend> and it was the best/exciting time of y life
<banisterfiend> pmros: no, i was there for 2 weeks, it's freaking amazing
hsbt has quit [Ping timeout: 252 seconds]
<pmros> which part of norocco?
<pmros> *morocco
medik has joined #ruby
hsbt_away has joined #ruby
medik is now known as Guest2568
ltsstar has quit [Ping timeout: 268 seconds]
Jasko has quit [Read error: Connection reset by peer]
<pmros> *morroco
<banisterfiend> pmros: tangier and marakesh
Jasko has joined #ruby
hsbt_away has quit [Read error: Connection reset by peer]
<banisterfiend> pmros: and oussoria (i never spell that right)
<dangerousdave> lethjakmans_lap: not sure i understand your question, what are you trying to achieve?
horofox has quit [Quit: horofox]
ananthakumaran has quit [Ping timeout: 240 seconds]
<lethjakmans_lap> dangerousdave: I'm trying to generate a unique active record field using uniquify in rails
<lethjakmans_lap> I'm trying to do this in the ":chars" field
prezioso has joined #ruby
ananthakumaran has joined #ruby
<dangerousdave> lethjakmans_lap: still not entirely sure, perhaps this was a rails question after all, and i shouldn't have sent you here. Perhaps this is what you are trying to do? http://stackoverflow.com/questions/2959661/rails-serializing-objects-in-a-database
Guest2568 has quit [Quit: Guest2568 has no reason]
cburyta has joined #ruby
<lethjakmans_lap> dangerousdave: I don't think that's quite it.
<lethjakmans_lap> do you understand the .. syntax?
<lethjakmans_lap> I think I should just add them...but I'm not sure if it's 1..9 or '1'..'9'
pcboy_ has quit [Read error: Connection reset by peer]
samphippen has joined #ruby
ltsstar has joined #ruby
pcboy_ has joined #ruby
hsbt has joined #ruby
x0F has quit [Disconnected by services]
x0F_ has joined #ruby
x0F_ is now known as x0F
cburyta has quit [Ping timeout: 260 seconds]
steg132 has quit [Ping timeout: 276 seconds]
codecop has quit [Quit: Išeinu]
blacktulip has quit [Read error: Connection reset by peer]
codecop has joined #ruby
blacktulip has joined #ruby
pcboy_ has quit [Ping timeout: 260 seconds]
pcboy_ has joined #ruby
<pmros> folks, I have to go to buy chicken
<pmros> see you!
codecop has quit [Client Quit]
nitti has joined #ruby
pmros has quit [Quit: Konversation terminated!]
Morkel has joined #ruby
crackfu has joined #ruby
lethjakmans_lap has quit [Remote host closed the connection]
Xeago has joined #ruby
<shevy> lethjakmans_lap: the second works on strings, the first on the integer
nitti has quit [Ping timeout: 246 seconds]
<shevy> (1..9).to_a # => [1, 2, 3, 4, 5, 6, 7, 8, 9]
vickaita has joined #ruby
<shevy> ('1'..'9').to_a # => ["1", "2", "3", "4", "5", "6", "7", "8", "9"]
Axsuul has quit [Ping timeout: 255 seconds]
`Mew_ has joined #ruby
chussenot has joined #ruby
Xeago has quit [Remote host closed the connection]
joeycarmello has joined #ruby
mixnovich has joined #ruby
rafter has joined #ruby
<mixnovich> #ruby: +Ccnt
slainer68 has quit [Remote host closed the connection]
joeycarmello has quit [Ping timeout: 245 seconds]
mmikeym has joined #ruby
Mkman has quit [Quit: Lost terminal]
maxer has joined #ruby
medik_ has joined #ruby
slopjong has quit [Quit: Leaving]
tenmilestereo has quit [Quit: Leaving]
xpen_ has joined #ruby
vickaita has quit [Ping timeout: 248 seconds]
mixnovich has left #ruby [#ruby]
Morkel has quit [Quit: Morkel]
samuelj has quit [Ping timeout: 246 seconds]
xpen has quit [Ping timeout: 260 seconds]
hotovson has quit [Remote host closed the connection]
oivoodoo has joined #ruby
daniel_-_ has joined #ruby
punkrawkR has quit [Read error: Connection reset by peer]
chussenot has quit [Quit: chussenot]
<shevy> hmm ruby does not want to display trailing 0 in integers
crackfu has quit [Remote host closed the connection]
arturaz has quit [Remote host closed the connection]
<shevy> puts 15.550 # => 15.55
<shevy> how to include the trailing 0?
<apeiros> 15.55 is not really an integer
<apeiros> also, trailing zeros are a property of presentation, which you get with strings
<apeiros> "%.3f" % 15.55 # => "15.550
ananthakumaran has left #ruby [#ruby]
<shevy> ah cool, thanks
volty has joined #ruby
Guest10501 is now known as Jackneill
Jackneill has quit [Changing host]
Jackneill has joined #ruby
grizlo42 has joined #ruby
Erfankam has quit [Quit: Leaving.]
<grizlo42> is there any way to split an array every place a block evaluates to true?
oivoodoo has quit [Quit: Lost terminal]
vickaita has joined #ruby
samphippen has quit [Quit: Computer has gone to sleep.]
chussenot has joined #ruby
kirun has joined #ruby
prezioso has quit [Quit: leaving]
prezioso has joined #ruby
<shevy> you could always build a new array
SDr has joined #ruby
<SDr> hi #ruby,
<Hanmac> grizlo42 & shevy: something like that? ["a",nil,"b",nil,"c"].inject([]){|o,x| x.nil? ? (o.last << x) : (o << [x]); o } #=> [["a", nil], ["b", nil], ["c"]]
<SDr> can you recommend some high-quality codebases?
prezioso has quit [Client Quit]
<SDr> for getting a crash-course into how ruby's done right? something which, in your opinion, is the pinnacle of ruby engineering?
iamjarvo has joined #ruby
crackfu has joined #ruby
seanyo has quit [Read error: Connection reset by peer]
Martz has joined #ruby
<shevy> less code is more
irkaclient has joined #ruby
<shevy> look at bundler, people here say it is the best thing ever so it must be wonderful
LouisGB has joined #ruby
<SDr> erm, I'm looking for websites, mostly, not utilities
Slivka has quit [Read error: Connection reset by peer]
NsOmNiAc has joined #ruby
Slivka has joined #ruby
grizlo42 has quit [Ping timeout: 246 seconds]
<Muz> "how ruby's done right" - Ruby, like any language, is subject to many different schools of thoughts on any given design model. As for which is right, that's debateable. Pragmatism is hard, let's choose a colour for our bikeshed instead.
grizlo42 has joined #ruby
Slivka has quit [Read error: Connection reset by peer]
<shevy> SDr: then look at some rails sites, they all look the same but that's the pinnacle I guess
<Muz> No no no.
Slivka has joined #ruby
cburyta has joined #ruby
<Muz> To suggest that rails is the pinnacle of ruby done right is laughable, at best.
<shevy> SDr you did use "pinnacle of ruby engineering" though, not ruby-website engineering :D
Slivka has quit [Read error: Connection reset by peer]
Slivka has joined #ruby
<shevy> hey it is popular
Slivka has quit [Read error: Connection reset by peer]
eataix has quit [Quit: ZNC - http://znc.in]
Slivka has joined #ruby
pavilionXP has quit [Ping timeout: 245 seconds]
Slivka has quit [Remote host closed the connection]
cburyta has quit [Ping timeout: 260 seconds]
beiter has quit [Ping timeout: 240 seconds]
otters has quit [Ping timeout: 252 seconds]
tenmilestereo has joined #ruby
nitti has joined #ruby
u89 has quit [Remote host closed the connection]
irkaclient is now known as irka
kidoz has joined #ruby
iamjarvo has quit [Quit: Computer has gone to sleep.]
nitti has quit [Ping timeout: 246 seconds]
joeycarmello has joined #ruby
acies has quit [Ping timeout: 260 seconds]
darthdeu has joined #ruby
elentras has quit [Ping timeout: 268 seconds]
mahar has joined #ruby
slainer68 has joined #ruby
mahar has left #ruby [#ruby]
joeycarmello has quit [Ping timeout: 248 seconds]
stayarrr has quit [Quit: Leaving...]
acies has joined #ruby
becom33 has quit [Ping timeout: 248 seconds]
haxrbyte_ has quit [Ping timeout: 246 seconds]
becom33 has joined #ruby
kil0byte has quit [Ping timeout: 240 seconds]
nkts has quit [Ping timeout: 260 seconds]
sdk is now known as nkts
slainer68 has quit [Ping timeout: 240 seconds]
lkba has joined #ruby
JustinCampbell has joined #ruby
daniel_- has joined #ruby
jrajav has joined #ruby
terrio has joined #ruby
vitor-br has joined #ruby
terrio has quit [Read error: Connection reset by peer]
apok has joined #ruby
daniel_-_ has quit [Ping timeout: 252 seconds]
tchebb has quit [Ping timeout: 252 seconds]
nateberkopec has joined #ruby
mmikeym has quit [Ping timeout: 245 seconds]
JustinCampbell has quit [Remote host closed the connection]
terrio has joined #ruby
kil0byte has joined #ruby
psycho_one has quit [Remote host closed the connection]
leoncamel has joined #ruby
fyolnish has quit [Ping timeout: 255 seconds]
kil0byte_ has joined #ruby
kil0byte has quit [Read error: Connection reset by peer]
roadt has quit [Ping timeout: 276 seconds]
`brendan has quit [Quit: - nbs-irc 2.39 - www.nbs-irc.net -]
nari_ has joined #ruby
grizlo42 has quit [Ping timeout: 252 seconds]
daniel_- has quit [Ping timeout: 246 seconds]
horofox has joined #ruby
medik_ has quit [Quit: medik_ has no reason]
banisterfiend has quit [Remote host closed the connection]
NsOmNiAc has quit [Quit: Leaving]
grizlo42 has joined #ruby
Xeago has joined #ruby
themadcanudist has joined #ruby
themadcanudist has left #ruby [#ruby]
beiter has joined #ruby
acies has quit [Ping timeout: 255 seconds]
rippa has joined #ruby
hiroyuki_ has quit [Read error: Connection reset by peer]
volty has quit [Quit: Konversation terminated!]
F1skr has quit [Quit: WeeChat 0.3.9]
cburyta has joined #ruby
peter___ has joined #ruby
horofox has quit [Quit: horofox]
grizlo42 has quit [Ping timeout: 246 seconds]
cburyta has quit [Ping timeout: 246 seconds]
mytec has joined #ruby
vlad_starkov has joined #ruby
terrio has quit [Read error: Connection reset by peer]
Neomex has joined #ruby
nitti has joined #ruby
hamed_r has quit [Quit: Leaving]
hsbt is now known as hsbt_away
hsbt_away is now known as hsbt
roadt has joined #ruby
hsbt is now known as hsbt_away
hsbt_away is now known as hsbt
Neomex has quit [Client Quit]
nitti has quit [Ping timeout: 240 seconds]
TheFuzzball has quit [Read error: Connection reset by peer]
fyolnish has joined #ruby
irka has quit [Quit: irka]
ananthakumaran has joined #ruby
JustinCampbell has joined #ruby
JustinCampbell has quit [Remote host closed the connection]
charliesome has quit [Quit: Textual IRC Client: www.textualapp.com]
joeycarmello has joined #ruby
_alejandro has quit [Remote host closed the connection]
cdehaan has joined #ruby
<cdehaan> Hello! I'm getting this error: no such file to load -- dm-mysql2-adapter, but there doesn't seem to be a package dm-mysql2-adapter. What can I do?
nkts has quit []
Banistergalaxy has quit [Ping timeout: 245 seconds]
daniel_- has joined #ruby
slainer68 has joined #ruby
TheFuzzball has joined #ruby
Tania has joined #ruby
mityaz has quit [Quit: Miranda IM! Smaller, Faster, Easier. http://miranda-im.org]
Banistergalaxy has joined #ruby
samuelj has joined #ruby
joeycarmello has quit [Ping timeout: 248 seconds]
acies has joined #ruby
grizlo42 has joined #ruby
SpamapS has left #ruby [#ruby]
<samuelj> Hey guys. Does anyone know if in datamapper there's a way to to run a one-off sql script for imports, whenever the migrations are run?
adamdonahue has joined #ruby
theRoUS has quit [Ping timeout: 260 seconds]
slainer68 has quit [Ping timeout: 252 seconds]
crackfu has quit [Remote host closed the connection]
nari_ has quit [Ping timeout: 248 seconds]
hsbt is now known as hsbt_away
JustinCampbell has joined #ruby
hsbt_away is now known as hsbt
dimka is now known as apfm
Russell^^ has joined #ruby
elaptics`away is now known as elaptics
peter___ has quit [Quit: leaving]
medik has joined #ruby
daniel_- has quit [Ping timeout: 240 seconds]
mmikeym has joined #ruby
Trioke has joined #ruby
bigmac has joined #ruby
bigmac is now known as i8igmac
somazero has joined #ruby
adamdonahue is now known as amd
JeanMertz has joined #ruby
arya has joined #ruby
samphippen has joined #ruby
beiter has quit [Read error: Connection reset by peer]
beiter has joined #ruby
plains has quit [Quit: leaving]
Banistergalaxy has quit [Ping timeout: 248 seconds]
srji has joined #ruby
xpen_ has quit [Remote host closed the connection]
sepp2k has joined #ruby
nilg has quit [Ping timeout: 260 seconds]
hsbt is now known as hsbt_away
hsbt_away is now known as hsbt
ewag has quit [Ping timeout: 252 seconds]
PragCypher has quit [Quit: Leaving]
Dreamer3 has quit [Quit: Computer has gone to sleep.]
hsbt is now known as hsbt_away
steffes has joined #ruby
hsbt_away is now known as hsbt
Neomex has joined #ruby
Neomex has quit [Client Quit]
kold has joined #ruby
kold has left #ruby [#ruby]
stayarrr has joined #ruby
_bart has left #ruby [#ruby]
tk__ has joined #ruby
beiter has quit [Quit: beiter]
horofox has joined #ruby
coderhut has joined #ruby
srji has quit [Ping timeout: 244 seconds]
Jasko has quit [Read error: Connection reset by peer]
raul782 has joined #ruby
Jasko has joined #ruby
steffes has quit [Remote host closed the connection]
srji has joined #ruby
JustinCampbell has quit [Remote host closed the connection]
cburyta has joined #ruby
u89 has joined #ruby
banisterfiend has joined #ruby
JustinCampbell has joined #ruby
Artimarius has joined #ruby
Artimarius has quit [Client Quit]
cdehaan has quit [Quit: cdehaan]
srji_ has joined #ruby
amd has quit [Quit: amd]
cburyta has quit [Ping timeout: 268 seconds]
otters has joined #ruby
pestouille has joined #ruby
srji has quit [Ping timeout: 244 seconds]
chussenot has quit [Quit: chussenot]
OSInet has joined #ruby
nitti has joined #ruby
kaiyin has joined #ruby
kidoz has quit [Quit: Ухожу я от вас]
<kaiyin> with nokogiri, how can I test whether a node is a <h2>?
srji_ has quit [Quit: leaving]
incluye has joined #ruby
incluye has quit [Client Quit]
emmanuelux has joined #ruby
nitti has quit [Ping timeout: 246 seconds]
vjt has joined #ruby
<OSInet> kaiyin: I would rather select H2's and check if the node is amongst them
elaptics is now known as elaptics`away
<kaiyin> OSInet: okay, how can I check whether a node is among h2?
elico has joined #ruby
joeycarmello has joined #ruby
maxer has quit [Quit: maxer]
F1skr has joined #ruby
grizlo42 has quit [Ping timeout: 246 seconds]
arya has quit [Ping timeout: 244 seconds]
dreinull has joined #ruby
h4mz1d has joined #ruby
kirun has quit [Quit: Client exiting]
arya has joined #ruby
vickaita has quit [Ping timeout: 265 seconds]
mytec has quit [Quit: Computer has gone to sleep.]
jblack has quit [Ping timeout: 265 seconds]
kaiyin has left #ruby [#ruby]
grizlo42 has joined #ruby
hsbt is now known as hsbt_away
hsbt_away is now known as hsbt
pothibo has joined #ruby
cdehaan has joined #ruby
joeycarmello has quit [Ping timeout: 240 seconds]
blacktulip has quit [Remote host closed the connection]
<cdehaan> Hello! What would make me get a dependency error that a gem is not available when it is (the exact version, even)
iamjarvo has joined #ruby
mohanmcgeek has joined #ruby
<mohanmcgeek> hey people, is there a better way to do this
banisterfiend has quit [Read error: Connection reset by peer]
h8R has quit [Ping timeout: 255 seconds]
Banistergalaxy has joined #ruby
<brendan`> to do what?
<mohanmcgeek> def something; @something ||= somevalue; end
<mohanmcgeek> brendan`: I was typing.. :P
nkts has joined #ruby
nkts has quit [Max SendQ exceeded]
blacktulip has joined #ruby
nkts has joined #ruby
hsbt is now known as hsbt_away
hsbt_away is now known as hsbt
senny has joined #ruby
<mohanmcgeek> In short, I want @something without setter methods.
h4mz1d has quit [Ping timeout: 246 seconds]
<mohanmcgeek> because something_else would set it's value.
Zolrath has quit []
nilg has joined #ruby
hsbt is now known as hsbt_away
hsbt_away is now known as hsbt
banister_ has joined #ruby
pestouille has quit [Quit: pestouille]
hsbt is now known as hsbt_away
hsbt_away is now known as hsbt
alem0lars has joined #ruby
grizlo42 has quit [Ping timeout: 255 seconds]
beachandbytes has joined #ruby
freakazoid0223 has joined #ruby
francisfish has quit [Remote host closed the connection]
amacgregor_osx has quit [Remote host closed the connection]
tommyvyo has quit [Quit: Computer has gone to sleep.]
<reactormonk> how do I get a generator for gemspecs?
emmanuelux has quit [Quit: emmanuelux]
tommyvyo has joined #ruby
h4mz1d has joined #ruby
banjara has joined #ruby
grizlo42 has joined #ruby
iamjarvo has quit [Quit: Computer has gone to sleep.]
k610 has joined #ruby
mohanmcgeek has left #ruby [#ruby]
evansbee has joined #ruby
rakunHo has joined #ruby
banister_ has quit [Ping timeout: 245 seconds]
<havenn> reactormonk: Do you mean how do you generate a gemspec?
<havenn> reactormonk: Or something else?
wallerdev has joined #ruby
k610 has quit [Ping timeout: 265 seconds]
JustinCampbell has quit [Remote host closed the connection]
k610 has joined #ruby
BrianJ has joined #ruby
JustinCampbell has joined #ruby
<shevy> I just let a ruby script generate a .gemspec skeleton, then I fill that up
raul782 has quit [Remote host closed the connection]
cburyta has joined #ruby
jeffreybaird has joined #ruby
tjbiddle has joined #ruby
<havenn> ^ I like: bundle gem gem-name
JeanMertz has quit []
k610 has quit [Ping timeout: 264 seconds]
k610 has joined #ruby
raul782_ has joined #ruby
cdehaan has quit [Quit: Textual IRC Client]
cburyta has quit [Ping timeout: 252 seconds]
<samuelj> Hey guys. Any suggestions as to why datamapper isn't letting me access]
<samuelj> * as to why datamapper is always returning false for my boolean attribute?
cdehaan has joined #ruby
nitti has joined #ruby
k610 has quit [Ping timeout: 276 seconds]
k610 has joined #ruby
JustinCampbell has quit [Remote host closed the connection]
nitti has quit [Ping timeout: 246 seconds]
Guest45224 has quit [Ping timeout: 245 seconds]
k610 has quit [Ping timeout: 246 seconds]
raul782_ has left #ruby [#ruby]
k610 has joined #ruby
clj_newb has joined #ruby
ChampS666 has joined #ruby
<Spaceghostc2c> I just realized I'm wearing clothes. :(
gregorg has quit [Read error: Connection reset by peer]
joeycarmello has joined #ruby
jeffreybaird has quit [Quit: jeffreybaird]
statarb3 has joined #ruby
statarb3 has quit [Changing host]
statarb3 has joined #ruby
k610 has quit [Ping timeout: 252 seconds]
clj_newb has quit [Ping timeout: 255 seconds]
gregorg has joined #ruby
k610 has joined #ruby
gregorg has quit [Changing host]
gregorg has joined #ruby
robbyoconnor has quit [Ping timeout: 255 seconds]
chittoor has joined #ruby
joeycarmello has quit [Ping timeout: 240 seconds]
h4mz1d has quit [Ping timeout: 246 seconds]
arya_ has joined #ruby
aetcore has quit [Remote host closed the connection]
leoncamel has quit [Remote host closed the connection]
k610 has quit [Ping timeout: 245 seconds]
banisterfiend has joined #ruby
arya has quit [Ping timeout: 244 seconds]
hsbt is now known as hsbt_away
hsbt_away is now known as hsbt
tjbiddle has quit [Quit: tjbiddle]
k610 has joined #ruby
hsbt is now known as hsbt_away
hsbt_away is now known as hsbt
k610 has quit [Ping timeout: 260 seconds]
leoncamel has joined #ruby
k610 has joined #ruby
rakl has joined #ruby
shtirlic has joined #ruby
niklasb_ has joined #ruby
tommyvyo has quit [Quit: Computer has gone to sleep.]
joofsh has joined #ruby
raul782 has joined #ruby
k610 has quit [Ping timeout: 260 seconds]
chittoor has quit [Quit: leaving]
k610 has joined #ruby
CaptainJet has joined #ruby
br4ndon has joined #ruby
chittoor has joined #ruby
vickaita has joined #ruby
Tania has quit [Quit: :p]
kiyoura has joined #ruby
kirun has joined #ruby
k610 has quit [Ping timeout: 260 seconds]
arya_ has quit [Ping timeout: 244 seconds]
k610 has joined #ruby
somazero has quit [Ping timeout: 246 seconds]
Trioke has quit [Ping timeout: 265 seconds]
raul782 has quit [Remote host closed the connection]
samuelj has quit [Ping timeout: 246 seconds]
k610 has quit [Ping timeout: 268 seconds]
k610 has joined #ruby
Tearan has joined #ruby
roadt has quit [Ping timeout: 268 seconds]
Tearan has quit [Client Quit]
raul782 has joined #ruby
ilyam has joined #ruby
enderx86 has joined #ruby
Virunga has quit [Remote host closed the connection]
k610 has quit [Ping timeout: 265 seconds]
jgrevich has joined #ruby
k610 has joined #ruby
shtirlic has quit [Remote host closed the connection]
Trioke has joined #ruby
statarb3 has quit [Quit: Leaving]
hsbt is now known as hsbt_away
hsbt_away is now known as hsbt
tommyvyo has joined #ruby
k610 has quit [Ping timeout: 255 seconds]
alem0lars has quit [Remote host closed the connection]
hsbt is now known as hsbt_away
hsbt_away is now known as hsbt
k610 has joined #ruby
whowantstolivefo has joined #ruby
kiyoura has quit [Quit: Leaving]
kiyoura has joined #ruby
Jasko has quit [Read error: Connection reset by peer]
tommyvyo has quit [Client Quit]
senny has quit [Remote host closed the connection]
Jasko has joined #ruby
aharris6 has joined #ruby
aharris6 has left #ruby [#ruby]
sepp2k1 has joined #ruby
samphipp_ has joined #ruby
sepp2k has quit [Ping timeout: 240 seconds]
arietis has quit [Quit: Textual IRC Client: http://www.textualapp.com/]
samphippen has quit [Read error: Connection reset by peer]
samphipp_ is now known as samphippen
trevortwining_ has joined #ruby
k610 has quit [Ping timeout: 252 seconds]
k610 has joined #ruby
srji has joined #ruby
cburyta has joined #ruby
iamjarvo has joined #ruby
TheFuzzball has quit [Ping timeout: 248 seconds]
medik has quit [Ping timeout: 240 seconds]
tommyvyo has joined #ruby
JustinCampbell has joined #ruby
TheFuzzball has joined #ruby
<reactormonk> havenn, yep
k610 has quit [Ping timeout: 256 seconds]
<reactormonk> shevy, gimme one
cburyta has quit [Ping timeout: 246 seconds]
samphippen has quit [Quit: Computer has gone to sleep.]
k610 has joined #ruby
nateberkopec has quit [Quit: Linkinus - http://linkinus.com]
nitti has joined #ruby
aharris6 has joined #ruby
tommyvyo has quit [Quit: Computer has gone to sleep.]
crackfu has joined #ruby
k610 has quit [Ping timeout: 252 seconds]
medik has joined #ruby
medik is now known as Guest23587
k610 has joined #ruby
nitti has quit [Ping timeout: 246 seconds]
cj3kim has joined #ruby
banjara has quit [Quit: Leaving.]
banjara has joined #ruby
skaczor has joined #ruby
iamjarvo has quit [Quit: Computer has gone to sleep.]
caleb_io has joined #ruby
khakimov has joined #ruby
k610 has quit [Ping timeout: 260 seconds]
u89 has quit [Remote host closed the connection]
k610 has joined #ruby
joeycarmello has joined #ruby
br4ndon has quit [Quit: Lorem ipsum dolor sit amet]
tommyvyo has joined #ruby
beneggett has quit [Ping timeout: 260 seconds]
Grieg has quit [Quit: laterz! :D]
GoGoGarrett has joined #ruby
slainer68 has joined #ruby
joeycarmello has quit [Ping timeout: 240 seconds]
k610 has quit [Ping timeout: 252 seconds]
maxer has joined #ruby
tchebb has joined #ruby
k610 has joined #ruby
jbw has quit [Ping timeout: 260 seconds]
beneggett has joined #ruby
raul782 has quit [Remote host closed the connection]
codeFiend has joined #ruby
slainer68 has quit [Ping timeout: 255 seconds]
codeFiend has quit [Client Quit]
kil0byte_ has quit [Ping timeout: 252 seconds]
k610 has quit [Ping timeout: 246 seconds]
Jasko has quit [Read error: Connection reset by peer]
Jasko has joined #ruby
Cultofmetatron has quit [Remote host closed the connection]
k610 has joined #ruby
twinturbo_ has joined #ruby
enderx86 has quit [Remote host closed the connection]
ryanf has joined #ruby
vlad_starkov has quit [Ping timeout: 255 seconds]
banjara has quit [Quit: Leaving.]
horofox has quit [Quit: horofox]
strtok has joined #ruby
<strtok> what's the best way to run ruby code in a sandbox these days? Rubinius?
twinturbo has quit [Ping timeout: 255 seconds]
twinturbo_ is now known as twinturbo
SuperrMann has joined #ruby
k610 has quit [Ping timeout: 252 seconds]
banjara has joined #ruby
banjara has quit [Client Quit]
u89 has joined #ruby
k610 has joined #ruby
theRoUS has joined #ruby
theRoUS has quit [Changing host]
theRoUS has joined #ruby
vlad_starkov has joined #ruby
banjara1 has joined #ruby
samphippen has joined #ruby
jbw has joined #ruby
Amirh has quit [Quit: Leaving.]
Dreamer3 has joined #ruby
erichmenge has quit [Quit: Arrivederci!]
jblack has joined #ruby
erichmenge has joined #ruby
<Spaceghostc2c> strtok: First, you get one of those turtle sandboxes, then you buy sand. Then you put your computer in the sandbox and run ruby.
tomsthumb has quit [Quit: Leaving.]
k610 has quit [Ping timeout: 256 seconds]
banghouse2 has joined #ruby
grizlo42 has quit [Ping timeout: 260 seconds]
k610 has joined #ruby
Connecti0n has joined #ruby
emmanuelux has joined #ruby
enderx86 has joined #ruby
cdehaan has quit [Quit: Textual IRC Client]
hsbt is now known as hsbt_away
JustinCampbell has quit [Remote host closed the connection]
jimeh has joined #ruby
samphippen has quit [Quit: Computer has gone to sleep.]
abrotman has left #ruby [#ruby]
iamjarvo has joined #ruby
Trioke has quit [Ping timeout: 252 seconds]
cakehero has joined #ruby
hsbt_away is now known as hsbt
k610 has quit [Ping timeout: 248 seconds]
stayarrr has quit [Quit: Linkinus - http://linkinus.com]
<shevy> reactormonk: this is the current one I use http://pastie.org/5357049 it's not very sophisticated. save_file should be available via gem install save_file, ansi_colours unfortunately is unavailable, it uses my old account at rubygems.org and I still have not found out how to remove that (I also removed that email account of that inactive account almost ~2 years ago)
grizlo42 has joined #ruby
k610 has joined #ruby
samphippen has joined #ruby
jblack has quit [Ping timeout: 265 seconds]
<shevy> hmm
<shevy> I could upload the ansi_colours .gem somewhere else
<shevy> but where to hmmmm
twinturbo has quit [Quit: twinturbo]
vlad_starkov has quit [Ping timeout: 246 seconds]
vlad_sta_ has joined #ruby
awestroke has joined #ruby
icooba has joined #ruby
k610 has quit [Ping timeout: 252 seconds]
<shevy> ah well, would be nice to have one unified login for everywhere... one gmail account, one github account, one rubygems account... and register only once, afterwards allow a login-button
k610 has joined #ruby
tommyvyo has quit [Quit: Computer has gone to sleep.]
srji has quit [Quit: leaving]
maletor has joined #ruby
nkts has quit []
jblack has joined #ruby
codezombie has joined #ruby
jblack has quit [Client Quit]
becom33 has quit [Read error: Connection timed out]
k610 has quit [Ping timeout: 268 seconds]
tommyvyo has joined #ruby
becom33 has joined #ruby
k610 has joined #ruby
jgrevich has quit [Quit: jgrevich]
GoGoGarrett has quit [Remote host closed the connection]
chussenot has joined #ruby
Jasko has quit [Read error: Connection reset by peer]
Jasko has joined #ruby
icole has joined #ruby
F1skr has quit [Quit: WeeChat 0.3.9]
skaczor has quit [Read error: Operation timed out]
F1skr has joined #ruby
jtcoon has quit [Ping timeout: 261 seconds]
alem0lars has joined #ruby
skaczor has joined #ruby
psycho_one has joined #ruby
whowantstolivefo has quit [Ping timeout: 246 seconds]
coderhut has quit [Quit: Page closed]
ananthakumaran has quit [Quit: Leaving.]
ablankfield has joined #ruby
cburyta has joined #ruby
tk__ has quit [Quit: ばいばい]
flip_digits has joined #ruby
<reactormonk> shevy, where do I put gems so bundler finds them?
<Hanmac> in your pants xD
<shevy> hmmm I have no idea, never used bundler myself (successfully that is, I tried it at least twice, it failed powerfully both times). via "gem" alone it should work, all gems will be installed into ruby's SITE_DIR and a backup in cache/ directory, which on most linux systems by default should be under /usr/lib/ruby/gems/1.9.1/cache/
<shevy> noone here knows bundler :)
<reactormonk> shevy, hm
centipedefarmer has quit [Remote host closed the connection]
<shevy> come on Hanmac, how does bundler make use of gems?
cburyta has quit [Ping timeout: 255 seconds]
rknLA has joined #ruby
Guest23587 has quit [Quit: Guest23587 has no reason]
<Hanmac> i dont use it too
freakazoid0223 has quit [Quit: Leaving]
nitti has joined #ruby
vickaita has quit [Ping timeout: 246 seconds]
<shevy> hehe
<shevy> that's my man!
trevortwining_ has quit [Quit: trevortwining_]
theRoUS has quit [Ping timeout: 260 seconds]
cj3kim has quit [Quit: This computer has gone to sleep]
ninegrid has quit [Quit: brb]
jaygen has joined #ruby
jaygen has quit [Remote host closed the connection]
jaygen has joined #ruby
becom33 has quit [Read error: Connection timed out]
nitti has quit [Ping timeout: 246 seconds]
becom33 has joined #ruby
chittoor has quit [Quit: leaving]
Nisstyre-laptop has quit [Quit: Leaving]
grizlo42 has quit [Quit: Leaving.]
grizlo421 has joined #ruby
ninegrid has joined #ruby
alem0lars has quit [Remote host closed the connection]
banjara1 has quit [Quit: Leaving.]
enderx86 has quit [Remote host closed the connection]
und3f has joined #ruby
jipiboily has joined #ruby
joeycarmello has joined #ruby
daniel_- has joined #ruby
aharris6 has quit [Remote host closed the connection]
rampantmonkey has joined #ruby
Guest36125 has quit [Quit: WeeChat 0.3.9]
slainer68 has joined #ruby
blacktulip has quit [Read error: Connection reset by peer]
ilyam has quit [Ping timeout: 246 seconds]
blacktulip has joined #ruby
jipiboily has left #ruby [#ruby]
joeycarmello has quit [Ping timeout: 264 seconds]
daniel_- has quit [Ping timeout: 252 seconds]
OSInet has quit [Ping timeout: 246 seconds]
grizlo42 has joined #ruby
grizlo421 has quit [Read error: Connection reset by peer]
maletor has quit [Quit: Computer has gone to sleep.]
ilyam has joined #ruby
rampantmonkey has quit [Quit: ["Textual IRC Client: www.textualapp.com"]]
savage- has joined #ruby
nateberkopec has joined #ruby
slainer68 has quit [Ping timeout: 268 seconds]
skaczor has quit [Remote host closed the connection]
<BrianJ> how do I search a hash map for a value?
<banisterfiend> BrianJ: find
<BrianJ> what do I put into it? a string?
<banisterfiend> BrianJ: no..what do you want to find?
<canton7> BrianJ, sample input and output?
<heftig> hash.find { |k,v| v == "foobar" }
rafter has quit [Remote host closed the connection]
<heftig> it's a linear search
trevortwining has quit [Quit: trevortwining]
cakehero has quit [Quit: Computer has gone to sleep.]
raul782 has joined #ruby
<banisterfiend> heftig: what're you up to these days
thismynick has joined #ruby
<strtok> Spaceghostc2c: cute :) (turtle sandbox)
<heftig> banisterfiend: not much
<Spaceghostc2c> strtok: :D
<BrianJ> heftig: thanks, not sure if I got it right because when I do a puts on it it doesn't return anything… here's my code http://pastie.org/5357249
Virunga has joined #ruby
<BrianJ> my goal is to check if a repository on github exists
jenrzzz has joined #ruby
<Hanmac> SpaceGhost is only "batman in space" :D
BoomCow has joined #ruby
rellin has joined #ruby
pcarrier has quit []
<Hanmac> BrianJ & heftig: hash.key(value)
<heftig> Hanmac: right, forgot about that
thismynick has quit [Quit: Leaving...]
Ry__ has joined #ruby
Ry_ has quit [Read error: Connection reset by peer]
prezioso has joined #ruby
becom33 has quit [Read error: Connection timed out]
skaczor has joined #ruby
bradhe has joined #ruby
becom33 has joined #ruby
psycho_one has quit [Remote host closed the connection]
<BrianJ> ugh
<BrianJ> nvm its an array
Daman has quit [Ping timeout: 248 seconds]
jimeh has quit [Quit: Computer has gone to sleep.]
mikepack has joined #ruby
yaymukund has quit [Ping timeout: 240 seconds]
iamjarvo has quit [Quit: Computer has gone to sleep.]
<jrajav> Space Ghost is pretty cool
<jrajav> But Space Ghost Coast to Coast is mathin' incredible
<jrajav> Oh god that was probably one of my favorite AS shows
JeanMertz has joined #ruby
<banisterfiend> jrajav: "mathin'" did you get that from adventure time?
<jrajav> :D
<jrajav> I like cartoons ok
EddieS has joined #ruby
<jrajav> DONT JUDGE ME
<Hanmac> yeah thats "Mathamatical" :D
EddieS has quit [Client Quit]
<jrajav> Algebraic!
amacgregor_osx has joined #ruby
<banisterfiend> jrajav: how do you rate adventure time?
<Hanmac> its beyond scale :D
<jrajav> On a scale from 1 to 10, I rate it a "holy glob my brain just exploded"
<jrajav> By the way, if you've never seen Pendleton Ward's website: http://buenothebear.com/
raul782 has quit [Remote host closed the connection]
<jrajav> (The creator of Adventure Time)
<Hanmac> jrajav did you watch the trailer of the 5th season? :D
<jrajav> No :O
<Hanmac> you should and your brain goes "WHAT?!"
jtcoon has joined #ruby
<Hanmac> did you watch "King Worm" episode? the entire episode is a "Mind Screw"
joeycarmello has joined #ruby
blacktulip has quit [Read error: Connection reset by peer]
savage- has quit [Quit: savage-]
<banisterfiend> Hanmac: is king worm season 3 or 4?
jenrzzz has quit [Ping timeout: 256 seconds]
<jrajav> 4
<jrajav> And yes
blacktulip has joined #ruby
<jrajav> I've seen all the episodes
<jrajav> Most of them twice
<banisterfiend> Hanmac: my fave is "too young" with lemongrab
<Hanmac> did you weep at "i remember you"?
areil_ has quit [Remote host closed the connection]
dakine has joined #ruby
steg132 has joined #ruby
<jrajav> Hanmac: Yeah, that was sad :(
maxer has quit [Quit: maxer]
<Hanmac> banisterfiend: lemongrab is watching while you sleep :D
<banisterfiend> Hanmac: heh heh
<Hanmac> jrajav: in the last episode AdventureTime is teaching the Rules of the Multiverse :D
<jrajav> I already read the synopsis of the season 5 opener
<jrajav> Sounds like it should be good
maxer has joined #ruby
<jrajav> When does it come out, sometime next week?
<banisterfiend> Hanmac: i also liked the ep when he was turning 4 dimensional cubes into blackholes
spike|spiegelr has joined #ruby
<jrajav> By the way, speaking of watching you while you sleep
<jrajav> ^ I lol'ed so freaking hard first time
spike|spiegelr has quit [Client Quit]
savage- has joined #ruby
spike|spiegel has joined #ruby
<Hanmac> infos about season5: beginning with the first two episodes as a 30MIN-TWO-PARTER :D, than later another genderswap episodes ... and lady rainacorn gets the puddies
raul782 has joined #ruby
Jasko has quit [Read error: Connection reset by peer]
grizlo42 has left #ruby [#ruby]
<banisterfiend> Hanmac: "puddies"
Jasko has joined #ruby
skaczor has quit [Remote host closed the connection]
<Hanmac> you know that i mean
peregrine81 has joined #ruby
cburyta has joined #ruby
fantazo has joined #ruby
jslowe has joined #ruby
maxer has quit [Quit: maxer]
<banisterfiend> Hanmac: do you want to roll up in marcelein ?
savage- has quit [Quit: savage-]
khakimov has quit [Quit: Computer has gone to sleep.]
Amirh has joined #ruby
* Hanmac does not know that you mean with "roll up" ... but i tryed an marceline-pumpkin ... it was not so bad for the first try
cburyta has quit [Ping timeout: 248 seconds]
grizlo421 has joined #ruby
grizlo421 has left #ruby [#ruby]
<banisterfiend> Hanmac: i mean the vampire girl from adventure time
raul782 has quit [Remote host closed the connection]
nitti has joined #ruby
staafl has quit [Ping timeout: 246 seconds]
dnyy has quit [Remote host closed the connection]
raul782 has joined #ruby
<Hanmac> yeah i know her, i dont know what you mean with "roll up"
peregrine81 has quit [Quit: Computer sleeping.]
brianpWins has joined #ruby
<banisterfiend> Hanmac: make love
imami|afk is now known as banseljaj
kirun has quit [Ping timeout: 260 seconds]
dnyy has joined #ruby
pcarrier has joined #ruby
nkts has joined #ruby
icole has quit [Remote host closed the connection]
nitti has quit [Ping timeout: 264 seconds]
<Hanmac> if i met the original™ one, why not? :D
cj3kim has joined #ruby
cj3kim has quit [Changing host]
cj3kim has joined #ruby
cburyta has joined #ruby
vickaita has joined #ruby
jamjam has joined #ruby
_alejandro has joined #ruby
apeiros_ has joined #ruby
spike|spiegel has quit [Quit: leaving]
trevortwining has joined #ruby
joofsh has quit [Remote host closed the connection]
Slivka has joined #ruby
apeiros has quit [Ping timeout: 265 seconds]
cj3kim has quit [Quit: This computer has gone to sleep]
pothibo has quit [Quit: pothibo]
jimeh has joined #ruby
tommyvyo has quit [Quit: Computer has gone to sleep.]
joofsh has joined #ruby
skaczor has joined #ruby
rakunHo has quit [Remote host closed the connection]
amacgregor_osx has quit [Read error: Operation timed out]
amacgregor_osx has joined #ruby
Drewch has quit [Ping timeout: 246 seconds]
g-ram has joined #ruby
sdk has joined #ruby
sdk is now known as Guest51584
Guest51584 has quit [Client Quit]
mercwithamouth has joined #ruby
staafl has joined #ruby
pmros has joined #ruby
<pmros> hi!
maletor has joined #ruby
peregrine81 has joined #ruby
tomsthumb has joined #ruby
raul782 has quit [Ping timeout: 252 seconds]
robbyoconnor has joined #ruby
Zai00 has quit [Read error: Connection reset by peer]
reset has joined #ruby
medik has joined #ruby
medik has quit [Excess Flood]
medik has joined #ruby
Zai00 has joined #ruby
<Hanmac> banisterfiend & jrajav: did you guy notice that? http://www.youtube.com/watch?v=mpDOscUDQ_0
kirun has joined #ruby
joeycarmello has quit [Remote host closed the connection]
vlad_sta_ has quit [Remote host closed the connection]
vlad_starkov has joined #ruby
Zai00 has left #ruby [#ruby]
cburyta has quit [Remote host closed the connection]
Virunga has quit [Remote host closed the connection]
maletor has quit [Quit: Computer has gone to sleep.]
jipiboily has joined #ruby
jipiboily1 has joined #ruby
jipiboily1 has left #ruby [#ruby]
bigmac_ has joined #ruby
<jrajav> Hanmac: Holy what.
darthdeu has quit [Ping timeout: 244 seconds]
jipiboily has quit [Ping timeout: 246 seconds]
<jrajav> I.
<jrajav> What.
<jrajav> Yes.
<Hanmac> "what" is an common reaction when you see what pendleton did :D
grizlo42 has joined #ruby
<jrajav> It's more of a meta-what to me somehow missing him releasing a new series
<jrajav> I need to start following my twitter more closely
grizlo42 has left #ruby [#ruby]
i8igmac has quit [Ping timeout: 255 seconds]
swex_ has joined #ruby
swex has quit [Ping timeout: 246 seconds]
wroathe has joined #ruby
<banisterfiend> Hanmac: i dont get it, can u explain
raul782 has joined #ruby
<Hanmac> its from the same creator as AdventureTime
cakehero has joined #ruby
yshh has quit [Remote host closed the connection]
vlad_starkov has quit [Remote host closed the connection]
hsbt is now known as hsbt_away
hsbt_away is now known as hsbt
OSInet has joined #ruby
k610 has quit [Ping timeout: 240 seconds]
Slivka has quit [Read error: Connection reset by peer]
SuperrMann has quit [Quit: Bye all :)]
alek_b has quit [Remote host closed the connection]
Jasko has quit [Read error: Connection reset by peer]
Jasko has joined #ruby
adamholt has joined #ruby
Jackneill has quit [Quit: Jackneill]
wallerdev has quit [Quit: wallerdev]
wallerdev has joined #ruby
peregrine81 has quit [Ping timeout: 260 seconds]
visof has joined #ruby
wroathe has quit [Ping timeout: 268 seconds]
<BrianJ> this is kind of a two part question… I want to evaluate the result of my ruby script in bash and evaluate as true or false… Not sure how to make my script return false if it doesn't find anything or true if it does .. http://pastie.org/5357630
<BrianJ> anyone have any ideas?
Amirh has quit [Quit: Leaving.]
peregrine81 has joined #ruby
rippa has quit [Ping timeout: 240 seconds]
reset has quit [Quit: Leaving...]
jeff_sebring has joined #ruby
nitti has joined #ruby
A_85 has joined #ruby
havenn has quit [Remote host closed the connection]
k610 has joined #ruby
kirun_ has joined #ruby
bradhe has quit [Remote host closed the connection]
kirun has quit [Ping timeout: 248 seconds]
jenrzzz has joined #ruby
nitti has quit [Ping timeout: 240 seconds]
k610 has quit [Ping timeout: 248 seconds]
ablankfield has quit [Ping timeout: 276 seconds]
<shevy> damn... how do I access /proc/cpuinfo from within a .rb script?
<shevy> oh wait
<shevy> cat works
<shevy> so this works too File.read "/proc/cpuinfo"
<shevy> BrianJ: did you try with the exit value returned by the ruby script yet?
<shevy> exit 5, exit 0 etc...
<BrianJ> uh no
joeycarmello has joined #ruby
<shevy> man, php code is so weird. .. $tpl->set_var('network', makebox($text['netusage'], html_network(), '100%'));
<shevy> am trying to port this to ruby
<shevy> BrianJ: well your ruby script must give back something to the shell or?
<BrianJ> sorry was testing it
<BrianJ> i added exit 0
<Hanmac> shevy like this? tpl.network = makebox(text['netusage'], html_network, '100%')
<BrianJ> if it finds it
<shevy> hmm wonder how you can get the error status
raul782 has quit [Remote host closed the connection]
<BrianJ> exit 1?
qwerxy has quit [Quit: offski]
<shevy> Hanmac: yeah... this is already cleaner :D
Nisstyre-laptop has joined #ruby
<shevy> BrianJ: dunno, I forgot how to use shell scripts...
<shevy> but cant you check for the return value of shell scripts?
awestroke has quit [Remote host closed the connection]
Proshot has joined #ruby
Drewch has joined #ruby
niklasb_ is now known as niklasb
joeycarmello has quit [Ping timeout: 260 seconds]
xclite has quit [Ping timeout: 256 seconds]
wroathe has joined #ruby
<shevy> hey what would you rather use ...
havenn has joined #ruby
<shevy> @mode = :commandline or @mode = 'commandline' ? it can have only three different modes. that's where a symbol would be better or?
ablankfield has joined #ruby
Wiktor has joined #ruby
<Hanmac> symbol is more "Mathematical" :D
idzuna has joined #ruby
alejandro_ has joined #ruby
cj3kim has joined #ruby
cj3kim has quit [Changing host]
cj3kim has joined #ruby
chussenot has quit [Quit: chussenot]
JustinCampbell has joined #ruby
jipiboily has joined #ruby
<becom33> shevy, need a help bro
chussenot has joined #ruby
brianpWins has quit [Ping timeout: 248 seconds]
<Wiktor> hm, i have a problem with my lack of knowledge. I want to put records from sqlite select to a table, but it only returns me the last record, even if there is plenty of records. Is it possible to put it in 2dim table ?
jipiboily has left #ruby [#ruby]
<shevy> Hanmac: yeah... well, symbol can also never change... whereas @mode, if a string, could be modified i.e. via @mode << ' test'
<becom33> Im looking for a method that I can run a executable file in unix using ruby . I used exec but the problem is the process need to be runing for a long time . what I want to do is the kill process in the middle if I want to . but I cant get a process id without finishing the exec
_alejandro has quit [Ping timeout: 276 seconds]
<shevy> becom33: did you look at popen?
<becom33> shevy, wait I'll look into it
jipiboily has joined #ruby
<shevy> also try this here becom33 http://rubydoc.info/gems/systemu/2.5.2/frames
<shevy> it may be the easiest way
prezioso has quit [Quit: leaving]
<shevy> status = systemu date, 'stdout' => stdout, 'stderr' => stderr
prezioso has joined #ruby
<shevy> and you get back something like:
<shevy> [#<Process::Status: pid 50936 exit 0>, "2011-12-11 22:07:30 -0700\n", "2011-12-11 22:07:30 -0700\n"]
Virunga has joined #ruby
<shevy> also look at Process.pid
cakehero has quit [Quit: Computer has gone to sleep.]
prezioso has quit [Client Quit]
postmodern has joined #ruby
prezioso has joined #ruby
Proshot has quit [Quit: Leaving]
monkegjinni has quit [Remote host closed the connection]
prezioso has quit [Client Quit]
statarb3 has joined #ruby
statarb3 has quit [Changing host]
statarb3 has joined #ruby
prezioso has joined #ruby
cburyta has joined #ruby
bradhe has joined #ruby
brianpWins has joined #ruby
francisfish has joined #ruby
hsbt is now known as hsbt_away
hsbt_away is now known as hsbt
cburyta has quit [Ping timeout: 252 seconds]
prezioso has quit [Quit: leaving]
rknLA has quit [Remote host closed the connection]
<elico> need some help with cgi, reading request headers.
<becom33> shevy, im not sure if the popen is the thing what I want , well it good if Im using it to run calc or firefox or some with GUI . but this application is console based
prezioso has joined #ruby
prezioso has quit [Client Quit]
carlyle has joined #ruby
<shevy> all you need is to get the PID right?
<shevy> which you will get
<shevy> then you can kill it
<becom33> shevy, yea but when I goto kill it there is no pid like that to kill :/
<shevy> why not?
<shevy> Process.kill
g-ram has quit [Quit: Computer has gone to sleep.]
<shevy> this will kill irb if you try it, in irb:
<shevy> Process.kill 'SIGKILL',Process.pid
jipiboily has quit [Quit: Leaving.]
<shevy> now all you need is the proper pid
<shevy> `ls`; puts $?.pid
prezioso has joined #ruby
jipiboily has joined #ruby
<becom33> wait wait
Tania has joined #ruby
bradhe has quit [Ping timeout: 240 seconds]
<becom33> if Im passing argivments I have to do it separately right ?
g-ram has joined #ruby
prezioso has quit [Client Quit]
prezioso has joined #ruby
<shevy> dunno
<shevy> I find myself not needing much more than result = `ls bla ble` which also works
rellin has quit [Read error: Operation timed out]
<shevy> or I build up the full string before using ``
icole has joined #ruby
<shevy> I dont use exec() myself
<shevy> never had the need to use exec :)
jipiboily has quit [Ping timeout: 246 seconds]
<becom33> I have two deferent outputs of pids in here
<shevy> that makes sense no?
<shevy> your parent process, and the child
<becom33> I need to stop the process of the loop int he middle of the execution
prezioso has quit [Client Quit]
<shevy> kill the child pid then?
JustinCampbell has quit [Remote host closed the connection]
volty has joined #ruby
prezioso has joined #ruby
Norrin has joined #ruby
<becom33> so pipe.pid
Norrin has left #ruby ["Textual IRC Client: www.textualapp.com"]
Nisstyre-laptop has quit [Quit: Leaving]
prezioso has quit [Client Quit]
Jasko has quit [Read error: Connection reset by peer]
pac1 has joined #ruby
Jasko has joined #ruby
<volty> can somebody suggest me utilities (cli, gems, howto or whatever) to prepare epub and/or mobi out of source files (ruby, c++, etc) ?
jrajav has quit []
leoncamel has quit [Ping timeout: 240 seconds]
<volty> (btw i'm satisfied with just text but i need at least table of contents to jump from)
monkegjinni has joined #ruby
rakl has quit [Quit: sleeping]
frogstarr78 has quit [Remote host closed the connection]
beachandbytes has quit [Ping timeout: 264 seconds]
rakl has joined #ruby
Cultofmetatron has joined #ruby
qwerxy has joined #ruby
alexwh has quit [Ping timeout: 252 seconds]
Tania has quit [Read error: Connection reset by peer]
answer_42 has quit [Ping timeout: 246 seconds]
nitti has joined #ruby
JeanMertz has quit []
Slivka has joined #ruby
Slivka has quit [Read error: Connection reset by peer]
Guest7289 has joined #ruby
mengu has joined #ruby
SmoothSage_ has joined #ruby
wroathe has quit [Ping timeout: 255 seconds]
icole has quit [Read error: Connection reset by peer]
nitti has quit [Ping timeout: 246 seconds]
icole has joined #ruby
frogstarr78 has joined #ruby
SmoothSage has quit [Ping timeout: 252 seconds]
nateberkopec has quit [Quit: Linkinus - http://linkinus.com]
Guest7289 has quit [Ping timeout: 252 seconds]
Araxia has joined #ruby
dreinull has quit [Remote host closed the connection]
joeycarmello has joined #ruby
bradhe has joined #ruby
dakine has quit [Remote host closed the connection]
Wiktor has left #ruby ["Wychodzi"]
crackfu has quit [Remote host closed the connection]
JeanMertz has joined #ruby
prezioso has joined #ruby
prezioso has quit [Client Quit]
codeFiend has joined #ruby
<elico> anyone have some experience with cgi scripts?
joeycarmello has quit [Ping timeout: 256 seconds]
tchebb has quit [Read error: Connection reset by peer]
tchebb has joined #ruby
dagnachewa has joined #ruby
prezioso has joined #ruby
u89 has quit [Remote host closed the connection]
sheerun has joined #ruby
Araxia has quit [Ping timeout: 240 seconds]
yaymukund has joined #ruby
blacktulip has quit [Read error: Connection reset by peer]
cakehero has joined #ruby
havenn has quit [Remote host closed the connection]
prezioso has quit [Client Quit]
tchebb1 has joined #ruby
prezioso has joined #ruby
havenn has joined #ruby
joeycarmello has joined #ruby
tchebb has quit [Ping timeout: 246 seconds]
tchebb1 is now known as tchebb
bradhe has quit [Ping timeout: 256 seconds]
trevortwining has quit [Quit: trevortwining]
<shevy> elico: depends
mpereira has joined #ruby
<shevy> you can use ruby .cgi scripts just fine
prezioso has quit [Client Quit]
prezioso has joined #ruby
cj3kim has quit [Quit: This computer has gone to sleep]
<elico> shevy: thanks, I have used it but I want to do specific thing
prezioso has quit [Client Quit]
<elico> I want to get full request from user with headers and to use this script to fetch another file based on these headers...
<becom33> I have this array . I want use this in a method and everytime I call the method I want get a array value the one after I used before list = ['john','shevy','becom33','mona']
<shevy> not sure how to fetch the headers elico, is it not in some ENV file?
<shevy> .params or .env or something
<becom33> for a example if Im using john at the moment , and I call the method where this array has is been listed , I want it to return shevy
<shevy> http://www.ruby-doc.org/stdlib-1.9.3/libdoc/cgi/rdoc/CGI.html the "environmental variables" there perhaps
prezioso has joined #ruby
<shevy> becom33: so you want to rotate your array
visof has quit [Remote host closed the connection]
<becom33> shevy, yes . but just when I call the array method
<shevy> a = [ "a", "b", "c", "d" ] # a.rotate
jhgaylor has quit [Read error: Connection reset by peer]
<shevy> then do this in the method
jimeh has quit [Quit: Computer has gone to sleep.]
<shevy> or .rotate!
tommyvyo has joined #ruby
jake has joined #ruby
jake is now known as Guest62176
dagnachewa has quit [Remote host closed the connection]
joeycarmello has quit [Remote host closed the connection]
<elico> shevy: it's a bit of a problem
banisterfiend has quit [Ping timeout: 256 seconds]
<shevy> hehe
<shevy> isn't it always...
<becom33> sheerun, did u mean like this http://pastebin.com/zHwxuMwS
<elico> PHP can get enything since there are methods but ruby is another story
<becom33> shevy, *
mpereira has quit [Ping timeout: 245 seconds]
<shevy> elico: well I think there is always a way for ruby to do what PHP can do
<shevy> sometimes it's a bit more hidden :\
<shevy> and becom33 where is the problem
<elico> sure but it's cgi and not rails so it's another story
Bytephilia has joined #ruby
<becom33> shevy, what I actually want is thi s
<Bytephilia> hi
banisterfiend has joined #ruby
<becom33> but im getting a error saying rotate is a unknown method
<Bytephilia> can you link me to an up-to-date tutorial on how to work with a (local) sql database with ruby?
<shevy> becom33: you are on ruby 1.8.x ?
mpereira has joined #ruby
<Bytephilia> no, 1.9.3 currently
<becom33> shevy, yes
<shevy> if you are on 1.8.x you need to use another method
<becom33> shevy, ok :) Im lissening
Russell^^ has quit [Quit: Russell^^]
<shevy> Bytephilia: sorry no idea about sql
<Bytephilia> sry
<shevy> becom33: well... you need a .rotate like functionality
<elico> Bytephilia: what do you want to do with sql? it's importat
jeffreybaird has joined #ruby
<shevy> class Array def rotate n = 1; self[n..-1]+self[0...n] end
etehtsea has quit [Quit: Computer has gone to sleep.]
<shevy> or switch to 1.9.x ;)
<shevy> I switched permanently about a month ago
<shevy> ruby 1.8.x no longer compiles from source here
<shevy> and since I always compile from source, everything, I had to abandon it
<elico> on what os it is not compiled for you?
OSInet has left #ruby [#ruby]
francisfish has quit [Remote host closed the connection]
<becom33> shevy, I found somthing in the link u gave , but there is a problem http://pastebin.com/VgJpNSGc .
Bytephilia has quit []
peregrine81 has quit [Quit: Computer sleeping.]
<becom33> I mention what I got as a result and What I want as a result in the paste
prezioso has quit [Quit: leaving]
prezioso has joined #ruby
stephenjudkins has joined #ruby
qwerxy has quit [Quit: offski]
peregrine81 has joined #ruby
<shevy> elico: I use only linux
<elico> but what distro?
<shevy> becom33: I can't make sense of what you want there
<shevy> becom33: can't you use pastie.org?
<shevy> or just write here what does not work
<shevy> elico: I think this is chakra linux
<shevy> elico: the problem is, if I use something like debian, I have to deal with modified settings. i.e. ruby gem paths are in /var/lib suddenly
<elico> you dont know?
<shevy> elico: nope, no idea. it does not really matter because all distributions modify things in ways as to make it harder to not be dependent on them anymore
<becom33> shevy, well you can see I have method called array_method() so what i want is every time I call that method I want the array to return the value one after it returned before
caleb_io has quit [Quit: caleb_io]
bradhe has joined #ruby
<becom33> for a example . if it turned john for the first round of loop
<becom33> then the second round of loop it should return shevy
<shevy> becom33: then just solve it step by step right? in 1.9.x you can use .rotate and .rotate!
<shevy> yes, this is what .rotate already does, right?
<shevy> modify class Array
joeycarmello has joined #ruby
<shevy> if RUBY_VERSION < '1.9'
<shevy> then your script would be portable too
dagnachewa has joined #ruby
prezioso has quit [Quit: leaving]
Axsuul has joined #ruby
<shevy> I dont even see in your code where you rotate the elements at all
<shevy> you only use .shift :\
<shevy> do you know what .shift does?
dagnachewa has quit [Client Quit]
<shevy> and do you know what .push does...
<shevy> you.
<shevy> must.
<shevy> read.
<shevy> official.
<shevy> documentation :)
savage- has joined #ruby
tomsthumb has quit [Quit: Leaving.]
<shevy> ok, afk for a while now.
horofox has joined #ruby
Gue______ has joined #ruby
adeponte has joined #ruby
Gue______ has quit [Client Quit]
<havenn> name = %w[shevy john].cycle; puts name.next #=> "shevy"; puts name.next #=> "john"
joeycarmello has quit [Remote host closed the connection]
alanp has joined #ruby
alanp has quit [Read error: Connection reset by peer]
alanp has joined #ruby
u89 has joined #ruby
Michae___ has joined #ruby
nitti has joined #ruby
<volty> if you ever want to read you source files on an ebook device go for a one that supports the epub format (and tell the others to do so ..., thx).
alanp_ has quit [Ping timeout: 268 seconds]
cakehero has quit [Ping timeout: 245 seconds]
nitti has quit [Ping timeout: 240 seconds]
theRoUS has joined #ruby
theRoUS has quit [Changing host]
theRoUS has joined #ruby
pmros has quit [Quit: Konversation terminated!]
Chryson has joined #ruby
techi has joined #ruby
techi is now known as Guest95843
<Guest95843> is it just me? "RubyForge Could Not Connect to Database:"
Virunga has quit [Remote host closed the connection]
slainer68 has joined #ruby
staafl has quit [Ping timeout: 252 seconds]
adeponte has quit [Remote host closed the connection]
postmodern has quit [Quit: Leaving]
kold has joined #ruby
slainer68 has quit [Ping timeout: 256 seconds]
_bry4n has quit [Remote host closed the connection]
sebastorama has joined #ruby
monkegjinni has quit [Remote host closed the connection]
elaptics`away is now known as elaptics
JeanMertz has quit []
rman has quit [Remote host closed the connection]
savage- has quit [Quit: savage-]
vickaita has quit [Ping timeout: 264 seconds]
chussenot has quit [Quit: chussenot]
sebastorama has quit [Client Quit]
Criztian has joined #ruby
joeycarmello has joined #ruby
savage- has joined #ruby
yxhuvud has quit [Ping timeout: 260 seconds]
adamdonahue has joined #ruby
stephenjudkins has quit [Quit: stephenjudkins]
joeycarmello has quit [Ping timeout: 255 seconds]
adeponte has joined #ruby
theRoUS has quit [Ping timeout: 246 seconds]
reset has joined #ruby
dangerousdave has quit [Quit: Linkinus - http://linkinus.com]
jeffreybaird has quit [Quit: jeffreybaird]
cburyta has joined #ruby
Criztian has quit [Remote host closed the connection]
qwerxy has joined #ruby
codezombie has quit [Quit: Linkinus - http://linkinus.com]
cburyta has quit [Ping timeout: 256 seconds]
und3f has quit [Quit: Leaving.]
carlyle has quit [Remote host closed the connection]
theRoUS has joined #ruby
ChampS666 has quit [Ping timeout: 260 seconds]
hiroyuki has joined #ruby
trevortwining has joined #ruby
adeponte has quit [Remote host closed the connection]
adeponte has joined #ruby
Michae___ has quit [Remote host closed the connection]
codeFiend has quit [Quit: codeFiend]
trevortwining has quit [Client Quit]
Jasko has quit [Read error: Connection reset by peer]
slainer68 has joined #ruby
Jasko has joined #ruby
trevortwining has joined #ruby
joofsh has quit [Ping timeout: 246 seconds]
jimeh has joined #ruby
ChampS666 has joined #ruby
senny has joined #ruby
icole has quit [Remote host closed the connection]
cj3kim has joined #ruby
kirun_ has quit [Quit: Client exiting]
becom33 has quit [Read error: Connection timed out]
peregrine81 has quit [Quit: Computer sleeping.]
banseljaj has quit [Excess Flood]
banseljaj has joined #ruby
Michae___ has joined #ruby
Xeago has quit [Remote host closed the connection]
theRoUS has quit [Read error: Operation timed out]
bradhe has quit [Remote host closed the connection]
amacgregor has joined #ruby
rellin has joined #ruby
Chryson has quit [Quit: Leaving]
hackerdude has joined #ruby
<havenn> Guest95843: Same here.