threesixes has quit [Remote host closed the connection]
<jimmyhoughjr>
and not port 80 or something
<rubie>
thank you havenwood
thagomizer has quit [Quit: Leaving.]
wd413 has joined #ruby
<havenwood>
no prob, but alas i can't eat code examples
* havenwood
wanders off to forage
<rubie>
one day i'll send you a pizza
<havenwood>
i'll disable tor if pizza is involved
<rubie>
hahh
fenicks has quit [Remote host closed the connection]
GriffinHeart has joined #ruby
thomasxie has quit [Ping timeout: 260 seconds]
jasooon has quit [Ping timeout: 260 seconds]
threesixes has joined #ruby
yfeldblum has joined #ruby
sevvie_ has quit [Ping timeout: 246 seconds]
<wd413>
Hello #ruby Im here to ask for help with Rails, rvm and me not being so bright. My Zshell is giving me this error when I try to run a ruby file /Users/joe/.rvm/rubies/ruby-2.1.3/lib/ruby/2.1.0/rubygems/core_ext/kernel_require.rb:55:in `require': cannot load such file -- rest-client (LoadError)
<wd413>
from /Users/joe/.rvm/rubies/ruby-2.1.3/lib/ruby/2.1.0/rubygems/core_ext/kernel_require.rb:55:in `require'
<wd413>
from rest_requestor.rb:1:in `<main>'
fabrice31 has joined #ruby
one_egg_each has joined #ruby
michaeldeol has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
<havenwood>
wd413: RestClient is a gem. RVM's channel is #rvm and Rails' is #rubyonrails.
HelperW___ has joined #ruby
hackeron has quit [Ping timeout: 240 seconds]
yetanoth1rdave has joined #ruby
<rubie>
anyone know a really light resource requiring IDE...i really like Aptana Studio 3 but it crashes all the time and has way more features than i need
<havenwood>
wd413: gem install rest-client
<havenwood>
wd413: if you're using an app with a Gemfile, prefix `bundle exec` to your command
<wd413>
Ty Havenwood brb
<havenwood>
after a: bundle install
hackeron has joined #ruby
justinmburrous has quit [Remote host closed the connection]
<havenwood>
rubie: a bit more on the text editor side but loads slow enough i'll call it an IDE :P https://atom.io/
bmurt has joined #ruby
<havenwood>
rubie: OS?
b00stfr3ak has joined #ruby
<rubie>
mac
<rubie>
10.9.5
<rubie>
can you run projects inside, without using console
<havenwood>
rubie: Atom and TextMate 2 are open source and nice.
<havenwood>
rubie: Yes.
<rubie>
ok cool i'll give it a try, thx
<havenwood>
rubie: TM2 is faster and more stable but Atom has a lot of dev going on and a neat plugin system.
fabrice31 has quit [Ping timeout: 260 seconds]
xcv has joined #ruby
jcdesimp has quit [Remote host closed the connection]
<wd413>
havenwood it worked :D :D not sure if I missed installing the gem or if the tutorial figured I would know
<Nieralyte>
are there strings in Ruby so i don't have to escape backslashes and stuff still retaining variable interpolation? e.g. to make this look prettier: `path1 = 'C:\Users\JohnDoe'; puts("#{path1}\\AppData\\Local\\Temp")`
<rubie>
what are you studyig?
havenwood has quit []
KC9YDN has joined #ruby
coderdad has joined #ruby
kobain has joined #ruby
<tmoore>
Nieralyte: for that specific case I would suggest puts(path1 + '\AppData\Local\Temp')
<Nieralyte>
oh
<Nieralyte>
for some reason a thought addition doesn't work as concat
kobain has quit [Max SendQ exceeded]
<tmoore>
Also consider using File.join for something platform-independent
kobain has joined #ruby
Channel6 has joined #ruby
spicerack has joined #ruby
<Nieralyte>
of course. file example was just an example
<tmoore>
I'm pretty sure the direct answer to your question isn o
<tmoore>
is no... but concat always works
isthisreallife has quit [Ping timeout: 272 seconds]
<Nieralyte>
there's also "#{path1}#{'\AppData\Local\Temp'}" but still :)
jottr has quit [Ping timeout: 246 seconds]
ghr has joined #ruby
<oetjenj>
in that case i'd assign the second part to a veriable (i.e. path2) and do "#{path1}#{path2}", or path1 + path2 even
robustus|Off has quit [Ping timeout: 250 seconds]
<Nieralyte>
yep
<tmoore>
Nieralyte: you can also put string literals next to each other and the parser concats them together: "#{path1}" '\AppData\Local\Temp'
<tmoore>
>> "#{path1}" '\AppData\Local\Temp'
<eval-in_>
tmoore => undefined local variable or method `path1' for main:Object (NameError) ... (https://eval.in/201736)
<oetjenj>
but for the original questions you either have interpolated strings or not... not half-interpolated strings... afaik
tylersmith has quit [Remote host closed the connection]
emmesswhy has quit [Quit: Leaving]
russt has joined #ruby
sdwrage has quit [Ping timeout: 258 seconds]
jcdesim__ has quit [Remote host closed the connection]
phutchins has joined #ruby
livingstn has quit [Ping timeout: 256 seconds]
justinmburrous has quit [Remote host closed the connection]
russt has quit [Quit: russt]
abdulsattar has quit [Ping timeout: 272 seconds]
Hobogrammer has joined #ruby
thumpba has joined #ruby
dc___ has joined #ruby
xcv has quit [Remote host closed the connection]
xcv has joined #ruby
dc__ has quit [Ping timeout: 244 seconds]
justinmburrous has joined #ruby
b00stfr3ak has quit [Ping timeout: 244 seconds]
<kinesis>
/j #Drupal
andll has joined #ruby
Thomas_the_Tank has quit [Quit: Leaving]
bogeyd6 has joined #ruby
SDr has quit [Remote host closed the connection]
xcv_ has joined #ruby
maestrojed has quit [Quit: Computer has gone to sleep.]
xcv has quit [Ping timeout: 250 seconds]
j_mcnally has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
D9 has quit [Read error: Connection reset by peer]
louism2wash has joined #ruby
D9 has joined #ruby
lewix has joined #ruby
<louism2wash>
hey guys, is there any way to continue execution from inside a rescue block?
AtumT has quit [Remote host closed the connection]
mayhew has quit [Quit: WeeChat 0.4.2]
<pipework>
louism2wash: in what way? there's next, and retry
<pipework>
There's also ensure.
lewix has quit [Read error: Connection reset by peer]
HelperW___ has joined #ruby
lewix has joined #ruby
charliesome has quit [Quit: zzz]
jonr2219 has joined #ruby
wallerdev has joined #ruby
monkeypatch has joined #ruby
<louism2wash>
pipework: does next only work when you are rescuing inside of an enumerable?
jasooon has joined #ruby
<pipework>
louism2wash: loops, generally.
<monkeypatch>
#RubyOnRails
<pipework>
There's also continue
GriffinHeart has joined #ruby
charliesome has joined #ruby
<pipework>
wait, I might be thinking of debugging stuff.
<louism2wash>
pipework: yeah, continue and next give me errors
krisquigley has joined #ruby
<louism2wash>
I've been reading about the continuation class but I was wondering if there was a more vainlla way to get that functionality without having to include another class
HelperW___ has quit [Ping timeout: 260 seconds]
<louism2wash>
pipework: also, why wouldn't I cross post? could be different people in different rooms
<pipework>
louism2wash: It's a thing. The polite thing to do is wait to see if the first channel doesn't turn any good clues.
HelperW___ has joined #ruby
<louism2wash>
louism2wash: I had no idea that was a thing
<pipework>
Then you're not wasting the time of people in different channels because they might not know.
<pipework>
s/\./ that you're being helped/
<pipework>
louism2wash: No worries. :)
Kricir has joined #ruby
bobishh has joined #ruby
jonr2219 has quit []
jonr22 has joined #ruby
GriffinHeart has quit [Ping timeout: 272 seconds]
krisquigley has quit [Ping timeout: 245 seconds]
jonr22 has quit [Client Quit]
jonr22 has joined #ruby
xcv_ is now known as thsig
KC9YDN has quit [Quit: In this moment, I am euphoric. Not because of any phony god’s blessing. But because, I am enlightened by my intelligence.]
thsig has quit []
thsig has joined #ruby
jonr22 has quit [Client Quit]
jonr22 has joined #ruby
HelperW___ has quit [Ping timeout: 260 seconds]
jaygen has joined #ruby
j_mcnally has joined #ruby
tectonic has joined #ruby
rimenes has joined #ruby
bobishh has quit [Ping timeout: 260 seconds]
thsig has quit [Client Quit]
thsig has joined #ruby
KC9YDN has joined #ruby
jaygen has quit [Remote host closed the connection]
jaygen has joined #ruby
rubyonrailed has joined #ruby
justinmburrous has quit [Remote host closed the connection]
aspires has joined #ruby
rezzack has quit [Ping timeout: 258 seconds]
spastorino has quit [Quit: Connection closed for inactivity]
mengu has joined #ruby
jimmyhoughjr has quit [Quit: My Mac Mini has gone to sleep. ZZZzzz…]
emocakes has joined #ruby
startupality has joined #ruby
justinmburrous has joined #ruby
deric_skibotn has joined #ruby
emmesswhy has joined #ruby
aspires has quit [Ping timeout: 260 seconds]
dante_ has joined #ruby
bricker`work has quit [Ping timeout: 272 seconds]
coderdad has joined #ruby
coderdad has quit [Remote host closed the connection]
emocakes__ has quit [Ping timeout: 258 seconds]
oleo__ is now known as oleo
ghr has joined #ruby
mengu has quit [Ping timeout: 260 seconds]
davispuh has quit [Ping timeout: 272 seconds]
b00stfr3ak has joined #ruby
yetanotherdave has quit [Ping timeout: 250 seconds]
yetanoth1rdave has quit [Ping timeout: 260 seconds]
jimmyhoughjr has joined #ruby
<one_egg_each>
does anyone have good recommendations for Vagrant boxes to develop a Rails app on?
ghr has quit [Ping timeout: 260 seconds]
mleone has joined #ruby
rubyonrailed has quit [Remote host closed the connection]
startupality has quit [Quit: startupality]
dante_ has quit [Remote host closed the connection]
<wang>
one that is as close as possible to your production environment
mleone has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
x1337807x has joined #ruby
x1337807x has quit [Max SendQ exceeded]
rubyonrailed has joined #ruby
sdwrage has joined #ruby
tyll_ has joined #ruby
emmesswhy has quit [Quit: This computer has gone to sleep]
x1337807x has joined #ruby
x1337807x has quit [Max SendQ exceeded]
x1337807x has joined #ruby
tyll has quit [Ping timeout: 245 seconds]
jonr22 has quit [Remote host closed the connection]
nettoweb has joined #ruby
nettoweb has quit [Max SendQ exceeded]
nettoweb has joined #ruby
nettoweb has quit [Max SendQ exceeded]
nettoweb has joined #ruby
b00stfr3ak has quit [Ping timeout: 260 seconds]
fabrice31 has joined #ruby
b00stfr3ak has joined #ruby
GidorahFedora has quit []
mattyohe has joined #ruby
larissa has joined #ruby
agjacome_ has quit [Quit: leaving]
phutchins has quit [Ping timeout: 272 seconds]
fabrice31 has quit [Ping timeout: 244 seconds]
x1337807x has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
rubyonrailed has quit [Remote host closed the connection]
justinmburrous has quit [Remote host closed the connection]
drawingthesun has joined #ruby
jcdesimp has joined #ruby
spacemud has quit [Ping timeout: 250 seconds]
GriffinHeart has joined #ruby
dx7 has joined #ruby
drawingthesun has quit [Max SendQ exceeded]
b00stfr3ak has quit [Ping timeout: 250 seconds]
drawingthesun has joined #ruby
rubyonrailed has joined #ruby
HelperW___ has joined #ruby
arescorpio has joined #ruby
radic has joined #ruby
b00stfr3ak has joined #ruby
GriffinHeart has quit [Ping timeout: 258 seconds]
Nieralyte has quit [Quit: Nieralyte]
jasooon has quit [Ping timeout: 272 seconds]
spacemud has joined #ruby
radic- has quit [Ping timeout: 246 seconds]
HelperW___ has quit [Ping timeout: 260 seconds]
HelperW___ has joined #ruby
xenomorph is now known as {xenomorph}
{xenomorph} is now known as xenomorph
larissa has quit [Quit: Leaving]
rubyonrailed has quit []
bobishh has joined #ruby
b00stfr3ak has quit [Ping timeout: 250 seconds]
emmesswhy has joined #ruby
HelperW___ has quit [Ping timeout: 250 seconds]
wjimenez5271 has quit [Remote host closed the connection]
nb_bez___ has quit [Quit: Connection closed for inactivity]
wjimenez5271 has joined #ruby
arup_r has joined #ruby
Spleeze has quit [Ping timeout: 245 seconds]
deric_skibotn has quit [Ping timeout: 272 seconds]
justinmburrous has joined #ruby
bobishh has quit [Ping timeout: 240 seconds]
jle` has joined #ruby
maletor_ has joined #ruby
Hien has joined #ruby
wjimenez5271 has quit [Ping timeout: 272 seconds]
phao has quit [Quit: Leaving]
jle` has quit [Read error: Connection reset by peer]
phao has joined #ruby
Spleeze has joined #ruby
jasooon has joined #ruby
Alina-malina has quit [Read error: Connection reset by peer]
icebourg has joined #ruby
apeiros_ has joined #ruby
Alina-malina has joined #ruby
<arup_r>
Any one out there using zsh in SUSE ?
pwh_ has joined #ruby
bbloom has joined #ruby
aleatorik has joined #ruby
jle` has joined #ruby
nettoweb has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
<shevy>
emacs is more of a religious OS than anything else
<arup_r>
Ohh! Textmate.. I am sure
<shevy>
I use linux not osx
<arup_r>
Ok.. osx is costly.. I know.. I use SUSE
geggam has quit [Ping timeout: 258 seconds]
HelperW___ has quit [Ping timeout: 260 seconds]
HelperW___ has joined #ruby
tomeara_ has quit [Ping timeout: 260 seconds]
JoshGlzBrk has joined #ruby
fgo has joined #ruby
<shevy>
real men build software from source
<shevy>
using ruby
geggam has joined #ruby
<jxf>
shevy: "emacs is a great operating system. If only it had a decent text editor."
bobishh has joined #ruby
<shevy>
oh I would never go as far as state that emacs is great
HelperW___ has quit [Ping timeout: 258 seconds]
ProLoser has joined #ruby
<ProLoser>
hallo
<shevy>
oh man :(
<shevy>
rewriting always takes longer than planned
<ProLoser>
I'm trying to use someone else's project, but when I visit the server i just get 'cant load webpage'
<shevy>
now it looks as if I won't even finish with it this weekend
emocakes__ has joined #ruby
<ProLoser>
are there logs or something i can check somewhere for like 500 errors or ways i can figure out why i'm not getting any response
wjimenez5271 has joined #ruby
<jxf>
ProLoser: not sure this is a good place to get help with that -- is this a Ruby project?
spicerack has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
<ProLoser>
yes
<jxf>
you'd probably have better luck contacting the person whose project it is
<jxf>
(since "I can't load a webpage" isn't something that's easy to help with and could be any one of many different problems)
bobishh has quit [Ping timeout: 250 seconds]
<ProLoser>
I have been talking to them too just trying to do side research
<jxf>
ProLoser: what web framework is the project using?
<ProLoser>
we're using postgres and the server logs a bunch of errors like:
<jxf>
Rails, Sinatra, etc.?
emocakes has quit [Ping timeout: 272 seconds]
<ProLoser>
ERROR: relation "models" does not exist at character 15
<ProLoser>
STATEMENT: SELECT * FROM "models" LIMIT 1
<ProLoser>
and rails
<jxf>
so far I'm not actually sure what your Ruby-specific question is
<jxf>
ah -- so, the Rails channel is #rubyonrails (also here on freenode)
<jxf>
the default for recent-ish versions of Rails is to log to a file at log/<environment>.log, where <environment> is the name of the environment identifier that the app is running in
<jxf>
e.g. log/production.log
wjimenez5271 has quit [Ping timeout: 246 seconds]
<jxf>
just off the cuff, it sounds like you didn't run a database migration or something to that effect
shellox has joined #ruby
<shellox>
hi, has anyone experience with nokogiri for web scraping here?
<jxf>
shellox: ask the question and maybe someone can help! :)
<ProLoser>
the migration threw nearly identical errors
<ProLoser>
but otherwise i believe migration succeeded
<jxf>
ProLoser: well... if it threw errors then it didn't succeed :)
<ProLoser>
how can i figure out (to confirm) what framework this is using
<jxf>
ProLoser: there should be a Gemfile in the project's root
<jxf>
check and see if it says "rails" in the Gemfile
<shellox>
i try to get the pronunciation from here, but I'm unsure how to access it the best way using nokogiri
yetanoth1rdave has quit [Ping timeout: 260 seconds]
yetanotherdave has quit [Ping timeout: 246 seconds]
spastorino has joined #ruby
kobain has joined #ruby
kobain has quit [Max SendQ exceeded]
charliesome has quit [Quit: zzz]
dc__ has joined #ruby
alvaro_o has quit [Quit: Ex-Chat]
jbueza has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
MasterPiece has joined #ruby
HelperW___ has joined #ruby
icebourg has joined #ruby
b1nd has quit [Ping timeout: 260 seconds]
icebourg has quit [Max SendQ exceeded]
b1nd has joined #ruby
bluehavana has quit [Quit: Connection closed for inactivity]
icebourg has joined #ruby
tomeara_ has joined #ruby
charliesome has joined #ruby
armyriad has quit [Ping timeout: 245 seconds]
iajrz has joined #ruby
b1nd has quit [Max SendQ exceeded]
b1nd has joined #ruby
<iajrz>
there's a guide somewhere about how to ask programming questions... it includes that the question must have a short snippet of code exhibiting the issue, among other things
<iajrz>
anyone remembers what it is?
armyriad has joined #ruby
<iajrz>
I think I saw someone here mention it.
HelperW___ has quit [Ping timeout: 260 seconds]
emmesswhy has joined #ruby
emmesswhy has quit [Remote host closed the connection]
<iajrz>
nvm, sscce is the thing. http://sscce.org/ in case anyone wonders.
iajrz has quit [Client Quit]
kobain has joined #ruby
HelperW___ has joined #ruby
kobain has quit [Max SendQ exceeded]
tomeara_ has quit [Ping timeout: 245 seconds]
kobain has joined #ruby
spicerack has joined #ruby
Mia has joined #ruby
HelperW___ has quit [Ping timeout: 245 seconds]
GriffinHeart has joined #ruby
bobishh has joined #ruby
armyriad has quit [Ping timeout: 260 seconds]
armyriad has joined #ruby
one_egg_each has left #ruby [#ruby]
russt has joined #ruby
bobishh has quit [Ping timeout: 260 seconds]
rkalfane has joined #ruby
GriffinHeart has quit [Ping timeout: 245 seconds]
nonmadden has quit [Remote host closed the connection]
emmesswhy has joined #ruby
aquatty has quit [Ping timeout: 246 seconds]
aquatty has joined #ruby
aspires has joined #ruby
jasooon has quit [Ping timeout: 258 seconds]
wchun has joined #ruby
russt has quit [Quit: russt]
phutchins has joined #ruby
russt has joined #ruby
phao has quit [Ping timeout: 258 seconds]
freezey has joined #ruby
emmesswhy has quit [Quit: This computer has gone to sleep]
lewix has quit [Remote host closed the connection]
tig has quit [Changing host]
tig has joined #ruby
emocakes has joined #ruby
emocakes__ has quit [Ping timeout: 260 seconds]
tig has quit [Quit: leaving]
yetanotherdave has joined #ruby
bluehavana has joined #ruby
yetanoth1rdave has joined #ruby
rkalfane has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
aleatorik has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
krisquigley has joined #ruby
GriffinHeart has joined #ruby
jimmyhoughjr has quit [Quit: My Mac Mini has gone to sleep. ZZZzzz…]
russt has quit [Quit: russt]
kobain has joined #ruby
b1nd has quit [Ping timeout: 245 seconds]
russt has joined #ruby
<Mia>
anyone used cinch before?
jontmorehouse has quit [Ping timeout: 272 seconds]
kobain has quit [Max SendQ exceeded]
jontmorehouse has joined #ruby
kobain has joined #ruby
kobain has quit [Max SendQ exceeded]
lewix has joined #ruby
lewix has quit [Changing host]
lewix has joined #ruby
kobain has joined #ruby
Spami has joined #ruby
aspires has quit []
GriffinHeart has quit [Ping timeout: 260 seconds]
krisquigley has quit [Ping timeout: 272 seconds]
aspires has joined #ruby
<pontiki>
i was just playing with it the other day
Wolland has joined #ruby
veek has joined #ruby
gkra has quit [Ping timeout: 260 seconds]
chrishough has joined #ruby
jimmyhoughjr has joined #ruby
nettoweb has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
b1nd has joined #ruby
dcarmich has joined #ruby
emocakes__ has joined #ruby
emocakes has quit [Ping timeout: 260 seconds]
hiyosi has quit [Ping timeout: 244 seconds]
cerberblue has joined #ruby
gkra has joined #ruby
<veek>
could some take a look at this:http://decal.sdf.org/spotfedsonline/uncloakirc-freenode-atheme.txt and try to make sense of it
<veek>
line 204 onwards
ARCADIVS has joined #ruby
HelperW___ has joined #ruby
jimmyhoughjr has quit [Quit: My Mac Mini has gone to sleep. ZZZzzz…]
freerobby has joined #ruby
tomeara_ has joined #ruby
danijoo has quit [Read error: Connection reset by peer]
danijoo has joined #ruby
HelperW___ has quit [Ping timeout: 272 seconds]
veek has left #ruby ["Leaving"]
jcdesimp_ has joined #ruby
HelperW___ has joined #ruby
Anarch_ is now known as Anarch
jimmyhoughjr has joined #ruby
froggy_ has joined #ruby
tomeara_ has quit [Ping timeout: 260 seconds]
jcdesimp_ has quit [Remote host closed the connection]
omosoj has quit [Quit: leaving]
lxsameer has joined #ruby
lxsameer has joined #ruby
jcdesimp has quit [Ping timeout: 272 seconds]
tlarevo has joined #ruby
HelperW___ has quit [Ping timeout: 260 seconds]
froggy__ has quit [Ping timeout: 244 seconds]
bobishh has joined #ruby
hellangel7 has joined #ruby
dawkirst has joined #ruby
hiyosi has joined #ruby
jontmorehouse has quit [Ping timeout: 260 seconds]
bobishh has quit [Ping timeout: 240 seconds]
JBreit has joined #ruby
aspires has quit []
aspires has joined #ruby
dawkirst has quit [Remote host closed the connection]
JBreit has left #ruby [#ruby]
AlexRussia has joined #ruby
slester has quit [Quit: Quitte]
ProLoser has quit []
russt has quit [Quit: russt]
icebourg has quit []
coderdad has quit [Remote host closed the connection]
veek has joined #ruby
veek has left #ruby [#ruby]
fnordperfect has joined #ruby
fabrice31 has joined #ruby
spicerack has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
ghr has joined #ruby
rs0 has quit [Remote host closed the connection]
emmesswhy has joined #ruby
adrenaline_ has quit [Remote host closed the connection]
spicerack has joined #ruby
dc__ has quit [Remote host closed the connection]
ghr has quit [Ping timeout: 240 seconds]
fabrice31 has quit [Ping timeout: 272 seconds]
mgorbach has quit [Read error: Connection reset by peer]
klaut has joined #ruby
freerobby has quit [Quit: Leaving.]
mgorbach has joined #ruby
coderdad has joined #ruby
Spami has quit [Quit: This computer has gone to sleep]
GriffinHeart has joined #ruby
Takle has joined #ruby
apeiros_ has quit [Read error: Connection reset by peer]
apeiros has joined #ruby
GriffinHeart has quit [Ping timeout: 258 seconds]
yfeldblum has quit [Ping timeout: 260 seconds]
freezey has quit [Remote host closed the connection]
JohnBat26 has joined #ruby
starkhalo has quit [Ping timeout: 260 seconds]
<sanguisdex>
quick gem question mysql or mysql2?
alem0lars has joined #ruby
jasooon has joined #ruby
coderdad has quit [Remote host closed the connection]
jontmorehouse has joined #ruby
<AlexRussia>
sanguisdex: maybe that depend at what version mysql do you have?
<sanguisdex>
AlexRussia: 5.x is generally where I fall on my machines
havenwood has joined #ruby
<AlexRussia>
sanguisdex: no, i mean, maybe one gem specailly for old version mysql, new for other....
pdais has quit [Ping timeout: 245 seconds]
<jxf>
Given an array of numbers in increasing order, I'd like to get the difference between each consecutive pair of numbers. For instance, if I have [4, 6, 12, 23], I want [4 , 2, 6, 11]. (i.e. [4 - 0, 6 - 4, 12 - 6, 23 - 12]).
<wasamasa>
don't forget their fondness for ascii dicks, too
justinmburrous has quit [Ping timeout: 240 seconds]
<crome>
I like this one:
<crome>
# TODO: fuck this shit
<crome>
:DD
jimmyhoughjr has quit [Quit: My Mac Mini has gone to sleep. ZZZzzz…]
andrewlio has joined #ruby
justinmburrous has joined #ruby
pskosinski has quit [Remote host closed the connection]
pskosinski has joined #ruby
fnordperfect has quit [Read error: Connection reset by peer]
fnordperfect has joined #ruby
banister has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<Mon_Ouie>
This line seems to be in most of those: # HACK: fuck this shit - borks all tests that use pl1
govg_ has joined #ruby
<crome>
yeah
mijicd has joined #ruby
lkba has joined #ruby
mijicd has quit [Client Quit]
govg has quit [Killed (wilhelm.freenode.net (Nickname regained by services))]
govg_ is now known as govg
uxp has quit [Ping timeout: 260 seconds]
IrishGringo has quit [Ping timeout: 250 seconds]
bobishh has joined #ruby
blueOxigen has quit [Ping timeout: 260 seconds]
Avahey has quit [Quit: Connection closed for inactivity]
jasooon has joined #ruby
Xeago has joined #ruby
threesixes has quit [Remote host closed the connection]
SCHAAP137 has quit [Remote host closed the connection]
jasooon has quit [Ping timeout: 244 seconds]
Wolland has quit [Remote host closed the connection]
SCHAAP137 has joined #ruby
Wolland has joined #ruby
duncannz has quit [Remote host closed the connection]
Sylario has joined #ruby
bobishh has quit [Ping timeout: 260 seconds]
Hanmac1 has joined #ruby
linduxed_ has quit [Quit: WeeChat 0.4.3]
linduxed has joined #ruby
Wolland has quit [Ping timeout: 250 seconds]
carraroj has quit [Ping timeout: 244 seconds]
Hanmac has quit [Ping timeout: 245 seconds]
tomeara_ has joined #ruby
sinkensabe has joined #ruby
threesixes has joined #ruby
banister has joined #ruby
banister has quit [Max SendQ exceeded]
banister has joined #ruby
banister has quit [Max SendQ exceeded]
alem0lars has quit [Quit: AFK..]
fabrice31 has joined #ruby
banister has joined #ruby
<totimkopf>
Mon_Ouie: http://pastebin.com/n3RJjh1F I got it working with gsub, the only thing I thought was an inconvenience was having to type all those Hungarian characters in a regex class for gsub
<daylight114>
but that is just shovelling in the original array into my new array...
moritzs has joined #ruby
HelperW___ has quit [Ping timeout: 260 seconds]
Guest98341 has quit [Ping timeout: 260 seconds]
startupality has quit [Quit: startupality]
arcsky_ is now known as arcsky
<daylight114>
I've updated that to show the rspec now so it might make more sense
jasooon has quit [Ping timeout: 260 seconds]
oleo has joined #ruby
chiramiso2 has quit [Ping timeout: 272 seconds]
narcan has quit [Quit: -[AppDelegate installMalware]: unrecognized selector sent to instance 0x156109c0]
nfk has joined #ruby
apeiros has joined #ruby
kristofferR has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
VBlizzard has joined #ruby
moritzs has quit [Remote host closed the connection]
krisquigley has joined #ruby
chiramiso2 has joined #ruby
kristofferR has joined #ruby
cherwin has joined #ruby
AFKGeek has joined #ruby
krisquigley has quit [Ping timeout: 244 seconds]
tomeara_ has joined #ruby
ahhMichael has joined #ruby
Deejay has joined #ruby
Deejay has quit [Client Quit]
TieSoul has joined #ruby
gccostabr has quit [Quit: ZZZzzz…]
phao has joined #ruby
justinmburrous has quit [Remote host closed the connection]
tomeara_ has quit [Ping timeout: 246 seconds]
GriffinHeart has joined #ruby
justinmburrous has joined #ruby
coderdad has joined #ruby
<D9>
I know there are several solutions to this online that are much better, but I'm trying to learn ruby by making a word counter from a file. My solution counts the entire line instead of each word, and I don't know how to correct it http://pastebin.com/4hsvTFFz
justinmburrous has quit [Read error: Connection reset by peer]
<D9>
I wouldn't be surprised if the fix is one word/line, but I simply can't figure it out, help is greatly appreciated. thanks
justinmburrous has joined #ruby
Wolland has joined #ruby
Wolland_ has quit [Ping timeout: 240 seconds]
Wolland_ has joined #ruby
sarkis_ has joined #ruby
sandelius has joined #ruby
rkalfane has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
GriffinHeart has quit [Ping timeout: 260 seconds]
cherwin has quit [Read error: Connection reset by peer]
Wolland has quit [Ping timeout: 260 seconds]
Logomachist has joined #ruby
sarkis_ has quit [Ping timeout: 260 seconds]
alem0lars has quit [Quit: AFK..]
<apeiros>
D9: each_line pretty much says that it is per line and not per word
chiramiso3 has joined #ruby
cherwin has joined #ruby
<apeiros>
D9: File.read(path).scan(/\p{Letter}+/) will give you an array of all words in the file identified by `path`
chiramiso2 has quit [Ping timeout: 260 seconds]
moritzs has joined #ruby
chiramiso4 has joined #ruby
<sanguisdex>
how can I close a mysql connection that I created using the sequel?
klmlfl has joined #ruby
klmlfl has quit [Client Quit]
ilhami has joined #ruby
<ilhami>
Hey
benzrf|offline is now known as benzrf
<ilhami>
https://dpaste.de/NVZK I got this problem.. I tried to run "sudo gem install jekyll"
chiramiso3 has quit [Ping timeout: 272 seconds]
<apeiros>
sanguisdex: probably by using disconnect
klmlfl has joined #ruby
rkalfane has joined #ruby
kristofferR has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
HelperW___ has joined #ruby
fnordperfect has quit [Read error: Connection reset by peer]
<D9>
apeiros, I've spent the last 10 minutes trying to incorporate that into my code but I cannot get it to piece together. can you please help me with its usage? thanks
<apeiros>
D9: paste the code of how you tried to incorporate it please
rkalfane has quit [Client Quit]
moritzs has quit [Remote host closed the connection]
<epitron>
(and you're not allowed to reassign them)
<dr_toboggan>
oh, my code's more complicated than that, i just distilled it into the basic problem i was dealing with
<epitron>
let's get dirty
<epitron>
show us the real problem
<rpag>
ruby don't care if you reassign them
b00stfr3ak has quit [Ping timeout: 240 seconds]
<epitron>
rpag: well, it spams you with warnings
<epitron>
you're right.. it's not forbidden
HelperW____ has joined #ruby
<epitron>
it's just gross :)
<rpag>
$VERBOSE = nil and lol to the bank
<rpag>
i agree
<dr_toboggan>
well, i've got a hash table of languages, and each language points to a hash table of translations
<epitron>
i had to do that when i wrote an auto-class-reloader
jasooon has joined #ruby
<epitron>
it would spam the console mercilessly
<epitron>
rails gets around that by undefining everything first (by tracking everything that's created)
<epitron>
it's a goddamn mess
<shevy>
you can shut down the warnings temporarily through $VERBOSE and then restore the original level; it's however annoying to have to do so manually
<rpag>
i thought rails had silence_warnings or sth for that
sepp2k has joined #ruby
<epitron>
dr_toboggan: i haven't had to do language stuff, but there are some pre-existing frameworks for translations/i18n
<epitron>
rails has one built in
<shevy>
the problem with the word constants in ruby is that they are not really constant, you can even dynamically assign them freely through Object.const_set() at runtime
<epitron>
a constant is more of a conceptual separation
<epitron>
like capitalizing class names :)
tessi_zz is now known as tessi
<shevy>
I blame the english classes in Japan for using the word constant
<dr_toboggan>
i'm using ruby's fastcgi module. i just need to spit out some strings for the moment. heh, i was given an excel file with them
<rpag>
it should be called "kinda constant" imho :P
<epitron>
CONSISTENT
<shevy>
"maybe constant"
freezey has joined #ruby
<shevy>
like the iceberg that killed the titanic
<epitron>
constantinople
<shevy>
it looked smaller on the surface
<dr_toboggan>
"probably constant". ooh, or "constant enough for the moment"
<epitron>
(was: istanbul)
<epitron>
no wait
workmad3 has joined #ruby
<shevy>
yeah
<epitron>
(now: istanbul)
<epitron>
dr_toboggan: ruby's philosophy is to let you do what you want, but to suggest that it's a bad idea :)
wallerdev has quit [Quit: wallerdev]
<rpag>
yup, no compile errors in sight
wallerdev has joined #ruby
jimmyhoughjr has quit [Quit: My Mac Mini has gone to sleep. ZZZzzz…]
hilake has joined #ruby
hilake has quit [Changing host]
hilake has joined #ruby
<epitron>
dr_toboggan: you could put 'em in a .yaml file
<epitron>
or just load the CSV directly
<rpag>
thats what rails does
klmlfl_ has joined #ruby
<shevy>
that silence_warnings thingy should really become part of all of ruby (if it has an elegant use, I dunno how you use it in rails)
echevemaster has joined #ruby
<epitron>
csv->yaml translator seems nicer :)
xenomorph is now known as {xenomorph}
{xenomorph} is now known as xenomorph
<dr_toboggan>
epitron: heh, well, the deed's been done. i just want to get this done and get this guy off my back
<rpag>
i dont know if i saw it in rails, it might have been pry for all i remember, but just lets you do stuff like: silence_warnings { FOO = 1; FOO = 2 } without warnings being spewed to $stderr
<epitron>
dr_toboggan: good code helps you as well! :)
jimmyhoughjr has joined #ruby
<epitron>
think of it as learning ruby on someone else's dime
<dr_toboggan>
they're not paying me enough
<epitron>
this enriches you as well
<epitron>
...with knowledge!
<shevy>
rpag ah interesting, so it is a special method simply
timor has joined #ruby
<dr_toboggan>
eh... i'm only using ruby because they're backseat programming and want a language that's more well known
<dr_toboggan>
so i'm easy to replace
<timor>
hi
<epitron>
dr_toboggan: ruby is a good one :)
<epitron>
its philosophy is to maximize programmer happiness
jasooon has quit [Ping timeout: 240 seconds]
<dr_toboggan>
epitron: there are things i like in it. and somethings i don't...
<epitron>
what don't you like so far?
<dr_toboggan>
but i'm eccentric, probably
<dr_toboggan>
syntax is bothering me. i can't trust knowing the proper order things will evaluate in. so i just cover things in parentheses, to make sure i'm not leaving something out
<epitron>
ah, that's just learning curve i think
jasooon has joined #ruby
<epitron>
ruby does what you mean most of the time
ndrei has quit [Ping timeout: 272 seconds]
<epitron>
(which is why its parser is so complicated)
slester has quit [Ping timeout: 250 seconds]
<epitron>
matz is nice
<dr_toboggan>
yeah, but then i spend ten minutes figuring out where i missed up the exceptional times
<benzrf>
and so we are nice
goodenough has joined #ruby
<dr_toboggan>
epitron: that's the impression i'm getting
iamjarvo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
dx7 has quit [Remote host closed the connection]
txdv_ has joined #ruby
<benzrf>
`does what you mean most of the time' is a poor philosophy to base a language around
<benzrf>
dr_toboggan: have you ever tried haskell ( ͡° ͜ʖ ͡°)
<epitron>
hahah
dx7 has joined #ruby
<timor>
Problem: Running "rake test" for my project, it sais "unable to find rake lib". I have tracked it down to the rake dir (.gem/....) not being in $LOAD_PATH, when rake's own testtask is invoked. Other gem's paths are in $LOAD_PATH. Can anyone help me with that?
<dr_toboggan>
benzrf: no, i tried to learn SML/NJ. that was... interesting
<epitron>
haskell: for code that doesn't have to ship
<benzrf>
dr_toboggan: NJ?
<benzrf>
epitron: it certainly does seem like that if you know nothing about it, doesnt it
txdv_ has quit [Client Quit]
<rpag>
shevy, it just does what you said yeah, sets $VERBOSE to nil and resets it to its original value afterwards
<epitron>
haskell: when you want your program to build 500 megs of binaries that are only useful to that program
endash has joined #ruby
dx7 has quit [Ping timeout: 260 seconds]
<epitron>
(that's based off an experience i had with a haskell wiki that took about 3 hours to build :)
<epitron>
it went cabal crazy
<dr_toboggan>
epitron: hey man, space/time tradeoff is totally worth it sometimes
chiramiso4 has joined #ruby
<epitron>
the wiki didn't end up functioning
chiramiso4 is now known as skripnat
<epitron>
some versioning problem with a Date class
<dr_toboggan>
sucks
<epitron>
the date parser was too advanced!
<epitron>
Type Hell
carraroj has joined #ruby
Xeago has quit [Remote host closed the connection]
<epitron>
go has a better space/time tradeoff
<epitron>
compiles fast as hell, but the binaries are gigantic
Pulpie has joined #ruby
froggy_ has quit [Ping timeout: 246 seconds]
Advocation has quit [Quit: Advocation]
tomeara_ has quit [Ping timeout: 260 seconds]
<epitron>
but the binaries are static!
nrsk has joined #ruby
<epitron>
a decent tradeoff there when your goal is to ship code
<epitron>
especially considering how fast networks are, and how much CPU cache we have
IrishGringo has joined #ruby
<Pulpie>
Hey all, I have more of a general web api development question. Should all calls that take user tokens be POST/PUT not GET/DELETE so that the token can be stored in the body?
justinmburrous has quit [Ping timeout: 260 seconds]
slester has quit [Quit: Quitte]
<dr_toboggan>
use them as cookies?
mindlessdemon has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
<Pulpie>
dr_toboggan: this is an api, no cookies.
codeurge has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
<epitron>
HTTP verbs are based on what you're trying to do, not what kind of auth you're doing
<dr_toboggan>
oh, yeah, i'm doing the same thing. pretty much everything's POST
<epitron>
the verb describes the action
sarkis_ has joined #ruby
<epitron>
if you want to get information, you use GET
<epitron>
if you want to send information, you use POST
<epitron>
so, when you login, you use POST to set a cookie
<epitron>
then you use GET to get data
<txdv>
if you want to update information you use UPDATE
tectonic has joined #ruby
<dr_toboggan>
what epitron said
<rpag>
there is no update, just PUT/PATCH
<Pulpie>
epitron: well the issue is that SSL I don't believe actually encrypts the URI Path
aboudreault has quit [Ping timeout: 260 seconds]
<epitron>
SSL does encrypt that
<Pulpie>
so if the token is in the GET path then its open for basically the world to see
<epitron>
TLS
<epitron>
the only thing you know from an SSL connection is that it happend to that IP on port 443
<dr_toboggan>
no? i thought they just opened up a full encrypted connection to the server, and passed all http through that
jottr has quit [Ping timeout: 245 seconds]
<epitron>
dr_toboggan: yep
<dr_toboggan>
what epitron said
seamon has joined #ruby
<epitron>
you don't even know what the vhost is
<Pulpie>
hmm okay
justinmburrous has joined #ruby
<Pulpie>
so whats the different from UPDATE and PUT?
<epitron>
UPDATE doesn't exist, PUT does :)
<rpag>
never heard of UPDATE before
<Pulpie>
oh okay
<Pulpie>
there is also PATCH
jimmyhoughjr has quit [Quit: My Mac Mini has gone to sleep. ZZZzzz…]
<epitron>
yepp
grzywacz has joined #ruby
<Pulpie>
but I am not sure what that actually is for either.
<epitron>
this is more for your own api's sanity
<epitron>
you can do everything with GET
<epitron>
it's just a mess
<Pulpie>
actually I was posting everything.
<epitron>
you'll end up putting the verbs in the URL params
<jhass>
arup_r: that parameter describes the line separator for readlines (you pass the default value here), readlines doesn't remove it from the read input, it just separates it on it
<jhass>
try passing 'o' or 3 for example
<jhass>
er, '3'
<arup_r>
Ohh.. Humm I tried "\n" also.. didn't work..
netherwolfe has quit [Remote host closed the connection]
}}} is now known as wasamasa
seamon has joined #ruby
yfeldblum has quit [Ping timeout: 244 seconds]
startupality has joined #ruby
tylersmith has joined #ruby
fgo has joined #ruby
lewix has quit [Remote host closed the connection]
kristo_ has joined #ruby
kristo_ is now known as Guest14196
pskosinski_ has joined #ruby
tylersmith has quit [Remote host closed the connection]
isthisreallife has quit [Ping timeout: 240 seconds]
Advocation has quit [Quit: Advocation]
isthisreallife has joined #ruby
fgo has quit [Ping timeout: 245 seconds]
aspires has quit []
zrl has quit [Ping timeout: 260 seconds]
Guest14196 has quit [Client Quit]
jontmorehouse has joined #ruby
Kabaka has quit [Ping timeout: 260 seconds]
luckyruby has quit [Ping timeout: 255 seconds]
Brando753 has quit [Ping timeout: 260 seconds]
pskosinski has quit [Ping timeout: 264 seconds]
Sthebig has quit [Ping timeout: 260 seconds]
<soahccc>
Ruby on Windows is fun, really. True story. I'm not lying. Or maybe I am. fork() not implemented, setting the path via command has a 1024 character limit (winreg hacking!), symlinking is hell, no signals, please shoot me...
end_guy has quit [Ping timeout: 264 seconds]
zrl has joined #ruby
end_guy has joined #ruby
Brando753 has joined #ruby
Advocation has joined #ruby
tkuchiki has joined #ruby
fmcgeough has quit [Quit: fmcgeough]
klmlfl has quit [Remote host closed the connection]
chrishough has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
dideler has joined #ruby
Tuxero has joined #ruby
<dideler>
can you use Array's reject() to reject non-digits?
bobishh has joined #ruby
kayloos has joined #ruby
pskosinski_ is now known as pskosinski
Sthebig has joined #ruby
GriffinHeart has joined #ruby
tkuchiki has quit [Ping timeout: 272 seconds]
* apeiros
obeys and shoots soahccc
<apeiros>
dideler: yes
Tuxero has left #ruby [#ruby]
<benzrf>
you can use it to reject anything!
<benzrf>
even people asking you on dates!
<apeiros>
benzrf.rejected? # => :soo_many_times
<ilhami>
soahccc, ok let me shoot you :D where are you?
mary5030 has quit [Remote host closed the connection]
<apeiros>
ilhami: you're too late. I already shot him
<arup_r>
I understand before or after callbacks.. But never around call back.. What does it mean ?
jcdesimp has joined #ruby
jxf has quit [Ping timeout: 258 seconds]
Kabaka has joined #ruby
carraroj has quit [Quit: Konversation terminated!]
ARCADIVS has quit [Quit: WeeChat 0.4.3]
carraroj has joined #ruby
<rpag>
soahccc, is anything on Windows fun? well, maybe .NET i guess.
armyriad has quit [Ping timeout: 245 seconds]
<soahccc>
rpag: the cmd window isn't I can tell :D
<rpag>
yeah, powershell is a bit better though
<soahccc>
I mean it autoscrolls and if you want to read something you "hold on to the scrollbar"... guess what: it freezes the process wtf
<rpag>
not as good as linux imho, but decent
<benzrf>
I’d just like to interject for a moment. What you’re refering to as Linux, is in fact, GNU/LInux, or as I’ve recently taken to calling it, GNU plus Linux. Linux is not an operating system unto itself, but rather another free component of a fully functioning GNU system made useful by the GNU corelibs, shell utilities and vital system components comprising a full OS as defined by POSIX.
Stalkr_ has joined #ruby
<benzrf>
Many computer users run a modified version of the GNU system every day, without realizing it. Through a peculiar turn of events, the version of GNU which is widely used today is often called “Linux”, and many of its users are not aware that it is basically the GNU system, developed by the GNU Project.
<benzrf>
There really is a Linux, and these people are using it, but it is just a part of the system they use. Linux is the kernel: the program in the system that allocates the machine’s resources to the other programs that you run. The kernel is an essential part of an operating system, but useless by itself;
<rpag>
lol
<rpag>
awesome
<benzrf>
it can only function in the context of a complete operating system. Linux is normally used in combination with the GNU operating system: the whole system is basically GNU with Linux added, or GNU/Linux. All the so-called “Linux” distributions are really distributions of GNU/Linux.
b00stfr3ak has quit [Ping timeout: 244 seconds]
<centrx>
Thanks Rick Stallman
<soahccc>
we just call it *nix os then
<rpag>
yeah, should be called "rms"
<shevy>
damn
boombadaroomba has joined #ruby
<shevy>
benzrf has become a copy paster
<rpag>
i think it's a bot
<rpag>
but not sure
<shevy>
that is worse than centrx responding to when php is mentioned
<rpag>
oh its not :P
slester has joined #ruby
shtirlic has quit [Ping timeout: 260 seconds]
<benzrf>
im not an it q_q
nrsk has quit [Read error: Connection reset by peer]
carraroj has quit [Ping timeout: 272 seconds]
<centrx>
I'd just like to interject for a moment. What you're referring to as PHP, is in fact, PHP/Crap, or as I've recently taken to calling it.
<rpag>
pardon :)
<rpag>
centrx, lol
hodja has quit [Quit: Leaving]
<benzrf>
i'm real happy for you and imma let you finish but what you're referring to as linux is in fact gnu/linux
tomeara_ has joined #ruby
Advocation has quit [Quit: Advocation]
atmosx has joined #ruby
shtirlic has joined #ruby
fnordperfect has quit [Read error: Connection reset by peer]
boombadaroomba has quit [Ping timeout: 240 seconds]
fnordperfect has joined #ruby
<shevy>
lol
<shevy>
benzrf and why precisely
spinx^ has quit [Ping timeout: 244 seconds]
<jalcine>
centrx: have you used PHP professionally?
threesixes has joined #ruby
<jalcine>
I mean, we've all seen crap Ruby
tomeara_ has quit [Ping timeout: 250 seconds]
byteoverfl0w has joined #ruby
<shevy>
PHP is god awful
<centrx>
Yes, PHP was the best pre-2006
<jalcine>
they're just a lot of crap programmers (myself included) that write crap code and get others to maintain it
byteoverfl0w has quit [Remote host closed the connection]
<centrx>
The language itself is bad
<shevy>
any language design will guide people towards good (better) or bad (worse) code
<volty>
sorry, maybe i messed something - gave for granted it's there
* shevy
spanks volty
<shevy>
no problem, one round of group spanking for you
icarus has quit [Remote host closed the connection]
Wolland has quit [Ping timeout: 240 seconds]
dc__ has joined #ruby
Guest89616 has quit [Ping timeout: 250 seconds]
mary5030 has joined #ruby
pasv has joined #ruby
JoshGlzBrk has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
pasv is now known as Guest95759
Stalkr_ has quit [Quit: Leaving...]
sanguisdex has joined #ruby
tomeara_ has joined #ruby
<apeiros>
volty: maybe you used rails and rails added it?
dc___ has quit [Ping timeout: 272 seconds]
klmlfl has quit [Remote host closed the connection]
zenojis has quit [Ping timeout: 260 seconds]
jasooon has joined #ruby
<volty>
no apeiros, it was just my fuzzy brain to add it. Just given for granted it was already there. :)
BTRE has joined #ruby
tomeara_ has quit [Ping timeout: 245 seconds]
zenojis has joined #ruby
phutchins has joined #ruby
goodenough has quit [Remote host closed the connection]
emocakes has joined #ruby
mary5030 has quit [Remote host closed the connection]
goodenough has joined #ruby
jasooon has quit [Ping timeout: 246 seconds]
skammer2 has joined #ruby
<volty>
shevy: on what are you loosing your time, currently? :)
<volty>
, at the moment
nonmadden has quit [Remote host closed the connection]
PsionTheory has joined #ruby
mooru has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
zenojis has quit [Ping timeout: 260 seconds]
mindlessdemon has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
KC9YDN has quit [Read error: Connection reset by peer]
phutchins has quit [Ping timeout: 244 seconds]
monkeypatch has joined #ruby
goodenough has quit [Ping timeout: 245 seconds]
crazydiamond has joined #ruby
<shevy>
volty I am rewriting my Cookbooks project
<shevy>
for the like 3rd time by now in total
bobishh has joined #ruby
Fun has joined #ruby
mastr_bennett[x] has joined #ruby
skammer2 has quit [Ping timeout: 272 seconds]
<shevy>
eliminating Pathname ... splitting up code ... fixing some circular loading warnings andother warnings of files not being loaded in the proper order...
<shevy>
very boring :(
emocakes__ has joined #ruby
emocakes has quit [Ping timeout: 245 seconds]
<shevy>
but I could eliminate some code too \o/
KC9YDN has joined #ruby
<Fun>
hello!
<Fun>
I forgot whats the name for rails channel?
<Fun>
:)
<Fun>
and hi shevy
<existensil>
#rubyonrails
<Fun>
tyty
c107 has quit [Remote host closed the connection]
Fun has left #ruby [#ruby]
thomasxie has joined #ruby
spyderman4g63 has joined #ruby
<volty>
shevy: your cooking seems more complicated than landing on Mars :)
MaciejCzyzewski has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<Nilium>
I gots my PS/2 adapter and the NMB keyboard working.
<Nilium>
Woo for using a keyboard that predates the existence of a windows key.
<Nilium>
Which is actually slightly inconvenient 'cause it means remapping the capslock key for stuff.
narcan has quit [Quit: -[AppDelegate installMalware]: unrecognized selector sent to instance 0x156109c0]
spyderman4g63 has quit [Ping timeout: 272 seconds]
grenierm has joined #ruby
lolmaus has quit [Read error: Connection reset by peer]
lolmaus has joined #ruby
<volty>
btw, back on structs, i did not use them at all till now. Just experimenting with Json as a mean to exchange data with another non-ruby app. That's why I needed to_h (and of course I can write it on-fly).
sanguisdex has quit [Ping timeout: 272 seconds]
Beoran_ has quit [Ping timeout: 272 seconds]
<volty>
Nilium: And when you will need the caps?
fabrice31 has joined #ruby
Wolland has joined #ruby
jontmorehouse has quit [Ping timeout: 272 seconds]
HelperW____ has quit [Ping timeout: 260 seconds]
zenojis has quit [Ping timeout: 272 seconds]
<shevy>
volty well cookbooks for compiling and installing programs
PsionTheory has quit [Read error: Connection reset by peer]
HelperW____ has joined #ruby
fgo has joined #ruby
<Nilium>
volty: Rarely, but pressing both shift keys enables capslock, so it's irrelevant.