apeiros_ changed the topic of #ruby to: programming language || ruby-lang.org || Paste >3 lines of text in http://pastie.org || Rails is in #rubyonrails
amalvagomes has joined #ruby
tomb_ has quit [Quit: ["Textual IRC Client: www.textualapp.com"]]
headius has joined #ruby
alexim has quit [Quit: sleep]
kawa_xxx has joined #ruby
kawa_xxx has quit [Remote host closed the connection]
cableray has joined #ruby
tfitts has quit [Ping timeout: 265 seconds]
benatwork has joined #ruby
c0rn has joined #ruby
mikepack has joined #ruby
piotr_ has quit [Ping timeout: 245 seconds]
frishi has quit [Quit: Leaving...]
christianrojas has quit [Quit: Linkinus - http://linkinus.com]
cbuxton has quit [Ping timeout: 244 seconds]
robertondc has quit [Remote host closed the connection]
benatwork has quit [Ping timeout: 245 seconds]
ringotwo has quit [Ping timeout: 260 seconds]
c0rn has quit [Quit: Computer has gone to sleep.]
Chryson has joined #ruby
Urth|Away is now known as Urthwhyte
tfitts has joined #ruby
berserkr has quit [Quit: Leaving.]
Urthwhyte is now known as Urth|Away
Progster has quit [Ping timeout: 256 seconds]
yoklov has quit [Quit: bye!]
<eam> Does Ruby have anything along the lines of Perl's Scalar::Util::looks_like_number() ?
<eam> something to examine whether an object can be meaningfully converted into a numeric value
<eam> well, a string
<eam> looks like I can use Float()
nirakara has quit [Ping timeout: 244 seconds]
dorei has quit []
pk1001100011 has quit [Quit: Bredząc trzy po trzy oznajmiłeś, że Ty; Dasz im Władcę Snów; Nie pojęli Twych słów; Więc zginęły miliony – ich słowa brzmiały dziwnie; Ten sam Bóg nosił inne imię (…)]
davidcelis has quit [Quit: K-Lined]
Corey has quit [Read error: Connection reset by peer]
krz has quit [Quit: krz]
adeponte has joined #ruby
nlc has quit [Quit: Leaving]
thomas has quit [Read error: Connection reset by peer]
looopy has quit [Read error: Connection reset by peer]
b1rkh0ff has quit [Ping timeout: 265 seconds]
tfitts has quit [Ping timeout: 252 seconds]
looopy has joined #ruby
workmad3 has quit [Ping timeout: 245 seconds]
looopy_ has joined #ruby
thomas has joined #ruby
StoSun has joined #ruby
iocor has quit [Quit: Computer has gone to sleep.]
MrGando has quit [Quit: Bye]
pdtpatrick has quit [Quit: pdtpatrick]
looopy has quit [Ping timeout: 244 seconds]
Corey has joined #ruby
frishi has joined #ruby
Solnse has joined #ruby
hadees has joined #ruby
Gavilan has left #ruby [#ruby]
kstephens_ has quit [Ping timeout: 260 seconds]
robdodson has quit [Quit: robdodson]
RegEchse has quit [Quit: <3 WeeChat (v0.3.8-rc2)]
Clordio has joined #ruby
Clordio has quit [Client Quit]
<shevy> looks like number? what is this doing hmm
looopy_ has quit [Remote host closed the connection]
<shevy> regex wont work? hmm "5" =~ /\d/
<shevy> or class String; def is_a_number?; return true if self =~ /\d+/
<eam> it's very complicated to regex
<eam> \d+ won't do it
<eam> need to allow for ., "e" and a host of other corner cases
bigoldrock has quit [Quit: Leaving.]
<eam> better to just hook the code that ruby uses internally to cast
mikeg has quit [Quit: Leaving]
igaiga has joined #ruby
<eam> though, looks like Float() isn't quite perfect -- it won't accept NaN
<eam> and "NaN".to_f => 0.0
<eam> that's broken
c0rn has joined #ruby
QaDeS has joined #ruby
nobitanobi has quit [Quit: Leaving.]
tomzx has joined #ruby
<eam> odd, does ruby have a way to state a float literal for NaN and Infinity?
tymat has joined #ruby
<eam> I can create them with math, but it appears I can't name them
Aaton is now known as Aaton_off
Gavilan has joined #ruby
ThatDudeGuy_ has joined #ruby
kstephens has joined #ruby
Solnse1 has joined #ruby
davidcelis has joined #ruby
Solnse has quit [Ping timeout: 244 seconds]
looopy has joined #ruby
brianpWins has quit [Quit: brianpWins]
xorspark has quit [Ping timeout: 272 seconds]
kawa_xxx has joined #ruby
dankest has joined #ruby
shevy has quit [Ping timeout: 246 seconds]
avtobiff has joined #ruby
Squarepy has joined #ruby
Squarepy has quit [Changing host]
Squarepy has joined #ruby
kstephens has quit [Read error: Connection reset by peer]
Vainoharhainen has quit [Read error: Connection reset by peer]
delinquentme has joined #ruby
<delinquentme> anyone in here happen to have a guess as how to create a bot to run and make clicks inside diablo3 with ruby?
adeponte has quit [Remote host closed the connection]
mfridh has quit [Read error: Connection reset by peer]
uris has joined #ruby
mfridh has joined #ruby
kstephens has joined #ruby
Solnse1 is now known as Solnse
knightb_ader has joined #ruby
knightb_ader has quit [Client Quit]
knightblader has quit [Remote host closed the connection]
knightblader has joined #ruby
perryh_away is now known as perryh
<seanstickle> delinquentme: or COM script in Ruby to control http://www.autoitscript.com/site/autoit/
<seanstickle> delinquentme: etc
adamkittelson has quit [Remote host closed the connection]
<avtobiff> hi! i am wondering about a ruby 1.8/1.9 issue. when i run the tests for rubymail they succeed all of them with ruby 1.8 but all fail with ruby 1.9 because in setup method's first line the local variable "name" is referenced.
tomb_ has joined #ruby
minijupe has joined #ruby
<avtobiff> it seems this contains the test method name (when printing "name" and running with ruby 1.8). how do i port this to ruby 1.9?
<seanstickle> What's the actual error?
<delinquentme> seanstickle, so that makes sense and I can kind of parallel it with autotesting .. however the actually running of d3 happen in java then right?
<delinquentme> like ruby would execute through java whatever command to run the program
<avtobiff> NameError: undefined local variable or method `name' for #<TextRMailParserPushbackReader:0x91778d0> /home/avtobiff/debian/lab/ruby-rubymail/test/testbase.rb:106:in `setup'
<avtobiff> seanstickle, ^
igotnolegs has joined #ruby
<avtobiff> for all 177 tests
<delinquentme> and then i'd be able to program in ruby commands to click button and the like
shevy has joined #ruby
<seanstickle> delinquentme: jruby would just run on the side and issue mouse commands to the d3 app
<seanstickle> delinquentme: and keyboard commands and whatnot
<seanstickle> avtobiff: link to the code?
<seanstickle> delinquentme: same deal with autoit
michaelmartinez has joined #ruby
hasrb has quit [Remote host closed the connection]
passbe has quit [Quit: WeeChat 0.3.7]
<seanstickle> And that runs in 1.8?
<seanstickle> Weird.
<avtobiff> yes
<avtobiff> it prints the test method name for each test run when i add "puts name"
<seanstickle> Where the heck is "name" defined?
<seanstickle> Oh, how I hate stateful OO
vitoravelino`afk is now known as vitoravelino
wilmoore has quit [Remote host closed the connection]
roams has quit [Ping timeout: 245 seconds]
savage-_ has quit [Remote host closed the connection]
passbe has joined #ruby
<avtobiff> seanstickle, it is only local in scratch_file_write also right?
<seanstickle> Passed as an argument into scratch_file_write
DuoSRX has quit [Remote host closed the connection]
<avtobiff> seanstickle, which means it is local right?
<seanstickle> Sure
hamfz_ has joined #ruby
krusty_ar_ has quit [Remote host closed the connection]
kevinbond has quit [Quit: kevinbond]
<avtobiff> seanstickle, to circumvent the problem. is it possible to get the method name somehow?
<seanstickle> huh?
mpereira has quit [Ping timeout: 240 seconds]
<avtobiff> seanstickle, if i do "puts name" i get e.g. this as output "test_nothing(TestBase)"
<avtobiff> how can i get that, i suppose it is method name and class it is from no?
<seanstickle> If you do puts name where?
<avtobiff> in setup
<avtobiff> in testbase.rb
notjohn has quit [Quit: notjohn]
<avtobiff> i have to go now. back tomorrow.
banghouse is now known as banghouseAFK
emet has joined #ruby
bpgoldsb has quit [Remote host closed the connection]
stephenjudkins has quit [Quit: stephenjudkins]
tymat is now known as starburst
perryh is now known as perryh_away
Ethan is now known as undersc0re97
cj3kim has quit [Ping timeout: 276 seconds]
macmartine has joined #ruby
remmy444 has joined #ruby
kevinbond has joined #ruby
c0rn has quit [Quit: Computer has gone to sleep.]
hamfz_ has quit [Ping timeout: 252 seconds]
nobitanobi has joined #ruby
macmartine has quit [Remote host closed the connection]
macmartine has joined #ruby
Hanmac1 has joined #ruby
Hanmac has quit [Ping timeout: 244 seconds]
vitor-br has joined #ruby
perryh_away is now known as perryh
apok has quit [Quit: apok]
hamfz_ has joined #ruby
seanstickle has quit [Quit: Nihil sub sole novum]
keymone_ has joined #ruby
khakimov has quit [Quit: Computer has gone to sleep.]
mpereira has joined #ruby
keymone has quit [Ping timeout: 260 seconds]
keymone_ is now known as keymone
arkx has quit [Ping timeout: 244 seconds]
benatwork has joined #ruby
nobitanobi has quit [Read error: Connection reset by peer]
jonathanwallace has quit [Remote host closed the connection]
nobitanobi has joined #ruby
benatwork has quit [Ping timeout: 245 seconds]
sj26 has quit [Quit: Rainbows!]
philcrissman has quit [Ping timeout: 260 seconds]
epochwolf|2 has joined #ruby
epochwolf|2 has left #ruby [#ruby]
kil0byte_ has quit [Remote host closed the connection]
x0F has quit [Disconnected by services]
x0F_ has joined #ruby
x0F_ is now known as x0F
hamfz_ has quit [Ping timeout: 265 seconds]
savage- has joined #ruby
consti has joined #ruby
consti has quit [Changing host]
consti has joined #ruby
helichopter has quit [Quit: Leaving.]
nobitanobi has quit [Read error: Connection reset by peer]
nobitanobi has joined #ruby
Vainoharhainen has joined #ruby
tchebb has quit [Ping timeout: 245 seconds]
brianpWins has joined #ruby
Vainoharhainen has quit [Read error: Connection reset by peer]
dnyy has quit [Remote host closed the connection]
savage- has quit [Remote host closed the connection]
charliesome has joined #ruby
tfitts has joined #ruby
hamfz_ has joined #ruby
tchebb has joined #ruby
ciopte7 has quit [Quit: ciopte7]
spikku has joined #ruby
eywu has quit [Quit: Leaving.]
Squarepy has quit [Read error: Connection reset by peer]
artemis12 has joined #ruby
digitalcakestudi has joined #ruby
Whoop has quit [Quit: WeeChat 0.3.7]
ken_barber has quit [Remote host closed the connection]
consti has quit [Quit: Textual IRC Client: http://www.textualapp.com/]
Martz has quit [Ping timeout: 276 seconds]
nobitanobi has quit [Read error: Connection reset by peer]
nobitanobi has joined #ruby
hamfz_ has quit [Ping timeout: 245 seconds]
dnyy has joined #ruby
iamjarvo has joined #ruby
Martz has joined #ruby
nfluxx_ has joined #ruby
nfluxx_ has quit [Client Quit]
niku4i has joined #ruby
nfluxx has quit [Read error: Operation timed out]
nobitanobi has quit [Read error: Connection reset by peer]
Martz has quit [Ping timeout: 252 seconds]
andrewhl has joined #ruby
nobitanobi has joined #ruby
spikku has quit [Quit: Leaving]
nobitanobi has quit [Read error: Connection reset by peer]
nobitanobi has joined #ruby
hamfz_ has joined #ruby
niku4i has quit [Remote host closed the connection]
serroba has joined #ruby
kil0byte has joined #ruby
kevinbond has quit [Quit: kevinbond]
serroba has quit [Client Quit]
Martz has joined #ruby
atmosx has quit [Ping timeout: 240 seconds]
hamfz_ has quit [Ping timeout: 244 seconds]
atmosx has joined #ruby
AlbireoX`Laptop has joined #ruby
serroba has joined #ruby
Martz has quit [Ping timeout: 240 seconds]
niku4i has joined #ruby
Martz has joined #ruby
nobitanobi has quit [Read error: Connection reset by peer]
nobitanobi has joined #ruby
Martz has quit [Excess Flood]
tayy has quit [Remote host closed the connection]
ciopte7 has joined #ruby
centipedefarmer has joined #ruby
nobitanobi has quit [Read error: Connection reset by peer]
addi has quit [Quit: ZNC - http://znc.sourceforge.net]
Stefunel has quit [Quit: ZNC - http://znc.sourceforge.net]
nobitanobi has joined #ruby
sonicpond has quit [Quit: leaving]
busybox42 has quit [Quit: Leaving.]
busybox42 has joined #ruby
ThatDudeGuy_ has quit [Quit: ThatDudeGuy_]
nfluxx has joined #ruby
nobitanobi has quit [Read error: Connection reset by peer]
nobitanobi has joined #ruby
banisterfiend has quit [Remote host closed the connection]
nfluxx has quit [Client Quit]
theRoUS has quit [Read error: Connection reset by peer]
macmartine has quit [Quit: macmartine]
nobitanobi has quit [Read error: Connection reset by peer]
tk___ has joined #ruby
nobitanobi has joined #ruby
Martz has joined #ruby
macmartine has joined #ruby
macmartine has quit [Remote host closed the connection]
macmartine has joined #ruby
nobitanobi has quit [Read error: Connection reset by peer]
nobitanobi has joined #ruby
Mohan has quit [Ping timeout: 246 seconds]
uris has quit [Quit: leaving]
xaxisx has joined #ruby
iamjarvo has quit [Quit: Leaving.]
RDove has joined #ruby
bluebie has joined #ruby
yabuki has joined #ruby
kenperkins has quit [Quit: Computer has gone to sleep.]
Banistergalaxy has joined #ruby
Martz has quit [Ping timeout: 265 seconds]
emet has quit [Remote host closed the connection]
nobitanobi has quit [Read error: Connection reset by peer]
nobitanobi has joined #ruby
mel0on has joined #ruby
b1rkh0ff has joined #ruby
mattonrails has joined #ruby
dankest has quit [Quit: Leaving...]
dankest has joined #ruby
dankest has quit [Client Quit]
iamjarvo has joined #ruby
niku4i has quit [Remote host closed the connection]
nobitanobi has quit [Read error: Connection reset by peer]
xaxisx has quit [Quit: xaxisx]
emmanuelux has quit [Remote host closed the connection]
nobitanobi has joined #ruby
delinquentme has quit [Ping timeout: 260 seconds]
eywu has joined #ruby
theRoUS has joined #ruby
banisterfiend has joined #ruby
benatwork has joined #ruby
Vert has quit [Ping timeout: 252 seconds]
thecreators has joined #ruby
Banistergalaxy has quit [Ping timeout: 260 seconds]
erichmenge has quit [Quit: erichmenge]
b3gott3n has joined #ruby
<b3gott3n> ello ello
benatwork has quit [Ping timeout: 245 seconds]
<bluebie> hello b3gott3n!
banisterfiend has quit [Remote host closed the connection]
kil0byte has quit [Ping timeout: 245 seconds]
Martz has joined #ruby
ThatDudeGuy_ has joined #ruby
kil0byte has joined #ruby
siksia has quit [Ping timeout: 245 seconds]
flip_digits has quit [Quit: ["Textual IRC Client: www.textualapp.com"]]
ThatDudeGuy_ has quit [Client Quit]
gTylerk has joined #ruby
yekta has joined #ruby
michaelmartinez has quit [Quit: Check it, Wreck it http://www.caffeineindustries.com/blog]
siksia has joined #ruby
yekta has quit [Client Quit]
Martz has quit [Ping timeout: 244 seconds]
gTylerk has quit [Client Quit]
banisterfiend has joined #ruby
axl_ has quit [Quit: axl_]
digitalcakestudi has quit [Ping timeout: 245 seconds]
ipoval has joined #ruby
kil0byte has quit [Ping timeout: 244 seconds]
gTylerk has joined #ruby
nobitanobi has quit [Read error: Connection reset by peer]
nobitanobi has joined #ruby
andrewhl has quit [Remote host closed the connection]
looopy has quit [Remote host closed the connection]
Martz has joined #ruby
spikku has joined #ruby
ryanf has quit [Quit: leaving]
<spikku> ruby-lang.org is down?
kil0byte has joined #ruby
<bluebie> spikku: seems that way
<spikku> aight
macmartine has quit [Quit: macmartine]
<spikku> :|
<bluebie> need help with anything spikku? :)
<spikku> I had to uninstall my windows ruby because devkit was crashing install json lol
AdeleLuvr has joined #ruby
<spikku> going to reinstall when site is back up
<spikku> minus the devkit
AdeleLuvr has left #ruby [#ruby]
<spikku> thank you for asking :)
<spikku> I'm new to Ruby but I'm getting addicted
looopy has joined #ruby
<bluebie> yay!
<bluebie> what's your favourite ruby thing so far? :)
zeromodu_ has joined #ruby
Martz has quit [Ping timeout: 250 seconds]
ericcoleman has quit [Quit: leaving]
<spikku> Hmm...
nobitanobi has quit [Read error: Connection reset by peer]
<spikku> I think the documentation is great
<spikku> I like the syntax rules
wilmoore has joined #ruby
werdnativ has quit [Quit: werdnativ]
<spikku> I like that everything is an object
<spikku> I like gem x.x
zeromodulus has quit [Ping timeout: 244 seconds]
<spikku> installing it is cake on Linux and Windows
<bluebie> yeah :D
<bluebie> yeah
<spikku> 1.9 screams through strings and parsing vs other stuff I've been using
<bluebie> ruby is great
<spikku> I often need to parse large amounts of flat file data
<artemis12> I use ruby for a lot of scripting on servers
<artemis12> It's great
<bluebie> I recently learnt about Enumerator
ipoval has quit [Quit: ipoval]
<bluebie> it made me so happy to realise I could turn the various eaches in to maps, like some_hash.each_pair.map or 50.times.map { |x| x * 2 }
ipoval has joined #ruby
<bluebie> I use it mostly for little household projects
<bluebie> ruby runs my doorbell, it logs my internet service quality to help me fight my isp so they'll fix something
<bluebie> it controls my ceiling fan and lighting
<bluebie> now I have a raspberry pi with linux and ruby and I can put ruby in even more things!
<spikku> My wife likes the name more
<spikku> WifeL "Python? .. what about that pretty one, Ruby?"
<spikku> small but c'mon, live is about poeple
<bluebie> a friend gifted me a data projector last night, so I'm going to try and make some generative visual art with ruby next!
<bluebie> put a wide angle lens on it and bathe the ceiling in ruby powered pretties
<artemis12> That sounds cool
<spikku> Hmm
<bluebie> mm yeah not sure how to do it though
<bluebie> maybe play with opengl, or maybe I should try pumping pixels in to framebuffer
<spikku> Someone needs to create something violent with Ruby... "yeah, the automated paintball turrent's AI is written in Ruby"
<bluebie> ooh!
<bluebie> a friend has a webcam in his living room which does portal turret taunts when it sees motion
<bluebie> I'd like to do one with face recognition which points a red laser at the person's chest!
<bluebie> and recognises the people who live here
<spikku> You could sell it on thinkgeek.com
<bluebie> nah
<spikku> :|
<bluebie> open source and all that tho
<spikku> I see
<bluebie> make your own!
Martz has joined #ruby
<bluebie> there are rubygems for opencv, so I figure it'll not be too tricky to get face recognition and tracking working
tomb_ has quit [Quit: Computer has gone to sleep.]
nobitanobi has joined #ruby
<bluebie> and pointing a laser is easy enough with the servos I have
* spikku F%'s ruby-lang.org
* spikku hates typos
Solnse has quit [Quit: Leaving.]
goldsnlean has joined #ruby
fumduq has quit [Read error: Operation timed out]
serroba has quit [Quit: This computer has gone to sleep]
nobitanobi has quit [Read error: Connection reset by peer]
Martz has quit [Ping timeout: 252 seconds]
nobitanobi has joined #ruby
araujo has quit [Quit: Leaving]
philcrissman has joined #ruby
brianpWins has quit [Quit: brianpWins]
goldsnlean has quit [Quit: leaving]
nobitanobi has quit [Remote host closed the connection]
goldsnlean has joined #ruby
tfittsy has joined #ruby
kil0byte has quit [Ping timeout: 260 seconds]
mel0on has quit [Remote host closed the connection]
thecreators has quit [Quit: thecreators]
tfitts has quit [Ping timeout: 256 seconds]
gmci has quit [Read error: No route to host]
beneggett has quit [Ping timeout: 265 seconds]
spikku has quit [Quit: Leaving]
gmci has joined #ruby
charliesome has quit [Ping timeout: 244 seconds]
beneggett has joined #ruby
goldsnlean has left #ruby [#ruby]
Smirnov has joined #ruby
<Smirnov> anyone here using activerecord outside of rails?
xorspark has joined #ruby
savage- has joined #ruby
<bluebie> Smirnov: lots of people do!
<bluebie> Smirnov: Are you wanting to use it in another web framework or something else entirely?
<Smirnov> i'm having utter problems getting it to do something as simple as opening a db file
rmascarenhas has quit [Quit: leaving]
QaDeS has quit [Quit: Ex-Chat]
<bluebie> well, I can't really help sadly, as I never touch that sql stuff. Maybe worth trying the rails channel, as it is more or less their project
charliesome has joined #ruby
<TTilus> Smirnov: you kow, you are being very precise now :)
<bluebie> you could also poke sinatra and camping, as those web frameworks deal with active record support
<Smirnov> look at this, i just set the logger and it already craps out. https://gist.github.com/580476716d1689268756
<deryl> blast_hardcheese, actually ActiveRecord isn't just a rails thing. its independent of rails. its a ruby thing, just rails pulled it in and built around it
<deryl> err bluebie even
<bluebie> deryl: good to know!
* TTilus goes look at the gist
<Smirnov> been banging my head aginst this error for a while
beilabs has quit [Ping timeout: 244 seconds]
<Smirnov> actually i get that errror if all I do is reference ActiveRecord::Base :(
becom33 has quit [Ping timeout: 248 seconds]
becom33 has joined #ruby
<Smirnov> must be some sort of magic handshake i forgot to do first?
<TTilus> weird error, need to try that out myself,code looks perfectly legit
tomb_ has joined #ruby
<TTilus> hmm, require 'activerecord'
<Smirnov> i get a "no such file to load" in that case TTilus
zeromodu_ is now known as zeromodulus
<Smirnov> i'm on ubuntu 10.04 LTS fyi
<Smirnov> but i just grabbed the activerecord gem an hour ago
<Smirnov> oh well i guess i can just use the sqlite3 gem , this is too much hassle
kevinbond has joined #ruby
Jackneill has joined #ruby
mikeycgto has quit [Remote host closed the connection]
Solnse has joined #ruby
gTylerk has quit [Remote host closed the connection]
<Smirnov> i guess its not as straight forward to use if its not in rails which is too bad
cableray has quit [Quit: See you 'round like a donut.]
dkissell_ has joined #ruby
abstrusenick has joined #ruby
mattonrails has quit [Remote host closed the connection]
bluebie has quit [Quit: Linkinus - http://linkinus.com]
dkissell has quit [Ping timeout: 246 seconds]
mmochan has joined #ruby
beilabs has joined #ruby
cha1tanya has joined #ruby
<Smirnov> is there a method already which takes [:a, :b] and [1,2] and makes a { :a => 1, :b => 2} ?
dkissell has joined #ruby
Morkel has joined #ruby
dkissell_ has quit [Ping timeout: 252 seconds]
philcrissman has quit [Remote host closed the connection]
perryh is now known as perryh_away
<TTilus> Smirnov: look at .zip and Hash[arr]
banisterfiend has quit [Ping timeout: 244 seconds]
khakimov has joined #ruby
beneggett has quit [Quit: Computer has gone to sleep.]
sire has joined #ruby
banisterfiend has joined #ruby
<sire> hello
<sire> anyone around?
raul782 has joined #ruby
<kichawa> 9
<kichawa> hi
<kichawa> but python is my choice:)
<Smirnov> TTilus: ah yea nice
<sire> hi kichawa, thanks for responding, i think i may have figured out the answer for what i was looking for...
raul782 has quit [Ping timeout: 260 seconds]
<banisterfiend> sire: what's your Q.
philcrissman has joined #ruby
benatwork has joined #ruby
savage- has quit [Remote host closed the connection]
Hanmac1 is now known as Hanmac
bosphorus has joined #ruby
Azure is now known as AzureInSocks
<Boohbah> Smirnov: keys=[:a,:b]; vals=[1,2]; Hash[keys.zip(vals)]
philcrissman has quit [Remote host closed the connection]
headius has quit [Quit: headius]
<banisterfiend> Boohbah: sup boob
<Boohbah> banisterfiend: hey, just started learning rails :)
benatwork has quit [Ping timeout: 245 seconds]
<banisterfiend> Boohbah: dark, dark we all go into the dark..
rippa has joined #ruby
<Boohbah> heh
Martz has joined #ruby
Martz has quit [Excess Flood]
imami|afk is now known as banseljaj
pk1001100011 has joined #ruby
looopy has quit [Remote host closed the connection]
bfig has quit [Ping timeout: 245 seconds]
liluo has joined #ruby
Martz has joined #ruby
balki has quit [Ping timeout: 250 seconds]
tomb_ has quit [Quit: Computer has gone to sleep.]
alanp has quit [Ping timeout: 250 seconds]
<sire> @banisterfiend you still around?
<sire> can anyone help with a problem i am having trying to push to heroku
<banisterfiend> sire: maybe, what u got for me homes
<banisterfiend> sire: nah, no experience there sry
<banisterfiend> sire: no pvt msg pls
<banisterfiend> np
<banisterfiend> :)
spikku has joined #ruby
abstrusenick has quit [Quit: abstrusenick]
eywu has quit [Quit: Leaving.]
palmfrond has quit [Read error: Connection reset by peer]
Martz has quit [Ping timeout: 244 seconds]
philcrissman has joined #ruby
serroba has joined #ruby
shadoi has quit [Remote host closed the connection]
drspin has quit [Quit: leaving]
schovi has joined #ruby
L-----D has joined #ruby
daniel_hinojosa has quit [Ping timeout: 256 seconds]
nigman is now known as platinum_lolin
alanp has joined #ruby
balki has joined #ruby
drspin has joined #ruby
Hanmac has left #ruby [#ruby]
Martz has joined #ruby
headius has joined #ruby
Hanmac has joined #ruby
igotnolegs has quit [Quit: Computer has gone to sleep.]
drspin has quit [Quit: leaving]
sepp2k has joined #ruby
headius has quit [Client Quit]
ph^ has joined #ruby
ryanf has joined #ruby
drspin has joined #ruby
palmfrond has joined #ruby
yabuki has quit [Remote host closed the connection]
Martz has quit [Ping timeout: 252 seconds]
yabuki has joined #ruby
rippa has quit [Ping timeout: 260 seconds]
mneorr has joined #ruby
schaerli has joined #ruby
schaerli has quit [Remote host closed the connection]
williamcotton has quit [Quit: williamcotton]
yabuki has quit [Ping timeout: 250 seconds]
platzhirsch has joined #ruby
<platzhirsch> I've defined a method in a ruby file and require it in another file, but the method is undefined when executed, what am I doing wrong or do I have to use include here?
mrsrikanth has joined #ruby
cantonic has joined #ruby
bosphorus has quit [Remote host closed the connection]
philcrissman has quit [Remote host closed the connection]
iamjarvo has quit [Quit: Leaving.]
Martz has joined #ruby
Occult has joined #ruby
Occult has quit [Max SendQ exceeded]
L-----D has quit [Quit: Leaving]
amalvagomes has quit [Ping timeout: 260 seconds]
mneorr has quit [Remote host closed the connection]
areil has joined #ruby
theRoUS_ has quit [Changing host]
theRoUS_ has joined #ruby
theRoUS_ is now known as RoUS
Martz has quit [Ping timeout: 244 seconds]
Occult has joined #ruby
queenlua has joined #ruby
wilmoore has quit [Remote host closed the connection]
tewecske has joined #ruby
kevinbond has quit [Quit: kevinbond]
tewecske has quit [Read error: Operation timed out]
punkrawkR has quit [Read error: Connection reset by peer]
schaerli has joined #ruby
francisfish has joined #ruby
yannis has quit [Quit: yannis]
jimeh has quit [Read error: Connection reset by peer]
jimeh2 has joined #ruby
CheeToS has joined #ruby
francisfish has quit [Ping timeout: 245 seconds]
AlbireoX`Laptop has quit [Remote host closed the connection]
liluo has quit [Remote host closed the connection]
mneorr has joined #ruby
brianpWins has joined #ruby
sspiff has joined #ruby
serroba_ has joined #ruby
schaerli has quit [Remote host closed the connection]
Shoobdidoo has joined #ruby
mdw has joined #ruby
Morkel has quit [Quit: Morkel]
serroba has quit [Ping timeout: 244 seconds]
dtang has quit [Quit: dtang]
khakimov has quit [Quit: Computer has gone to sleep.]
dtang has joined #ruby
dtang has quit [Client Quit]
fserb has joined #ruby
pen has joined #ruby
<spikku> make.exe has stopped working\
* spikku sighs
minijupe has quit [Quit: minijupe]
maesbn has joined #ruby
tomb_ has joined #ruby
AlbireoX`Laptop has joined #ruby
serroba__ has joined #ruby
serroba_ has quit [Ping timeout: 252 seconds]
cantonic has quit [Quit: cantonic]
ipoval has quit [Quit: ipoval]
AlbireoX`Laptop has quit [Remote host closed the connection]
AlbireoX`Laptop has joined #ruby
Shoobdidoo has quit [Quit: Verlassend]
zomgbie has joined #ruby
<Sigma00> platzhirsch: is the method in a class or a module?
<platzhirsch> Sigma00: in a method
benatwork has joined #ruby
* Sigma00 shrugs, it should work if you're using require_relative
<platzhirsch> Sigma00: it works, I didn't know where the problems was I retyped the method invocation and everything was fine
<Sigma00> heh, weird
beilabs has quit [Ping timeout: 244 seconds]
AlbireoX`Laptop has quit [Remote host closed the connection]
benatwork has quit [Ping timeout: 245 seconds]
mmsequeira has joined #ruby
serroba__ has quit [Ping timeout: 245 seconds]
mneorr has quit [Remote host closed the connection]
QKO has quit [Read error: Connection reset by peer]
tomzx has quit [Ping timeout: 244 seconds]
QKO has joined #ruby
Martz has joined #ruby
maesbn has quit [Remote host closed the connection]
Solnse has quit []
tomb_ has quit [Quit: Computer has gone to sleep.]
beilabs has joined #ruby
pen has quit [Remote host closed the connection]
palmfrond has quit [Read error: Connection reset by peer]
palmfrond has joined #ruby
schaerli has joined #ruby
Eldariof59-ru has joined #ruby
schaerli has quit [Remote host closed the connection]
CheeToS has quit [Ping timeout: 244 seconds]
maesbn has joined #ruby
Martz has quit [Ping timeout: 252 seconds]
workmad3 has joined #ruby
mneorr has joined #ruby
mengu has quit [Read error: Connection reset by peer]
visof has joined #ruby
Martz has joined #ruby
bosphorus has joined #ruby
schaerli has joined #ruby
Emmanuel_Chanel has quit [Quit: Leaving]
apeiros_ has joined #ruby
bluOxigen has joined #ruby
visof has quit [Quit: Leaving]
charliesome has quit [Ping timeout: 244 seconds]
serroba has joined #ruby
Emmanuel_Chanel has joined #ruby
beneggett has joined #ruby
schaerli has quit [Remote host closed the connection]
mengu has joined #ruby
mengu has quit [Changing host]
mengu has joined #ruby
dnyy has quit [Remote host closed the connection]
cha1tanya has quit [Quit: Leaving]
Martz has quit [Ping timeout: 260 seconds]
araujo has joined #ruby
araujo has quit [Changing host]
araujo has joined #ruby
maesbn has quit [Remote host closed the connection]
Martz has joined #ruby
siksia has quit [Ping timeout: 244 seconds]
r4um has joined #ruby
Eldariof59-ru has quit []
siksia has joined #ruby
yannis has joined #ruby
yannis has quit [Client Quit]
wallerdev has quit [Quit: wallerdev]
Eldariof59-ru has joined #ruby
Martz has quit [Ping timeout: 245 seconds]
spikku has quit [Quit: Leaving]
mdw has quit [Remote host closed the connection]
schaerli has joined #ruby
Martz has joined #ruby
jbw has quit [Ping timeout: 244 seconds]
azm has joined #ruby
azm has quit [Changing host]
azm has joined #ruby
Eldariof59-ru has quit []
<shevy> weird
<shevy> that is my middlename!
<apeiros_> eldariof?
<banisterfiend> shevy: i thought your middle name was "Hans"
<shevy> banisterfiend, naaaah... "Hans" is just a short way for "Johannes"
juo100 has quit [Remote host closed the connection]
<shevy> Hans-Peter
<shevy> those are even better
schaerli has quit [Remote host closed the connection]
piotr_ has joined #ruby
Martz has quit [Ping timeout: 248 seconds]
beneggett has quit [Ping timeout: 260 seconds]
zUriel has joined #ruby
zomgbie has quit [Ping timeout: 244 seconds]
<shevy> I hate complexity :(
<apeiros_> I love complexity!
<apeiros_> it's an awesome excuse to start over :D
jbw has joined #ruby
b3gott3n has quit [Ping timeout: 245 seconds]
beneggett has joined #ruby
abionic has joined #ruby
ringotwo has joined #ruby
<shevy> cool... it is raining ... but the sun is shining at the same time
<shevy> (not a lot of rain though, just a bit)
Martz has joined #ruby
c0rn has joined #ruby
queenlua has quit [Remote host closed the connection]
<zUriel> Any suggestion for a Ruby IDE on Windows ?
abionic has quit [Read error: Connection reset by peer]
<shevy> typical swiss weather
abionic has joined #ruby
<shevy> zUriel usually an IDE is overkill for ruby, on any OS. also most IDE just suck for ruby as well... you could try out eclipse or aptana studio. i hated both though
<shevy> if you are fine with any editor, notepad++ or geany should be fine on windows. sublime is also ok
mmochan_ has joined #ruby
<shevy> or you can try redcar ... which is written in ruby at least and has #redcar IRC channel too
<zUriel> I use Ntepad++ at the moment, but was wondering if there were alternatives
<shevy> I like notepad++
woldrich has joined #ruby
<ryanf> rubymine is the only ruby ide that is worth trying, imo
<shevy> on linux, which I am most of the time, I use bluefish 1.0.7 it has nothing special at all though hehe... http://bluefish.openoffice.nl/screenshots.html
<zUriel> Me too. I'd appreciate a treeview for classes/methods, that's why I asked
serroba has quit [Quit: This computer has gone to sleep]
c0rn has quit [Client Quit]
segora has joined #ruby
<ryanf> I have seen people try to use aptana and netbeans and they always end up switching to a simple editor instead
Martz has quit [Ping timeout: 245 seconds]
<ryanf> but rubymine isn't bad, if you're into that kind of thing
mmochan has quit [Ping timeout: 245 seconds]
mmochan_ is now known as mmochan
<shevy> aptana I hated the most, I couldn't do anything in it... everything I tried, it seemed to purposely jump into my way
<zUriel> I'll check rubymine just to have a look. I used to work with Netbeans but I understood Ruby was no longer supported
<shevy> eclipse was not sooo bad... just awfully slow for startup
<zUriel> eclipse is probably overkill for what I do
woldrich has quit [Quit: a]
<shevy> hehe
<shevy> that's how I feel with IDEs in ruby :)
<shevy> perhaps there is a better trade-off with them when one has to work with +100 files at the same time
<shevy> but most of the time I tend to work in the range of 5-25 files
<shevy> and usually when there are too many, it quickly boils down to an average of 8-12 again
<zUriel> shevy: do you use any ruby-specific plugins for Notepad++ ?
ramblex has joined #ruby
abionic has quit [Read error: Connection reset by peer]
abionic has joined #ruby
<shevy> zUriel nope. I really find that not necessary. when I need to know something, I ask my brain, or I re-use a solution I wrote before, or, which also often is the case, I ask my local knowledge base, where I store everything that i useful to me and related to ruby
Martz has joined #ruby
<shevy> zUriel you can also try out pry, it is like irb but better, and can show/display you documentation + method source, so it works a tiny bit as a super-mini-IDE
<shevy> via the show-method und show-doc commands
abionic has quit [Read error: Connection reset by peer]
<zUriel> I'm googling that...
abionic has joined #ruby
<banisterfiend> shevy: und lol
<shevy> banisterfiend I keep telling you, "und" alone doesn't make sense
<apeiros_> und?
<shevy> italian has "e" for "and", but they use it standalone. they sing it. they often use "e" in between sentences
<shevy> what und
<shevy> what do you wanna say with und
mdw has joined #ruby
<shevy> banisterfiend, you should ask apeiros_ for "und"
<shevy> :)
<apeiros_> oder!
abionic has quit [Read error: Connection reset by peer]
abionic has joined #ruby
Martz has quit [Ping timeout: 252 seconds]
seitensei has joined #ruby
beneggett has quit [Quit: Textual IRC Client: http://www.textualapp.com/]
benatwork has joined #ruby
schaerli has joined #ruby
benatwork has quit [Ping timeout: 245 seconds]
abionic has quit [Read error: Connection reset by peer]
abionic has joined #ruby
siksia has quit [Ping timeout: 250 seconds]
mdw has quit [Remote host closed the connection]
abionic has quit [Read error: Connection reset by peer]
kristofferrr has joined #ruby
abionic has joined #ruby
ryanf has quit [Quit: leaving]
mneorr has quit [Remote host closed the connection]
Foxandxss has joined #ruby
mneorr has joined #ruby
ramblex has quit [Quit: ramblex]
siksia has joined #ruby
Martz has joined #ruby
schaerli has quit [Remote host closed the connection]
yxhuvud has joined #ruby
apeiros_ has quit [Remote host closed the connection]
Martz has quit [Ping timeout: 244 seconds]
Martz has joined #ruby
abionic has quit [Read error: Connection reset by peer]
abionic has joined #ruby
L-----D has joined #ruby
piotr_ has quit [Ping timeout: 260 seconds]
abionic has quit [Read error: Connection reset by peer]
abionic has joined #ruby
ringotwo has quit [Remote host closed the connection]
Martz has quit [Ping timeout: 245 seconds]
abionic has quit [Read error: Connection reset by peer]
abionic has joined #ruby
abionic has quit [Read error: Connection reset by peer]
abionic has joined #ruby
Martz has joined #ruby
dominikh has quit [Remote host closed the connection]
tayy has joined #ruby
dominikh has joined #ruby
abionic has quit [Read error: Connection reset by peer]
abionic has joined #ruby
abionic has quit [Read error: Connection reset by peer]
abionic has joined #ruby
abionic has quit [Read error: Connection reset by peer]
abionic has joined #ruby
Poapfel has quit [Quit: Need a new quit message? Why not Zoidberg?"]
abionic has quit [Read error: Connection reset by peer]
Poapfel has joined #ruby
abionic has joined #ruby
<shevy> how long until we will have the RubyOS
Martz has quit [Ping timeout: 248 seconds]
kristofferrr has left #ruby ["❤"]
serroba has joined #ruby
Martz has joined #ruby
ciopte7 has quit [Quit: ciopte7]
abionic has quit [Read error: Connection reset by peer]
abionic has joined #ruby
dkannan has joined #ruby
Martz has quit [Ping timeout: 265 seconds]
abionic has quit [Read error: Connection reset by peer]
mdw has joined #ruby
abionic has joined #ruby
davidcelis has quit [Read error: Connection reset by peer]
Nss has joined #ruby
Martz has joined #ruby
davidcelis has joined #ruby
azm has quit [Ping timeout: 260 seconds]
mucker has joined #ruby
abionic has quit [Read error: Connection reset by peer]
abionic has joined #ruby
abionic has quit [Read error: Connection reset by peer]
abionic has joined #ruby
abionic has quit [Read error: Connection reset by peer]
abionic has joined #ruby
Martz has quit [Ping timeout: 248 seconds]
pk1001100011 has quit [Quit: Bredząc trzy po trzy oznajmiłeś, że Ty; Dasz im Władcę Snów; Nie pojęli Twych słów; Więc zginęły miliony – ich słowa brzmiały dziwnie; Ten sam Bóg nosił inne imię (…)]
<zUriel> Just to let you know : The FunctionList plugin of Notepad++ can be used to have a treeview of your function (you'll have to update the ruby pattern matching for that, however)
pk1001100011 has joined #ruby
nirakara has joined #ruby
berserkr has joined #ruby
abionic has quit [Read error: Connection reset by peer]
abionic has joined #ruby
abionic has quit [Read error: Connection reset by peer]
abionic has joined #ruby
nirakara has quit [Client Quit]
serroba has quit [Quit: Leaving]
<shevy> I never noticed that Proc.new vs. lambda are that different http://pastie.org/4013269
<shevy> in the first form, I could use Proc.new to exit early, or?
abionic has quit [Read error: Connection reset by peer]
Martz has joined #ruby
Martz has quit [Changing host]
Martz has joined #ruby
abionic has joined #ruby
fridim_ has joined #ruby
nirakara has joined #ruby
areil has quit [Remote host closed the connection]
abionic has quit [Read error: Connection reset by peer]
siksia has quit [Remote host closed the connection]
abionic has joined #ruby
Martz has quit [Ping timeout: 252 seconds]
siksia has joined #ruby
platzhirsch has left #ruby [#ruby]
lessless has joined #ruby
<lessless> Spreedsheet died on 7mb excel file :( RIP
<lessless> Spreadsheet
prtksxna has joined #ruby
<lessless> on 7 mb file :)
<lessless> is there any module to read excel file line by line ?
multi_io has joined #ruby
<multi_io> are there libraries that support writing (not just reading) large XML files that don't fit into a DOM in memory?
abionic has quit [Read error: Connection reset by peer]
akem has quit [Ping timeout: 244 seconds]
abionic has joined #ruby
akem has joined #ruby
<multi_io> or do you have to use puts et al and deal with escaping etc. yourself?
abionic has quit [Read error: Connection reset by peer]
abionic has joined #ruby
abionic has quit [Read error: Connection reset by peer]
abionic has joined #ruby
mikekelly has quit [Ping timeout: 260 seconds]
abionic has quit [Read error: Connection reset by peer]
abionic has joined #ruby
mucker has quit [Read error: Connection reset by peer]
<multi_io> hm, I might load consecutive parts of the documents into small DOMs and write them out sequentially
mucker has joined #ruby
abionic has quit [Read error: Connection reset by peer]
abionic has joined #ruby
vlad_starkov has joined #ruby
abionic has quit [Read error: Connection reset by peer]
mikekelly has joined #ruby
abionic has joined #ruby
araujo has quit [Read error: Connection reset by peer]
araujo has joined #ruby
araujo has quit [Changing host]
araujo has joined #ruby
abionic has quit [Read error: Connection reset by peer]
liluo has joined #ruby
abionic has joined #ruby
jonathanwallace has joined #ruby
apeiros_ has joined #ruby
visof has joined #ruby
abionic has quit [Read error: Connection reset by peer]
abionic has joined #ruby
Martz has joined #ruby
liluo has quit [Remote host closed the connection]
abionic has quit [Read error: Connection reset by peer]
abionic has joined #ruby
bwlang has joined #ruby
jimeh2 has quit [Ping timeout: 250 seconds]
cperrin88 has joined #ruby
<cperrin88> Hey, I once saw a roguelike game thingy where you could only control the player with ruby code ... but I can't remember the name
iocor has joined #ruby
akem has quit [Ping timeout: 244 seconds]
<cperrin88> anyone an idea
<cperrin88> ?
abionic has quit [Read error: Connection reset by peer]
abionic has joined #ruby
mucker has quit [Ping timeout: 256 seconds]
azm has joined #ruby
aibo has joined #ruby
davidcelis has quit [Quit: K-Lined]
zeromodulus has quit [Remote host closed the connection]
zeromodulus has joined #ruby
Vainoharhainen has joined #ruby
abionic has quit [Read error: Connection reset by peer]
<banisterfiend> cperrin88: rubywarrior
mdw has quit [Remote host closed the connection]
schaerli has joined #ruby
zeromodulus has quit [Ping timeout: 265 seconds]
schaerli has quit [Remote host closed the connection]
Martz has quit [Ping timeout: 245 seconds]
benatwork has joined #ruby
benatwork has quit [Ping timeout: 240 seconds]
abionic has joined #ruby
mucker has joined #ruby
maesbn has joined #ruby
abionic has quit [Read error: Connection reset by peer]
nirakara has quit [Quit: This computer has gone to sleep]
abionic has joined #ruby
dangerousdave has joined #ruby
abionic has quit [Read error: Connection reset by peer]
abionic has joined #ruby
L-----D has quit [Quit: Leaving]
jimeh2 has joined #ruby
ronniy has joined #ruby
webusnix has joined #ruby
nirakara has joined #ruby
bwlang has quit [Quit: bwlang]
andrewhl has joined #ruby
apeiros_ has quit [Remote host closed the connection]
`brendan has joined #ruby
axl_ has joined #ruby
mucker has quit [Quit: leaving]
kil0byte has joined #ruby
maesbn has quit [Remote host closed the connection]
sonicpond has joined #ruby
cperrin88 has quit [Ping timeout: 256 seconds]
kirun has joined #ruby
apeiros_ has joined #ruby
kil0byte has quit [Ping timeout: 250 seconds]
abionic has quit [Read error: Connection reset by peer]
abionic has joined #ruby
sonicpond has quit [Client Quit]
andrewhl has quit [Remote host closed the connection]
abionic has quit [Read error: Connection reset by peer]
abionic has joined #ruby
tomb_ has joined #ruby
fr0gprince_mac has quit [Quit: Leaving...]
kil0byte has joined #ruby
dv_ has joined #ruby
nirakara has quit [Quit: This computer has gone to sleep]
blacktulip has joined #ruby
ronniy has quit [Remote host closed the connection]
cha1tanya has joined #ruby
cha1tanya has quit [Changing host]
cha1tanya has joined #ruby
cperrin88 has joined #ruby
ronniy has joined #ruby
lia has joined #ruby
abionic has quit [Read error: Connection reset by peer]
lia has left #ruby [#ruby]
abionic has joined #ruby
marten has joined #ruby
maesbn has joined #ruby
lambdan has quit [Quit: leaving]
arturaz has joined #ruby
abionic has quit [Read error: Connection reset by peer]
abionic has joined #ruby
abionic has quit [Remote host closed the connection]
RDoves has joined #ruby
zomgbie has joined #ruby
banisterfiend has quit [Read error: Connection reset by peer]
prtksxna has quit [Remote host closed the connection]
RDove has quit [Ping timeout: 245 seconds]
krusty_ar has joined #ruby
mengu has quit [Remote host closed the connection]
jimeh2 has quit [Ping timeout: 244 seconds]
maesbn has quit [Remote host closed the connection]
banisterfiend has joined #ruby
schaerli has joined #ruby
igaiga has quit [Remote host closed the connection]
cephalopod has quit [Quit: Never look down on someone unless you're helping them up.]
savage- has joined #ruby
iamjarvo has joined #ruby
Croms has quit [Remote host closed the connection]
Croms has joined #ruby
m_3 has joined #ruby
mechanico has joined #ruby
<mechanico> Hi
sspiff has quit [Remote host closed the connection]
kil0byte has quit [Ping timeout: 250 seconds]
<mechanico> I would like to have a hash as a class instance variable, is that possible? and if so would I be able to access it as any other hash
<mechanico> with an attr_accessor :myhash
<mechanico> ?
<apeiros_> mechanico: yes
<cperrin88> Hey, I once saw a roguelike game thingy where you could only control the player with ruby code ... but I can't remember the name. Does somebody something like this?
<apeiros_> but you need to have the attr_accessor in the class' singleton_class
<mechanico> ok
<apeiros_> mechanico: e.g.: class Foo; @options = {:default => 'options'}; class <<self; attr_reader :options; end; end
<apeiros_> note that if you're having a hash, you should probably only provide a reader, not an accessor
<apeiros_> not that somebody does: Foo.options = "hello"
Raduwen has quit [Quit: Leaving...]
<mechanico> apeiros_: well I do need to be able to write it as well
<mechanico> maybe there is a better way
<apeiros_> mechanico: you can write to it
<apeiros_> Foo.options[:key] = "value" works with a reader too
<apeiros_> []= is a method on the hash, not on Foo. and you only read options. you didn't assign to it.
<shevy> cperrin88 banisterfiend said rubywarrior, do you not read replies?
<mechanico> the summary is that I have a class, which has multiple belongs_to that map to other classes, using ActiveLdap. those other classes all have a method parameters which every class return the right parameters for itself. my encompassing class now ned to collect these parameters together and push them in MyClass.parameters which would be returned to the caller
<cperrin88> shevy: Oh ... I didn't see it
ZachBeta has joined #ruby
<apeiros_> mechanico: yes, only providing a reader and not a writer doesn't stop you from doing that.
<mechanico> so I thought a classe instance variable of a hash would work for this, and I would be able to update the hash appropriately as I get the params back . is that a sane way to do things?
<cperrin88> Thank you banisterfiend
<cperrin88> and shave
<cperrin88> shevy:
<shevy> lol
<shevy> I am going to shave
<banisterfiend> can someone think of a nice name for a clipboard command?
<banisterfiend> and a ncie shortcut
schaerli has quit [Remote host closed the connection]
<mechanico> apeiros_: do I need all the class instance variables in the singleton or are hashes somewhat special?
<apeiros_> no specials for hashes, no.
banseljaj is now known as imami|afk
<apeiros_> even a class instance variable itself is nothing special.
<mechanico> apeiros_: can you please explain why should it be in the singleton then?
<apeiros_> it's just consequent application of rubys object model.
<apeiros_> mechanico: only the attr_accessor/_reader. and that's because attr_accessor defines an *instance* method, not a class method.
<mechanico> ah
<mechanico> okay got it
<mechanico> thanks
Foxandxss has quit [Quit: KVIrc 4.0.4 Insomnia http://www.kvirc.net/]
<shevy> banisterfiend buffer / copy buffer, copy clipboad.. cclip ... copyclip ... for my pseudo shell I use { and } to start or end the clipboard buffer
savage- has quit [Remote host closed the connection]
mikepack has quit [Read error: Connection reset by peer]
<mechanico> /msg nickserv register mechanico
<mechanico> bah
mikepack has joined #ruby
<cperrin88> banisterfiend: clipponomatixmasterradioactiveedition
mbk_ has joined #ruby
<banisterfiend> lolszz
ramblex has joined #ruby
fr0gprince_ has quit [Ping timeout: 250 seconds]
macmartine has joined #ruby
jrist has quit [Ping timeout: 246 seconds]
fr0gprince_ has joined #ruby
roams has joined #ruby
akem has joined #ruby
cperrin88 has quit [Ping timeout: 256 seconds]
ramblex has quit [Client Quit]
berserkr has quit [Quit: Leaving.]
ZachBeta has quit [Read error: Connection reset by peer]
lkba has joined #ruby
savage- has joined #ruby
begriffs has joined #ruby
ZachBeta has joined #ruby
amalvagomes has joined #ruby
ZachBeta has quit [Read error: Connection reset by peer]
Bartholomeae has joined #ruby
fserb has quit [Quit: ttyl]
mechanico has left #ruby [#ruby]
ken_barber has joined #ruby
ZachBeta has joined #ruby
ramblex has joined #ruby
mucker has joined #ruby
jonathanwallace has quit [Ping timeout: 252 seconds]
xaxisx has joined #ruby
fr0gprince_ has quit [Ping timeout: 244 seconds]
raul782 has joined #ruby
Bartholomeae has quit [Ping timeout: 260 seconds]
Whoop has joined #ruby
TheMechanic has joined #ruby
jrist has joined #ruby
fr0gprince_ has joined #ruby
<begriffs> Anyone know how to make a fiber that raises an exception every time it is resumed?
<cout> that sounds more like a continuation than a fiber
lkba has quit [Ping timeout: 240 seconds]
cousine has joined #ruby
cousine has quit [Remote host closed the connection]
digitalcakestudi has joined #ruby
<begriffs> I'm using fibers to do iterators like in python's itertools, and the python iterators always raise a StopIteration exception when they become exhausted.
ken_barber has quit [Remote host closed the connection]
<banisterfiend> begriffs: ruby already has python like iterators afaik
<begriffs> I tried this in Ruby, but it raises the exception only the first time it is resumed, but not subsequently: f = Fiber.new do; while true; raise StopIteration; end; end
<banisterfiend> begriffs: and they do raise StopIteration
renanoronfle has joined #ruby
renanoronfle has quit [Client Quit]
webusnix has quit [Ping timeout: 244 seconds]
<begriffs> banister: does Ruby have functions like this for its enumerators? http://docs.python.org/release/3.1.5/library/itertools.html
<begriffs> I'm porting those functions to Ruby, but maybe there's no need...
<banisterfiend> begriffs: yes
<begriffs> Ah crap
<banisterfiend> begriffs: not all of them though, i dont think we have chain()
<banisterfiend> but we have take_while, drop_while, etc
<banisterfiend> count, cycle
<banisterfiend> group_by
<banisterfiend> etc
<begriffs> How about product, permutations, combinations?
carloslopes has joined #ruby
univers has quit [Remote host closed the connection]
ramblex has quit [Quit: ramblex]
jonathanwallace has joined #ruby
azm is now known as azm_dos386
<banisterfiend> begriffs: Yeah
benatwork has joined #ruby
<banisterfiend> begriffs: https://gist.github.com/2858553
akem has quit [Read error: Connection reset by peer]
<banisterfiend> begriffs: hmm, ok we only have product, etc on Array
<banisterfiend> not on Enumerable per se it seems
akem has joined #ruby
undersc0re97 has quit [Remote host closed the connection]
<banisterfiend> begriffs: chain() seems equivalent to Enumerator#+ in 2.0
benatwork has quit [Ping timeout: 245 seconds]
akem has quit [Max SendQ exceeded]
philcrissman has joined #ruby
<banisterfiend> begriffs: you might find this cool, we're getting lazy enumerators in 2.0 http://www.michaelharrison.ws/weblog/?p=163
<banisterfiend> begriffs: does python have that?
ramblex has joined #ruby
<banisterfiend> begriffs: sorry, this article is more up to date: http://blog.railsware.com/2012/03/13/ruby-2-0-enumerablelazy/
berserkr has joined #ruby
webusnix has joined #ruby
akem has joined #ruby
ken_barber has joined #ruby
<begriffs> Ah cool. So far it seems fibers have been the only way to do laziness.
<banisterfiend> well Enumerators are built on top of fibers
<carloslopes> banisterfiend: hmm iirc, the lazy enumerable was having some problems with performance
<begriffs> So the lazy enumerators do things more efficiently than fibers?
knightblader has quit [Quit: User disconnected]
<banisterfiend> begriffs: just a higher level api
<carloslopes> s/enumerable/enumertor
<banisterfiend> carloslopes: link?
<carloslopes> banisterfiend: one sec please.. :)
<begriffs> Still curious if there is a way to make a fiber raise an exception every time it is resumed. It's tricky because the exception seems to break out of any loop meant to repeatedly raise it.
<banisterfiend> carloslopes: np
centipedefarmer has quit [Quit: This computer has gone to sleep]
ken_barber has quit [Remote host closed the connection]
MasterIdler has joined #ruby
flip_digits has joined #ruby
<begriffs> Actually looks like more than a looping issue, because this non-fiber function works correctly
<begriffs> def g; while true; raise StopIteration; end; end
kenperkins has joined #ruby
azm_dos386 has quit [Ping timeout: 244 seconds]
carloslopes has quit [Ping timeout: 256 seconds]
<begriffs> vs. f = Fiber.new do; while true; raise StopIteration; end; end
mneorr has quit [Read error: Connection reset by peer]
<begriffs> Nearly identical but the second time I do f.resume it says "FiberError: dead fiber called"
mneorr has joined #ruby
lkba has joined #ruby
tfitts has joined #ruby
TheMechanic has quit [Quit: TheMechanic]
tfittsy has quit [Ping timeout: 248 seconds]
mneorr has quit [Remote host closed the connection]
carloslopes has joined #ruby
<carloslopes> banisterfiend: did you receive my messages?? my connection dropped :/
<banisterfiend> carloslopes: no i didnt
<banisterfiend> repaste
univers has joined #ruby
vlad_starkov has quit [Remote host closed the connection]
emet has joined #ruby
<carloslopes> banisterfiend: i said that the link you wrote here (http://blog.railsware.com/2012/03/13/ruby-2-0-enumerablelazy/) was the same that i read and it says the performance issue that lazy enumerator has
<banisterfiend> carloslopes: yes but it didnt give the date of the UPDATE
<carloslopes> banisterfiend: check the first update inside the post
<banisterfiend> and there were multiple UPDATEs
<banisterfiend> so i wasn't sure if it still applied
iamjarvo has quit [Quit: Leaving.]
<banisterfiend> i assumed it didnt, since the patch was accepted further down in the article passed that UPDATE
nathan28 has joined #ruby
<nathan28> hey all, is Rmagick the preferred library for image manipulation? I'm just trying to automate generation of thumbnails for a gallery on a sinatra page
bluOxigen has quit [Ping timeout: 244 seconds]
undersc0re97 has joined #ruby
undersc0re97 has joined #ruby
undersc0re97 has quit [Changing host]
<carloslopes> banisterfiend: if we see the comments, they are from 2 months ago and they say about the performance issue :/
Croms has quit [Ping timeout: 248 seconds]
jbw has quit [Ping timeout: 250 seconds]
becom33 has quit [Ping timeout: 245 seconds]
<Mon_Ouie> I think at lov
<Mon_Ouie> at low-level, switching execution context isn't that great*
tomb_ has quit [Quit: Computer has gone to sleep.]
visof has quit [Quit: Leaving]
<shevy> nathan28 rmagick is kinda dead. I use imagemagick via system '' myself
bondar has joined #ruby
<nathan28> shevy: i'm not sure if my discount host has or will let me install imagemagick (i'm not going to call them either) but running it locally and then cloning it over would work
tom___ has joined #ruby
philcrissman has quit [Remote host closed the connection]
tom___ has quit [Client Quit]
tom__719 has joined #ruby
<tom__719> join #rubyonrails
<shevy> tom__719 no!
<shevy> tom__719 resist the evilness!
<shevy> tom__719 I implore you
<carloslopes> shevy: lol
apeiros_ has quit [Remote host closed the connection]
<carloslopes> shevy: you are looking like Hanmac ;)
<nathan28> shevy++
<shevy> :)
<shevy> Hanmac is my teacher
<shevy> he knows ruby AND C++
<nathan28> join #sinatra instead
<shevy> i know only a bit of ruby myself
<carloslopes> #sinatra is awesome, but rails too (imho)
zemanel has joined #ruby
<tom__719> shevy: i chuckled :)
<shevy> carloslopes I think ruby should even come integrated with ... sinatra (or, something similar to sinatra)
<shevy> requirement should be: good documentation, lightweight and simple
<carloslopes> shevy: agree :)
thecreators has joined #ruby
<banisterfiend> shevy: what's the point of that when gems are so convenient already
jbw has joined #ruby
<carloslopes> shevy: my first web app using ruby was with rails, i was in love.. but, when i used sinatra for another project, omg! my heart was broken between both :/
<shevy> banisterfiend with gems, fragmentation still happens
<shevy> banisterfiend for instance, some people use irb rather than pry because pry is (not yet) integrated
<shevy> but it also is a shift in focus
<shevy> ruby as a whole should be much more opinionated in what should be bundled and distributed by default
ringotwo has joined #ruby
<shevy> (and minimum standards must be followed. like, documentation... I found parts of the stdlib simply unusable because of a lack of documentation)
<rking> shevy: Pah.
<rking> Nonsense.
<shevy> here ruby could learn from python
<rking> Oh goodness. Not python.
becom33 has joined #ruby
undersc0re97 has quit [Remote host closed the connection]
mneorr has joined #ruby
<shevy> rking it has good docu!!!
<shevy> lemme show ya
<shevy> python gtk3!!!!
<shevy> try to find that in ruby gtk
<shevy> with screenshots!!!!!!
<shevy> that is pure awesomeness
iamjarvo has joined #ruby
dbgster has joined #ruby
[edu] has joined #ruby
[edu] has quit [Client Quit]
<shevy> I am going to wait until everyone is on python 3
[edu] has joined #ruby
[edu] has quit [Client Quit]
webusnix has quit [Quit: Ухожу я от вас (xchat 2.4.5 или старше)]
jimeh2 has joined #ruby
philcrissman has joined #ruby
tvw has joined #ruby
mdw has joined #ruby
dv_ has quit [Remote host closed the connection]
vlad_starkov has joined #ruby
frishi has quit [Quit: Leaving...]
addi has joined #ruby
mdw_ has joined #ruby
<shevy> python 3 man
<shevy> it will change the world
<shevy> it will bring love and happiness to everyone
<carloslopes> shevy: hmmm :/
<rking> shevy: Did you know that python3 still doesn't have "%b" % num to get binary formatting?
<rking> But you know what they /did/ add?
<rking> bin().
azm has joined #ruby
azm has quit [Changing host]
azm has joined #ruby
<shevy> hmm wait
<shevy> you say, they lost a feature from 2 to 3 transition?
<rking> A global function that takes a number and returns a string like "0b100010"
<shevy> ah sorry
<shevy> misread
<rking> No, they never had %b.
<shevy> you said they added bin()
<shevy> they really love functions
<rking> They /do/.
siksia has quit [Read error: Connection reset by peer]
mdw has quit [Ping timeout: 260 seconds]
siksia has joined #ruby
kevinbond has joined #ruby
<rking> But the infamous 2->3 thing that they did lose was the ability to use parenthesisless `print`. Now it's not a keyword, but a plain function. print("foo") is the only way.
DRCALKIN has joined #ruby
<shevy> I hate that actually
<shevy> I really HATE typing the () around that
zomgbie has quit [Ping timeout: 248 seconds]
<shevy> in ruby I end up doing this
<shevy> e 'foo'
<rking> e?
<shevy> this is sweet
<shevy> yeah
<rking> Meaning what?
<shevy> kinda like "echo"
<rking> Oh.
<shevy> well you have p 'foo' too in default ruby
A124 has joined #ruby
<shevy> and it's an abbreviation too I suppose
A124 has left #ruby [#ruby]
yonggu has left #ruby [#ruby]
ZachBeta has quit [Read error: Connection reset by peer]
<carloslopes> shevy: p is abbreviation of puts object.inspect
vertroa has quit [Read error: Connection reset by peer]
vertroa has joined #ruby
ZachBeta has joined #ruby
RDoves has quit [Ping timeout: 248 seconds]
theRoUS has quit [Read error: Operation timed out]
kenperkins has quit [Quit: Computer has gone to sleep.]
RoUS has quit [Ping timeout: 244 seconds]
dangerousdave has quit [Quit: Linkinus - http://linkinus.com]
<shevy> I guess in python you can not do this
<shevy> alias p print; p("bla")
<shevy> right?
<carloslopes> shevy: i don't know :/
philcrissman has quit [Remote host closed the connection]
nathan28 has quit [Quit: leaving]
mneorr has quit [Remote host closed the connection]
fr0gprince_mac has joined #ruby
<Mon_Ouie> I think they might be able to do something like p = print, not sure how exactly
mikeycgto has joined #ruby
mikeycgto has quit [Changing host]
mikeycgto has joined #ruby
ZachBeta has quit [Quit: Computer has gone to sleep.]
carloslopes has quit [Quit: Leaving]
ramblex has quit [Quit: ramblex]
<Tasser> shevy, in ruby, () is just syntax. in python it's also some semantics
ipoval has joined #ruby
<shevy> yeah
<shevy> explicit is better than implicit
becom33 has quit [Ping timeout: 265 seconds]
<shevy> even if it leads to verbosity
<shevy> I think they must like XML
<shevy> because it is very explicit
<Tasser> that's not the point
<Tasser> foo = print
<Tasser> foo('bar')
<Tasser> # => prints bar
<shevy> oh cool
wallerdev has joined #ruby
<Tasser> ^^
becom33 has joined #ruby
<shevy> hah!
<shevy> so I can use p('bla') in python
<Tasser> indeed
mdw_ has quit [Remote host closed the connection]
frishi has joined #ruby
td123 has joined #ruby
javos has joined #ruby
zomgbie has joined #ruby
mrc has joined #ruby
king313 has joined #ruby
king313 has quit [Changing host]
king313 has joined #ruby
ZifreCL has quit [Remote host closed the connection]
Occult has quit [Remote host closed the connection]
savage- has quit [Remote host closed the connection]
Occult has joined #ruby
DRCALKIN has quit [Ping timeout: 265 seconds]
dbgster has quit [Quit: dbgster]
ragnok has joined #ruby
<ragnok> hi, i'm trying to use sass. i have ruby installed and also sass. but when i do sass --watch style.scss:style.css i get an error invalid option: --watch any ideas? i cant find nothing on google
jimeh2 has quit [Ping timeout: 244 seconds]
atmosx has quit [Ping timeout: 245 seconds]
Urth|Away is now known as Urthwhyte
atmosx has joined #ruby
thone_ has joined #ruby
ZachBeta has joined #ruby
moosya has joined #ruby
mrc has quit [Quit: Leaving]
minijupe has joined #ruby
thone has quit [Ping timeout: 245 seconds]
<Tasser> am I the only one who tries to open a file as text if it has an unknown/no extension? Confuses the hell out of people to send them .org or plaintext files because .txt everywhere is ugly...
schovi has quit [Remote host closed the connection]
robert__ has joined #ruby
schovi has joined #ruby
Nss has quit [Ping timeout: 272 seconds]
ipoval has quit [Quit: ipoval]
schaerli has joined #ruby
Vert has joined #ruby
tom__719 has left #ruby [#ruby]
robert__ has quit [Ping timeout: 260 seconds]
heftig has quit [Ping timeout: 272 seconds]
vonsar has joined #ruby
zomgbie has quit [Ping timeout: 252 seconds]
robdodson has joined #ruby
<Tasser> isn't there an unicode-aware strip that strips nonbreaking spaces as well?
thecreators has quit [Remote host closed the connection]
heftig has joined #ruby
iamjarvo has quit [Quit: Leaving.]
roams has quit [Ping timeout: 245 seconds]
benatwork has joined #ruby
beilabs has quit [Ping timeout: 260 seconds]
benatwork has quit [Ping timeout: 245 seconds]
begriffs has quit [Quit: begriffs]
larissa has joined #ruby
mucker has quit [Quit: Lost terminal]
<Mon_Ouie> sub(/\p{Space}*\z/m, "")
<shevy> banisterfiend sorry, too scared to click
perryh_away is now known as perryh
khakimov has joined #ruby
visof has joined #ruby
reggal has joined #ruby
<reggal> Rabby dab runna ma nay I'm dabster deester and I'm here to say... rump tump tigga ligger rump tump tay! Frucky duck with the wenner hoopler wheel Cruckity puck on an ass hole
<reggal> Does anyone want to yikkel up the gecko? Chickity china the chinese chicken! Fucking gregging lick piss ass cunt. Haggle hilla horst worst redneck. Buster hymin Juvvy joof jevuv. Reggy McJellico. Into that pussel. James Wiggand. Your ass nards turned into a POLLEN GRAIN! Ramis blavely reese seats.
<reggal> Frucky duck with one of those chin ladin traps. Rudder smudge wellicker wheel! Run tun ton reddal shmip foe whip woe wack. Rump tump tigger ligger runnel scrath. Doo nah ninnel, nih, nee nat noe. Runt dunt dinny! Rump tump chickin leaker ladin straps... Bam bam glacky I'm degga damn.
<reggal> Ruh hent a lilla hole lieu. The craig mattican. BITCH IF YOU DON'T TAKE DOWN THAT WEBCAM I AM KILLIN' YOUR DAMN DOGS. Electromotive force. Razh ta relley lep ta mezh. Sh Soosh shzhs, seesh seesh-sheesh shoosh shzh shshs shshs. chicawith hedgehog. Ram bram bellalow, brown rye rom one day jeezh cheats!
<reggal> Drederick mick taid with a drederick mick taid with a .. with a... drederick mick taid! Is anyone here the funkistard corn. I boo basted I'm feelin' gleem. Rujjidy jallisher squillidger. fuck you titty suckin' two balled bitch with a fat green clit. Rark tah hoohk tah blanky roop roop duggan.
<reggal> Rigg ass graggan Arewenoo.. Arwenoo zee-oo zaya. Chinna 2olombia adaa wella shrek raflood lool. Ground rearing some groans. I'm huff tuff reffa leffa lurf nords. I'm just like... vanilla ice foe davvity wheel barow Exparly ex preggo Is anyone out there a rig ass graggan? lelly in mah kellar WRESTLING'S FAKE!
<reggal> Pargastian wildly nig nargs. smeggalty dellets Far foo faqqin Digital damage. Where wally niqqs. It's coast to coast night. Hoke a lup! Free faq fornag! Puck a leek a lup to lup round tround. Wormser marrial niqs. El delphin trilaxal. Blanking bluck to the black a lickel bleck narge.
<reggal> Puggy muggle maggity ass riggle ma hole. Buck a waath ess wheel wall! Bustin' room past tin! Buckin' room past in! A harnaly scrary o mep. Rons raplaisher pa noans rebble dibby dump dimp gabble dak. A wristafiable pluckin' Blacking it up to the reng teng blickhole. I kleb to the sand of the blicka rickin time.
<reggal> Rekkal theh mick thuck the rep tep taistral. Wallif ma wallis wallets. Is anyone here a jelly-o shkrapper? Bam glacky I'm mega man! Has anyone here ram baisted before? The koost a heeckil pludgeon. Feathers round rick gring air! Liquid cereal's good for you. The mummified goblin. Pallaj oh plex.
<reggal> Gotta set up for the suicide slide Gamma mareenmon. I've got more scrap ass shit than you can balieve with. Sally McDuffo whip. after secv on a sp00ky stream F/\gga foo regga makegg mahoun. Its all fun and games until the power goes out. Mennima Pay Street. rubbbity dib dadge pickard. Lelly in ma kellar.
<reggal> I'm on recky o gregor street. Miggity ass raggan. Boyar bod. Pellicka pool wiss wall. Watching bynum bukkake the smelts Haggity ass mahown. Trukkity rep roon, the kitz a kickel plujin. Trellalickers and burb street. Huck a dickin' dime.
<reggal> Float a pelly plaack ass. You're a digital dumbass. Smuggy jaloo meff jillahole. Dick, dick, dick dickaloo! Dick dickaloo my darling. Haggity ma heggal hole. nuriggerdy diggal. Visi blurb cage. O melon man mist meluhn mijohn. Oh man mellajoram. Hebble oh babble.
<reggal> Two guns and a ruck roog. Turned into a hollow loop. scritch scratch the happy fog. Is anyone here a fudge plucker. I'm talking bout a rastal marry yo map. Too many ruggerty dag datoes Or are you fuck wappys out for kill gore!
<reggal> The curmudgeonly pearl; ask and you might be answered. Finger with a whop top tinger. Rig tig tigger. I'm ram bastin' I'm feelin' clean! Pricey bad ass, a whop winger! Gullable dick waffer. Miggity mahoming beacon. Nick lickal novice. Your remenance. Square juice miknuller. Permio plather.
<reggal> Where does master words eat pies for shells? Trenna ma lilla manole. A rargy barg ark. Shockity strip with the rectify guy. Clockity rep with the rectify fly. Hebble o babble. Rudda nah neh noo. HEP TEP ROGGY! I'm thinkin' about greckin' the rummified coin! Let's look at Amenhotep 4's mummified groin!
<reggal> Ploona lefflie ludge picking! Haggy smith heddal, marry oh dettal. Hannabalist, no cannibalist, no hannibalist balievar. Ban dackoo. Put on weight! Wherr wiss fall, nudge plucking. too many |\|igg/\s, that's my line. I'm squirt with the worth of the mother plucking fine. Hoomee missee Mic daisy too. Davey oh doubt. Meggie mahoo middle.
<reggal> Too many Romulan potatoers. Matoonal dakkal. Helly muhp, melly muhp, runna minuck taste-rum. Wack ass weight! Hellamanorf weg watthal. I think I'll just start to try my .smuretsaTcN rubbbity boom ducking. Hitchaleval exasht romice. Up with jelly my humpfrins. Uva devil miss tee pie. She can't poo!
<reggal> Shniqqen munuh lik leggal perritolma penis pran chella maloney day breeze Paahster jam ban wikkle. Hella mah lun mick hella malole. Hella minull mic mella manoh. The roadline, it's illegal. Trully mulla mih nole. I'm a relladge-o-melladge-o-ram. Come on you fuckin dag asses.
<reggal> Damned ram bastions. oilleJcM oper Smelly gruthergrarin trilaxals. withers ground ring air Puggle dee maggle dee mack traggle Jeremy sniqqle. Jeremy spoken, in next day I brusht boyered, I kicked a ball! mellaminorf troll protectors, trolls on the road! troll protectors, their stones of power glow!
<reggal> Fleeberty dith bub, a hick now a hither they humpty tance Lunchell munch a reg uhl schoolio tress nael Chuck a lick a loon baby tunes Weerz mellicorp To the wack ann watching machine wells darilla raptor plexing
<reggal> Shligga ligga millik hole Shligga ligga millik hole regamakio mathjul hah there Just like in Bart Simpson the Magazine! Ban ricky ban glicky jallo whip! menario mibs Pahorp pahilla thin meffrin slujjal jeggy moran magomorph baleener
<reggal> I spell it throwt, you spell it throat, the real way to spell it is throwt throwt THROWT! Hux a mex a lig dwarf dudikolan mail street. Rella manae, Rella Manae, Rye dut duh! I'm living on budgy placky street. Reggal dee deck shweener Hicker trellalicker
<reggal> What part of that doesn't make sense to you robo I'm rang dang smacking it up to the reck a heek a horn drom. Rag agg big chacka lo datey fifty. Sniggital maggal Shelly a jelly a jew lillaputan meglamarian necks booga man Rejja mella mic jeggal Baika looka reg tag
<reggal> Throat a pelly proat raick axe. It doesn't eat muggo whip. It's a piece of paiper. Scrubbbity ass ragamahoun. Raggity ass maga muffin. Where's songy brother? Where's spongy brother? Jellanie mic flyer. Paloody pluck bag ack. Paloody pluck bag ack.
<reggal> Whyn you call it throat throwt. I'm a baffy hoe. Flivvy a niv von neffran. Purity and prudence I'm suing for diaper damage. Scragg a billy blunk rake rast eye heeker, playmus guy I don't know what a rubbbity dabby is. Scrunny maloo lef heel hole. Scrunny maloo lef heel hole.
<reggal> Arthie shlellijge. Arthie shlellidge. Talking about a bee turning into a guano root. today I'm doing pasta, i crumble it and pan fry it. Fuckin frosty. david hippa lappa pomprin. Is anyone here a hemp hole? Yeah, well shnijjy mc millicker: i know billy knalavolitz.
<reggal> The Baby Faced Assassin pond. yrummin! Shmega melanie goetz I'm smacking it up to the electrify beam, smacking it to the galactify beam! Smackin the penis with the erectify beam! When will another green skroan the horrified scream
<reggal> rubbbity dag daggy dib dib, daggy daggy dib dib, daggy daggy diggy diggy dib, throwt a welly wheel wall Reppity shcrep bam bam rep rep paranep Shnubbity shnib up bam bam Givin' me twice, i a molst a meeka pleck. Givin' me twice, a molst a meeka pleck.
<reggal> Jeminee smucking smiggle. Halittle halorst hamerrian sects nep tep hotep gargle dee gook mackie mchellic hole. My niqqer dee dag sparky. Ponto comical blessnor I'm dain dead. Razor renzor manellik s-meg smeg you're all smegs. We're hovvy hella pruss miss puss Smelly mudga munaqqal Posta wicka holma melancholy laggam
<reggal> Shmelly a mellac. Cloaky active camoflauge mail bow Warez into a whoop coup daddy deam, I filed a lawsuit with G.L.E.A.M. Dag a ricka bleg nagg. Richel reprezhnik rally mic hoe whip.
<reggal> fucking ass licking piss sucking cunt. Threnthie oh pod throonis Tragallellah. bweeey eeeiw! bweeeeey ail! shnib polmans mahhal wourney Track a mix a meg norge
<reggal> Flathican fellow street. Mc Grellae Mc Regegg. Prag a cuckian bag of gunk. Duh nuh nihh nuh farty milligers. Par boockalie twistie taiter. Tittly spoof bee Trellie oh dabble Antenna rethal Fucky daddy dicky Fucky daddy dicky
<reggal> Chucka lucka ling to the chucka looka lat, man can't be banned! Dee oh doing! Chili box sand reggat. Crackity raggity ann shaggy rab rabble smiley oh diley oh reggal na meck transhole In a tough manner pung dungh chicka licka bang dad. Guess what you smartie millickan jallefnaord. Spend rellik maholmes.
<reggal> Rudda boom boom dugging. My name is jameel my name's jamaan. Take this you fuckin' brack stab from buck hole. Brag a cuck of bintorns. I had to have jalooch to have breakfast. Trug a leck leg hole. Tellah mef raf. Trukkle trella lickle mazzle trag. Shab shab skrellix magellix
<reggal> Roonah bucky blay lee! Roonah bucky blay lee! An aggle dee dak beyond the premier. switch up to a wedge pluckie A jecka looch reft round! poochin maleggal Drek a lek meek foamie. shlick a jig jeffjob A jella jitch manifest Horkin malurgis hoarde. prebelally mobijowrist.
<reggal> Fartily gas farts on someone's jacket. Hicka low daggal. Manil hill the jiller. Reet dih doo deh dih, reet deh doo duh. dendridic millimorph cardackio cleptio maggle Jackintoshy zillword. Just another macgasm trexie o mario bubble. I had to have a mummified wheat bread.
<reggal> Slaggy McNelly O-Loop. Hillie Millie. Mijujik calej loft, shweener screlly mellamanorf. The plux to the plack a leak a lithio meth galactical terrial tuesday. Ploody loon, back a toon! ron ton a jelly a shawn. Herd mah thuh fah thuh. Jeggal mig ella cracker. trellamanorf mick hick hole
<reggal> Rump tump tiddle doo, rump dump damn. Farbooky twistie taiter. Farbooky twistie oh plox. jickellastrip shtiffy Trellie oh dabble Sabba7kom allah bilkhair ya rawafeth 3ash men shafek. 3alaikom essalam mawlana. 9eqeleyya kaanat men madresat Averroes. plan dan duckalin jee uhst waistband
<reggal> Sparra kitha mellon hoh snail bookanees. Pucka hoonkin dick ass waste. Triclapian transcripts. Are you a jalellaputian? Arthie midge millik. See that is why I keep going "galactico trallie o-reggal" Cuckin twanbastin wigwams shmagga miggal smell-it syllabalistic macro. Oh-rellage oh ram
<reggal> Trellik mic jelliger. Throwty a pellage plex. Spigga McGregor peggly oh dabble Hicky trellalick. You stupid pudgy fucker. Sneqqal segagal. Purital laggy oh baggal. Bucka broon broom shella muluk mic niqqer. Rooshta shpella. Plocky of pleckal bag a cuck of frin torns
<reggal> Wa Alikum salam wa rehmatullah e wa barakat. Tarka dellalie dool. Mig iff raheg hord. Raga nahoolie jeg narf. Hellage rellage o-ram well to do it pollis Scribble dee babble. Mezzle ma norf. Praggity no maddak Duck a ween wark. You shpuffy shpook ma leggin don't be such a terrorisdt.
<reggal> Hedgy McPillik. Hocka licka meals on weals. Batman, batware, guess who could be in the next Batman movie? It could be you! Galactical tactical earns the hard way. Maggie Mig mellijopod. trar ga moogly a mix traeger Puh reb deb dejjer. fuck jalafi jalive.
<reggal> Leepadipa did away. lovely women spit things. shnep a leppie loon. smellagajee smellamanew. Fruggity diggty! Scrunny maloo lef heel hole shlody shlicka rabbits Galactical tactical plack ass. Pawikki scrap runa mallilligram. pick tatots. Conifanible pluckin. Boom bam shpaghetti monk.
nfk has joined #ruby
<reggal> Sum bum parlacktical barthy backthickal. partrusially prtregally reggal megagal. You fuckin roody poot noink. Smullah jah litch jitch runhole. Shit up you bad ass. Is anyone here a rubbbity deaf nard. Sniggital wathal whip. Thylacoleo carnifex for a pet, hugga ghigga micomprin. Don't fuck with my restaurant!
<reggal> Truggity reg up rim dum, a spoon contacts the kinigigal concern. trust no one, tiger miller Michelle and jantsy with a banshee! pasa wuh thuh fail the jookified coin. Oh my gum! Oh my gum! It's oh ho ho he's here! Malika joola jalegnorf. Malika joola jalegnorf. Heggal the munch tunch taste rins.
<reggal> Prestegious milla ma hoe. Panny meffa lick waifers. Malorf jin, jalallally jin, screggat mo meggat mo methalithal lowdown. It's oh ho ho she's here! Has anyone here ever been to the bastard zones? Shmeggal dee mech eck golms. Boon toon underwear, boon town.
<reggal> Veronika, days of joy, happy time for girls and boys. Fuggle dee daggle. Ploody pluck a loon, baby tunes. Hella mah nor. Snuggity rabbity pit street. Hackel meal McZhellikehr. Wooh wee! spagg midge mellot. Jello mic tatum. Trucka looger legga baby. martial mic reg egg trans mestrials
<reggal> Mella Midge Mister Pluggity ricking. Rab trab traisies. fruggity hesterani knellect. Rumpin dumpin dighole. Rumpin Dumpin durds. Barvis joon a hear a harvey snards. Jellis mellis Trelalix twixt nick davey. Rawl eenf rurst o plast. Rella mahole rick.
<reggal> Scrunny mit tack pick jack. I'm talkin bout plucky PLUCKIE pluckie o'hare. withers ground ring air. parchookalie buckle, weeh eeh. pluckily boosier bael regget ramajot. bartoofteein regleg. Ret round hujamima bound. Tickle me timbers. Farg duddly uck uck darg marg. Hosh a mosh a luke a leek a leggin! Audacity of it all, you feel small
<reggal> Clarbudgy cabujjin, Carblinkin carblastan carbleggegg. Are bastion you jastuin. We're all for the Kardassians who lost the war against the Federation, don't you tell worf we need another ration. Fargleb skeeol skowl all bleb. carmattick raticular pledge mahole heel. Mettick marial mahoney blastokist
<reggal> Shmartooty boots breath. Rennimino rick taid. Renniminnow rick taid. Carbloochy bad ass. Renna ma nick patrol. A chucka oo maow maow, chucka oo maow maow, a chucka oo mow maow, chucka oo maow maow. Panta hoasta leeka tolweth hade. Rum dump dump digalagger.
<reggal> Cannabalism regamalan. Bardacian bull-horne mooses aren't in this quadrant of the galaxy. Playin' Star Trek Online cause it's free to play, just like All Points Bulletin: Reloaded and Final Fantasy XIV. Eee dah climp lah plocky ug tug tech.
<reggal> I went out with twenty of those rebbity jellickers. we're all midge millickers. Puh reb deb dejjer. Galactical tactical plack ass. Rump tump tiddle doo, rump dump damn. Ban ricky ban glicky jallo whip! Pahorp pahilla thin meffrin. Reggal dee deck shweener. It doesn't eat muggo whip.
<reggal> It's a piece of paiper. Scrubbbity ass ragamahoun. Raggity ass maga muffin. maggity von heffrin Shtooty mic blackened. Shooty hick black and pick tatots. hugga ghigga micomprin. Don't fuck with my restaurant! Truggity reg up rim dum. a spoon contacts the kinigigal concern. trust no one, tiger miller.
<reggal> Michelle and jantsy with a banshee. prebelally mobijowrist. Fartily gas farts on someone's jacket. Where's spongy brother. eye heeker playmus guy. Helly midge mushkin. Rumina mee drowls wall width.
<reggal> I've got your mother's pussy juice bottled, I sell it out of my house
<reggal> S.ll.a.g.g.y mc pit street. Hustler hova heeva Chick ova heeva ova heeva. Braxalarian blalalxrals. snuggity rab rab rabbits. Snuggies aren't selling anymore. most people don't know what a "snuggie" is. Halla micka wheel wyaujtkchtpt.
<reggal> Spaqqa miffa liffa leggin. Terry baloris trickaleggal. Sequester mlajjap eastro diz hamta wan ta licka holmus preed. Scatty picka loon dunes. Hoakalin McGregoar. Roddy McFlyer. Hillie Midge Millik! Arfie McChaffer Chickababy
<reggal> Shaggy mig rehehehehehehp Spleggy melajamick pick tatot. Pegila meligomesk pigilidack fellijiscrap barckarian bustrap piggin kegalarelej shtooty shtipt kid mlelagaraphix transslits
reggal has quit []
beilabs has joined #ruby
adeponte has joined #ruby
dtang has joined #ruby
barnex has left #ruby ["WeeChat 0.3.5"]
javos has quit [Quit: Linkinus - http://linkinus.com]
bier has quit [Ping timeout: 250 seconds]
<shevy> hmm
wallerdev has quit [Quit: wallerdev]
yoklov has joined #ruby
pu22l3r_ has joined #ruby
axl_ has quit [Quit: axl_]
CheeToS has joined #ruby
philcrissman has joined #ruby
pu22l3r has quit [Ping timeout: 250 seconds]
adeponte has quit [Remote host closed the connection]
kenperkins has joined #ruby
kenperkins has quit [Client Quit]
virunga has joined #ruby
brianpWins has quit [Quit: brianpWins]
KazW has quit [Ping timeout: 260 seconds]
Croms has joined #ruby
_blackbird has joined #ruby
bier has joined #ruby
xaxisx has quit [Quit: xaxisx]
rippa has joined #ruby
beilabs has quit [Ping timeout: 256 seconds]
jameshyde has joined #ruby
KazW has joined #ruby
cperrin88 has joined #ruby
robdodson has quit [Quit: robdodson]
mockillo has quit [Ping timeout: 252 seconds]
mockillo has joined #ruby
tobago has joined #ruby
christianrojas has joined #ruby
khakimov has quit [Quit: Computer has gone to sleep.]
snearch has joined #ruby
apeiros_ has joined #ruby
dankest has joined #ruby
jgrevich has joined #ruby
bondar has quit []
schovi has quit [Remote host closed the connection]
wallerdev has joined #ruby
kanbanknight has joined #ruby
apeiros_ has quit [Remote host closed the connection]
<kanbanknight> Good day everyone, anyone know a good interactive Ruby for iOS?
Urthwhyte is now known as Urth|Away
beilabs has joined #ruby
Chryson has quit [Quit: Leaving]
KazW has quit [Ping timeout: 260 seconds]
binaryplease has joined #ruby
visof has quit [Ping timeout: 260 seconds]
<kanbanknight> Guess no one knows, have a great day'
kanbanknight has left #ruby [#ruby]
khakimov has joined #ruby
<Hanmac> does ios support non apple software?
khakimov has quit [Client Quit]
schaerli has quit [Remote host closed the connection]
univers has quit [Remote host closed the connection]
fserb has joined #ruby
cperrin88 has left #ruby [#ruby]
<deryl> simple google would have told him: 'interactive ruby for iOS' amazing technology search engines
KazW has joined #ruby
rippa has quit [Ping timeout: 245 seconds]
savage- has joined #ruby
frishi has quit [Quit: Leaving...]
rippa has joined #ruby
Vendethiel has joined #ruby
zomgbie has joined #ruby
friskd has joined #ruby
schovi has joined #ruby
brianpWins has joined #ruby
axl_ has joined #ruby
ximarin_ has joined #ruby
zomgbie has quit [Ping timeout: 260 seconds]
b3gott3n has joined #ruby
spyvspy has joined #ruby
yoklov has quit [Quit: computer sleeping]
axl_ has quit [Client Quit]
<spyvspy> im not getting much help in rails, and I know this is specific to rails, but I was wondering if someone could help me
<spyvspy> im writing a custom oauth2 strategy, and im not sending the headers correctly, and I cant figure out why
<spyvspy> based on this
wallerdev has quit [Quit: wallerdev]
dankest has quit [Quit: Leaving...]
yoklov has joined #ruby
<Hanmac> spyvspy look at the topic and join #rubyonrails
<spyvspy> k, sorry, i just wanst geting any help in there
<spyvspy> pulling hair out etc
<ximarin_> hi all, question: I installed the latest version of ruby using rvm. the binaries are not symlinked to the bin-dir automatically. So where can I find he binaries now? In my rvm/bin-dir are symlinks to the latest versions, but are those the versions to use for me in development or are they just for rvm?
<deryl> spyvspy, there is no requirement for anyone to *immediately* answer you, and it could be that people don't have an answer for you. if you have problems you can also speak to the oath2 gem maintainer.
KazW has quit [Ping timeout: 260 seconds]
<deryl> there is more than one way to skin a cat
schovi has quit [Remote host closed the connection]
<spyvspy> i realize there is no requirement
<spyvspy> just figured this might be another way to skin the cat
<Hanmac> if you comibe the cat with a snake, the "snacat" can skin it itself
<deryl> ximarin_, make sure that you are running the latest rvm (rvm get stable) and those symlinks will change as you change rubies within rvm. (rvm use x.x.x-pxxx etc)
visof has joined #ruby
wallerdev has joined #ruby
<deryl> since they will change as you change rubies, you should be using #!/usr/bin/env ruby in your scripts and not directly calling the binary otherwise your scripts will break.
<deryl> please see the scripting info on the rvm page, and please take rvm related questions to the rvm channel
centipedefarmer has joined #ruby
christianrojas has quit [Quit: Linkinus - http://linkinus.com]
KazW has joined #ruby
remmy444 has quit [Ping timeout: 245 seconds]
hoelzro|away is now known as hoelzro
mtfk has left #ruby [#ruby]
workmad3_ has joined #ruby
cha1tanya has quit [Quit: Leaving]
ramblex has joined #ruby
yabuki has joined #ruby
cbuxton has joined #ruby
univers has joined #ruby
friskd has quit [Quit: friskd]
cha1tanya has joined #ruby
<shevy> :)
<shevy> deryl is the RVM guru
KazW has quit [Ping timeout: 260 seconds]
raul782 has quit [Remote host closed the connection]
knightblader has joined #ruby
binaryplease has quit [Ping timeout: 245 seconds]
minijupe has quit [Quit: minijupe]
burgestrand has joined #ruby
ragnok has quit [Quit: Leaving]
arturaz has quit [Remote host closed the connection]
dv_ has joined #ruby
sepp2k has quit [Ping timeout: 245 seconds]
perryh is now known as perryh_away
aibo has quit [Quit: Leaving]
roams has joined #ruby
KazW has joined #ruby
mrsrikanth has quit [Quit: Leaving]
kevinbond has quit [Quit: kevinbond]
binaryplease has joined #ruby
<strnx> binaryplease☣ hi, have u been on blinkenshell?
ZachBeta has quit [Ping timeout: 240 seconds]
workmad3_ has quit [Ping timeout: 245 seconds]
jonathanwallace has quit [Read error: Connection reset by peer]
jonathanwallace has joined #ruby
AzureInSocks is now known as Azure
beilabs has quit [Ping timeout: 244 seconds]
adeponte has joined #ruby
kawa_xxx has quit [Remote host closed the connection]
KazW has quit [Ping timeout: 260 seconds]
sepp2k has joined #ruby
xaq has joined #ruby
flip28 has joined #ruby
KazW has joined #ruby
theRoUS has joined #ruby
theRoUS has quit [Changing host]
theRoUS has joined #ruby
iamjarvo has joined #ruby
locriani has quit [Remote host closed the connection]
banisterfiend has quit [Read error: Connection reset by peer]
robdodson has joined #ruby
locriani has joined #ruby
CheeToS has quit [Ping timeout: 248 seconds]
benatwork has joined #ruby
kstephens has quit [Ping timeout: 245 seconds]
kstephens has joined #ruby
jimeh2 has joined #ruby
beilabs has joined #ruby
visof has quit [Quit: Leaving]
banisterfiend has joined #ruby
visof has joined #ruby
visof has quit [Changing host]
visof has joined #ruby
queenlua has joined #ruby
benatwork has quit [Ping timeout: 245 seconds]
xaxisx has joined #ruby
digitalcakestudi has quit [Quit: Leaving.]
emmanuelux has joined #ruby
perryh_away is now known as perryh
mechanic has joined #ruby
mechanic has left #ruby [#ruby]
rmascarenhas has joined #ruby
KazW has quit [Ping timeout: 260 seconds]
<multi_io> where's REXML::Formatters::Transitive gone?
hoelzro is now known as hoelzro|away
ipoval has joined #ruby
bitvector2 has quit [Quit: Leaving]
frishi has joined #ruby
KazW has joined #ruby
perryh is now known as perryh_away
dankest has joined #ruby
emmanuelux has quit [Ping timeout: 264 seconds]
<shevy> that never looked like standard ruby
kil0byte has joined #ruby
<multi_io> ah, you have to require it separately...
adeponte has quit [Remote host closed the connection]
dankest has quit [Client Quit]
adeponte has joined #ruby
mneorr has joined #ruby
mneorr has quit [Read error: Connection reset by peer]
zUriel has quit [Read error: Connection reset by peer]
dankest has joined #ruby
kil0byte_ has joined #ruby
mneorr has joined #ruby
mneorr has quit [Remote host closed the connection]
kil0byte has quit [Ping timeout: 260 seconds]
adeponte has quit [Ping timeout: 256 seconds]
bwlang has joined #ruby
mneorr has joined #ruby
mneorr has quit [Read error: Connection reset by peer]
ciopte7 has joined #ruby
mneorr has joined #ruby
fukushim_ has joined #ruby
mneorr has quit [Read error: Connection reset by peer]
kil0byte_ has quit []
fukushima has quit [Ping timeout: 245 seconds]
KazW has quit [Ping timeout: 260 seconds]
mneorr has joined #ruby
mvangal__ has quit [Remote host closed the connection]
mneorr has quit [Read error: Connection reset by peer]
mneorr has joined #ruby
mneorr has quit [Read error: Connection reset by peer]
tobago has quit [Remote host closed the connection]
jonathanwallace has quit [Read error: Connection reset by peer]
jonathanwallace has joined #ruby
mneorr has joined #ruby
mneorr has quit [Read error: Connection reset by peer]
emet has quit [Remote host closed the connection]
jonathanwallace has quit [Remote host closed the connection]
jonathanwallace has joined #ruby
akem has quit [Ping timeout: 252 seconds]
mneorr has joined #ruby
KazW has joined #ruby
mneorr has quit [Read error: Connection reset by peer]
mneorr has joined #ruby
nocturnal has joined #ruby
mneorr has quit [Read error: Connection reset by peer]
schovi has joined #ruby
mneorr has joined #ruby
nocturnal has left #ruby [#ruby]
mneorr has quit [Read error: Connection reset by peer]
ryanf has joined #ruby
snearch has quit [Quit: Verlassend]
bosphorus has quit [Remote host closed the connection]
bosphorus has joined #ruby
mneorr has joined #ruby
schovi has quit [Remote host closed the connection]
mneorr has quit [Read error: Connection reset by peer]
iamjarvo has quit [Quit: Leaving.]
spyvspy has left #ruby ["Leaving"]
mneorr has joined #ruby
xaq has quit [Ping timeout: 244 seconds]
banisterfiend has quit [Read error: Connection reset by peer]
mneorr has quit [Read error: Connection reset by peer]
mneorr has joined #ruby
offby1 has joined #ruby
akem has joined #ruby
mneorr has quit [Read error: Connection reset by peer]
<offby1> Ruby Nuby asks: why does this simple test ( https://gist.github.com/2859586 ) fail? (I'm used to scheme, perl, and python)
vlad_starkov has quit [Remote host closed the connection]
blacktulip has quit [Remote host closed the connection]
mneorr has joined #ruby
mneorr has quit [Read error: Connection reset by peer]
mneorr has joined #ruby
banisterfiend has joined #ruby
blacktulip has joined #ruby
mneorr has quit [Read error: Connection reset by peer]
robert_ has joined #ruby
mneorr has joined #ruby
KazW has quit [Ping timeout: 260 seconds]
mneorr has quit [Read error: Connection reset by peer]
<TTilus> offby1: classes, modules and functions open a new scope
mneorr has joined #ruby
KazW has joined #ruby
mneorr has quit [Read error: Connection reset by peer]
<TTilus> offby1: local vars in surrounding scope arent visible in the new
dankest has quit [Quit: Leaving...]
mneorr has joined #ruby
<TTilus> offby1: the cod you have written there makes absolutely no sense, btw :)
cha1tanya has quit [Quit: Leaving]
<offby1> well it's just an example.
<TTilus> offby1: thats what i thought
mneorr has quit [Read error: Connection reset by peer]
banisterfiend has quit [Read error: Connection reset by peer]
<offby1> so the only way a function can refer to variables outside of itself, is if those variables are $, @, or @@?
<TTilus> offby1: if you _really_ want to ddfine a function with an access to surrounding scope, use define_method, blocks are closures, and they do not open a new scope
mneorr has joined #ruby
mneorr has quit [Read error: Connection reset by peer]
dtang has quit [Quit: dtang]
<TTilus> offby1: your thoughts seem a bit function-centric
<offby1> indeed
<TTilus> offby1: with ruby things flow a bit more easily when you start thinking thru objects
<offby1> I am pretty sure that my previous experience in other languages is hindering me as well as helping me
<TTilus> thats pretty much always he case
<offby1> OK, so where are the objects in my gist? I don't see 'em but I assume there's at least one floating around somewhere.
<TTilus> just go read ruby
<TTilus> _everything_ is an object :)
<TTilus> it is turtles all the way down
<Hanmac> mostly everything in ruby is an object ... and if not it could be turned into one :P
mneorr has joined #ruby
<offby1> well, specifically: if I stick a @ in front of all references to "data", the test passes. So: of what object is @data an instance variable?
mneorr has quit [Read error: Connection reset by peer]
<TTilus> offby1: your SomeThing is actually an object :)
cbuxton has quit [Quit: Leaving.]
mneorr has joined #ruby
<offby1> or, of what object is gimme_that_data a method?
<burgestrand> offby1: the current "self", you could print it with "p self"
<offby1> burgestrand: ah. And "self" is, in effect, dynamically bound ...
<Hanmac> TTilus: like this? http://abstrusegoose.com/155
<TTilus> offby1: that would make it an instance var of top level object
mneorr has quit [Read error: Connection reset by peer]
<burgestrand> offby1: if you mean what I think you mean then yes, there is *always* a self in ruby
neersighted is now known as neer|bday
mneorr has joined #ruby
<TTilus> ..and its always an object
mneorr has quit [Read error: Connection reset by peer]
neer|bday is now known as neer|atbday
mneorr has joined #ruby
bwlang has quit [Remote host closed the connection]
akem has quit [Ping timeout: 252 seconds]
azm has quit [Ping timeout: 265 seconds]
bwlang has joined #ruby
mneorr has quit [Read error: Connection reset by peer]
<offby1> I've stuck some "puts" calls in my code, but I don't see their output. Does "rspec" suppress stdout ?
mneorr has joined #ruby
<burgestrand> Not as far as I know, no. It could be that they are trying to puts something that is nil.
<TTilus> Hanmac: exactly, and the colored is the n'th gen metaclass
mneorr has quit [Read error: Connection reset by peer]
<burgestrand> offby1: if you use p, it will call .inspect on the object being printed beforehand, which is usually a good idea if you don’t know what object you are printing
<burgestrand> offby1: in effect, when printing nil’s you’ll actually see "nil" instead of an empty string
<Hanmac> TTilus: it sems that you didnt know Waldo?
<TTilus> offby1: dont puts, just stick a repl in there
<burgestrand> offby1: often it’s better doing that ^
<TTilus> Hanmac: no i didnt
<TTilus> offby1: install pry and use binding.pry and go exploring the world around you
mneorr has joined #ruby
mneorr has quit [Read error: Connection reset by peer]
<offby1> TTilus: I've got pry, but I don't know how to run rspec tests within it. But that's moot, since I can write an example that doesn't use rspec.
SeySayux has quit [Read error: No route to host]
<offby1> burgestrand: yes, I know about p and puts and pp.
<TTilus> offby1: you dont need to
mneorr has joined #ruby
Urth|Away is now known as Urthwhyte
<binaryplease> strnx: hi yes i am on blinknshell
mneorr has quit [Read error: Connection reset by peer]
<TTilus> offby1: just require 'pry' in your env.rb or whatelse and then use binding.pry as breakpoint
SeySayux has joined #ruby
brianpWins has quit [Ping timeout: 248 seconds]
<TTilus> pry is pure awesome
<Hanmac> TTilus: Waldo is the person in the Search images
bosphorus has quit [Remote host closed the connection]
<burgestrand> offby1: by that he means use "binding.pry" instead of "puts whatever"
<offby1> hmm, ok
<burgestrand> offby1: it will start a pry session at that specific point in your code, so you may inspect any variables you’ve assigned (and even change them)
<TTilus> Hanmac: had to ask google, now i know, havent ever seen those books here in finland
<Hanmac> currently i have installed pry but i dont use it ... for me irb is enough
bier has quit [Ping timeout: 245 seconds]
visof has quit [Ping timeout: 244 seconds]
<TTilus> Hanmac: read the command list once and you kow why you should :)
SegFaultAX|work2 has joined #ruby
<offby1> pry has nicer colors :)
banisterfiend has joined #ruby
mneorr has joined #ruby
<Hanmac> it doesnt protect me from my segfaults :P
mneorr has quit [Read error: Connection reset by peer]
<strnx> binaryplease☣ though i recognized you:)
<TTilus> and its simply superior in every sense
<offby1> so "ls" in pry shows me that there's a local variable named "data", which is as I'd expected. But it didn't show any mention of "gimme_that_data", which surprised me.
iamjarvo has joined #ruby
akem has joined #ruby
tomb_ has joined #ruby
<Hanmac> offby1 i think gimme_that_data is defined as instance_method, not as class/singleton_method
Jackneill has quit [Read error: Connection reset by peer]
<Hanmac> you may need something like this: >> def self.gimme_that_data; data; end
<offby1> so ... on what instance is it defined? Apparently not "self"
<Hanmac> offby1 an instance method is defined in the class but works on all instances
<offby1> so I should find gimme_that_data somewhere in the Object class?
<Hanmac> no, try it as i wrote before
flip has joined #ruby
flip has left #ruby [#ruby]
<offby1> I tried def self.gimme_that_data; data; end ; I didn't observe any difference
<binaryplease> strnx: are you on blinken? cant see you
<Hanmac> did you still get an error ? and if yes what error?
<strnx> binaryplease☣ NR, not on there at the mo
<binaryplease> i see
<offby1> Hanmac: yes, the error is ``hmm.rb:6:in `gimme_that_data': undefined local variable or method `data' for main:Object (NameError)''
<Hanmac> change all data to @data
workmad3_ has joined #ruby
<offby1> yes, I know that works.
workmad3 has quit [Disconnected by services]
brianpWins has joined #ruby
workmad3_ is now known as workmad3
<offby1> I'm not trying to simply "make it work"; instead, I'm trying to understand _why_ it doesn't work as it is.
workmad3_ has joined #ruby
<offby1> There's some (probably very simple) underlying concept that I'm not getting.
pygospa has quit [Ping timeout: 244 seconds]
<workmad3> what's the problem code? :)
<offby1> TTilus: sounds good, thanks!
<workmad3> I always like looking at problem code :)
<TTilus> offby1: when you get self and scopes in ruby, you are pretty solid
vonsar has quit [Ping timeout: 245 seconds]
<TTilus> workmad3: /lastlog gist
<workmad3> TTilus: I only just joined
<workmad3> TTilus: only gives me the topic :P
<banisterfiend> TTilus: the lulzy thing about that post is that he had to make a correction to that article which demonstrated it's *not* all about the self :P
pygospa has joined #ruby
AwesomeGarethMan has joined #ruby
<workmad3> TTilus: it's hard for an IRC client to bring up logs from a time it wasn't joined after all :P
<TTilus> banisterfiend: sssh! damn you :)
jimeh2 has quit [Ping timeout: 244 seconds]
<AwesomeGarethMan> hi, anyone know if there's any "gotchas" using SSL for XML-RPC clients?
<Hanmac> PS: becareful on: sameobj == sameobj compare ... it exist objects where this returns false
<AwesomeGarethMan> i've got a colleague trying to talk to my python XML-RPC server over SSL and he's having trouble
<workmad3> ah, def, what metaprogramming ruby called a 'scope gate'
getbitcoin1 has joined #ruby
<AwesomeGarethMan> ruby client
<AwesomeGarethMan> heh, hi tom
<TTilus> workmad3: offby1 wanted to kow why pry las lists the var data but not the method gimme_that_data
<workmad3> dunno about pry
<AwesomeGarethMan> TTilus: would you happen to know about this?
<Hanmac> workmad3: something like: "local variables: you shall not pass" ? :P
<workmad3> I know why his method doesn't work though :)
<getbitcoin1> @AwesomeGarethMan: Hey Gareth
<workmad3> Hanmac: more like 'def explictly doesn't create a closure'... but I guess the tolkein reference is good :)
<AwesomeGarethMan> oh ruby devs, how i love your culture
imami|afk is now known as banseljaj
<AwesomeGarethMan> should use ruby more often myself
<Hanmac> in ruby its all about references :P
<banisterfiend> offby1: hi
<getbitcoin1> I'm trying to use an XML-RPC API over an RoR app, but it won't connect via SSL
<getbitcoin1> I run the code server3 = XMLRPC::Client.new("https://www.xyz.com/", "/api/xmlrpc", 443, use_ssl=true)
<getbitcoin1> And I get "@use_ssl=false" when it returns
<AwesomeGarethMan> hmm, not sure the RoR bit is relevant to the core issue - it was freezing right?
Urthwhyte is now known as Urth|Away
<workmad3> getbitcoin1: how is the app set up?
<AwesomeGarethMan> or maybe i'm wrong...
<getbitcoin1> @workmad3: It's deployed via Heroku, but I'm testing it in console
<workmad3> getbitcoin1: also, shouldn't that be :use_ssl => true ?
snickersnack has joined #ruby
<workmad3> getbitcoin1: or maybe use_ssl: true if you like 1.9 hash sysntax
<AwesomeGarethMan> ah ha, if that's the reason why it'd explain the freezing
<workmad3> *syntax
<banisterfiend> offby1, TTilus: 'ls' by itself doesn't show everything, it just shows some useful default data, i.e: local variables, ivars, classs methods. Other things like instance methods, private methods, class vars, constants, globals and so on must be requrested explicitly by passing an option
<banisterfiend> offby1, TTilus: type `ls -h` to the view the list of options
<offby1> TTilus: actually that metaprogramming article just confused me more :-(
<AwesomeGarethMan> if SSL isn't being turned on due to a syntax thing then it'll hang forever when it expects plain HTTP and instead gets an SSL handshake
<Hanmac> another interesting feature is that you can put defs into defs :P def call; def call; "working"; end; "init...";end; call;#>"init..."; call; #>"working"
ZachBeta has joined #ruby
<AwesomeGarethMan> getbitcoin1: try what the good gentlemen suggested
<AwesomeGarethMan> stick a : in front of use_ssl
<getbitcoin1> @workmad3: That also doesn't work
<AwesomeGarethMan> :(
<getbitcoin1> server3 = XMLRPC::Client.new("https://www.bitinstant.com/", "/api/xmlrpc", 443, :use_ssl => "true")
<getbitcoin1> @use_ssl=false
<workmad3> getbitcoin1: is that what I said?
<workmad3> getbitcoin1: I'm pretty sure I said :use_ssl => true
<getbitcoin1> Oops dump quote marks, just saw that
<getbitcoin1> Sorry
bwlang has quit [Ping timeout: 244 seconds]
<workmad3> :)
<AwesomeGarethMan> bool, not string
<getbitcoin1> Of course
<AwesomeGarethMan> if you get the content-type error then we know it's just my server that needs updating
<getbitcoin1> server3 = XMLRPC::Client.new("https://www.bitinstant.com/", "/api/xmlrpc", 443, :use_ssl => true) doesn't work either
<Hanmac> ... in a good gem it should work with both ...
wallerdev has quit [Quit: wallerdev]
bwlang has joined #ruby
<offby1> banisterfiend: ahoy. Care to take a crack at my problem? I realize I don't understand something fundamental about Ruby: https://gist.github.com/2859586 gives an error, and I don't understand why.
davidw has joined #ruby
<AwesomeGarethMan> getbitcoin1: same freezing issue or a new error?
larissa has quit [Quit: gone]
davidw is now known as Guest94834
<AwesomeGarethMan> what we want is to see the content-type error, that proves that it's contacting my server
<offby1> I am so used to Python, Perl, and Scheme that I am probably assuming that Ruby works similarly, and am tripped up when it doesn't.
<banisterfiend> offby1: when i get hom,e,; currently driving :)
<workmad3> getbitcoin1: ah, I think I see it
<AwesomeGarethMan> offby1: i'm a huge python guy
<offby1> AwesomeGarethMan: you don't look that huge from here
<workmad3> getbitcoin1: the method sig is: new(host=nil, path=nil, port=nil, proxy_host=nil, proxy_port=nil, user=nil, password=nil, use_ssl=nil, timeout=nil)
<AwesomeGarethMan> keep meaning to get into python
<offby1> 5'8" if I had to guess
<AwesomeGarethMan> err, into ruby
<getbitcoin1> @AwesomeGarethMan: We know it won't work because it says SSL isn't turned on
robdodson has quit [Quit: robdodson]
<AwesomeGarethMan> getbitcoin1: yeah, but when it does work you'll see the content-type error
<AwesomeGarethMan> so the goal is perversly to get an error message about the content type
<workmad3> getbitcoin1: so to do use_ssl, you need to do new(host, path, port, proxy_host, proxy_port, user, password, true)
<workmad3> getbitcoin1: you can't short-circuit it with a :user_ssl => true on that constructor
<getbitcoin1> @workmad3: Trying now
<workmad3> getbitcoin1: anything you don't want to use, just put a nil in
<workmad3> getbitcoin1: so, new(uri, path, 443, nil, nil, nil, nil, true)
<AwesomeGarethMan> workmad3: does ruby support keyword params like in python?
<workmad3> AwesomeGarethMan: not at the language level, no
<AwesomeGarethMan> a common pattern i use is some_func(a,b,c,something_optional=None,something_else=None)
<workmad3> AwesomeGarethMan: it's just commonly faked with implicit hash conversions :)
<getbitcoin1> @workmad3: OK got it, that works
<AwesomeGarethMan> then i call some_func(1,2,3,something_else=blabla)
<AwesomeGarethMan> getbitcoin1: working now?
<AwesomeGarethMan> awesome
<getbitcoin1> @AwesomeGarethMan: SSL is turned on
<AwesomeGarethMan> ok
<getbitcoin1> Meet you on Skyper
<getbitcoin1> Skype
<AwesomeGarethMan> thanks workmad3
<getbitcoin1> Yeah, thanks
<workmad3> getbitcoin1: also check out the new_from_hash or new3 constructors for xmlrpc for the docs
<AwesomeGarethMan> stay here anyway
atmosx has quit [Ping timeout: 240 seconds]
<AwesomeGarethMan> seems a useful channel to idle in
<getbitcoin1> True
Araxia has joined #ruby
<workmad3> getbitcoin1: with that one, you could do new_from_hash(host: ..., path: ..., port: 443, use_ssl: true)
c0rn has joined #ruby
<workmad3> AwesomeGarethMan: and that's an example of named params being faked with implicit hashes ;)
<AwesomeGarethMan> sounds like one of those really nifty language features that confuses the hell out of newbies but lets you do awesome things
atmosx has joined #ruby
<workmad3> AwesomeGarethMan: the above is equivalent to new_from_hash({host: ..., etc)
<workmad3> err, with a closing }
<AwesomeGarethMan> reminds me a little of **kwargs
<TTilus> offby1: if you are still looking for your lost method, try find-method in pry
<workmad3> AwesomeGarethMan: a bit, I did quite like the actual kw args in python, but I prefer ruby in many other ways
<banisterfiend> TTilus: find-method rocks my socks
tomzx has joined #ruby
<banisterfiend> TTilus: esp find-method -c, it rocks out my D.
<TTilus> offby1: i need to go to sleep now, hope banisterfiend or somebody else will pick up
ronniy has quit [Remote host closed the connection]
<workmad3> AwesomeGarethMan: and it's possible to fake it in ruby at least... bit more work on methods that do it, but still a nice client experience :)
<TTilus> banisterfiend: =D
<workmad3> AwesomeGarethMan: compared to languages like java where you can't even manage a good faked version...
jimeh2 has joined #ruby
<AwesomeGarethMan> server3 = XMLRPC::Client.new("www.bitinstant.com", "/api/xmlrpc", 443, nil, nil, nil, nil, true, nil)
<AwesomeGarethMan> is anything wrong with that line?
<banisterfiend> offby1: ok im home what's your prob again
<workmad3> AwesomeGarethMan: nope
<offby1> banisterfiend: behold https://gist.github.com/2859586
<AwesomeGarethMan> apparently it worked with "https://www.bitinstant.com/" as the first param until a call to the remote server was attempted
<AwesomeGarethMan> at which point, DNS error
<getbitcoin1> Now trying ok, param = server3.call("CalculateFee","zipzap","mtgox",20,"RUB")
<banisterfiend> offby1: and what's your q.
<getbitcoin1> That returns "You might have expected an instance of Array.
<getbitcoin1> The error occurred while evaluating nil.split"
<offby1> why does the commented-out line get the error
<workmad3> AwesomeGarethMan: oh, that makes sense... it probably tried to call 'https://https://bitinstant.com//api/xmlrpc'
<AwesomeGarethMan> yeah
<getbitcoin1> Yeah I fixed that
<AwesomeGarethMan> but now it's giving the error getbitcoin1 just mentioned
<AwesomeGarethMan> so something's still up
<banisterfiend> offby1: it's just a question of scope
<workmad3> offby1: because 'def' doesn't create a closure
ZachBeta has quit [Read error: Connection reset by peer]
<offby1> indeed it is. ANd the answer is ... ?
<banisterfiend> offby1: methods created by 'def' dont create closures as workmad3 says
<AwesomeGarethMan> getbitcoin1: should i leave you to this? i'll go update my server in the meantime so when it works you should get the proper response
<workmad3> offby1: or, in less jargon, you can't use local variables from outside the 'def' block inside the 'def' block
<offby1> workmad3: ah, I didn't see that.
<getbitcoin1> @AwesomeGarethMan: Sure
<AwesomeGarethMan> i leave you in the capable hands of these fine ruby-using gentlemen
<banisterfiend> offby1: if u did this instead it would work: replace your code with: define_singleton_method(:gimme_that_data) { data }
<offby1> pardon me for a moment: WHAT THE HELL KIND OF "def" DOESN'T CREATE CLOSURES?!?? HOW IS THAT USEFUL?!
<offby1> Ok, I feel better now
<workmad3> offby1: there are 3 keywords in ruby that have that behaviour... def, class and module
<workmad3> offby1: 'define_method' exists to create methods with closure blocks
<getbitcoin1> @workmad3: I got rid of the extra https prefix, but am now getting the "NoMethodError: You have a nil object when you didn't expect it!" error
<banisterfiend> offby1: same as methods in java and objc, dont create closures either. But we can build methods that are closures by using define_method as workmad3 says
<TTilus> offby1: come down, think thru olbject, it makes perfectly sense and is really juseful
dnyy has joined #ruby
<offby1> hm, or with the awkward "lambda" and "call" business that I've already done.
<workmad3> getbitcoin1: I've never used xmlrpc
<workmad3> offby1: or just passing a block to a method
<workmad3> offby1: and there's always the stabby lambda syntax
<banisterfiend> offby1: what's awkward about that babe
looopy has joined #ruby
ZachBeta has joined #ruby
<offby1> banisterfiend: it's just strikingly different than what I'm used to, is all.
<banisterfiend> offby1: the fact u have to use 'call' to invoke it u mean?
<workmad3> offby1: it's a different language... hardly surprising :P
<Hanmac> workmad3 what do you think about def in other def? XD
<offby1> no, the fact that "def" doesn't create closures.
<workmad3> Hanmac: probably a smell :)
<AwesomeGarethMan> workmad3: it's not a protocol-specific issue, we tried this against a plain HTTP server with no SSL and had it working fine
SeySayux has quit [Ping timeout: 252 seconds]
<AwesomeGarethMan> so it's not XML-RPC per ser that's problematic, it's running it over SSL
<banisterfiend> offby1: im making american-style fried chicken, do u have any secret ingredients to help me out
<workmad3> AwesomeGarethMan: no, I mean I've never used xmlrpc so I don't know what the errors could come from
<offby1> banisterfiend: marinate in buttermilk before frying!
<workmad3> AwesomeGarethMan: I don't know how it acts... I diagnosed the first issue just by looking at the api docs :P
<AwesomeGarethMan> heh, ok
<offby1> actually I never make fried chicken because I'm afraid of setting the kitchen on fire. But I do love it
<banisterfiend> offby1: excessive!
<offby1> I'm told it's good, but as I say: never tried it
<AwesomeGarethMan> well, that nil error - could it be that it's storing some of the params from the constructor and then trying to reference them?
dankest has joined #ruby
<AwesomeGarethMan> getbitcoin1: by the way, production server is updated
<workmad3> AwesomeGarethMan: no idea, and I need to go I'm afraid
flip28 has left #ruby ["Bye"]
<AwesomeGarethMan> ok, well many thanks for your help
bwlang has quit [Quit: bwlang]
<AwesomeGarethMan> getbitcoin1: when we had it working against my dev server, how were you calling CalculateFee? can you make sure it's the exact same line?
<getbitcoin1> @AwesomeGarethMan: Thanks, trying now
<banisterfiend> offby1: what is your primary development language, besides e-lisp
SeySayux has joined #ruby
<offby1> right now: ruby! Scary, huh?
<AwesomeGarethMan> e-lisp - tell me you mean that lisp frontend to erlang
<AwesomeGarethMan> not emacs....
<offby1> But you probably meant "in the last couple years". Python and Perl.
<offby1> for fun, "Racket" (formerly known as "PLT Scheme")
c0rn has quit []
<banisterfiend> offby1: did u hate your boss when he made you switch to ruby? i remember you saying mean things about it a year or so ago
<offby1> AwesomeGarethMan: he meant emacs. I'm a big ol' Emacs zealot
<offby1> banisterfiend: I wasn't being truly mean -- just snarky. And despite my whining here, I'm quite enjoying it.
<AwesomeGarethMan> offby1: heathen
<AwesomeGarethMan> vi is the one true path
<offby1> *shrug*
<offby1> I yam what I yam and that's all that I yam
<banisterfiend> AwesomeGarethMan: offby1 is an old emacs greybeard
<AwesomeGarethMan> an enemy leader!
banister_ has joined #ruby
Dr4g has quit [Quit: Connection closed for inactivity]
workmad3 has quit [Ping timeout: 245 seconds]
mneorr has joined #ruby
seanstickle has joined #ruby
mneorr has quit [Read error: Connection reset by peer]
dangerousdave has joined #ruby
Urth|Away is now known as Urthwhyte
banisterfiend has quit [Ping timeout: 260 seconds]
azm has joined #ruby
azm has quit [Changing host]
azm has joined #ruby
mneorr has joined #ruby
benatwork has joined #ruby
xaxisx has quit [Quit: xaxisx]
mneorr has quit [Read error: Connection reset by peer]
mneorr has joined #ruby
mneorr has quit [Read error: Connection reset by peer]
benatwork has quit [Ping timeout: 245 seconds]
mneorr has joined #ruby
mneorr has quit [Read error: Connection reset by peer]
<banister_> offby1: i think this will taste hella weird, i have a feeling i put way way too much garlic powder in
DrShoggoth has joined #ruby
<banister_> and onion powder
<offby1> bleah
mneorr has joined #ruby
<offby1> I'm pro-onion and pro-garlic, but not crazy about the powdered versions
<banister_> yeah
mneorr has quit [Read error: Connection reset by peer]
<banister_> but i cant put ordinary garlic/onion in a flour mix
<banister_> for a batter
<offby1> well .... you could mash up the garlic and mix it into the batter. Probably can't do that with an onion though
* offby1 googled for "ruby closures" and has thus opened Pandora's box
siksia has quit [Ping timeout: 252 seconds]
<banister_> offby1: haha
<banister_> offby1: Yeah, the complexities are way overstated IMO
<banister_> in practical usage it's really straight forward
<banister_> offby1: i normaly just ignore lambdas and use procs instead
<banister_> though the 1.9 lambda syntax is tempting
perryh_away is now known as perryh
<banister_> offby1: hey if u havent got a book yet, i recommend u read 'the ruby programming language'
<banister_> offby1: forget the other ones, it's the only one you need to read
mikepack_ has joined #ruby
mikepack has quit [Read error: Connection reset by peer]
<banister_> offby1: the one co-authored by matz
<Boohbah> i also recommend this book
<AwesomeGarethMan> matz - i know that name
<Boohbah> but i'm not as cool as banister_ :)
<banister_> AwesomeGarethMan: hehe
<offby1> I already got the new edition of the Pickaxe book; it's good
ciopte7 has quit [Quit: ciopte7]
bwlang has joined #ruby
<banister_> offby1: i personally think pickaxe is a distant 3rd or 4th in the ruby book rankings
<banister_> but it has some great chapters esp the one on C extensions
<banister_> but it just feels too bloated and disorganized for me
<banister_> the advantage of the matz book is it's really concise
Occult has quit [Quit: Leaving]
brianpWins has quit [Quit: brianpWins]
CheeToS has joined #ruby
siksia has joined #ruby
nkts has joined #ruby
iamjarvo has quit [Quit: Leaving.]
nfk has quit [Quit: yawn]
mneorr has joined #ruby
bosphorus has joined #ruby
mneorr has quit [Read error: Connection reset by peer]
mneorr has joined #ruby
mneorr has quit [Remote host closed the connection]
flip_digits has quit [Quit: ["Textual IRC Client: www.textualapp.com"]]
binaryplease has quit [Ping timeout: 244 seconds]
adeponte has joined #ruby
uris has joined #ruby
ciopte7 has joined #ruby
nkts has quit [Ping timeout: 252 seconds]
samuelkadolph has quit [Quit: ZNC - http://znc.in]
* offby1 looks on Amazon
zommi has joined #ruby
samuelkadolph has joined #ruby
<offby1> it's a good deal when you buy used: http://goo.gl/ac3kz
<offby1> :-|
<offby1> So I guess the solution to my problem is: methods aren't closures, but there are about a zillion ways to create closures if you want 'em (I've updated https://gist.github.com/2859586 with lots of examples).
<banister_> offby1: get it for your android tablet
<offby1> Don't got no tablet.
nlc has joined #ruby
Urthwhyte is now known as Urth|Away
<banister_> offby1: cool, seems like u got the hang of it
dnyy has quit [Remote host closed the connection]
<offby1> all except the _why_
<banister_> offby1: are smalltalk methods closures?
jetblack has quit [Quit: leaving]
<banister_> offby1: if not (and i dont know the answer) then that's probably the reason, ruby takes a lot after smalltalk
<offby1> I don't know about smalltalk.
<offby1> AwesomeGarethMan: I never got into smalltalk because I couldn't figure out how to use Emacs to edit the code :)
<banister_> hehe
ringotwo has quit [Remote host closed the connection]
rippa has quit [Ping timeout: 252 seconds]
ringotwo has joined #ruby
<seanstickle> SmallTalk is lovely, once you learn how to use it with an editor
<seanstickle> Instead of that godforsaken IDE/class browser thing
dnyy has joined #ruby
samuelkadolph has quit [Quit: Quitting]
ipoval has quit [Quit: ipoval]
samuelkadolph has joined #ruby
SegFaultAX|work2 has quit [Ping timeout: 252 seconds]
zommi has quit [Remote host closed the connection]
<banister_> seanstickle: sup stick
brianpWins has joined #ruby
<seanstickle> hey horsey
jonathan_ has joined #ruby
jonathanwallace has quit [Read error: Connection reset by peer]
blacktulip has quit [Remote host closed the connection]
kah_ has joined #ruby
busybox42 has quit [Quit: Leaving.]
snickersnack has quit [Quit: Leaving...]
busybox42 has joined #ruby
berserkr has quit [Quit: Leaving.]
ZachBeta has quit [Read error: Connection reset by peer]
ZachBeta has joined #ruby
<offby1> banister_: -- you're making fried chicken at 5:30 in the morning?!
<banister_> offby1: Yeah, i've been fantasizing about fried chicken all night
<banister_> soon as i woke up i made it
<seanstickle> Wait, chicken?
<seanstickle> Who wants a tour of the National Chicken Council offices?
<seanstickle> I can arrange it!
ipoval has joined #ruby
m_3 has quit [Ping timeout: 244 seconds]
kaneda_ has quit [Remote host closed the connection]
<banister_> offby1: it was gross btw
Defusal has joined #ruby
User_2012_irc has joined #ruby
Chryson has joined #ruby
<User_2012_irc> there is some function to work with dates in ruby?
<User_2012_irc> I need a program to enter 2 dates, calculate the oldest and the newest, and count down to the oldest date.
<seanstickle> User_2012_irc: yes, the Date class
kenichi has joined #ruby
moshee has quit [Ping timeout: 252 seconds]
moshee has joined #ruby
moshee has quit [Changing host]
moshee has joined #ruby
User_2012_irc has quit [Client Quit]
bwlang has quit [Read error: Connection reset by peer]
mneorr has joined #ruby
bwlang has joined #ruby
bglusman has quit [Read error: Connection reset by peer]
m_3 has joined #ruby
bglusman has joined #ruby
CheeToS has quit [Ping timeout: 248 seconds]
workmad3 has joined #ruby
yabuki_ has joined #ruby
binaryplease has joined #ruby
ringotwo has quit [Remote host closed the connection]
xaq has joined #ruby
yabuki has quit [Ping timeout: 245 seconds]
ringotwo has joined #ruby
binaryplease has quit [Client Quit]
ipoval has quit [Quit: ipoval]
perryh is now known as perryh_away
berserkr has joined #ruby
atmosx has quit [Read error: Operation timed out]
zemanel has quit [Quit: Remote hottie closed the connection]
atmosx has joined #ruby
pencilcheck has joined #ruby
JonnieCache has quit [Ping timeout: 244 seconds]
adamkittelson has joined #ruby
jameshyde has quit [Remote host closed the connection]
ringotwo has quit [Remote host closed the connection]
iamjarvo has joined #ruby
cousine has joined #ruby
tomb_ has quit [Quit: Computer has gone to sleep.]
Guest94834 has quit [Ping timeout: 240 seconds]
sepp2k has quit [Remote host closed the connection]
maletor has joined #ruby
ipoval has joined #ruby
dnyy has quit [Remote host closed the connection]
maletor has quit [Client Quit]
burgestrand has quit [Ping timeout: 252 seconds]
maletor has joined #ruby
ZachBeta has quit [Quit: Computer has gone to sleep.]
zeromodulus has joined #ruby
burgestrand has joined #ruby
ZachBeta has joined #ruby
hakunin has joined #ruby
b1rkh0ff has quit [Ping timeout: 248 seconds]
xaq_ has joined #ruby
b3gott3n has quit [Ping timeout: 250 seconds]
maletor has quit [Quit: Computer has gone to sleep.]
noganex has quit [Ping timeout: 245 seconds]
DuoSRX has joined #ruby
ZachBeta has quit [Quit: Computer has gone to sleep.]
xaq has quit [Ping timeout: 244 seconds]
seanstickle has quit [Quit: Nihil sub sole novum]
king313 has quit [Quit: .]
noganex has joined #ruby
strnx has quit [Ping timeout: 256 seconds]
xaq__ has joined #ruby
b1rkh0ff has joined #ruby
axl_ has joined #ruby
xaq_ has quit [Ping timeout: 260 seconds]
xaq__ has quit [Remote host closed the connection]
xaq_ has joined #ruby
cousine has quit [Remote host closed the connection]
kirun has quit [Quit: Client exiting]
DuoSRX has quit [Remote host closed the connection]
ringotwo has joined #ruby
pencilcheck has quit [Remote host closed the connection]
mockillo has quit [Ping timeout: 252 seconds]
mockillo has joined #ruby
ben_m` has joined #ruby
rmascarenhas has quit [Quit: leaving]
Vendethiel has quit [Quit: je ne suis plus là, tqvu]
ben_m has quit [Disconnected by services]
ben_m` is now known as ben_m
benatwork has joined #ruby
SegFaultAX|work2 has joined #ruby
mengu has joined #ruby
alexim has joined #ruby
benatwork has quit [Ping timeout: 245 seconds]
ximarin_ has quit [Quit: Page closed]
azm has quit [Ping timeout: 260 seconds]
xaq has joined #ruby
wallerdev has joined #ruby
xaq_ has quit [Ping timeout: 252 seconds]
daniel_hinojosa has joined #ruby
perryh_away is now known as perryh
nlc has quit [Quit: Leaving]
wallerdev has quit [Quit: wallerdev]
segora has quit [Quit: segora]
ringotwo has quit [Remote host closed the connection]
emmanuelux has joined #ruby
visof has joined #ruby
jgrevich has quit [Read error: Connection reset by peer]
ringotwo has joined #ruby
jgrevich has joined #ruby
igotnolegs has joined #ruby
queenlua has quit [Remote host closed the connection]
getbitcoin1 has quit [Ping timeout: 244 seconds]
vertroa has quit [Remote host closed the connection]
virunga has quit [Read error: Connection reset by peer]
tk___ has quit [Quit: ばいばい]
undersc0re97 has joined #ruby
undersc0re97 has quit [Changing host]
undersc0re97 has joined #ruby
perryh is now known as perryh_away
workmad3 has quit [Ping timeout: 244 seconds]
dangerousdave has quit [Quit: Leaving...]
queenlua has joined #ruby
mengu has quit [Remote host closed the connection]
andrewhl has joined #ruby
adeponte has quit [Remote host closed the connection]
adeponte has joined #ruby
bosphorus has quit [Remote host closed the connection]
adeponte has quit [Ping timeout: 248 seconds]
vertroa has joined #ruby
Jake232 has joined #ruby
workmad3_ has quit [Quit: Leaving]
iamjarvo has quit [Quit: Leaving.]
ringotwo has quit [Remote host closed the connection]
ericcoleman has joined #ruby
cousine has joined #ruby
dankest has quit [Quit: Leaving...]
igotnolegs has quit [Quit: Computer has gone to sleep.]
dankest has joined #ruby
igaiga has joined #ruby
akem has quit [Read error: Connection reset by peer]
akem has joined #ruby
akem has quit [Read error: Connection reset by peer]
akem has joined #ruby
tayy has quit [Remote host closed the connection]
queenlua has quit [Remote host closed the connection]
lmao25 has joined #ruby
lmao25 has left #ruby [#ruby]
dankest has quit [Quit: Leaving...]
nfluxx has joined #ruby
burgestrand has quit [Read error: Connection reset by peer]
ringotwo has joined #ruby
RBV has quit [Quit: leaving]
savage- has quit [Remote host closed the connection]
bfig has joined #ruby
igotnolegs has joined #ruby
dv_ has quit [Read error: Connection reset by peer]
naz has joined #ruby
JonnieCache has joined #ruby
fserb has quit [Quit: ttyl]
Jake232 has quit [Quit: Computer has gone to sleep.]
kawa_xxx has joined #ruby
xaq has quit [Read error: Connection reset by peer]
xaq has joined #ruby
adeponte has joined #ruby
banister_ has quit [Read error: Connection reset by peer]
jgrevich has quit [Quit: jgrevich]
banisterfiend has joined #ruby
fserb has joined #ruby
perryh_away is now known as perryh
visof has quit [Ping timeout: 245 seconds]
xaq has quit [Ping timeout: 252 seconds]
xaq has joined #ruby
Urth|Away is now known as Urthwhyte
lessless has quit [Ping timeout: 256 seconds]
td123 has quit [Quit: WeeChat 0.3.7]
beilabs has quit [Ping timeout: 252 seconds]
RubyPanther has quit [Quit: self.exit(:stage=>:left)]
perryh is now known as perryh_away
seitensei has quit [Ping timeout: 252 seconds]
fserb has quit [Quit: ttyl]
pk1001100011 has quit [Quit: Bredząc trzy po trzy oznajmiłeś, że Ty; Dasz im Władcę Snów; Nie pojęli Twych słów; Więc zginęły miliony – ich słowa brzmiały dziwnie; Ten sam Bóg nosił inne imię (…)]
seitensei has joined #ruby