<godd2>
oh it's because Class is an object, but a child of Module. class_eval comes from Module, so the receiver is expected to be a module or a class, and class_eval is from Object, so the receiver with be an object. Class is both an object and a class.
blackgoat has quit [Quit: reboot]
blackmes1 has joined #ruby
blackmes1 has quit [Client Quit]
eka has quit [Quit: My computer has gone to sleep. ZZZzzz…]
danman has quit [Quit: danman]
Deele has quit [Ping timeout: 255 seconds]
bubbajoness has quit [Quit: leaving]
ffranz has quit [Quit: Leaving]
cocotton has joined #ruby
andrewjanssen has joined #ruby
marc_online_ has quit [Client Quit]
sski has joined #ruby
bradleyprice has joined #ruby
Gaddel has quit [Remote host closed the connection]
blackmesa has quit [Ping timeout: 272 seconds]
isthisreallife has quit [Ping timeout: 240 seconds]
ascarter has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
Fractional has quit [Quit: Leaving]
meeko has joined #ruby
cocotton_ has quit [Ping timeout: 272 seconds]
bubbajones has joined #ruby
<jrmithdobbs>
is there a more 'correct' way to get Regexp to compile some matches without executing them than: %r{(?: (?<match1> x ) (?<match2> y) ){0} \g<match1> \g<match2>}x ? eg something like pcre's (?(DEFINE)(?<name>pattern)) ?
<wallerdev>
i guess you could just reference your first reference to it instead of trying to define it beforehand
musl has quit [Quit: WeeChat 0.4.3]
sepp2k1 has quit [Read error: Connection reset by peer]
crazymykl has quit [Read error: Connection reset by peer]
<jrmithdobbs>
or to show the point: (%r{(?: (?<match1> x ) (?<match2> y) ){0} (?<match4> \g<match1> ) (?<match3> \g<match2> )}x.match "xy")[:match3] == 'y'
crazymykl has joined #ruby
<jrmithdobbs>
ya that's not always convenient though
<jrmithdobbs>
{0} is fine i was just looking for DEFINE like in pcre but not finding it
<wallerdev>
yeah ive never had to do that much with regex, maybe someone else knows better :)
<jrmithdobbs>
so I guess {0}(?# Compile but do not match.) like I have is the best option in ruby ;p
hpoydar has quit [Ping timeout: 240 seconds]
<wallerdev>
i know perl is pretty flexible with its regex though
musl has joined #ruby
yubrew has quit [Ping timeout: 240 seconds]
Skei has joined #ruby
ddv has quit [Ping timeout: 245 seconds]
Stalkr^ has quit [Quit: Leaving...]
Photism has quit [Quit: Leaving]
lemur has joined #ruby
huginn has quit [Remote host closed the connection]
fgo has joined #ruby
jeregrine has quit [Quit: Connection closed for inactivity]
beneggett has joined #ruby
GriffinHeart has joined #ruby
MrRojojojo has joined #ruby
toastynerd has joined #ruby
ddv has joined #ruby
zz_karupa is now known as karupa
gondalier has quit []
nanoyak has quit [Quit: Computer has gone to sleep.]
mobi_pontiki has joined #ruby
<mobi_pontiki>
hi
spicerack has joined #ruby
fgo has quit [Ping timeout: 245 seconds]
beneggett has quit [Client Quit]
glenfe has joined #ruby
lemur has quit [Ping timeout: 255 seconds]
<shevy>
whaletiki!
cocotton has quit [Remote host closed the connection]
GriffinHeart has quit [Ping timeout: 244 seconds]
Wolland has quit [Ping timeout: 264 seconds]
nanoyak has joined #ruby
jmurphy has joined #ruby
<jmurphy>
is there a method to get all class variables?
papercode has quit [Quit: WeeChat 0.4.4-dev]
MZAWeb_ has quit [Ping timeout: 245 seconds]
<jmurphy>
similar to some_instance.instance_variables
<wallerdev>
um
<wallerdev>
Class.class_variables
<jmurphy>
thanks
jottr_ has quit [Ping timeout: 272 seconds]
gondalier has joined #ruby
dapz has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
Shidash has joined #ruby
djbkd has quit [Remote host closed the connection]
WickedAtMelb has joined #ruby
mg^ is now known as mg^afk
mobi_pontiki is now known as phonetiki
linojon has quit [Quit: linojon]
djbkd has joined #ruby
mikepack_ has joined #ruby
mikepack_ has quit [Remote host closed the connection]
toastynerd has quit [Remote host closed the connection]
Wolland has joined #ruby
toastynerd has joined #ruby
danman has joined #ruby
sevenseacat has joined #ruby
oo_ has joined #ruby
mikepack has quit [Ping timeout: 264 seconds]
meeko has quit [Quit: My iMac has gone to sleep. ZZZzzz…]
cocotton has quit [Remote host closed the connection]
mary5030 has quit [Remote host closed the connection]
chipotle has joined #ruby
Davey is now known as Eomar
fgo has quit [Ping timeout: 272 seconds]
AlexRussia has joined #ruby
jaequery has joined #ruby
djbkd has quit [Remote host closed the connection]
gigetoo has joined #ruby
Wolland has quit [Remote host closed the connection]
agrinb has quit [Remote host closed the connection]
supa_ has joined #ruby
Wolland has joined #ruby
agrinb has joined #ruby
definiv has joined #ruby
andrewjanssen has quit [Quit: Leaving...]
<supa_>
I'm looking for a templating language that supports inheritance (just like Django templates/Jinja2/Tornado, etc) *and* works with both ruby and python.
MrRojojojo has quit [Ping timeout: 245 seconds]
djbkd has joined #ruby
lewix has joined #ruby
simoz111117 has quit [Ping timeout: 240 seconds]
fgo has joined #ruby
ehc has quit [Quit: ehc]
beneggett has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
Wolland has quit [Ping timeout: 245 seconds]
agrinb has quit [Ping timeout: 240 seconds]
agrinb has joined #ruby
Skei has left #ruby [#ruby]
timgauthier has joined #ruby
Zamerick has joined #ruby
<csmrfx>
supa_: mus tash
wallerdev has quit [Quit: wallerdev]
bahar has joined #ruby
oo_ has quit [Remote host closed the connection]
wallerdev has joined #ruby
timonv has joined #ruby
bahar has quit [Changing host]
bahar has joined #ruby
<csmrfx>
not sure if inherit, whatever you mean by that
alexandrite has quit [Ping timeout: 264 seconds]
<supa_>
csmrfx: I didn't think old } did inheritance.
<supa_>
csmrfx: Like "base.html" <- page1.html "include base.html"
<csmrfx>
ya
<csmrfx>
inheritance is something else
<supa_>
In Django, it would be "extends base.html"
jaequery has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<csmrfx>
more like mix-in
<supa_>
Kind of.
jxs has joined #ruby
rgrinberg has joined #ruby
<jxs>
Hi there guys, i am having this error: http://pastebin.com/WkmJkXfT installing nokogiri via bundler but not via gem install does anyone have a clue on what it is? thanks!
oo_ has joined #ruby
<supa_>
csmrfx: I don't see anything similar in moustache. :\
<csmrfx>
dont use pastebin
<csmrfx>
pastie or gist
<wallerdev>
whats so bad about pastebin
timonv has quit [Ping timeout: 264 seconds]
<sevenseacat>
!whypbsucks
<csmrfx>
how about the fact that I just got "technical difficulties"
<helpa>
Pastebin sucks because it loads slowly, has ads which are distracting and has terrible formatting. Please use Gist (http://gist.github.com) or Pastie (http://pastie.org).
jonahR_ has quit [Quit: ¡Adios amigos, me fui para el carajo!]
<csmrfx>
Sweatskins Feet Odor
* csmrfx
reolfactorizes those
<timgauthier>
lol what?
<csmrfx>
after a couple of weeks in office, you'll understand
<jxs>
is possible to link a gem from systemwide to project vendor?
<timgauthier>
whats the product called?
meeko has quit [Quit: My iMac has gone to sleep. ZZZzzz…]
<timgauthier>
csmrfx yeah, any nice shoes can smell terrible after some time, what do you recommend for it? I don't plan on wearing these to an office on a daily basis. mostly because I don't work in an office
<csmrfx>
white vinegar
<timgauthier>
nice, just put in some towel and place inside? or scrub the insides?
<agent_white>
I use soap
<timgauthier>
like just hand soap?
<csmrfx>
haha, sure, take a newspaper, soak some in it, put inside for hour or 6
<shevy>
omg
<agent_white>
timgauthier: No I'm just joking. I have no clue wat is happening.
<shevy>
timgauthier, don't rub any shit into your boots
<timgauthier>
ugh
<csmrfx>
acetic acid kills baccy dead
<timgauthier>
shevy rub conditioner into your shoes ;)
maxmanders has quit [Ping timeout: 252 seconds]
tectonic has joined #ruby
binaryhat has joined #ruby
djbkd has quit [Remote host closed the connection]
mikecmpbll has quit [Quit: i've nodded off.]
Inside has joined #ruby
<Inside>
hey #ruby
<Inside>
So... what are your thoughts of ruby on rails vs. sinatra?
AlexRussia has quit [Quit: No Ping reply in 180 seconds.]
<timgauthier>
both suck
braincrash has quit [Ping timeout: 244 seconds]
<csmrfx>
start with sinatra
<timgauthier>
use php
<timgauthier>
;)
mjsmith2 has quit [Remote host closed the connection]
<supa_>
timgauthier: +1
<timgauthier>
;) lol
maxmanders has joined #ruby
senayar has quit [Remote host closed the connection]
AlexRussia has joined #ruby
<supa_>
Inside: For learning or for a project?
<Inside>
well
ixti has joined #ruby
<Inside>
for a project for work.
<csmrfx>
blahvlahblah sinatra lightweighs blahblahblah rails learning curve blahblahblah sinatra has no gem for paypal and instagram blahblahblah
stantona has joined #ruby
<Inside>
internal websites for the engineering department to present data queries
<timgauthier>
yah but the paypal gem is shit
<timgauthier>
ask radar
<csmrfx>
B)
<Inside>
some database reading, a bit of writing.
<Radar>
what
<Radar>
which paypal gem?
<Inside>
require 'make_blingbling.rb'
mgberlin has joined #ruby
<Radar>
PayPal's new gems aren't as shit as other paypal code I've seen
GriffinHeart has quit [Remote host closed the connection]
<timgauthier>
woah, you are in here? :P well i just remember your constant bitching about paypal's api, i guess that is seperate from the gem
<timgauthier>
STOP STOPPING ME FROM PAINTING WITH A REALLY BIG BRUSH :P
GriffinHeart has joined #ruby
<supa_>
Inside: From the little I've heard, I would say Sinatra if you already know what you're doing. Rails is going to have a better workflow especially for newer people (but Sinatra is easier to learn - and also easier to make horribad newbie mistakes with)
* Inside
sighs c.c
havenwood has joined #ruby
wallerdev has joined #ruby
<Inside>
I guess sinatra is the node.js of ruby?
<akerl>
What?
<supa_>
er
<csmrfx>
erm erm
<Inside>
what c_c
hy2guru_ has quit [Ping timeout: 260 seconds]
<timgauthier>
maybe more the ember.js?
<Inside>
minimalist webserver thing?
<csmrfx>
node.js is an interpreter
<csmrfx>
sinatra is a web framework
<akerl>
Since when is Node.js a minimalist web server thing?
<agent_white>
timgauthier: Saying 'Radar' is like saying 'bloody mary'*3 in the mirror, but less scary.
<Radar>
yes
<Inside>
akerl: at least the way I understand it.
<timgauthier>
yeah, i know :P
kireevco1 has quit [Quit: Leaving.]
<timgauthier>
Ryans cool
braincrash has joined #ruby
<Radar>
Especially between 9am-5pm Australian Eastern during the week
<Radar>
you're pretty much guaranteed a reply within 1hr
<agent_white>
Less if you didn't provide code for your issue.
<agent_white>
;D
andrewjanssen has quit [Quit: Leaving...]
matkal has quit [Ping timeout: 240 seconds]
<timgauthier>
ahaha, i thought for a second i had to stop being a dumbass because i was in the ror channel, but i'm not.
<csmrfx>
sinatra calls itself "web app lib"
matkal has joined #ruby
stantona has quit [Ping timeout: 240 seconds]
<timgauthier>
that is what it is
<timgauthier>
its a library like jquery
<nwkr>
Inside: express.js is a sinatra of javascript.
<supa_>
Inside: Project with rails - Spend a few days learning/planning, add a well supported module, fire up rack, rails, start TDD - off you go with a maintainable, mature stack for a product. Sinatra ..... you have to enforce some of your own constraints and avoid mistakes you probably wouldn't make with rails.
hy2guru_ has joined #ruby
agrinb has joined #ruby
<csmrfx>
Inside: you might want to try to draw different stacks, rails, sinatra, node, django, to compare
<csmrfx>
and yeah, rack or thin in the equation...
<Inside>
I keep banging my head against web development stuff
<timgauthier>
welcome to life
<Inside>
I've tried doing rails stuff before, but it's ehh.
<csmrfx>
perhaps you want someone to provide the framework for you
<csmrfx>
to concentrate on the app
andrewstewart has quit [Ping timeout: 260 seconds]
GriffinH_ has joined #ruby
GriffinHeart has quit [Ping timeout: 264 seconds]
<supa_>
Inside: You can stuff Sinatra into JRuby and off you go, really. But that's probably not something you'd be happy with in a year.
<Inside>
I don't really know javascript either.
<csmrfx>
also fun things to look at: unicord, rainbows, passenger, nginx, apache
<csmrfx>
*unicorn
kireevco has joined #ruby
<timgauthier>
lol
kireevco has quit [Max SendQ exceeded]
kireevco has joined #ruby
kireevco has quit [Max SendQ exceeded]
kireevco has joined #ruby
emsilva has quit [Quit: Keep Walking (Computer Slept!)]
andrewstewart has joined #ruby
<csmrfx>
of course I forgot to mention mongrel
<supa_>
And uwsgi
<supa_>
And tornado
agrinb has quit [Ping timeout: 240 seconds]
<csmrfx>
and nanoc
AlexRussia has quit [Quit: No Ping reply in 180 seconds.]
<timgauthier>
middlemanapp
* Inside
putputputs.
<Inside>
I guess I'll try ror again c_c
AlexRussia has joined #ruby
<timgauthier>
lol
cashnguns has joined #ruby
sinkensabe has joined #ruby
<supa_>
Inside: Not the worst thing you could do. :) If you want to just jump in immediately and "play" then I do recommend JRuby+Sinatra at home.
dgaffney has joined #ruby
mary5030 has joined #ruby
kies has quit [Ping timeout: 255 seconds]
<Inside>
why jruby?
kies has joined #ruby
huntarck has joined #ruby
felixdd has quit [Ping timeout: 240 seconds]
danijoo has quit [Read error: Connection reset by peer]
fgo has joined #ruby
<supa_>
Inside: You can take your dev environment with you. Just zip it up and go.
danijoo has joined #ruby
sinkensabe has quit [Ping timeout: 240 seconds]
AlexRussia has quit [Quit: No Ping reply in 180 seconds.]
mikepack has joined #ruby
GriffinH_ has quit [Remote host closed the connection]
lw has joined #ruby
St_Marx has quit [Quit: Ex-Chat]
mary5030 has quit [Ping timeout: 240 seconds]
AlexRussia has joined #ruby
<Inside>
Interesting, interesting..
lewix has quit [Remote host closed the connection]
alexju has joined #ruby
WickedAtMelb has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
<supa_>
Inside: Stick it on a thumb drive/bitbucket/github/whatever you want. Install other gems the same way. Zip it all up, cart it off with you to work or a friend's house or wherever you want. No server required and if you seriously screw up just delete the whole thing and start over.
<Inside>
I mean why one would use java ruby
<Inside>
hmmm
<supa_>
Oh, there are various reasons. But the reason I'm suggesting is because you can use it "anywhere there's Java".
coderhs has quit [Ping timeout: 240 seconds]
<csmrfx>
portable, meets your platform, threading, just because...
BombStrike has quit [Read error: Connection reset by peer]
<supa_>
Inside: Similarly, you can do the same in Jython (you guessed it - Python implementation in Java) if you want to play with Flask/etc.
huntarck has quit [Client Quit]
MrRojojojo has quit [Remote host closed the connection]
Zamerick has quit [Quit: Leaving]
agrinb has joined #ruby
ner0x has joined #ruby
scx has quit [Ping timeout: 255 seconds]
<Inside>
for now I'll just stick with regular ruby since I guess ... I have ruby installed at work and at home so portability is not a huge concern for me
St_Marx has quit [Remote host closed the connection]
yubrew has quit [Ping timeout: 240 seconds]
<Inside>
until I figure out a use for jruby.. :/
St_Marx has joined #ruby
jeet4 has joined #ruby
braincrash has quit [Quit: bye bye]
bmurt has quit []
codeurge has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
lethjakman has joined #ruby
lw has quit [Quit: s]
ixti has quit [Quit: WeeChat 0.4.3]
kenneth has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
<Mooneye>
Hanmac1: Thank you. Do you know what those args are for?
<apeiros>
I think it's better in your case to define as_json
<apeiros>
which would have to return {"a" => 300}
ItSANgo has joined #ruby
<Mooneye>
apeiros: as_json returns a hash, then?
<certainty>
Mooneye: yeah i just realized. Sorry
<Mooneye>
and it's automatically called by JSON.generate?
<apeiros>
Mooneye: just a primitive structure
<Mooneye>
certainty: No problem at all man
<apeiros>
afaik, yes
<apeiros>
but I can't find proper docs on it either
sarkis has joined #ruby
AlexRussia has joined #ruby
<Hanmac1>
Mooneye: most of the funcs does ignore them, but i found this in the docs: "state is a JSON::State object, that can also be used to configure the produced JSON string output further."
mikecmpbll has joined #ruby
scx_ has quit [Ping timeout: 245 seconds]
<certainty>
>> require 'json'; class Foo; def as_json; { 'foo' => 'jo' }; end end; JSON.generate(Foo.new)
zoraj_ has quit [Read error: Connection reset by peer]
<Hanmac1>
certainty: json is part c-compiled, evalin cant still load c-compiled stdlib stuff charliesome didnt fixed that yet
Hanmac1 is now known as Hanmac
<apeiros>
certainty: def as_json(*)
<apeiros>
certainty: otherwise it'll blow up because JSON will pass it an arg
<certainty>
apeiros: oh right
zoraj has joined #ruby
<Mooneye>
Hanmac1: Thanks much, my friend. You've been a big help.
<certainty>
Hanmac: too bad :() that reminds me that he didn't yet come back to me regarding support for scheme in eval-in :/
<Mooneye>
You too, apeiros/certainty
gregf_ has joined #ruby
<Hanmac>
certainty: hm but he was back a few days ago to restart evalin after someone did make it hang again
GriffinHeart has joined #ruby
klaut has quit [Remote host closed the connection]
AlexRussia has quit [Quit: No Ping reply in 180 seconds.]
tesuji has joined #ruby
oo_ has quit [Remote host closed the connection]
<certainty>
Hanmac: maybe i should just ping him again
<apeiros>
aaaaaaaaaawman
<apeiros>
js - or: how to code a thousand syntax errors within a minute… :-S
AlexRussia has joined #ruby
<certainty>
is there a way to specify the source for a gem in separately? (in a Gemfile i mean)
<apeiros>
but! build queue now allows reordering and deletion of items. yay! :D
oo_ has joined #ruby
<apeiros>
certainty: I think only for :git and :path types
<certainty>
too bad
<certainty>
both not applicable
<apeiros>
certainty: indeed
<apeiros>
we'd have company and global groups in our app gemfiles otherwise
nanoyak has quit [Quit: Computer has gone to sleep.]
mercerist has joined #ruby
<apeiros>
that said… our gem server is still not really up and running :)
<certainty>
basically we have an internal gemserver which we use gems from and rubygems.org. Obviously we don't want to pull in gems from other sources in the case of name clashes
<certainty>
apeiros: does that mean you can configure the source per group?
<Xeago>
certainty: where I work we use artifactory to transparently proxy requests form rubygems
<apeiros>
yeah. we use git for now instead of a gem server.
<Xeago>
if it's found locally => serve that, otherwise look upstream
<apeiros>
certainty: no, I said "we *would* have"
<apeiros>
we don't. because afaik it's not possible.
<certainty>
damn
<certainty>
there is a pending PR that addes mercurial support, but it didn't get merged yet. That would help
<certainty>
we don't use git here
<apeiros>
Xeago: ah, interesting. gotta take a look at artifactory then
<certainty>
Xeago: i'll have a look
<certainty>
thanks
timonv has joined #ruby
<certainty>
Xeago: is artifactory only available as SaaS?
szarubin has quit [Remote host closed the connection]
<Xeago>
we host it on premise
<Xeago>
bit older version tho
zarubin has joined #ruby
kenneth has joined #ruby
<Xeago>
we're upgrading to 3 Pro in someweeks
Mooneye has quit [Quit: Leaving]
<certainty>
SaaS is not an option here
djbkd has quit [Quit: My people need me...]
pranny has joined #ruby
<Xeago>
As I said, we have it on premise :)
ferr has joined #ruby
fantazo has quit [Ping timeout: 264 seconds]
<certainty>
sorry then i didn't understand. What does that mean? I thought it was the name of a product
timonv has quit [Remote host closed the connection]
<sevenseacat>
google is a wonderful thing
shredding has quit [Read error: No route to host]
<Chooch>
tobiasvl lol so obvious ;) thanks
qba73 has joined #ruby
sarkis has joined #ruby
GriffinH_ has joined #ruby
oo_ has joined #ruby
<apeiros>
the stuff you clean your teeth after coding
<Chooch>
apeiros lol
sarkis has quit [Ping timeout: 244 seconds]
<Chooch>
foss, floss confused me for a while, proponents of the term point out that parts of the FLOSS acronym can be translated into other languages.
lolmaus has quit [Remote host closed the connection]
abi-hto has joined #ruby
workmad3 has joined #ruby
sesam has joined #ruby
AlexRussia has quit [Quit: No Ping reply in 180 seconds.]
mengu has quit [Remote host closed the connection]
AlexRussia has joined #ruby
<sesam>
hi, how can require 'pg' return true, but fail to register symbols PGconn and PG? Is this a pg gem specific problem? It only happens in one script, while other scripts, as well as scripts run from the first script, work just fine. I put more details on http://stackoverflow.com/questions/24282608/
<apeiros>
sooo, next up: planetary expansion and then - finally - fleet management. after that: colonialization. that'd mark the point where enemy-free single player is *working*. which would be awesome :D
<apeiros>
sesam: sounds like you had a pg.rb somewhere in your load path which gets required instead of the gem's
AlexRussia has quit [Quit: No Ping reply in 180 seconds.]
<sara2010>
any one there
xcv has joined #ruby
agrinb has joined #ruby
<apeiros>
sara2010: the error says that you're missing the iconv C library. no idea what to do about that on windows.
MusachiMiyamotoF has joined #ruby
MusachiMiyamotoF has left #ruby ["Textual IRC Client: www.textualapp.com"]
MusachiMiyamotoF has joined #ruby
AlexRussia has joined #ruby
heftig has joined #ruby
agrinb has quit [Ping timeout: 272 seconds]
phoo1234567 has joined #ruby
segv has joined #ruby
klaut has joined #ruby
Takle has quit [Remote host closed the connection]
timonv has joined #ruby
lkba has quit [Remote host closed the connection]
Gil has quit [Ping timeout: 272 seconds]
lkba has joined #ruby
Shidash has joined #ruby
Takle has joined #ruby
rgrinberg has quit [Read error: Network is unreachable]
Takle has quit [Remote host closed the connection]
rgrinberg has joined #ruby
yubrew has joined #ruby
xcv has quit []
fgo has quit [Remote host closed the connection]
sheperson has quit [Ping timeout: 240 seconds]
yubrew has quit [Ping timeout: 244 seconds]
bluenemo has joined #ruby
bluenemo has quit [Changing host]
bluenemo has joined #ruby
banister has joined #ruby
benzrf has quit [Ping timeout: 255 seconds]
Takle has joined #ruby
cobakobodob has quit [Ping timeout: 272 seconds]
benzrf|offline has joined #ruby
LekeFly has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
benzrf|offline is now known as benzrf
cobakobodob has joined #ruby
duncannz has quit [Ping timeout: 244 seconds]
dEPy has joined #ruby
SteveBenner09 has joined #ruby
techsethi has quit [Ping timeout: 240 seconds]
AlexRussia has quit [Quit: No Ping reply in 180 seconds.]
sevenseacat has quit [Quit: Leaving.]
SteveBenner09 has quit [Client Quit]
SteveBenner09 has joined #ruby
AlexRussia has joined #ruby
JasmeetQA has joined #ruby
lxsameer has quit [Ping timeout: 244 seconds]
mradmacher has joined #ruby
jprovazn has quit [Quit: Leaving]
JasmeetQA1 has quit [Ping timeout: 264 seconds]
karupa is now known as zz_karupa
benzrf has quit [Ping timeout: 240 seconds]
noocode has quit [Ping timeout: 240 seconds]
Takle has quit [Remote host closed the connection]
timonv has quit [Remote host closed the connection]
Takle_ has joined #ruby
benzrf|offline has joined #ruby
benzrf|offline is now known as benzrf
pranny has quit [Quit: Leaving.]
byteoverfl0w has joined #ruby
lxsameer has joined #ruby
mercerist has joined #ruby
Takle has joined #ruby
noocode has joined #ruby
maximski has joined #ruby
GriffinH_ has quit [Remote host closed the connection]
Takle_ has quit [Ping timeout: 240 seconds]
sarkis has joined #ruby
Rollabunna has joined #ruby
davedev24_ has quit [Remote host closed the connection]
Joulse has quit [Quit: Joulse]
timonv has joined #ruby
Sam152 has quit [Remote host closed the connection]
sarkis has quit [Ping timeout: 245 seconds]
Rainicorn has joined #ruby
LadyR has joined #ruby
LadyRainicorn has quit [Read error: Connection reset by peer]
nszceta has joined #ruby
dwts has quit [Ping timeout: 252 seconds]
dwts has joined #ruby
sigurding has quit [Quit: sigurding]
pranny has joined #ruby
Rainicorn has quit [Ping timeout: 264 seconds]
mercwithamouth has joined #ruby
sigurding has joined #ruby
banister is now known as banisterfiend
waterwoker has joined #ruby
<waterwoker>
Hi all. Which book should I read for learning ruby? Can anybody please recommend?
AlexRussia has quit [Quit: No Ping reply in 180 seconds.]
benzrf has quit [Ping timeout: 264 seconds]
sigurding has quit [Read error: Connection reset by peer]
fabrice31 has quit [Remote host closed the connection]
AlexRussia has joined #ruby
<Hanmac>
apeiros: i telled him yesterday he should update ruby from 1.8 to 2.0+ ... but he hasnt updated his project yet
agrinb has joined #ruby
<Hanmac>
sara2010: you not need iconv as gem, update your project and replace iconv functions with String#encode methods
<apeiros>
indeed
<csmrfx>
waterwoker: Flanagan Matsumoto ruby book
ner0x has quit [Quit: Leaving]
<sara2010>
Hanmac .. :( when i m installing something it says iconv not found
eka has joined #ruby
<Hanmac>
sara2010: like i said the project that wants iconv need to be updated itself
<csmrfx>
waterwoker: what country has ip that starts with 1?
benzrf|offline has joined #ruby
benzrf|offline is now known as benzrf
agrinb has quit [Ping timeout: 264 seconds]
Gil has joined #ruby
niko has left #ruby [#ruby]
<sara2010>
Hanmac .. i have updated !
yubrew has joined #ruby
<Hanmac>
i dont mean ruby, i mean that project/thing you want to install
jprovazn has joined #ruby
SteveBenner09 has quit [Remote host closed the connection]
Joulse has joined #ruby
SteveBenner09 has joined #ruby
<sara2010>
Hanmac .. also i have update project
Deele has quit [Ping timeout: 255 seconds]
AlexRussia has quit [Quit: No Ping reply in 180 seconds.]
<Hanmac>
sara2010: then why do you need iconv? like i said it was only for outdated 1.8 and should not be needed anymore on your newer (like you said) updated project
<waterwoker>
csmrfx: it's probably proxy
yubrew has quit [Ping timeout: 244 seconds]
<sara2010>
Hanmac . see i m installing this project
AlexRussia has joined #ruby
boris has joined #ruby
<csmrfx>
waterwoker: hehe yes, I know now
MrDoctor has quit [Remote host closed the connection]
mercerist has quit [Quit: Computer has gone to sleep.]
oo_ has quit [Remote host closed the connection]
Kruppe has quit [Ping timeout: 240 seconds]
WhereIsMySpoon has joined #ruby
bluOxigen has joined #ruby
<WhereIsMySpoon>
Hi, I have a quick question - do attributes (attr_reader, attr_accessor) internally create get/set methods or is it something different
<tobiasvl>
WhereIsMySpoon: yes, that's exactly what they do
tus has joined #ruby
<sara2010>
tobiasvl . can i ask
<WhereIsMySpoon>
tobiasvl: ok cheers
Rainicorn has joined #ruby
LadyRainicorn has quit [Read error: Connection reset by peer]
<tobiasvl>
WhereIsMySpoon: attr_reader creates get methods on the form `def foo; return @foo; end` and attr_writer creates set methods on the form `def foo=(bar); @foo = bar; end`. attr_accessor creates both.
<apeiros>
WhereIsMySpoon: you could implement attr_reader as: class Module; def attr_reader(*readers); readers.each do |reader| class_eval "def #{reader}; @#{reader}; end" end; end; end
blueOxigen has quit [Ping timeout: 264 seconds]
<tobiasvl>
yeah, or what apeiros said is more to the point
<sesam>
apeiros, thanks - I'm using rvm and checked all of $PATH and .rvm/ for any pg.rb -- and I found activerecord-jdbc-adapter-1.2.9/lib/pg.rb (which in turn loads PG) and heroku-2.35.0/lib/heroku/command/pg.rb
tesuji has joined #ruby
<sesam>
but still no luck. Also strange that problem appears on server (debian) but not deverloper (mac)
Hanmac1 has joined #ruby
<sesam>
maybe rvm is to blame?
<apeiros>
sesam: I doubt it.
<apeiros>
$PATH is unrelated to rubys loading
<apeiros>
I'd do: p $LOADED_FEATURES.grep(/pg/)
Hanmac has quit [Ping timeout: 244 seconds]
<apeiros>
within the code where you try to load pg and get the wrong one
obs has joined #ruby
<sesam>
ok :) (I found $: after looking through $PATH ). great! trying now
<apeiros>
$: --> $LOAD_PATH (same thing, but using the latter you'll know what it actually means)
<apeiros>
you could also do: before = $LOADED_FEATURES.dup; require 'pg'; p $LOADED_FEATURES-before
<apeiros>
sesam: yeah
<apeiros>
once that file is loaded, require 'pg' will do nothing
<apeiros>
so if that file contains 'require "pg"', then it's rather stupid :)
Takle has joined #ruby
<apeiros>
but I guess jdbc adapter contains that because it supplants the native pg
<apeiros>
it's *either* jdbs *or* native pg.
<sesam>
it does load() on all pg.rb it finds
mercerist has joined #ruby
<sesam>
and probably fails to find the PG that is in .rvm
<apeiros>
I don't think so
<apeiros>
think about it… what does JDBC stand for?
mijicd has quit [Remote host closed the connection]
<sesam>
JDBC is usually for java. not sure though if I can safely remove that
<apeiros>
sesam: do you use jruby?
<sesam>
no. MRI
<apeiros>
then jdbc makes absolutely no sense.
<sesam>
less /usr/local/rvm/gems/ruby-1.9.3-p392/gems/activerecord-jdbc-adapter-1.2.9/lib/pg.rb # Stub library for postgresql -- allows Rails to load # postgresql_adapter without error. Other than postgres-pr, there's no # other way to use PostgreSQL on JRuby anyway, right? If you've # installed ar-jdbc you probably want to use that to connect to pg.
mercerist has quit [Client Quit]
<apeiros>
yes, allows it to load it for *JRUBY*
<apeiros>
it's utterly pointless to have a java driver under mri, which is *not* java.
tesuji has quit [Ping timeout: 264 seconds]
mercerist has joined #ruby
fold has quit [Ping timeout: 255 seconds]
Rainicorn has quit [Ping timeout: 244 seconds]
LadyRainicorn has joined #ruby
Takle has quit [Remote host closed the connection]
danijoo has quit [Read error: Connection reset by peer]
<dangerousdave>
does anyone here use AWS elastic beanstalk for their ruby projects? I could do with some advice on configuration
dANOKELOFF has joined #ruby
<sesam>
right. My code has no reference to it. grep -r finds some under activerecord/test/connections, so trying gem uninstall activerecord-jdbc-adapter and IT WORKED! Thank you! Answer on http://stackoverflow.com/questions/24282608/ will be: before = $LOADED_FEATURES.dup; require 'pg'; p $LOADED_FEATURES-before => find activerecord-adapter, uninstall it (globally; gem uninstall ...) and done
danijoo has joined #ruby
WhereIsMySpoon has left #ruby [#ruby]
<sesam>
can I credit you in the answer, and if, how?
obs has quit [Quit: Konversation terminated!]
lw has joined #ruby
bluOxigen has quit [Ping timeout: 244 seconds]
bluOxigen has joined #ruby
fgo has quit [Remote host closed the connection]
<sesam>
I wrote "apeiros on freenode suggested that ..." in the beginning. Thanks again! Over and out...
sugihara has quit [Quit: Leaving...]
<apeiros>
I can answer on SO if you want
blueOxigen has joined #ruby
bluOxigen has quit [Ping timeout: 264 seconds]
Rainicorn has joined #ruby
yubrew has joined #ruby
LadyRainicorn has quit [Read error: Connection reset by peer]
Takle has joined #ruby
mattstratton has joined #ruby
yubrew has quit [Ping timeout: 240 seconds]
benzrf has quit [Ping timeout: 272 seconds]
lw has quit [Quit: s]
<sesam>
apeiros, feel free to copy/paste or remix the answer I wrote, and I'll retract mine and choose yours as Final
benzrf|offline has joined #ruby
Asher has quit [Quit: Leaving.]
nszceta has quit [Ping timeout: 272 seconds]
benzrf|offline is now known as benzrf
sheperson has joined #ruby
yfeldblum has quit [Remote host closed the connection]
<Hanmac>
sara2010: it seems both versions of fedena are not designed for newer ruby and that might not change (so oyu might need to install ruby1.8.7 again), there is "Project Athena" that should be Rails4 support but it does not there yet
ji0n has joined #ruby
<Hanmac>
sara2010: the problem: fedena needs old rails -> old rails needs old ruby -> old ruby needs iconv
<sara2010>
hmmm
<sara2010>
from where i get ruby-1.8.7-p174.tar.gz
<sara2010>
sorry this for linux
dumdedum has quit [Ping timeout: 255 seconds]
alex88 has quit [Ping timeout: 245 seconds]
nemesit|znc has quit [Ping timeout: 240 seconds]
fgo has joined #ruby
<sara2010>
from where i get rubyinstaller-1.8.7-p302.exe
<centrx>
kke, With boolean values, & behaves just like &&
djcp has joined #ruby
<canton7>
I suspect they meant &&=
<canton7>
but it won't make any difference just there
larsam has quit [Ping timeout: 264 seconds]
sailias has joined #ruby
jottr_ has joined #ruby
benzrf has quit [Ping timeout: 272 seconds]
tus has quit [Ping timeout: 272 seconds]
seanosaur has joined #ruby
djcp has left #ruby [#ruby]
tkuchiki has joined #ruby
bluOxigen has quit [Ping timeout: 240 seconds]
benzrf|offline has joined #ruby
benzrf|offline is now known as benzrf
doodlehaus has joined #ruby
Channel6 has joined #ruby
ta has quit [Remote host closed the connection]
Azure has quit [Quit: My MBP went to sleep.]
kaspergrubbe has joined #ruby
ta has joined #ruby
nowthatsamatt has quit [Quit: nowthatsamatt]
eka has quit [Ping timeout: 255 seconds]
echevemaster has joined #ruby
agrinb has joined #ruby
lw has quit [Quit: s]
isthisreallife has quit [Ping timeout: 240 seconds]
jerius has joined #ruby
davedev24_ has quit [Remote host closed the connection]
lalli is now known as Pro|
HardFu has joined #ruby
HardFu has left #ruby [#ruby]
ta has quit [Ping timeout: 255 seconds]
aniM has joined #ruby
poguez_ has joined #ruby
forced_request has joined #ruby
agrinb has quit [Ping timeout: 255 seconds]
mjsmith2 has joined #ruby
anaeem1 has joined #ruby
mercerist has quit [Quit: Computer has gone to sleep.]
yfeldblum has joined #ruby
himsin has quit [Quit: himsin]
MrGoodCa1 has joined #ruby
dc_ has quit [Remote host closed the connection]
anaeem1__ has joined #ruby
agrinb has joined #ruby
JasmeetQA has quit [Ping timeout: 255 seconds]
JasmeetQA1 has joined #ruby
oo_ has joined #ruby
yfeldblum has quit [Ping timeout: 240 seconds]
jrhe has joined #ruby
apeiros has quit []
JasmeetQA1 has quit [Read error: Connection reset by peer]
anaeem1 has quit [Ping timeout: 255 seconds]
ta has joined #ruby
<AntelopeSalad>
if i want to pass custom params to a ruby test from the command line is my only option to use ENV variables?
nicksanford has quit [Remote host closed the connection]
mikesplain has joined #ruby
thesheff17 has joined #ruby
matti has quit [Quit: Oh dear...]
MrGoodCa1 has left #ruby [#ruby]
ikaros has quit [Quit: Ex-Chat]
rritoch has quit [Read error: Connection reset by peer]
codeurge has joined #ruby
<kke>
AntelopeSalad: i think you might be able to do ruby test/unit/foo_test.rb -nrun_custom_test("custom_param") and in the foo_test.rb you would have def run_custom_test(custom_param) ...
<kke>
actually you need to escape the ""
dc_ has joined #ruby
ta has quit [Ping timeout: 245 seconds]
<kke>
in case you're passing a string as param
<AntelopeSalad>
hmm
<AntelopeSalad>
what if it's something that applies to all tests?
yubrew has joined #ruby
Zenigor has joined #ruby
kevind has joined #ruby
yubrew has quit [Ping timeout: 240 seconds]
tier has quit [Remote host closed the connection]
ehc has joined #ruby
dc_ has quit [Remote host closed the connection]
devdazed has quit [Quit: Bye]
MrDoctor has quit [Remote host closed the connection]
Takle_ has joined #ruby
kaspergr_ has joined #ruby
Takle_ has quit [Remote host closed the connection]
isthisreallife has joined #ruby
MrDoctor has joined #ruby
almostwhitehat has joined #ruby
anarang has quit [Quit: Leaving]
joaoh82 has quit [Remote host closed the connection]
kaspergrubbe has quit [Ping timeout: 240 seconds]
matti has joined #ruby
Takle has quit [Ping timeout: 240 seconds]
sigurding has quit [Quit: sigurding]
dumdedum has quit [Quit: foo]
joaoh82 has joined #ruby
mjsmith2 has quit [Remote host closed the connection]
dc_ has joined #ruby
<kke>
what would that be?
dc_ has quit [Remote host closed the connection]
MrDoctor has quit [Ping timeout: 272 seconds]
mjsmith2 has joined #ruby
oo_ has quit [Remote host closed the connection]
enape_101 has joined #ruby
Dreamer3 has joined #ruby
Veidit has quit [Read error: Connection reset by peer]
cpruitt has joined #ruby
tiguser has quit [Ping timeout: 240 seconds]
dc_ has joined #ruby
xerxas has joined #ruby
tiguser has joined #ruby
JohnBat26 has quit [Ping timeout: 244 seconds]
Channel6 has quit [Quit: Leaving]
Veidit has joined #ruby
mattstratton has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
devdazed has joined #ruby
joaoh82 has quit []
Nahra has joined #ruby
tier has joined #ruby
himsin has joined #ruby
mercwithamouth has quit [Ping timeout: 264 seconds]
kaspergr_ has quit [Remote host closed the connection]
lw has joined #ruby
kaspergrubbe has joined #ruby
mary5030 has joined #ruby
treehug88 has joined #ruby
mijicd has joined #ruby
ta has joined #ruby
fschuindt has joined #ruby
krz has quit [Quit: WeeChat 0.4.3]
pu22l3r has joined #ruby
sevenseacat has quit [Quit: Leaving.]
noop has quit [Ping timeout: 240 seconds]
freerobby has joined #ruby
freerobby has quit [Client Quit]
tesuji has quit [Ping timeout: 272 seconds]
freerobby has joined #ruby
Macaveli has quit [Ping timeout: 252 seconds]
hobodave has joined #ruby
tiguser has quit [Ping timeout: 264 seconds]
snath has quit [Ping timeout: 245 seconds]
davedev24_ has joined #ruby
LadyRainicorn has quit [Read error: Connection reset by peer]
Rainicorn has joined #ruby
pasties has quit [Ping timeout: 252 seconds]
r_rios has joined #ruby
yubrew has joined #ruby
andrewjanssen has joined #ruby
tvw has joined #ruby
alexju has joined #ruby
Port3M5 has quit [Remote host closed the connection]
pasties has joined #ruby
danijoo has quit [Read error: Connection reset by peer]
danijoo has joined #ruby
andrewjanssen has quit [Client Quit]
tiguser has joined #ruby
MrDoctor has joined #ruby
mary5030 has quit [Remote host closed the connection]
Stalkr^ has joined #ruby
kilk_ has quit [Ping timeout: 255 seconds]
Takle has joined #ruby
Port3M5[Work] has joined #ruby
andrewhl has joined #ruby
tagrudev has quit [Remote host closed the connection]
vyorkin has joined #ruby
Takle has quit [Ping timeout: 240 seconds]
jonno11 has joined #ruby
felixdd has quit [Ping timeout: 264 seconds]
enape_101 has quit [Ping timeout: 264 seconds]
jonno11 has quit [Client Quit]
mengu has quit [Remote host closed the connection]
MZAWeb_ has joined #ruby
hpoydar has joined #ruby
ta has quit [Ping timeout: 244 seconds]
rkazak_ has joined #ruby
tobago has quit [Remote host closed the connection]
bdnelson has joined #ruby
andrewjanssen has joined #ruby
enape_101 has joined #ruby
jobewan has joined #ruby
andrewjanssen has quit [Client Quit]
___mb has joined #ruby
nalone has joined #ruby
Rainicorn has quit [Ping timeout: 240 seconds]
rkazak_ has quit [Ping timeout: 244 seconds]
orionstein_away is now known as orionstein
LadyRainicorn has joined #ruby
SBoolean has quit [Ping timeout: 240 seconds]
SBoolean_ has joined #ruby
Takle has joined #ruby
fschuindt has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
dc_ has quit [Remote host closed the connection]
aniM has quit [Ping timeout: 255 seconds]
sigurding has joined #ruby
<shevy>
AntelopeSalad store it in some .yml file
vyorkin has quit [Quit: WeeChat 0.4.3]
ta has joined #ruby
bbloom has joined #ruby
theRoUS has quit [Changing host]
theRoUS has joined #ruby
pvb has joined #ruby
dc_ has joined #ruby
MrDoctor has quit [Remote host closed the connection]
MrDoctor has joined #ruby
dgaffney has quit [Remote host closed the connection]
momomomomo has joined #ruby
<AntelopeSalad>
kke: database login info
<centrx>
!! config file !!
LekeFly has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
qwyeth has quit [Quit: Leaving]
dc_ has quit [Ping timeout: 240 seconds]
beneggett has joined #ruby
<AntelopeSalad>
centrx: it's only for tests tho, basically i want people to be able to run my test suite on their machine
lkb has quit [Quit: Wychodzi]
geggam has joined #ruby
andrewhl has quit [Quit: andrewhl]
MrDoctor has quit [Ping timeout: 272 seconds]
NukePuppy has joined #ruby
momomomomo has quit [Client Quit]
pskosinski has joined #ruby
acrussell has joined #ruby
eka has joined #ruby
ta has quit [Read error: Connection reset by peer]
phinfonet has joined #ruby
acrussell has left #ruby [#ruby]
MrDoctor has joined #ruby
asteve has joined #ruby
himsin has quit [Ping timeout: 272 seconds]
stantona has joined #ruby
Joulse has quit [Quit: Joulse]
<kke>
AntelopeSalad: that's the kind of stuff that belongs to config file or in some special cases env variables
mercerist has joined #ruby
SBoolean_ has quit [Remote host closed the connection]
SBoolean has joined #ruby
jfran has joined #ruby
snath has joined #ruby
yourmysin has joined #ruby
forced_request has quit [Ping timeout: 245 seconds]
pu22l3r_ has joined #ruby
ta has joined #ruby
mradmacher has quit [Ping timeout: 240 seconds]
GriffinHeart has joined #ruby
Eyes has joined #ruby
chipotle has quit [Quit: cya]
pu22l3r has quit [Ping timeout: 240 seconds]
pu22l3r_ has quit [Remote host closed the connection]
troyready has quit [Ping timeout: 244 seconds]
pu22l3r has joined #ruby
ixti has joined #ruby
toastynerd has quit [Remote host closed the connection]
cspray has joined #ruby
jprovazn is now known as jprovazn_afk
GriffinHeart has quit [Ping timeout: 240 seconds]
ta has quit [Remote host closed the connection]
centrx has quit [Quit: Mission accomplished. Ready for self-termination.]
nanoyak has joined #ruby
enape_101 has quit [Ping timeout: 264 seconds]
dreamchaser has joined #ruby
sarkis has joined #ruby
hobodave_ has joined #ruby
dANOKELOFF has quit [Remote host closed the connection]
toastynerd has joined #ruby
momomomomo has joined #ruby
dANOKELOFF has joined #ruby
jfran_ has joined #ruby
hobodave has quit [Ping timeout: 255 seconds]
jfran_ has quit [Client Quit]
terrellt has joined #ruby
dgaffney has joined #ruby
himsin has joined #ruby
autonomousdev has joined #ruby
naterubin has quit [Quit: Leaving]
Nahra has quit [Ping timeout: 240 seconds]
bradleyprice has quit [Remote host closed the connection]
bradleyprice has joined #ruby
dANOKELOFF has quit [Ping timeout: 255 seconds]
cobakobodob has quit [Ping timeout: 272 seconds]
naterubin has joined #ruby
zoraj_ has joined #ruby
dANOKELOFF has joined #ruby
bradleyprice has quit [Ping timeout: 245 seconds]
christickner has joined #ruby
andrewhl has joined #ruby
tus has joined #ruby
tus has quit [Changing host]
tus has joined #ruby
Shidash has quit [Ping timeout: 245 seconds]
tus has quit [Excess Flood]
toastynerd has quit [Remote host closed the connection]
<christickner>
having a problem with string encoding with Ruby...text is a mysql dump file contents.... text.gsub(/TEST/, 'It Worked!') returns an ArguementError, about encoding UTF-8. The equlivent function in PHP doesn't complain preg_replace('/TEST/', 'It Worked!', $text).. any help? Just using Ruby to write deploy scripts, don't have much exp with ruby strings =)
zoraj has quit [Ping timeout: 272 seconds]
zoraj_ has quit [Client Quit]
<shevy>
christickner you need to handle the right encoding
datafirm has joined #ruby
<shevy>
you can try .encode("UTF-8") on your string object
<shevy>
and puts your_string_object.encoding to find out what encoding you have
yfeldblum has joined #ruby
<shevy>
.encode!('UTF-8')
<shevy>
.force_encoding("UTF-8")
<shevy>
encoding is very annoying in ruby; try to keep a consistent one in your code
<shevy>
if you read in a file, you can do:
maletor has quit [Quit: Computer has gone to sleep.]
anaeem1__ has quit [Remote host closed the connection]
<makerop>
it was the fingerprint option
<makerop>
it needed to be @title
timonv has quit [Remote host closed the connection]
Rainicorn has quit [Read error: Connection reset by peer]
LadyRainicorn has joined #ruby
wldcordeiro has joined #ruby
lkb has joined #ruby
vpretzel has quit [Remote host closed the connection]
stytown has quit [Quit: stytown]
maletor has joined #ruby
vpretzel has joined #ruby
emdub has quit [Quit: .]
JBreit has left #ruby ["Leaving"]
yfeldblum has joined #ruby
emdub has joined #ruby
frem has joined #ruby
lkba has joined #ruby
kilk_ has joined #ruby
SloggerKhan has joined #ruby
redondos has quit [Excess Flood]
sungai_keruh has joined #ruby
redondos has joined #ruby
<SloggerKhan>
Is there a function to iterate through two equal sized arrays at once modifying one of them in place?
<SloggerKhan>
(Or a trick that makes it look nice?)
redondos has quit [Changing host]
redondos has joined #ruby
terrellt has joined #ruby
emdub has quit [Remote host closed the connection]
whirlpool has quit [Changing host]
whirlpool has joined #ruby
agrinb has quit [Remote host closed the connection]
jaimef has quit [Excess Flood]
emdub has joined #ruby
vpretzel_ has joined #ruby
agrinb has joined #ruby
sungai_keruh has quit [Client Quit]
LadyRainicorn has quit [Read error: Connection reset by peer]
fresham has joined #ruby
yfeldblum has quit [Ping timeout: 244 seconds]
LadyRainicorn has joined #ruby
<SloggerKhan>
thinking of using a.map! { |i| i.append(b.shift) } but that seems kind of weird.
cocotton has quit [Remote host closed the connection]
tus has joined #ruby
terrellt has quit [Remote host closed the connection]
Rollabunna has quit [Remote host closed the connection]
Chooch has quit [Read error: Connection reset by peer]
terrellt has joined #ruby
toastynerd has joined #ruby
vpretzel has quit [Ping timeout: 240 seconds]
mordocai has quit [Remote host closed the connection]
Hobogrammer has joined #ruby
IceDragon has quit [Ping timeout: 244 seconds]
Rahul_Roy has joined #ruby
agrinb has quit [Ping timeout: 255 seconds]
cocotton has joined #ruby
dc_ has joined #ruby
djbkd has joined #ruby
nalone has quit [Remote host closed the connection]
jerius has quit []
jaimef has joined #ruby
agrinb has joined #ruby
terrellt has quit [Ping timeout: 240 seconds]
mikecmpbll has quit [Quit: i've nodded off.]
mercerist has quit [Quit: Computer has gone to sleep.]
<ericwood>
SloggerKhan: you can use something like zip
Takle has joined #ruby
kaspergrubbe has joined #ruby
tesuji has quit [Ping timeout: 240 seconds]
<ericwood>
SloggerKhan: can you provide more context?
rgrinberg has joined #ruby
tris has quit [Remote host closed the connection]
hpoydar has quit [Remote host closed the connection]
alex88_ has quit [Quit: Leaving...]
<SloggerKhan>
I have two arrays of items (objects) from separate sources guaranteed to be the same length. I just need to add a couple pieces of info from one of the sources to the other for each item, so basically need to iterate two arrays in parallel and return 1 array.
IceDragon has joined #ruby
timonv has joined #ruby
cek has joined #ruby
<cek>
byebug not supporting multiline statements?
<cek>
trying to assign: avar = "
<cek>
next line "
Notte has quit []
aniM has joined #ruby
<cek>
:14: unterminated string meets end of file
deric_skibotn has joined #ruby
mercerist has joined #ruby
<ericwood>
SloggerKhan: sounds like a good use-case for zip
<ericwood>
but let me see
tesuji has joined #ruby
<SloggerKhan>
ericwood: Zip would be great except that it operates on array of array instead of on objects I think.
<ericwood>
SloggerKhan: objects?
<ericwood>
what kind of objects
<ericwood>
your initial example seemed like an array
terrellt has joined #ruby
<cek>
is there any good console debugger for ruby in 2014? i'm using rubymine, but starting a gui is overkill
stantona has quit [Remote host closed the connection]
<momomomomo>
that's the first time I've heard that cek
<ericwood>
but stepping is stupid imho
<cek>
can it next?
mikecmpbll has joined #ruby
<momomomomo>
ericwood: firs ttime i've heard that as well
<momomomomo>
can you click links cek?
<cek>
no, i'm in console
<cek>
can't click
<ericwood>
can you copy text?
<momomomomo>
"pry debugger" "Adds step, next, finish, and continue commands and breakpoints to Pry using debugger."
<bricker`work>
pry debugger was all messed up in 2.1 iirc
<bricker`work>
I had to uninstall it
<cek>
okay... and i'm on 2.1 obviously
<bricker`work>
or maybe it was 2.0
<momomomomo>
bricker`work: that's a bummer
red_hulk has quit [Quit: Leaving]
<bricker`work>
yeah :(
<momomomomo>
I haven't opened a repl in a while :(
Sc0rp10n has joined #ruby
wallerdev has quit [Quit: wallerdev]
nanoyak has joined #ruby
djbkd has quit [Remote host closed the connection]
rippa has joined #ruby
chth0n has quit [Ping timeout: 264 seconds]
whirlpool is now known as leeve
enape_101 has joined #ruby
andrewjanssen has joined #ruby
dc_ has quit [Remote host closed the connection]
rbartos has quit [Remote host closed the connection]
gondalier has joined #ruby
<cek>
suckatee documentation now
<banisterfiend>
cek: pry-byebug should provide next/step to pry
<cek>
where's proper starting point for pry?
gondalier has quit [Client Quit]
<cek>
pry myscript.rb -- arg1 arg2 . where is this?
nanoyak has quit [Ping timeout: 244 seconds]
<cek>
i need "rdebug" sematrics
<cek>
semantics
GriffinHeart has joined #ruby
tesuji has quit [Ping timeout: 255 seconds]
SJr has quit [Read error: Connection reset by peer]
aniM has quit [Ping timeout: 264 seconds]
<cek>
banisterfiend: so , essentially, you're telling me to use gem that's I'm trying to escape
<banisterfiend>
cek: i don't actually care what you do
<cek>
well that's totally helpful
<cek>
are you from russia?
<banisterfiend>
cek: you have an entitled, rude attitude so i don't even care to help you
SJr has joined #ruby
<cek>
where do you see rude attitude? I'm just trying to make this thing work. And it doesn't ...
<banisterfiend>
cek: You didn't even read the documentation.
himsin has quit [Quit: himsin]
<banisterfiend>
cek: you're trying to use somethign without even knowing how it works, and when you try to use it incorrectly you claim it doesn't work. You're an idiot.
rbartos has joined #ruby
himsin has joined #ruby
saarinen has joined #ruby
<cek>
yea, now who's being rude. Look in mirror.
GriffinHeart has quit [Ping timeout: 240 seconds]
hpoydar has joined #ruby
tesuji has joined #ruby
cek was kicked from #ruby by banisterfiend [Your behavior is not conducive to the desired environment.]
<benzrf>
duuude
<benzrf>
_why invented the term 'tumblelog'??
Takle has quit [Remote host closed the connection]
<shevy>
"The first microblogs were known as tumblelogs. The term was coined by why the lucky stiff in a blog post on April 12, 2005, while describing Christian Neukirchen's Anarchaia."
timonv has quit [Ping timeout: 244 seconds]
<xybre>
Yep.
Deele has quit [Ping timeout: 255 seconds]
<xybre>
I bet he never got a penny from Tumblr.
<benzrf>
well, they just used a word he coined
<benzrf>
its not like they took his concept exactly
lw has quit [Quit: s]
terrellt has quit [Remote host closed the connection]
<benzrf>
anyway im reading closure
christickner has quit [Quit: christickner]
<benzrf>
i resisted the temptation to look up sacred clowns \o/
Xaitec has quit [Ping timeout: 264 seconds]
_JokerDoom has joined #ruby
tesuji has quit [Ping timeout: 264 seconds]
ikilledthecat has joined #ruby
jhass|off is now known as jhass
jmurphy has joined #ruby
andrewjanssen has joined #ruby
jaimef has quit [Excess Flood]
timonv has joined #ruby
andrewjanssen has quit [Client Quit]
Nebnev has quit [Ping timeout: 264 seconds]
hobodave has quit [Quit: Computer has gone to sleep.]
JokerDoom has quit [Ping timeout: 272 seconds]
stantona has joined #ruby
Gil has joined #ruby
maestrojed has joined #ruby
olivier_bK has quit [Ping timeout: 264 seconds]
tesuji has joined #ruby
lw has joined #ruby
nowthatsamatt has joined #ruby
Spami has joined #ruby
troyready has joined #ruby
yubrew has joined #ruby
agrinb has quit [Remote host closed the connection]
Mon_Ouie has quit [Ping timeout: 240 seconds]
klaut has quit [Remote host closed the connection]
orionstein is now known as orionstein_away
agrinb has joined #ruby
jaimef has joined #ruby
ghr has quit [Ping timeout: 240 seconds]
lkba has quit [Ping timeout: 245 seconds]
axilla has quit [Quit: Lost terminal]
maestrojed has quit [Max SendQ exceeded]
cocotton has quit [Remote host closed the connection]
yfeldblum has joined #ruby
agrinb has quit [Ping timeout: 240 seconds]
braincrash has quit [Quit: bye bye]
Azure has joined #ruby
Stalkr^ has quit [Changing host]
Stalkr^ has joined #ruby
relix has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
banister has joined #ruby
cocotton has joined #ruby
relix has joined #ruby
tkuchiki has quit [Remote host closed the connection]
jxf has joined #ruby
Gooder has quit [Remote host closed the connection]
timonv has quit [Remote host closed the connection]
nanoyak has joined #ruby
maestrojed has joined #ruby
dgaffney has quit [Remote host closed the connection]
max__ has joined #ruby
dgaffney has joined #ruby
djbkd has joined #ruby
max__ is now known as Guest45685
Guest45685 has quit [Client Quit]
diegoviola has joined #ruby
yfeldblum has quit [Ping timeout: 240 seconds]
braincrash has joined #ruby
orionstein_away is now known as orionstein
workmad3 has quit [Ping timeout: 272 seconds]
andrewjanssen has joined #ruby
jerius has joined #ruby
michaelpjohnson has joined #ruby
pontiki has joined #ruby
cocotton has quit [Remote host closed the connection]
tier has quit [Remote host closed the connection]
mary5030 has joined #ruby
maestrojed has quit [Max SendQ exceeded]
lkba has joined #ruby
Zamerick has joined #ruby
max___ has joined #ruby
cocotton has joined #ruby
max___ has left #ruby [#ruby]
MrDoctor has quit [Remote host closed the connection]
danijoo has quit [Read error: Connection reset by peer]
MrDoctor has joined #ruby
binaryhat has joined #ruby
maestrojed has joined #ruby
danijoo has joined #ruby
tesuji has quit [Ping timeout: 272 seconds]
binaryhat has quit [Read error: Connection reset by peer]
terrellt has joined #ruby
mikepack has joined #ruby
mary5030 has quit [Ping timeout: 240 seconds]
andrewhl has quit [Quit: andrewhl]
bluOxigen has joined #ruby
bluOxigen has quit [Changing host]
bluOxigen has joined #ruby
DrCode has quit [Remote host closed the connection]
r_rios has quit [Remote host closed the connection]
dapz has joined #ruby
MrDoctor has quit [Ping timeout: 244 seconds]
Kricir has quit [Remote host closed the connection]
DrCode has joined #ruby
sheperson has joined #ruby
djbkd has quit [Remote host closed the connection]
Zenigor has quit [Remote host closed the connection]
makerop has left #ruby ["Leaving"]
Naaab has joined #ruby
tesuji has joined #ruby
Wolland has joined #ruby
obs has joined #ruby
dgaffney has quit [Ping timeout: 264 seconds]
seanosaur has joined #ruby
djbkd has joined #ruby
himsin has quit [Ping timeout: 240 seconds]
agrinb has joined #ruby
Wolland has quit [Read error: Connection reset by peer]
cocotton has quit [Remote host closed the connection]
<Naaab>
hi guys so im a noob at ruby and i want to send the development site to production i've tried "rails s -e production"
asteros has joined #ruby
Wolland has joined #ruby
<Naaab>
but the changes dont appear in the production site
<jhass>
for rails questions join #rubyonrails
Hanmac1 has joined #ruby
<Naaab>
ok
mercerist has quit [Quit: Computer has gone to sleep.]
momomomomo has quit [Quit: momomomomo]
postmodern has joined #ruby
Naaab has quit [Client Quit]
sinkensabe has quit []
Hanmac has quit [Ping timeout: 245 seconds]
hobodave has joined #ruby
yfeldblum has joined #ruby
codabrink has quit [Ping timeout: 255 seconds]
jrichocean has joined #ruby
Gil has quit [Remote host closed the connection]
Gil has joined #ruby
<jrichocean>
Sup party people!
mercerist has joined #ruby
Wolland has quit [Ping timeout: 245 seconds]
maestrojed has quit [Quit: Computer has gone to sleep.]
dochi has joined #ruby
renier has joined #ruby
dideler|work has quit [Ping timeout: 252 seconds]
codabrink has joined #ruby
dochi has quit [Client Quit]
sheperson has quit [Ping timeout: 240 seconds]
<jrichocean>
so i mentor at a local RoR bootcamp and i was wondering if there is a specific or better channel that the youngins in the bootcamp can chat questions on when there at home?
Hobogrammer has quit [Ping timeout: 264 seconds]
dideler|work has joined #ruby
Gil has quit [Ping timeout: 240 seconds]
kapott has quit [Quit: Leaving]
<jhass>
#rubyonrails for rails stuff, here for general ruby stuff
sheperson has joined #ruby
zigomir has quit [Remote host closed the connection]
stytown has joined #ruby
tesuji has quit [Ping timeout: 240 seconds]
Kricir has joined #ruby
<benzrf>
hey jhass
top4o has joined #ruby
<benzrf>
* jrichocean
maestrojed has joined #ruby
<benzrf>
why are you learning them rails?
<benzrf>
you monster
yfeldblum has quit [Ping timeout: 255 seconds]
<benzrf>
teach them plain ruby first, at least D:
<jrichocean>
hahaha
<jrichocean>
not my bootcamp
<jrichocean>
i just help out
CorpusCallosum has joined #ruby
<jrichocean>
I think they are shooting at the Rails target beacuse of the demand for RoR devs arround here
lbwski has joined #ruby
LadyRainicorn has quit [Ping timeout: 240 seconds]
Morkel has quit [Quit: Morkel]
jackneill has quit [Quit: No Ping reply in 180 seconds.]
<pontiki>
where is here, jrichocean
sheperson has quit [Quit: sheperson]
<jrichocean>
Utah
hobodave has quit [Quit: Computer has gone to sleep.]
<jrichocean>
SLC area
<pontiki>
nod
<pontiki>
good stuff. i've been volunteering at RailsBridge.MN
LadyRainicorn has joined #ruby
<benzrf>
jrichocean: gross
terrellt has quit [Remote host closed the connection]
<jrichocean>
haha
<benzrf>
learn to program not to web develop =(
<jrichocean>
y's that?
<jrichocean>
tru that
terrellt has joined #ruby
carraroj has joined #ruby
<jrichocean>
I push katas down their gulletts
jackneill has joined #ruby
<pontiki>
force feeding to fatten up their livers
saarinen has quit [Quit: saarinen]
toretore has left #ruby ["Leaving"]
terrellt has quit [Ping timeout: 240 seconds]
toretore has joined #ruby
anaeem1 has joined #ruby
yourmysin has quit [Read error: Connection reset by peer]
jmurray has quit [Ping timeout: 245 seconds]
<shevy>
I push cats down their tails
<benzrf>
shevy: y u do dis
<shevy>
I have nothing else to do :(
<shevy>
pontiki are you not in whale shape today?
obs has quit [Quit: Konversation terminated!]
Zefram has joined #ruby
kireevco has quit [Read error: Connection reset by peer]
chipotle has joined #ruby
kireevco has joined #ruby
shinobi_one has joined #ruby
<pontiki>
no, i'm at my desk, not on phone, shevy
anaeem1 has quit [Remote host closed the connection]
tier has joined #ruby
<RubyPanther>
I thought it was an ebook, I didn't realize it was the classics
mattstratton has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
ascarter has joined #ruby
Zamerick has quit [Ping timeout: 255 seconds]
seanosau_ has joined #ruby
goleldar has joined #ruby
Hobogrammer has joined #ruby
G has quit [Ping timeout: 252 seconds]
XenoWolf has quit [Ping timeout: 255 seconds]
three18ti has quit [Ping timeout: 245 seconds]
<goleldar>
i am trying to describe a non default value.. one that is passed in.. is there a better way to describe a set value?
forced_request has joined #ruby
dapz has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
shevy has quit [Ping timeout: 245 seconds]
shevy has joined #ruby
mattstratton has joined #ruby
G has joined #ruby
lmickh has joined #ruby
shevy has quit [Client Quit]
edmellum has quit [Quit: Connection closed for inactivity]
<jhass>
goleldar: what exactly is your question?
gondalier has joined #ruby
shevy has joined #ruby
vbabiy has joined #ruby
<goleldar>
just if there was a better way of describing non default values .. but it looks like passed in value is the best way
teddyp1cker has joined #ruby
<jhass>
non default values? write code and point at the part you want the name for
mjsmith2 has quit [Remote host closed the connection]
Xeago has quit [Remote host closed the connection]
lkba has quit [Ping timeout: 245 seconds]
lbwski has quit [*.net *.split]
mikepack has quit [*.net *.split]
jerius has quit [*.net *.split]
maestrojed has quit [*.net *.split]
Azure has quit [*.net *.split]
relix has quit [*.net *.split]
emdub has quit [*.net *.split]
redondos has quit [*.net *.split]
baroquebobcat has quit [*.net *.split]
pu22l3r has quit [*.net *.split]
sarkis has quit [*.net *.split]
beneggett has quit [*.net *.split]
pvb has quit [*.net *.split]
treehug88 has quit [*.net *.split]
almostwhitehat has quit [*.net *.split]
scx has quit [*.net *.split]
nemesit|znc has quit [*.net *.split]
mark_locklear has quit [*.net *.split]
GeekOnCoffee has quit [*.net *.split]
bubbajones has quit [*.net *.split]
ramblinpeck has quit [*.net *.split]
maxmanders has quit [*.net *.split]
yeticry has quit [*.net *.split]
RandyT has quit [*.net *.split]
ctp has quit [*.net *.split]
renderful has quit [*.net *.split]
zorak8 has quit [*.net *.split]
ari-_-e has quit [*.net *.split]
danshultz has quit [*.net *.split]
fella5s has quit [*.net *.split]
pen has quit [*.net *.split]
thejoecarroll has quit [*.net *.split]
camt has quit [*.net *.split]
metasyntax has quit [*.net *.split]
shanlar has quit [*.net *.split]
DanielRb has quit [*.net *.split]
guyz has quit [*.net *.split]
thoolihan has quit [*.net *.split]
michael_mbp has quit [*.net *.split]
faulkner has quit [*.net *.split]
psmolen has quit [*.net *.split]
felixjet has quit [*.net *.split]
blackms has quit [*.net *.split]
nw has quit [*.net *.split]
renier has quit [*.net *.split]
tus has quit [*.net *.split]
rbartos has quit [*.net *.split]
dideler|work has quit [*.net *.split]
yubrew has quit [*.net *.split]
ixti has quit [*.net *.split]
SBoolean has quit [*.net *.split]
failshell has quit [*.net *.split]
LekeFly_ has quit [*.net *.split]
b00stfr3ak has quit [*.net *.split]
Dreamer3 has quit [*.net *.split]
codeurge has quit [*.net *.split]
benzrf has quit [*.net *.split]
paulfm has quit [*.net *.split]
jespada has quit [*.net *.split]
Kruppe has quit [*.net *.split]
phutchins has quit [*.net *.split]
dblessing has quit [*.net *.split]
cid404 has quit [*.net *.split]
zarubin has quit [*.net *.split]
BombStrike has quit [*.net *.split]
PhilK_ has quit [*.net *.split]
Sou|cutter has quit [*.net *.split]
paulog has quit [*.net *.split]
adeponte has quit [*.net *.split]
blackgoat has quit [*.net *.split]
hamakn has quit [*.net *.split]
Alina-malina has quit [*.net *.split]
wald0 has quit [*.net *.split]
Mongey has quit [*.net *.split]
absolutezeroff has quit [*.net *.split]
Derander has quit [*.net *.split]
Jamo has quit [*.net *.split]
mgomezch has quit [*.net *.split]
Xuerian has quit [*.net *.split]
Authenticator has quit [*.net *.split]
everett has quit [*.net *.split]
robbyoconnor has quit [*.net *.split]
RubyPanther has quit [*.net *.split]
__class__ has quit [*.net *.split]
helpa has quit [*.net *.split]
joast has quit [*.net *.split]
LACP has quit [*.net *.split]
eguim has quit [*.net *.split]
rs0 has quit [*.net *.split]
freannrak has quit [*.net *.split]
froy has quit [*.net *.split]
badhatter has quit [*.net *.split]
chihhsin has quit [*.net *.split]
billy_ran_away has quit [*.net *.split]
mahlon has quit [*.net *.split]
hakunin has quit [*.net *.split]
bmn has quit [*.net *.split]
inukshuk has quit [*.net *.split]
gtc has quit [*.net *.split]
rcs has quit [*.net *.split]
willgorman has quit [*.net *.split]
ericboehs has quit [*.net *.split]
SloggerKhan has quit [*.net *.split]
Akuma has quit [*.net *.split]
tskogberg has quit [*.net *.split]
Spleeze has quit [*.net *.split]
Wayneoween has quit [*.net *.split]
chihhsin_wego has quit [*.net *.split]
x0nic has quit [*.net *.split]
shaquile has quit [*.net *.split]
cwc has quit [*.net *.split]
xiphias has quit [*.net *.split]
zybi1 has quit [*.net *.split]
heftig has quit [*.net *.split]
frode15243 has quit [*.net *.split]
metadave has quit [*.net *.split]
dekz has quit [*.net *.split]
hy2guru_ has quit [*.net *.split]
dmoe______ has quit [*.net *.split]
ballPointPenguin has quit [*.net *.split]
Darryl has quit [*.net *.split]
trhodes_ has quit [*.net *.split]
Zackio has quit [*.net *.split]
Hien has quit [*.net *.split]
jpierre03 has quit [*.net *.split]
aspiers has quit [*.net *.split]
go|dfish has quit [*.net *.split]
Killerkeksdose has quit [*.net *.split]
avelldiroll has quit [*.net *.split]
davidcelis1 has quit [*.net *.split]
xMopxShell has quit [*.net *.split]
sindork_ has quit [*.net *.split]
Anarch has quit [*.net *.split]
philtr has quit [*.net *.split]
fearoffish has quit [*.net *.split]
Su7 has quit [*.net *.split]
dioms_ has quit [*.net *.split]
catepillar has quit [*.net *.split]
Karunamon has quit [*.net *.split]
jayne has quit [*.net *.split]
RoryHughes has quit [*.net *.split]
culturelabs has quit [*.net *.split]
Macacity has quit [*.net *.split]
Doc_X has quit [*.net *.split]
Jello_Raptor has quit [*.net *.split]
pusewicz has quit [*.net *.split]
Mars` has quit [*.net *.split]
Gnubie_ has quit [*.net *.split]
FL1SK has quit [*.net *.split]
xargoon has quit [*.net *.split]
jiriki has quit [*.net *.split]
JaTochNietDan has quit [*.net *.split]
Hamled has quit [*.net *.split]
tchebb has quit [*.net *.split]
Dwarf has quit [*.net *.split]
jumblemuddle has quit [*.net *.split]
icedp has quit [*.net *.split]
Sigma00 has quit [*.net *.split]
rtlong has quit [*.net *.split]
ashleah{K} has quit [*.net *.split]
peeja has quit [*.net *.split]
quantsini has quit [*.net *.split]
qpls has quit [*.net *.split]
cmaxw_____ has quit [*.net *.split]
kapowaz has quit [*.net *.split]
ggherdov has quit [*.net *.split]
Rubeh has quit [*.net *.split]
pipework has quit [*.net *.split]
JZTech101 has quit [*.net *.split]
okinomo has quit [*.net *.split]
jimeh has quit [*.net *.split]
contradictioned has quit [*.net *.split]
_KaszpiR_ has quit [*.net *.split]
madhatter has quit [*.net *.split]
cjs has quit [*.net *.split]
isomorphismes has quit [*.net *.split]
jeekl has quit [*.net *.split]
Sp4rKy has quit [*.net *.split]
Elfix has quit [*.net *.split]
asuka has quit [*.net *.split]
diegok has quit [*.net *.split]
Gate has quit [*.net *.split]
sfiggins has quit [*.net *.split]
Drakevr has quit [*.net *.split]
ponyfleisch has quit [*.net *.split]
mjsmith2 has joined #ruby
<jrichocean>
exodus of the masses
Royalb15 has quit [Quit: Leaving]
tus has joined #ruby
tus has quit [Excess Flood]
eighthbit has joined #ruby
Alina-malina has joined #ruby
saarinen has joined #ruby
hpoydar has quit [Remote host closed the connection]
mgomezch has joined #ruby
robbyoconnor has joined #ruby
XenoWolf_ has joined #ruby
cocotton has joined #ruby
renier has joined #ruby
relix has joined #ruby
Shidash has joined #ruby
emdub has joined #ruby
redondos has joined #ruby
Azure has joined #ruby
mark_locklear has joined #ruby
yubrew has joined #ruby
pu22l3r has joined #ruby
dekz has joined #ruby
ballPointPenguin has joined #ruby
SloggerKhan has joined #ruby
treehug88 has joined #ruby
scx has joined #ruby
nemesit|znc has joined #ruby
dblessing has joined #ruby
almostwhitehat has joined #ruby
SBoolean has joined #ruby
failshell has joined #ruby
benzrf has joined #ruby
codeurge has joined #ruby
cid404 has joined #ruby
ramblinpeck has joined #ruby
Kruppe has joined #ruby
jerius has joined #ruby
dideler|work has joined #ruby
three18t- has joined #ruby
Dreamer3 has joined #ruby
adeponte has joined #ruby
ixti has joined #ruby
zorak8 has joined #ruby
blackgoat has joined #ruby
sarkis has joined #ruby
b00stfr3ak has joined #ruby
ctp has joined #ruby
lbwski has joined #ruby
metadave has joined #ruby
baroquebobcat has joined #ruby
heftig has joined #ruby
paulfm has joined #ruby
rbartos has joined #ruby
zybi1 has joined #ruby
mikepack has joined #ruby
PhilK_ has joined #ruby
GeekOnCoffee has joined #ruby
hy2guru_ has joined #ruby
paulog has joined #ruby
renderful has joined #ruby
danshultz has joined #ruby
LekeFly_ has joined #ruby
fella5s has joined #ruby
Darryl has joined #ruby
zarubin has joined #ruby
wald0 has joined #ruby
Derander has joined #ruby
maxmanders has joined #ruby
Authenticator has joined #ruby
Sou|cutter has joined #ruby
thejoecarroll has joined #ruby
hamakn has joined #ruby
yeticry has joined #ruby
glen has joined #ruby
pen has joined #ruby
ari-_-e has joined #ruby
maestrojed has joined #ruby
rs0 has joined #ruby
joast has joined #ruby
faulkner has joined #ruby
everett has joined #ruby
chihhsin has joined #ruby
RandyT has joined #ruby
beneggett has joined #ruby
RubyPanther has joined #ruby
thoolihan has joined #ruby
inukshuk has joined #ruby
billy_ran_away has joined #ruby
absolutezeroff has joined #ruby
DanielRb has joined #ruby
nw has joined #ruby
bmn has joined #ruby
Hien has joined #ruby
pvb has joined #ruby
Xuerian has joined #ruby
blackms has joined #ruby
Mongey has joined #ruby
avelldiroll has joined #ruby
metasyntax has joined #ruby
Zackio has joined #ruby
michael_mbp has joined #ruby
shanlar has joined #ruby
froy has joined #ruby
Spleeze has joined #ruby
psmolen has joined #ruby
dmoe______ has joined #ruby
trhodes_ has joined #ruby
mahlon has joined #ruby
xMopxShell has joined #ruby
fearoffish has joined #ruby
hakunin has joined #ruby
camt has joined #ruby
ericboehs has joined #ruby
Akuma has joined #ruby
felixjet has joined #ruby
cwc has joined #ruby
sindork_ has joined #ruby
aspiers has joined #ruby
gtc has joined #ruby
go|dfish has joined #ruby
bubbajones has joined #ruby
philtr has joined #ruby
rcs has joined #ruby
LACP has joined #ruby
freannrak has joined #ruby
davidcelis1 has joined #ruby
catepillar has joined #ruby
shaquile has joined #ruby
Anarch has joined #ruby
Wayneoween has joined #ruby
phutchins has joined #ruby
__class__ has joined #ruby
isomorphismes has joined #ruby
willgorman has joined #ruby
jayne has joined #ruby
dioms_ has joined #ruby
RoryHughes has joined #ruby
frode15243 has joined #ruby
Karunamon has joined #ruby
helpa has joined #ruby
culturelabs has joined #ruby
asuka has joined #ruby
Drakevr has joined #ruby
diegok has joined #ruby
x0nic has joined #ruby
guyz has joined #ruby
Killerkeksdose has joined #ruby
xiphias has joined #ruby
Elfix has joined #ruby
Sp4rKy has joined #ruby
chihhsin_wego has joined #ruby
eguim has joined #ruby
tskogberg has joined #ruby
contradictioned has joined #ruby
Jamo has joined #ruby
madhatter has joined #ruby
badhatter has joined #ruby
sfiggins has joined #ruby
Rubeh has joined #ruby
jeekl has joined #ruby
okinomo has joined #ruby
jpierre03 has joined #ruby
JZTech101 has joined #ruby
ggherdov has joined #ruby
ponyfleisch has joined #ruby
cmaxw_____ has joined #ruby
jimeh has joined #ruby
quantsini has joined #ruby
kapowaz has joined #ruby
jumblemuddle has joined #ruby
pipework has joined #ruby
peeja has joined #ruby
Sigma00 has joined #ruby
Dwarf has joined #ruby
Gate has joined #ruby
ashleah{K} has joined #ruby
icedp has joined #ruby
tchebb has joined #ruby
JaTochNietDan has joined #ruby
qpls has joined #ruby
Hamled has joined #ruby
rtlong has joined #ruby
jiriki has joined #ruby
cjs has joined #ruby
xargoon has joined #ruby
Su7 has joined #ruby
Gnubie_ has joined #ruby
Doc_X has joined #ruby
FL1SK has joined #ruby
pusewicz has joined #ruby
Mars` has joined #ruby
_KaszpiR_ has joined #ruby
Jello_Raptor has joined #ruby
Macacity has joined #ruby
Dreamer3 has quit [Max SendQ exceeded]
Darryl has quit [Max SendQ exceeded]
BombStrike has joined #ruby
poguez_ has quit [Ping timeout: 252 seconds]
Darryl has joined #ruby
Zenigor has joined #ruby
lxsameer has joined #ruby
dc_ has joined #ruby
hamakn has quit [Remote host closed the connection]
Darryl has quit [Changing host]
Darryl has joined #ruby
orionstein is now known as orionstein_away
ascarter has quit [Ping timeout: 264 seconds]
abra has joined #ruby
abra has quit [Max SendQ exceeded]
bubbajoness has joined #ruby
fold has quit [Ping timeout: 255 seconds]
poguez_ has joined #ruby
scx_ has joined #ruby
lbwski_ has joined #ruby
trhodes_ has quit [Ping timeout: 264 seconds]
abra has joined #ruby
lbwski has quit [*.net *.split]
maestrojed has quit [*.net *.split]
Azure has quit [*.net *.split]
Shidash has quit [*.net *.split]
relix has quit [*.net *.split]
mikepack has quit [*.net *.split]
jerius has quit [*.net *.split]
baroquebobcat has quit [*.net *.split]
emdub has quit [*.net *.split]
redondos has quit [*.net *.split]
sarkis has quit [*.net *.split]
pvb has quit [*.net *.split]
pu22l3r has quit [*.net *.split]
beneggett has quit [*.net *.split]
almostwhitehat has quit [*.net *.split]
treehug88 has quit [*.net *.split]
mark_locklear has quit [*.net *.split]
scx has quit [*.net *.split]
nemesit|znc has quit [*.net *.split]
ramblinpeck has quit [*.net *.split]
GeekOnCoffee has quit [*.net *.split]
renderful has quit [*.net *.split]
zorak8 has quit [*.net *.split]
maxmanders has quit [*.net *.split]
RandyT has quit [*.net *.split]
bubbajones has quit [*.net *.split]
ctp has quit [*.net *.split]
ari-_-e has quit [*.net *.split]
yeticry has quit [*.net *.split]
danshultz has quit [*.net *.split]
fella5s has quit [*.net *.split]
pen has quit [*.net *.split]
camt has quit [*.net *.split]
thejoecarroll has quit [*.net *.split]
metasyntax has quit [*.net *.split]
shanlar has quit [*.net *.split]
DanielRb has quit [*.net *.split]
guyz has quit [*.net *.split]
faulkner has quit [*.net *.split]
blackms has quit [*.net *.split]
michael_mbp has quit [*.net *.split]
thoolihan has quit [*.net *.split]
psmolen has quit [*.net *.split]
nw has quit [*.net *.split]
felixjet has quit [*.net *.split]
Zenigor has quit [*.net *.split]
XenoWolf_ has quit [*.net *.split]
robbyoconnor has quit [*.net *.split]
cocotton has quit [*.net *.split]
dideler|work has quit [*.net *.split]
yubrew has quit [*.net *.split]
renier has quit [*.net *.split]
rbartos has quit [*.net *.split]
failshell has quit [*.net *.split]
b00stfr3ak has quit [*.net *.split]
LekeFly_ has quit [*.net *.split]
SBoolean has quit [*.net *.split]
ixti has quit [*.net *.split]
benzrf has quit [*.net *.split]
codeurge has quit [*.net *.split]
paulfm has quit [*.net *.split]
Kruppe has quit [*.net *.split]
dblessing has quit [*.net *.split]
zarubin has quit [*.net *.split]
phutchins has quit [*.net *.split]
cid404 has quit [*.net *.split]
paulog has quit [*.net *.split]
adeponte has quit [*.net *.split]
Sou|cutter has quit [*.net *.split]
PhilK_ has quit [*.net *.split]
blackgoat has quit [*.net *.split]
Mongey has quit [*.net *.split]
absolutezeroff has quit [*.net *.split]
wald0 has quit [*.net *.split]
Derander has quit [*.net *.split]
Jamo has quit [*.net *.split]
RubyPanther has quit [*.net *.split]
everett has quit [*.net *.split]
Xuerian has quit [*.net *.split]
helpa has quit [*.net *.split]
__class__ has quit [*.net *.split]
Authenticator has quit [*.net *.split]
LACP has quit [*.net *.split]
joast has quit [*.net *.split]
rs0 has quit [*.net *.split]
badhatter has quit [*.net *.split]
eguim has quit [*.net *.split]
froy has quit [*.net *.split]
freannrak has quit [*.net *.split]
chihhsin has quit [*.net *.split]
billy_ran_away has quit [*.net *.split]
mahlon has quit [*.net *.split]
hakunin has quit [*.net *.split]
rcs has quit [*.net *.split]
gtc has quit [*.net *.split]
bmn has quit [*.net *.split]
willgorman has quit [*.net *.split]
SloggerKhan has quit [*.net *.split]
inukshuk has quit [*.net *.split]
ericboehs has quit [*.net *.split]
Akuma has quit [*.net *.split]
Spleeze has quit [*.net *.split]
tskogberg has quit [*.net *.split]
Wayneoween has quit [*.net *.split]
x0nic has quit [*.net *.split]
shaquile has quit [*.net *.split]
chihhsin_wego has quit [*.net *.split]
cwc has quit [*.net *.split]
xiphias has quit [*.net *.split]
Darryl has quit [*.net *.split]
three18t- has quit [*.net *.split]
zybi1 has quit [*.net *.split]
heftig has quit [*.net *.split]
dekz has quit [*.net *.split]
frode15243 has quit [*.net *.split]
dmoe______ has quit [*.net *.split]
metadave has quit [*.net *.split]
ballPointPenguin has quit [*.net *.split]
hy2guru_ has quit [*.net *.split]
Hien has quit [*.net *.split]
Zackio has quit [*.net *.split]
jpierre03 has quit [*.net *.split]
aspiers has quit [*.net *.split]
davidcelis1 has quit [*.net *.split]
xMopxShell has quit [*.net *.split]
Killerkeksdose has quit [*.net *.split]
go|dfish has quit [*.net *.split]
avelldiroll has quit [*.net *.split]
sindork_ has quit [*.net *.split]
philtr has quit [*.net *.split]
fearoffish has quit [*.net *.split]
Anarch has quit [*.net *.split]
catepillar has quit [*.net *.split]
dioms_ has quit [*.net *.split]
Karunamon has quit [*.net *.split]
Su7 has quit [*.net *.split]
jayne has quit [*.net *.split]
culturelabs has quit [*.net *.split]
RoryHughes has quit [*.net *.split]
Macacity has quit [*.net *.split]
Jello_Raptor has quit [*.net *.split]
pusewicz has quit [*.net *.split]
Doc_X has quit [*.net *.split]
Mars` has quit [*.net *.split]
Gnubie_ has quit [*.net *.split]
xargoon has quit [*.net *.split]
FL1SK has quit [*.net *.split]
jiriki has quit [*.net *.split]
JaTochNietDan has quit [*.net *.split]
tchebb has quit [*.net *.split]
Hamled has quit [*.net *.split]
glen has quit [*.net *.split]
Dwarf has quit [*.net *.split]
jumblemuddle has quit [*.net *.split]
Sigma00 has quit [*.net *.split]
icedp has quit [*.net *.split]
ashleah{K} has quit [*.net *.split]
rtlong has quit [*.net *.split]
peeja has quit [*.net *.split]
cmaxw_____ has quit [*.net *.split]
kapowaz has quit [*.net *.split]
ggherdov has quit [*.net *.split]
quantsini has quit [*.net *.split]
qpls has quit [*.net *.split]
jimeh has quit [*.net *.split]
pipework has quit [*.net *.split]
okinomo has quit [*.net *.split]
JZTech101 has quit [*.net *.split]
Rubeh has quit [*.net *.split]
madhatter has quit [*.net *.split]
cjs has quit [*.net *.split]
contradictioned has quit [*.net *.split]
_KaszpiR_ has quit [*.net *.split]
jeekl has quit [*.net *.split]
isomorphismes has quit [*.net *.split]
Sp4rKy has quit [*.net *.split]
Elfix has quit [*.net *.split]
asuka has quit [*.net *.split]
diegok has quit [*.net *.split]
sfiggins has quit [*.net *.split]
Gate has quit [*.net *.split]
Drakevr has quit [*.net *.split]
himsin has joined #ruby
ponyfleisch has quit [*.net *.split]
abra has quit [Max SendQ exceeded]
emdub_ has joined #ruby
yeticry_ has joined #ruby
abra has joined #ruby
yetanotherdave has joined #ruby
Xeago has joined #ruby
redondos has joined #ruby
Shidash has joined #ruby
rbartos has joined #ruby
emdub has joined #ruby
renier has joined #ruby
baroquebobcat has joined #ruby
SloggerKhan has joined #ruby
benzrf has joined #ruby
mikepack has joined #ruby
scx has joined #ruby
Darryl has joined #ruby
pu22l3r has joined #ruby
Kruppe has joined #ruby
Azure has joined #ruby
lbwski has joined #ruby
paulfm has joined #ruby
cid404 has joined #ruby
failshell has joined #ruby
pvb has joined #ruby
LekeFly_ has joined #ruby
heftig has joined #ruby
relix has joined #ruby
GeekOnCoffee has joined #ruby
ixti has joined #ruby
nemesit|znc has joined #ruby
b00stfr3ak has joined #ruby
cocotton has joined #ruby
dideler|work has joined #ruby
zarubin has joined #ruby
metadave has joined #ruby
dblessing has joined #ruby
Sou|cutter has joined #ruby
phutchins has joined #ruby
treehug88 has joined #ruby
Zenigor has joined #ruby
almostwhitehat has joined #ruby
SBoolean has joined #ruby
frode15243 has joined #ruby
maestrojed has joined #ruby
mark_locklear has joined #ruby
zybi1 has joined #ruby
robbyoconnor has joined #ruby
three18t- has joined #ruby
paulog has joined #ruby
dekz has joined #ruby
bubbajones has joined #ruby
zorak8 has joined #ruby
RandyT has joined #ruby
blackgoat has joined #ruby
maxmanders has joined #ruby
PhilK_ has joined #ruby
dmoe______ has joined #ruby
sarkis has joined #ruby
ari-_-e has joined #ruby
Xuerian has joined #ruby
absolutezeroff has joined #ruby
pen has joined #ruby
beneggett has joined #ruby
Mongey has joined #ruby
jerius has joined #ruby
michael_mbp has joined #ruby
felixjet has joined #ruby
danshultz has joined #ruby
fella5s has joined #ruby
camt has joined #ruby
psmolen has joined #ruby
RubyPanther has joined #ruby
thoolihan has joined #ruby
adeponte has joined #ruby
ramblinpeck has joined #ruby
Jamo has joined #ruby
helpa has joined #ruby
yubrew has joined #ruby
nw has joined #ruby
thejoecarroll has joined #ruby
yeticry has joined #ruby
everett has joined #ruby
Derander has joined #ruby
ctp has joined #ruby
glen has joined #ruby
inukshuk has joined #ruby
XenoWolf_ has joined #ruby
wald0 has joined #ruby
eguim has joined #ruby
ballPointPenguin has joined #ruby
codeurge has joined #ruby
__class__ has joined #ruby
Hien has joined #ruby
Authenticator has joined #ruby
metasyntax has joined #ruby
rs0 has joined #ruby
DanielRb has joined #ruby
froy has joined #ruby
shanlar has joined #ruby
blackms has joined #ruby
faulkner has joined #ruby
badhatter has joined #ruby
renderful has joined #ruby
LACP has joined #ruby
freannrak has joined #ruby
aspiers has joined #ruby
hy2guru_ has joined #ruby
chihhsin has joined #ruby
jpierre03 has joined #ruby
rcs has joined #ruby
bmn has joined #ruby
mahlon has joined #ruby
joast has joined #ruby
ericboehs has joined #ruby
shaquile has joined #ruby
willgorman has joined #ruby
Zackio has joined #ruby
avelldiroll has joined #ruby
guyz has joined #ruby
hakunin has joined #ruby
go|dfish has joined #ruby
fearoffish has joined #ruby
Killerkeksdose has joined #ruby
Spleeze has joined #ruby
gtc has joined #ruby
Wayneoween has joined #ruby
tskogberg has joined #ruby
billy_ran_away has joined #ruby
xMopxShell has joined #ruby
Anarch has joined #ruby
davidcelis1 has joined #ruby
philtr has joined #ruby
chihhsin_wego has joined #ruby
Akuma has joined #ruby
x0nic has joined #ruby
cwc has joined #ruby
sindork_ has joined #ruby
dioms_ has joined #ruby
catepillar has joined #ruby
Su7 has joined #ruby
xiphias has joined #ruby
jayne has joined #ruby
Karunamon has joined #ruby
isomorphismes has joined #ruby
culturelabs has joined #ruby
RoryHughes has joined #ruby
Drakevr has joined #ruby
Gate has joined #ruby
sfiggins has joined #ruby
asuka has joined #ruby
diegok has joined #ruby
Elfix has joined #ruby
Sp4rKy has joined #ruby
ponyfleisch has joined #ruby
jeekl has joined #ruby
contradictioned has joined #ruby
madhatter has joined #ruby
okinomo has joined #ruby
JZTech101 has joined #ruby
Rubeh has joined #ruby
pipework has joined #ruby
quantsini has joined #ruby
ggherdov has joined #ruby
peeja has joined #ruby
kapowaz has joined #ruby
cmaxw_____ has joined #ruby
jimeh has joined #ruby
rtlong has joined #ruby
icedp has joined #ruby
jumblemuddle has joined #ruby
Dwarf has joined #ruby
Sigma00 has joined #ruby
ashleah{K} has joined #ruby
Hamled has joined #ruby
tchebb has joined #ruby
qpls has joined #ruby
JaTochNietDan has joined #ruby
cjs has joined #ruby
jiriki has joined #ruby
FL1SK has joined #ruby
xargoon has joined #ruby
Gnubie_ has joined #ruby
Mars` has joined #ruby
Doc_X has joined #ruby
pusewicz has joined #ruby
Jello_Raptor has joined #ruby
Macacity has joined #ruby
_KaszpiR_ has joined #ruby
dilated_dinosaur has quit [Ping timeout: 272 seconds]
__class__ has quit [Max SendQ exceeded]
Darryl has quit [Max SendQ exceeded]
ValicekB has quit [Max SendQ exceeded]
chipotle has quit [Quit: cya]
seanosau_ is now known as seanosaur_
__class__ has joined #ruby
mikepack has quit [Write error: Broken pipe]
emdub has quit [Write error: Broken pipe]
yeticry has quit [Write error: Broken pipe]
scx has quit [Write error: Broken pipe]
bubbajones has quit [Write error: Connection reset by peer]
redondos has quit [Excess Flood]
djbkd has quit [Remote host closed the connection]
seanosaur_ has quit []
Darryl has joined #ruby
Darryl has quit [Changing host]
Darryl has joined #ruby
seanosau_ has joined #ruby
aspires has quit []
redondos has joined #ruby
redondos has quit [Changing host]
redondos has joined #ruby
dc___ has joined #ruby
mikepack has joined #ruby
dc_ has quit [Ping timeout: 240 seconds]
orionstein_away is now known as orionstein
seanosaur has quit [Ping timeout: 246 seconds]
devdazed has quit [Ping timeout: 240 seconds]
mmoretti has joined #ruby
seanosau_ has left #ruby [#ruby]
unholycrab has quit [Ping timeout: 240 seconds]
tus has joined #ruby
LadyRainicorn has quit [Read error: Connection reset by peer]
tus has quit [Excess Flood]
unholycrab has joined #ruby
devdazed has joined #ruby
Takle has quit [Remote host closed the connection]
jarto has joined #ruby
seanosaur has joined #ruby
lkba has joined #ruby
yfeldblum has joined #ruby
aspires has joined #ruby
LadyRainicorn has joined #ruby
aspires has quit [Client Quit]
jtiggo has joined #ruby
orionstein is now known as orionstein_away
Tricon has joined #ruby
aspires has joined #ruby
Olipro has joined #ruby
ValicekB has joined #ruby
rdark has quit [Quit: leaving]
kenneth has joined #ruby
dc___ has quit [Remote host closed the connection]
mmoretti has quit [Quit: Leaving...]
Morkel has joined #ruby
GeekOnCoffee has quit [Excess Flood]
zorak8 has quit [Excess Flood]
pvb has quit [Excess Flood]
stantona has quit [Remote host closed the connection]
jonahR_ has joined #ruby
ctp has quit [Excess Flood]
maestrojed has quit [Excess Flood]
zorak8 has joined #ruby
GeekOnCoffee has joined #ruby
Azure has quit [Excess Flood]
metasyntax has quit [Excess Flood]
pvb has joined #ruby
fella5s has quit [Excess Flood]
felixjet has quit [Max SendQ exceeded]
metasyntax has joined #ruby
zigomir has joined #ruby
fella5s has joined #ruby
lbwski has quit [Remote host closed the connection]
camt has quit [Remote host closed the connection]
Azure has joined #ruby
eighthbit has quit [Ping timeout: 245 seconds]
Zamerick has joined #ruby
timgauthier has joined #ruby
felixjet has joined #ruby
momomomomo has joined #ruby
Panther_Modern has joined #ruby
benzrf is now known as benzrf|offline
boris has quit [Remote host closed the connection]
maestrojed has joined #ruby
jonahR has quit [Ping timeout: 245 seconds]
<Panther_Modern>
Looking for solid recommendations for learning resources (ebook, physical or web) for a n00b learning Ruby - anyone have any particularly loved resources they'd like to share?
jtiggo has left #ruby [#ruby]
bluOxigen has quit [Ping timeout: 240 seconds]
mradmacher has joined #ruby
bluOxigen has joined #ruby
kireevco has quit [Read error: Connection reset by peer]
kireevco has joined #ruby
camt has joined #ruby
orionstein_away is now known as orionstein
aspires has quit []
GriffinHeart has joined #ruby
rgrinberg has quit [Quit: Leaving.]
Nebnev has joined #ruby
djbkd has joined #ruby
carraroj has quit [Quit: Konversation terminated!]
alvaro_o has joined #ruby
nanoyak has quit [Quit: Computer has gone to sleep.]
Dreamer3 has joined #ruby
zybi1 has quit [Quit: Leaving]
zybi1 has joined #ruby
MatthewsFace has joined #ruby
GriffinHeart has quit [Ping timeout: 244 seconds]
Mon_Ouie has joined #ruby
Mon_Ouie has quit [Changing host]
Mon_Ouie has joined #ruby
bradleyprice has joined #ruby
fresham has quit [Quit: fresham]
djbkd has quit [Remote host closed the connection]
timonv has joined #ruby
trhodes_ has joined #ruby
techsethi has joined #ruby
yfeldblu_ has joined #ruby
forced_request has quit [Ping timeout: 240 seconds]
revoohc has joined #ruby
Dreamer3 has quit [Ping timeout: 245 seconds]
forced_request has joined #ruby
carraroj has joined #ruby
carraroj has quit [Client Quit]
hpoydar has joined #ruby
yfeldblum has quit [Ping timeout: 240 seconds]
djbkd has joined #ruby
shvelo has joined #ruby
yfeldblu_ has quit [Ping timeout: 244 seconds]
mikepack has quit [Remote host closed the connection]
cgj has joined #ruby
weems has joined #ruby
RandyT has quit [Ping timeout: 244 seconds]
jarto has quit [Quit: Ухожу я от вас (xchat 2.4.5 или старше)]
terrellt has joined #ruby
cpruitt has quit [Quit: cpruitt]
RandyT has joined #ruby
noop has joined #ruby
mercerist has quit [Quit: Computer has gone to sleep.]
danijoo has quit [Read error: Connection reset by peer]
yfeldblum has joined #ruby
danijoo has joined #ruby
cocotton has quit [Remote host closed the connection]
cpruitt has joined #ruby
mattstratton has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
MZAWeb_ has quit [Quit: WeeChat 0.4.3]
datafirm has quit [Quit: Computer has gone to sleep.]
Xeago has quit [Read error: Connection reset by peer]
<callumacrae>
I'm getting "Expected ; or end of line" errors on both of the colons
<jhass>
ruby version?
<Hanmac1>
callumacrae: valid in 1.9.3 and 2.0+ invalid in 1.8
Hanmac1 is now known as Hanmac
<callumacrae>
Ah, probably that then. I dunno, I'm just using the syntax highlighting in the latest IntelliJ
<Hanmac>
depending on the editor it might not support the 1.9+ syntax
<stian>
I'm a massive noob, but does anyone want to look at my celisus to fahrenheit convertion program real quick? I have a question as to why gets.chomp works for grabbing user input where gets.to_i doesn't, even though I am inputting a number
<Hanmac>
"IntelliJ" might still in 1.8 ruby ... i have less hope that it will update to ruby2.0 before ruby3.0 is released
himsin has joined #ruby
<jhass>
stian: just post the code (to gist.github.com) and the error message you get
LadyRainicorn has quit [Ping timeout: 245 seconds]
<stian>
ah jhass, will do
<Hanmac>
jhass: the problem as far as i see: the code is 1.9+ valid, but the edior does not know about 1.9ruby
<callumacrae>
It doesn't really matter that much, the project I work on uses Ruby but I don't have to touch it. The only Ruby I write is in my Vagrantfiles
<stian>
jhass: if you look at line 6, if I change that to gets.chomp the program works
<jhass>
stian: then describe expected and actual behavior, "doesn't work" means nothing
<havenwood>
callumacrae: uninstall Ruby 1.8 and install Ruby 1.9.3+
mercerist has quit [Quit: Computer has gone to sleep.]
<stian>
jhass: alright, it exits out after running through the first two puts commands
rgrinberg has joined #ruby
<jhass>
stian: okay, that one is easy. Can you tell me what class/type the following literal has: "1"
<stian>
I'm really not good with the "names" for all if this yet
<stian>
sure
rgrinberg has quit [Client Quit]
<havenwood>
callumacrae: yeah, that's the default system Ruby in Mavericks, but 1.8 is still there as well
yfeldblum has quit [Remote host closed the connection]
<havenwood>
callumacrae: 1.8 is gone in Yosemite
rgrinberg has joined #ruby
stantona has joined #ruby
<stian>
jhass: Fixnum
<jhass>
stian: are you sure you tried "1".class and not 1.class?
<stian>
Actually, Fixnum < Integer
treehug88 has quit [Ping timeout: 264 seconds]
<stian>
ah, bah
<havenwood>
callumacrae: so nevermind my uninstall recommendation >.>
<stian>
jhass: yes so it's a string?
<havenwood>
callumacrae: OS X is an odd case.
<jhass>
stian: exactly. and what class/type does gets.to_i return?
testcore has joined #ruby
treehug88 has joined #ruby
<callumacrae>
Yay OS X .-.
andrewjanssen has quit [Quit: Leaving...]
<stian>
jhass: an integer?
<callumacrae>
How can I locate the SDK? Looks like I just need to tell IntelliJ to use the correct one
<callumacrae>
…google. Ignore that
<havenwood>
callumacrae: but my guess is that it's using the 1.8 system ruby instead of the 2.0 system ruby that became default with Mavericks
<jhass>
stian: exactly. And now do you think "1" == 1 can return true?
<stian>
jhass: :P
<stian>
jhass: I understand now
<jhass>
good ;)
ctp has joined #ruby
LadyRainicorn has joined #ruby
<stian>
so then, should I have done if selection = 1 instead of "1"?
<jhass>
== 1, = 1 would be an assignment
<jhass>
but yeah
<stian>
yes, of course, my bad
<stian>
I've only played around with some python before this but fell in love with the Ruby syntax :P
<jhass>
stian: another gotcha: what do you think 9 / 5 returns?
<stian>
Have been reading the wel ground rubyist, really good book so far, but I'm having troubles knowing what all the names of things are
<jhass>
no worries, that'll come with the time
<stian>
jhass: in this case 1 most likely
<stian>
since they're all integers not floats?
<jhass>
kk, just checking you noticed that
<stian>
tbh I have no idea how fucked up this code is atm
<jhass>
it looks pretty good
<jhass>
I've seen much worse
Nebnev has quit [Ping timeout: 255 seconds]
<stian>
I thought about writing a method instead that does the conversion, but it easily becomes too difficult :P
<stian>
spent most of my time getting vim and tmux rolling nicely :P
<callumacrae>
egh I have no idea
<stian>
jhass: really appreciate the help!
<stian>
;-)
persand has joined #ruby
maletor has quit [Quit: Computer has gone to sleep.]
ffranz has joined #ruby
Xeago_ has quit [Remote host closed the connection]
treehug88 has quit [Ping timeout: 272 seconds]
<stian>
jhass: do you have any tips on what I could do to condense the program, or should I rather just focus on learning more at this point instead of writing elegant code?
djbkd has quit [Remote host closed the connection]
<jhass>
for what the program does, you won't make it easier
<stian>
I was thinking shorter, less code/
lewix has joined #ruby
<jhass>
that too, it's pretty much at the minimum, everything else would start code golfing
<stian>
ah ok
mercerist has joined #ruby
treehug88 has joined #ruby
mercerist has quit [Client Quit]
hamakn has joined #ruby
Squarepy has joined #ruby
mikepack has quit [Remote host closed the connection]
<stian>
jhass: again thanks a lot for the help. time to rewrite it to accept float values then move on to the next project.
persand has quit [Client Quit]
LadyRainicorn has quit [Quit: Bye]
persand has joined #ruby
shvelo has quit [Ping timeout: 255 seconds]
<jhass>
yw
jrichocean has quit []
zorak8 has quit [Ping timeout: 240 seconds]
dgaffney_ has quit [Remote host closed the connection]
dgaffney has joined #ruby
andrewjanssen has joined #ruby
hamakn has quit [Ping timeout: 240 seconds]
kenneth has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
elaptics`away is now known as elaptics
gondalier has quit []
sepp2k has joined #ruby
jezen has joined #ruby
danijoo has quit [Read error: Connection reset by peer]
maletor has joined #ruby
dc_ has joined #ruby
danijoo has joined #ruby
tvw has quit []
MatthewsFace has quit [Quit: This computer has gone to sleep]
mattmcclure has joined #ruby
Dreamer3 has joined #ruby
gimpygoo has quit [Ping timeout: 240 seconds]
<lxsameer>
hey guys, I used "sprockets", "2.2.0" in my gem file. and it is present in my Gemfile.lock with correct version, but i get errors related to sprockets 2.12 in my project, any idea?
havenwood has quit []
stytown has quit [Quit: stytown]
Takle has joined #ruby
MatthewsFace has joined #ruby
benzrf|offline is now known as benzrf
lw has joined #ruby
axsuul has quit [Ping timeout: 245 seconds]
stantona has quit [Remote host closed the connection]
yfeldblum has joined #ruby
jaimef has quit [Excess Flood]
ascarter has joined #ruby
Bumptious has joined #ruby
jaimef has joined #ruby
pacMakaveli has joined #ruby
Takle has quit [Ping timeout: 240 seconds]
aspires has joined #ruby
djbkd has joined #ruby
acrussell has joined #ruby
spyderman4g63 has quit []
himsin has quit [Quit: himsin]
RandyT has quit [Ping timeout: 244 seconds]
<jhass>
lxsameer: require "bundler/setup" / bundle exec is the first thing to happen in your project?
acrussell has left #ruby [#ruby]
<lxsameer>
jhass: bundle exec solved it sorry it was silly
mikesplain has quit [Ping timeout: 245 seconds]
persand has quit [Quit: persand]
dangerousdave has quit [Read error: Connection reset by peer]
dangerou_ has joined #ruby
RandyT has joined #ruby
michaelpjohnson has quit [Quit: Leaving]
kaspergrubbe has quit [Remote host closed the connection]
rippa has quit [Quit: {#`%${%&`+'${`%&NO CARRIER]
beneggett has quit [Ping timeout: 244 seconds]
toastynerd has quit [Remote host closed the connection]
MatthewsFace has quit [Quit: This computer has gone to sleep]
mikesplain has joined #ruby
Notte has joined #ruby
MatthewsFace has joined #ruby
MatthewsFace has quit [Client Quit]
Hanmac1 has joined #ruby
paulfm has quit []
Hanmac has quit [Ping timeout: 272 seconds]
Fire-Dragon-DoL has quit [Quit: Leaving.]
zigomir has quit [Remote host closed the connection]
agrinb has quit [Remote host closed the connection]
zigomir has joined #ruby
agrinb has joined #ruby
djbkd has quit [Remote host closed the connection]
stantona has joined #ruby
decoponio has quit [Quit: Leaving...]
Rahul_Roy has quit [Quit: Connection closed for inactivity]
chipotle has joined #ruby
<shevy>
\o/
stantona has quit [Remote host closed the connection]
maestrojed has quit [Quit: Computer has gone to sleep.]
stantona has joined #ruby
djbkd has joined #ruby
agrinb has quit [Ping timeout: 272 seconds]
techsethi has joined #ruby
shvelo has joined #ruby
Kricir has quit [Remote host closed the connection]
phutchins has quit [Ping timeout: 240 seconds]
paulfm has joined #ruby
jezen has quit []
beneggett has joined #ruby
dgutierrez1287 has joined #ruby
yfeldblum has quit [Remote host closed the connection]
nanoyak has joined #ruby
mikepack has joined #ruby
asteros has quit [Quit: asteros]
zorak has joined #ruby
andrewjanssen has quit [Remote host closed the connection]
MrPopinjay has joined #ruby
<F__i__L>
can I include a module in a class instance (object) only ?
<MrPopinjay>
Hey guys. Are $? and $CHILD_STATUS supposed to be the same thing? For me $? has the Process::Status object, yet $CHILD_STATUS is nil
<MrPopinjay>
in 2.1.1
<jhass>
F__i__L: yes, using extend. Avoid doing that a lot during runtime though
<jhass>
MrPopinjay: iirc you need to require english or something?
<MrPopinjay>
Oh
<MrPopinjay>
!
techsethi has quit [Quit: techsethi]
top4o has quit [Quit: ChatZilla 0.9.90.1 [Firefox 30.0/20140605174243]]
<Mon_Ouie>
Yes, it's even 'English' with a capital E
<MrPopinjay>
Thank you! :)
<MrPopinjay>
I thought I was going mad
Panther_Modern has left #ruby ["Leaving"]
erikruthven has joined #ruby
dc_ has quit []
ferr has quit [Remote host closed the connection]
pu22l3r_ has joined #ruby
<MrPopinjay>
Next question. If I have an application with a bunch of threads running, and I raise an exception in one thread, can I make it halt the entire program somehow?
<MrPopinjay>
It just seems to kill that thread
komanda has joined #ruby
<jhass>
maybe you want to Kernel#exit?
<komanda>
r
komanda has quit [Remote host closed the connection]
<benzrf>
threads r dum!!
tjr9898 has joined #ruby
<Sigma00>
just start accessing random memory and changing it until you crash
<Sigma00>
or take the system down with you
<Sigma00>
either way, you'll stop execution
<MrPopinjay>
Hehe
pu22l3r has quit [Ping timeout: 244 seconds]
cocotton has quit [Remote host closed the connection]
diegoviola has quit [Remote host closed the connection]
glen has left #ruby [#ruby]
<MrPopinjay>
Thanks!
Takle has joined #ruby
cpruitt has quit [Quit: cpruitt]
marr has joined #ruby
kireevco has quit [Quit: Leaving.]
blueOxigen has joined #ruby
zybi1 has quit [Quit: Leaving]
zybi1 has joined #ruby
codabrin_ has joined #ruby
bluOxigen has quit [Ping timeout: 240 seconds]
agrinb has joined #ruby
codabrink has quit [Read error: No route to host]
pvb has quit [Ping timeout: 240 seconds]
codabrink has joined #ruby
codabrin_ has quit [Read error: No route to host]
toastynerd has joined #ruby
kireevco has joined #ruby
codabrin_ has joined #ruby
djcp has joined #ruby
<MrPopinjay>
This is such a good channel :)
<Edelwin>
:')
codeurge has joined #ruby
<christickner>
I have a mysql dump which appears to have two string encodings in the file - urf-8 and binary data - is there any way to "ignore" the binary data and do a string substitution on the utf-8 portion?
djcp has left #ruby [#ruby]
codabrink has quit [Ping timeout: 244 seconds]
pu22l3r_ has quit [Remote host closed the connection]
bluenemo has joined #ruby
Kricir has joined #ruby
apeiros has joined #ruby
pu22l3r has joined #ruby
<toretore>
binary isn't an encoding
<christickner>
ASCII-8BIT i believe
<toretore>
ascii is compatible with utf8
<lxsameer>
hey guys, i'm looking for a webserver application to create a very simple web application that using sprockets, any suggestion
dc_ has joined #ruby
wallerdev has joined #ruby
<MrPopinjay>
What do you mean?
chipotle has quit [Quit: cya]
codeurge has quit [Ping timeout: 255 seconds]
centrx has joined #ruby
tyfighter has joined #ruby
chrishough has joined #ruby
<apeiros>
aaaah I join and the first problem I hear about are… tadaaa… encodings! :D
<apeiros>
death, taxes and encodings. the unholy three.
<pontiki>
and time zones
<christickner>
toretore: thanks. Is ISO_8859_1 compatible with UTF-8? sorry, I don't know much about encodings. Appreciate the help.
<toretore>
no
<wallerdev>
timezones are encodings for dates
maestrojed has joined #ruby
<pontiki>
++
<toretore>
the first thing you need to do is make sure you know what kind of data you're working with
<christickner>
toretore: yeah, its hard for me to figure that out :/
<lxsameer>
MrPopinjay: something like rack
<toretore>
christickner: gist the data?
GriffinHeart has joined #ruby
<pontiki>
i had this data file once, where each line could have been in utf-8 or 8859 or 'unknown'
<apeiros>
christickner: define "compatible". compatible in the sense as ascii it is not. but iso-8859-1 characters are a subset of utf-8 characters. so all of iso-8859-1 can be transcoded to utf-8
tcstar has quit [Ping timeout: 264 seconds]
<apeiros>
the other way round can be possible, but is not always since utf-8 has a far larger set of characters.
thumpba has quit [Read error: Connection reset by peer]
thumpba has joined #ruby
chipotle has joined #ruby
<toretore>
MOARL OF THE STOYR IS ALWAYS US UTF 8!!!!!
<apeiros>
indeed.
<apeiros>
and hit everybody who still uses a non-unicode encoding with a big bat or club.
cocotton_ has joined #ruby
dc__ has joined #ruby
Mongey has quit [Ping timeout: 240 seconds]
thumpba has quit [Client Quit]
<wallerdev>
hm i just didscovered on mac os x
<jhass>
or a big pile of charset specifications
<wallerdev>
if you move your cursor to the bottom of an app to resize it
PPH has joined #ruby
<wallerdev>
and move your cursor to the right and left instead of down and up
gondalier has joined #ruby
<wallerdev>
it lets you move the app around
<PPH>
Hi
<christickner>
toretore: its client data but I'll get a small sample. there are two encodings in this file. FWIW its a mysql dump file, it contains data from binary columns and lots of other "normal" looking data.
<MrPopinjay>
Thanks for the help gang
mikesplain has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
<apeiros>
wallerdev: works on all sides
<MrPopinjay>
I'm gunna play xcom, as it's out for Linux today!
<toretore>
Tore 13:37: And thou shalt not use writing systems apart from UTF-8, or thou shalt be punished by death.
<MrPopinjay>
Woop
<MrPopinjay>
Night!
<apeiros>
left/right you move up/down
MrPopinjay has left #ruby ["WeeChat 0.3.8"]
Kricir has quit [Remote host closed the connection]
* apeiros
continues writing his own game - fleet management is up :D
<wallerdev>
yeah
<wallerdev>
crazy stuff
<toretore>
christickner: why aren't you loading it into mysql and then exporting it?
thumpba has joined #ruby
sailias has quit [Quit: Leaving.]
<jhass>
whoo, os x lets you move windows! it's so shiny!
GriffinHeart has quit [Ping timeout: 244 seconds]
<toretore>
windows is a shitty metaphor
<toretore>
i hate them
dc_ has quit [Ping timeout: 264 seconds]
lemur has joined #ruby
<wallerdev>
i doubt windows lets you do that
codabrin_ has quit [Ping timeout: 240 seconds]
rbartos has joined #ruby
<wallerdev>
its just one more thing mac does better than windows, thanks to steve jobs himself
<PPH>
Anyone know a good alternative to middleman?
cocotton has quit [Ping timeout: 255 seconds]
<Sigma00>
middlemen just increase costs to end users man. Go direct. Expand vertically
<apeiros>
wallerdev: well, they didn't want to allow resizing of windows from the window sides for ages
dgaffney_ has joined #ruby
robbyoconnor has quit [Excess Flood]
<apeiros>
I think that only came with 10.6 or so
<wallerdev>
i know
jtiggo has joined #ruby
revoohc has quit [Quit: revoohc]
<wallerdev>
but now we get the best of both worlds
robbyoconnor has joined #ruby
<toretore>
you have to use that little thing that always covers up what's in the corner
<PPH>
Sigma00: was that sarcasm?:P
cocotton_ has quit [Ping timeout: 240 seconds]
<apeiros>
that said, I found that to be a backstep in osx from os9 - os9 had big borders making grabbing and moving easy. osx had no borders at start :-/
<christickner>
toretore: basically because I am not very experienced in ruby. and I just wanted this to work, but its driving me insane.. this is a capistrano thing that is going to do a find/replace on an entire db dump before moving between servers. its very ugly, I know.
Zenigor has quit [Remote host closed the connection]
<wallerdev>
borders take up space you can use for the ccontent
<toretore>
haha lol
teddyp1cker has quit [Remote host closed the connection]
<toretore>
christickner: what is it the cap thing is doing to the data then?
<PPH>
I only want to do html and css with sass and compass, I can start my projects with compass but there's no web servers comming with it.
leslie has joined #ruby
<christickner>
toretore: replacing say "google.com" with "hotmail.com"
<christickner>
can be anywhere in the db
<toretore>
and what is it that makes it not work?
<christickner>
gsub! throws "ArgumentError: invalid byte sequence in UTF-8"
<christickner>
on the mysqldump
<toretore>
how are you reading in the dump?
<toretore>
code?
kirun has quit [Remote host closed the connection]
dgaffney has quit [Ping timeout: 245 seconds]
<apeiros>
and what encoding is the dump supposed to have?
Mongey has joined #ruby
dc_ has joined #ruby
<christickner>
I put "--default-character-set=utf8" in the dump
<christickner>
File.read('dump.sql') toretore
<apeiros>
you created it with mysqldump ?
<christickner>
yes
<toretore>
mysql and charsets don't go well together ime
agrinb has quit [Remote host closed the connection]
<toretore>
christickner: can you gist the whole thing?
<toretore>
that's not much to go on
<christickner>
the data?
timonv has quit [Remote host closed the connection]
rgrinberg has quit [Quit: Leaving.]
agrinb has joined #ruby
<toretore>
no, the code
dc__ has quit [Ping timeout: 272 seconds]
<christickner>
hmm, if I stick in a Encoding.default_external = Encoding::ISO_8859_1
rgrinberg has joined #ruby
<christickner>
and for internal, it seems to work...
<christickner>
but I am scared and nervous lol
chrishough has quit [Quit: chrishough]
chrishough has joined #ruby
seanosaur has quit [Remote host closed the connection]
Ankhers has quit [Remote host closed the connection]
ixti has quit [Ping timeout: 240 seconds]
rgrinberg has quit [Client Quit]
Zamerick has quit [Quit: Leaving]
bmurt has quit []
sigurding has joined #ruby
chrishough has quit [Client Quit]
agrinb has quit [Ping timeout: 272 seconds]
shvelo has quit [Ping timeout: 244 seconds]
ndrei has joined #ruby
gondalier has quit []
teddyp1cker has joined #ruby
cobakobodob has quit [Read error: Connection reset by peer]
mmoretti has quit [Quit: Leaving...]
mark_locklear has quit [Ping timeout: 244 seconds]
F__i__L has quit [Remote host closed the connection]
rgrinberg has joined #ruby
chrishough has joined #ruby
stantona has quit [Remote host closed the connection]
Spami has quit [Quit: This computer has gone to sleep]
dc_ has quit [Ping timeout: 264 seconds]
Spami has joined #ruby
kenneth has joined #ruby
chrishough has quit [Client Quit]
Spami has quit [Remote host closed the connection]
teddyp1cker has quit [Ping timeout: 240 seconds]
aniM has joined #ruby
chrishough has joined #ruby
ws2k3 has quit [Ping timeout: 240 seconds]
jackneill has quit [Read error: Connection reset by peer]
d has joined #ruby
d is now known as Guest93293
ws2k3 has joined #ruby
paulfm has quit []
aniM has quit [Ping timeout: 240 seconds]
<shevy>
hehe
jespada has joined #ruby
shvelo has joined #ruby
rgrinberg has joined #ruby
havenwood has joined #ruby
vpretzel has joined #ruby
SBoolean has quit [Remote host closed the connection]
almostwhitehat has left #ruby [#ruby]
stantona has joined #ruby
aniM has joined #ruby
vpretze__ has joined #ruby
kireevco has quit [Read error: Connection reset by peer]
kireevco has joined #ruby
nanoyak has quit [Quit: Computer has gone to sleep.]
nalone has joined #ruby
noop has quit [Ping timeout: 244 seconds]
workmad3 has quit [Ping timeout: 240 seconds]
blueOxigen has quit [Ping timeout: 245 seconds]
vpretzel_ has quit [Ping timeout: 264 seconds]
nanoyak has joined #ruby
seanosaur has joined #ruby
Kricir has joined #ruby
vpretzel has quit [Ping timeout: 272 seconds]
tier has quit []
pu22l3r has quit [Ping timeout: 244 seconds]
yfeldblum has joined #ruby
Kricir has quit [Ping timeout: 255 seconds]
agrinb has joined #ruby
dblessing has quit [Quit: dblessing]
benlieb has joined #ruby
erikruthven has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
x1337807x has joined #ruby
bdnelson has quit [Ping timeout: 240 seconds]
RandyT has quit [Ping timeout: 272 seconds]
lkb has joined #ruby
mordof_work has joined #ruby
ndrei has quit [Ping timeout: 240 seconds]
<matti>
shevy: ;]
Shidash has quit [Ping timeout: 244 seconds]
obs has joined #ruby
RandyT has joined #ruby
ringarin has joined #ruby
chrishough has quit [Quit: chrishough]
agrinb has quit [Ping timeout: 255 seconds]
chrishough has joined #ruby
Rahul_Roy has joined #ruby
agrinb has joined #ruby
jahkobi has quit [Quit: jahkobi]
stytown has joined #ruby
enape_101 has quit [Ping timeout: 272 seconds]
bluenemo has quit [Quit: Verlassend]
chipotle has quit [Quit: cya]
ta has joined #ruby
mikesplain has joined #ruby
PhilK_ is now known as Philk
Philk is now known as PhilK
alexju has quit [Remote host closed the connection]
centrx has quit [Quit: Mission accomplished. Ready for self-termination.]
<futuredale>
howdy. If I'm load-ing a previous loaded class definition, is there anyway to reset the mixin cache?
terrellt has quit [Remote host closed the connection]
alexju has joined #ruby
terrellt has joined #ruby
charliesome has joined #ruby
<futuredale>
I'm playing around in vim with a shortcut to send `load %file` to a tmux running irb.
charliesome has quit [Client Quit]
codeurge has joined #ruby
jhass is now known as jhass|off
lmickh has quit [Remote host closed the connection]
jonahR_ is now known as jonahR
erikruthven has joined #ruby
erikruthven has quit [Max SendQ exceeded]
Kricir has joined #ruby
RandyT has quit [Ping timeout: 255 seconds]
Nebnev has joined #ruby
jahkobi has joined #ruby
maroloccio has joined #ruby
<apeiros>
futuredale: not with plain ruby
<apeiros>
there are C extensions which allow you to un-include modules and un-extend objects
terrellt has quit [Ping timeout: 240 seconds]
<apeiros>
what you can do with plain ruby is replace the constant. but any instance created with the old class will still be tied to that old class and its mixins.
RandyT has joined #ruby
alexju has quit [Remote host closed the connection]
ringarin has quit [Quit: Leaving]
lemur has quit [Ping timeout: 245 seconds]
<shevy>
:(
terrellt has joined #ruby
<futuredale>
yeah, I guess it's cuz I'm not redefining, but really just monkey patching the class I already defined.
NukePuppy has quit [Ping timeout: 240 seconds]
<futuredale>
hrm
paf0 has joined #ruby
aniM has quit [Ping timeout: 255 seconds]
charliesome has joined #ruby
thisirs has quit [Read error: Connection reset by peer]
djbkd has quit [Read error: Connection reset by peer]
Morkel has quit [Quit: Morkel]
terrellt has quit [Ping timeout: 255 seconds]
failshel_ has joined #ruby
enape_101 has joined #ruby
heftig has quit [Ping timeout: 264 seconds]
Kricir has quit [Remote host closed the connection]
Kricir has joined #ruby
djbkd has joined #ruby
heftig has joined #ruby
jonahR_ has joined #ruby
jxf has quit [Ping timeout: 240 seconds]
Gil has joined #ruby
mradmacher has quit [Ping timeout: 264 seconds]
failshell has quit [Ping timeout: 240 seconds]
djbkd has quit [Remote host closed the connection]
jprovazn_afk has quit [Quit: Odcházím]
djbkd has joined #ruby
seanosaur has quit [Remote host closed the connection]
failshel_ has quit [Ping timeout: 245 seconds]
___mb has quit [Ping timeout: 246 seconds]
jonahR has quit [Ping timeout: 240 seconds]
lewix has quit [Ping timeout: 240 seconds]
shvelo has quit [Ping timeout: 255 seconds]
dangerou_ has quit [Ping timeout: 272 seconds]
gondalier has quit []
gondalier has joined #ruby
gondalier has quit [Client Quit]
djbkd has quit [Remote host closed the connection]
MatthewsFace has joined #ruby
ikilledthecat has quit [Quit: WeeChat 0.4.3]
spider-mario has quit [Remote host closed the connection]
orionstein is now known as orionstein_away
frem has left #ruby ["WeeChat 0.4.3"]
ascarter has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
charliesome has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
Notte has quit [Remote host closed the connection]
pacMakaveli has quit [Remote host closed the connection]
treehug88 has quit [Ping timeout: 264 seconds]
lw has quit [Quit: s]
havenwood has quit [Remote host closed the connection]
cpruitt has joined #ruby
doodlehaus has quit [Remote host closed the connection]
jerius has quit [Ping timeout: 244 seconds]
vpretze__ has quit [Ping timeout: 240 seconds]
stantona has quit [Remote host closed the connection]
vpretzel has joined #ruby
mjsmith2 has quit [Remote host closed the connection]
terrellt has joined #ruby
dapz has joined #ruby
chipotle has joined #ruby
tjr9898 has quit []
rbartos has quit [Remote host closed the connection]
mikesplain has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
Notte has joined #ruby
Squarepy has quit [Quit: Leaving]
benlieb has quit [Quit: benlieb]
Kricir has quit [Remote host closed the connection]
jonahR_ is now known as jonahR
rbartos has joined #ruby
mr_snowf1ake has joined #ruby
Nebnev has quit [Ping timeout: 264 seconds]
toastynerd has quit [Remote host closed the connection]
terrellt has quit [Remote host closed the connection]
djbkd has joined #ruby
terrellt has joined #ruby
asteve has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
heftig has quit [Ping timeout: 264 seconds]
maestrojed has quit [Quit: Computer has gone to sleep.]
toastynerd has joined #ruby
dorei has joined #ruby
dilated_dinosaur has quit [Ping timeout: 252 seconds]
nalone has quit []
scx_ is now known as scx
vifino has quit [Quit: Ze Cat now leaves...]
hobodave has joined #ruby
jonahR has quit [Remote host closed the connection]
agjacome has quit [Quit: leaving]
heftig has joined #ruby
jarto has joined #ruby
<lxsameer>
hey guys how can i activate sprockets in an ERB template which i created manually using ERB.new
hobodave has quit [Client Quit]
kilk_ has quit [Ping timeout: 272 seconds]
cocotton has joined #ruby
mercwithamouth has joined #ruby
aspires has quit []
cocotton has quit [Read error: Connection reset by peer]
maestrojed has joined #ruby
axsuul has joined #ruby
hpoydar has quit [Remote host closed the connection]
hpoydar has joined #ruby
Bumptiou_ has quit []
Notte has quit [Remote host closed the connection]
paf0 has quit [Remote host closed the connection]
Gil has quit [Remote host closed the connection]
sigurding has quit [Quit: sigurding]
nanoyak has quit [Quit: Computer has gone to sleep.]
relix has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
Gil has joined #ruby
ixti has joined #ruby
simoz111117 has joined #ruby
hpoydar has quit [Ping timeout: 255 seconds]
lxsameer has quit [Quit: Leaving]
jobewan has quit [Quit: Leaving]
jtiggo has quit [Remote host closed the connection]
sayem has joined #ruby
nanoyak has joined #ruby
Gil has quit [Ping timeout: 255 seconds]
kilk_ has joined #ruby
riotjone_ has joined #ruby
GriffinHeart has joined #ruby
endash has quit [Quit: endash]
pontiki has quit [Quit: "Poets have been mysteriously silent on the subject of cheese." -- G.K.Chesterson]
geggam has quit [Remote host closed the connection]
<tenseiten>
Uh
<tenseiten>
That's annoying
<tenseiten>
JetBrains seems to have a few problems in their system
rbartos has quit [Remote host closed the connection]
<tenseiten>
If you have the same name as one of their customers, your purchase gets licensed to them instead of you >_>
<tenseiten>
yay common asian names
tenseiten is now known as seitensei
seitensei has quit [Changing host]
seitensei has joined #ruby
<benzrf>
terrellt: wow
freerobby has quit [Quit: Leaving.]
<benzrf>
* ten
<benzrf>
ugh nick switches
riotjones has quit [Ping timeout: 272 seconds]
<seitensei>
Yeah, just got a copy of rubymine
<seitensei>
but the license owner info is wrong >_<
<seitensei>
got assigned to some dev over in Asia (along with his username too, haha)
fold has joined #ruby
<benzrf>
don't use rubymine!
<benzrf>
use vim
<seitensei>
emacs
<benzrf>
or emacs i guess
<seitensei>
lol
<benzrf>
i cant imagine rubymine gives you much
<seitensei>
Nah
<benzrf>
considering how dynamic ruby is
<seitensei>
I do a lot of stuff in IntelliJ and PyCharm as well
<seitensei>
So I welcome the familiar UI/IDE
<seitensei>
My license key still works though, but annoyances heh
GriffinHeart has quit [Ping timeout: 245 seconds]
freerobby has joined #ruby
jxf has joined #ruby
rbartos has joined #ruby
freerobby has quit [Client Quit]
x1337807x has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
stantona has joined #ruby
<momomomomo>
benzrf: that's a silly way to look at things
<momomomomo>
benzrf: it obviously brings benefit to some entrants
centrx has joined #ruby
stantona has quit [Remote host closed the connection]
gondalier has joined #ruby
gondalier has quit [Client Quit]
mijicd has quit [Remote host closed the connection]
Kricir has joined #ruby
centrx has quit [Quit: Mission accomplished. Ready for self-termination.]
heftig has quit [Quit: Quitting]
heftig has joined #ruby
aniM has joined #ruby
parduse has quit [Ping timeout: 255 seconds]
gondalier has joined #ruby
parduse has joined #ruby
banister is now known as banisterfiend
brasten has quit [Ping timeout: 272 seconds]
dapz has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
kilk_ has quit [Ping timeout: 240 seconds]
enebo has quit [Quit: enebo]
brasten has joined #ruby
brasten has quit [Client Quit]
stantona has joined #ruby
lw has joined #ruby
mercwithamouth has quit [Ping timeout: 240 seconds]
seanosaur has joined #ruby
jespada has quit [Quit: Leaving]
yfeldblum has quit [Ping timeout: 260 seconds]
testcore has quit [Ping timeout: 264 seconds]
Hanmac has joined #ruby
mikepack_ has joined #ruby
Hanmac1 has quit [Ping timeout: 240 seconds]
testcore has joined #ruby
chrishough has quit [Quit: chrishough]
nfk has quit [Remote host closed the connection]
nfk has joined #ruby
jonahR has joined #ruby
mikepack has quit [Ping timeout: 244 seconds]
seanosaur has quit [Remote host closed the connection]
axsuul_ has joined #ruby
axsuul has quit [Read error: Connection reset by peer]
lw_ has joined #ruby
mikepack_ has quit [Ping timeout: 240 seconds]
<shevy>
benzrf perhaps it's a good editor
ascarter has joined #ruby
dapz has joined #ruby
Kricir has quit [Ping timeout: 244 seconds]
brian___ has joined #ruby
christickner has quit [Quit: christickner]
zigomir has quit [Remote host closed the connection]
lw has quit [Ping timeout: 272 seconds]
teddyp1cker has joined #ruby
zigomir has joined #ruby
stantona has quit [Remote host closed the connection]
stantona has joined #ruby
ephemerian has quit [Ping timeout: 255 seconds]
hpoydar has joined #ruby
aniM has quit [Ping timeout: 264 seconds]
chrishough has joined #ruby
lw has joined #ruby
hpoydar has quit [Read error: Connection reset by peer]
hamakn has joined #ruby
hpoydar has joined #ruby
teddyp1cker has quit [Ping timeout: 240 seconds]
<benzrf>
shevy: dont be absurd
zigomir has quit [Ping timeout: 255 seconds]
<shevy>
I wouldn't know
<shevy>
I use bluefish 1.0.7
lw_ has quit [Ping timeout: 244 seconds]
lw has quit [Client Quit]
hamakn has quit [Remote host closed the connection]
hamakn has joined #ruby
gondalier has quit []
beneggett has quit [Ping timeout: 244 seconds]
kenndel has joined #ruby
beneggett has joined #ruby
gondalier has joined #ruby
cpruitt has quit [Quit: cpruitt]
linojon has quit [Quit: linojon]
fresham has left #ruby [#ruby]
heftig has quit [Quit: Quitting]
elricsfate has joined #ruby
<elricsfate>
Greetings everyone
<elricsfate>
I'm attempting to list remote gems but it seems to never output anything beyond ***REMOTE GEMS***
<elricsfate>
Command in question is "gem list puppet-lint --remote --all
<elricsfate>
"
<elricsfate>
Jeeze
<elricsfate>
Finally did it but it takes forever. anyway to speed that up?
<Nilium>
It's remote, so probably not?
<shevy>
hehe
enebo has joined #ruby
<Nilium>
Barring patches to rubygems, anyway.
<elricsfate>
Nilium, I don't imagine why it would take anywhere near this long to send my request, search for it, and send the results back.
<elricsfate>
*I can't imagine
<shevy>
perhaps it is purposely slowing down because it does not like you
djbkd has quit [Remote host closed the connection]
<Nilium>
I can imagine reasons why but they all revolve around it being old software that's probably not really that great
hermanmunster has quit [Remote host closed the connection]
<elricsfate>
Nilium, ruby?
<Nilium>
No, rubygems.
<elricsfate>
Ah
<Nilium>
Would be sort of funny if every gem query went through sqlite.
hermanmunster has joined #ruby
Boohbah has quit [Remote host closed the connection]
Boohbah has joined #ruby
<shevy>
for more speed?
nesoi has left #ruby ["I'm a happy Miranda IM user! Get it here: http://miranda-im.org"]
SilverKey has joined #ruby
aspires has joined #ruby
Nahra has quit [Remote host closed the connection]
<elricsfate>
shevy, He probably meant mongodb since mongodb is webscale.
<shevy>
maletor hmm perhaps it becomes a new object. I think the original frozen object can not be unfrozen
<apeiros>
maletor: the effect is mostly the same, but no, they're not the same.
Rahul_Roy has quit [Quit: Connection closed for inactivity]
<shevy>
what is .freeze really good for?
<apeiros>
maletor: one difference being that .dup invokes #initialize_copy. String#+ does not. shouldn't ever matter as you'd have to define one in the first place.
<apeiros>
shevy: handhold devs
<shevy>
hmm
<shevy>
aaah
<apeiros>
prevent from accidental change of objects which should not be changed
<shevy>
lol I actually read handheld devs
lw has quit [Read error: Connection reset by peer]
lw has joined #ruby
AlSquire has quit [Quit: This computer has gone to sleep]
<apeiros>
future implementations of ruby might also use it as an information to optimize (future because afaik no current implementation does)
dik_dak has quit [Quit: Leaving]
benzrf is now known as benzrf|offline
terrellt has quit [Remote host closed the connection]
terrellt has joined #ruby
djbkd has quit [Remote host closed the connection]
andrewlio has quit [Quit: Leaving.]
yfeldblum has joined #ruby
djbkd has joined #ruby
datafirm has joined #ruby
dapz has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
hermanmunster has joined #ruby
terrellt has quit [Ping timeout: 264 seconds]
stytown has quit [Quit: stytown]
andrewjanssen has joined #ruby
lewix has joined #ruby
elaptics is now known as elaptics`away
gondalier has quit []
Kricir has joined #ruby
ascarter has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
terrellt has joined #ruby
benlieb_ has joined #ruby
gondalier has joined #ruby
gondalier has quit [Client Quit]
Kricir_ has joined #ruby
Kricir has quit [Ping timeout: 240 seconds]
ascarter has joined #ruby
lw has quit [Quit: s]
benlieb has quit [Ping timeout: 264 seconds]
snath has quit [Ping timeout: 264 seconds]
benlieb_ is now known as benlieb
nowthatsamatt has quit [Quit: nowthatsamatt]
SCHAAP137 has quit [Remote host closed the connection]