JeanCarloMachado has quit [Ping timeout: 260 seconds]
JeanCarloMachado has joined #ruby
charliesome has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
jcao219 has joined #ruby
hfp has quit [Quit: bye]
hfp_work has quit [Quit: bye]
redaudit has quit [Quit: Cya]
JeanCarloMachado has quit [Ping timeout: 240 seconds]
JeanCarloMachado has joined #ruby
__Yiota has joined #ruby
hfp has joined #ruby
SteenJobs has joined #ruby
hfp_work has joined #ruby
<jaegerca>
kfogel: Why don't you just unpack the gem and modify it in your project?
<kfogel>
jaegerca: I've tried that, I think. I put "gem 'json', '1.6.1', :path => 'vendor/bundle/ruby/2.3.0/gems/json-1.6.1'" into the Gemfile (replacing the original line).
<kfogel>
jaegerca: then I applied my patch
JeanCarloMachado has quit [Ping timeout: 255 seconds]
<jaegerca>
Hrm
<kfogel>
jaegerca: I think it may have worked; at least, I have now encountered a different build error.
<jaegerca>
That's really the best way I can think of.
<kfogel>
jaegerca: (because I'm not very experienced in Ruby, I might be misinterpreting errors)
<jaegerca>
What's the new error?
mentok has quit [Ping timeout: 240 seconds]
<kfogel>
jaegerca: Oh, I think it worked. Well, here's what happened:
JeanCarloMachado has joined #ruby
<kfogel>
jaegerca: (it's a bit surprising to me) I replaced the "gem 'json', '1.6.1'" line with "gem 'json', '1.6.1', :path => 'vendor/bundle/ruby/2.3.0/gems/json-1.6.1'". Then I ran 'bundle install --path vendor/bundle' again.
<kfogel>
jaegerca: and I got a *different* compilation error (which I'll paste in a moment), but the weird thing is, I get that same new error *whether or not I apply the patch that should allow json 1.6.1 to build locally*.
<jaegerca>
kfogel: I would `gem unpack json` and move it into your project in (I am assuming rails) vendor/gems/json, then point your gem path there in the gemfile - just to make sure you are applying the patch you think you are (plus you'll need the source of the gem anyway from here on out)
<kfogel>
jaegerca: thank you; I'll try that now. But it has to be json 1.6.1, b/c of the legacy nature of this old fork. I'll read docs on 'gem unpack' and learn how to do that.
cioran89 has joined #ruby
<kfogel>
jaegerca: 'gem unpack -v 1.6.1 json'
<jaegerca>
Yeah, that should do it
<jaegerca>
Put that in your project, apply your patch, point to it with path and see if you get the same error as you did in your last paste
<jaegerca>
There are a few github issues related to that so you are in luck - I think you're past your json troubles
JeanCarloMachado has quit [Ping timeout: 240 seconds]
<kfogel>
jaegerca: yeah. I wish I had some way of knowing how many more of these there will be :-), but this is at least one step closer down the... Cantorian... road to getting this built ;-).
* kfogel
goes glassy-eyed
<jaegerca>
I would guess you are fairly close at this point -
<jaegerca>
What ruby version are you using?
<kfogel>
jaegerca: I'm trying to find out who's even bringing eventmachine in. It's not in the top-level Gemfile, nor is it in the json-1.6.1 Gemfile
<kfogel>
jaegerca: ruby 2.3
<jaegerca>
Do you have a Gemfile.lock?
<kfogel>
jaegerca: yes
<jaegerca>
You should be able to see what is requiring it in there, open it up and search for eventmachone
<kfogel>
jaegerca: oh! it shows dep tree
AlexRussia__ has quit [Ping timeout: 268 seconds]
JeanCarloMachado has joined #ruby
patarr has joined #ruby
<jaegerca>
Based on the github issues you might be able to fix that by downgrading to ruby 2.1 - but if you don't need it better to keep the more recent ruby and get rid of the gem
<kfogel>
jaegerca: well, what's weird is Gemfile.lock just says "GEM
<kfogel>
jaegerca: and then eventmachine is in the top level of that subtree
<jaegerca>
Hm, interesting
SteenJobs has quit [Quit: SteenJobs]
<kfogel>
jaegerca: I.e., it's not clear who's pulling it in, yet it's not listed by name in the Gemfile either, if I'm interpreting Gemfile.lock correctly.
<kfogel>
jaegerca: (the overall context here: this old fork of snorby I'm working with wants to import a more recent patch; the patch applies cleanly to upstream, but needs to be adjusted to apply to this old fork. So my first task is to get the old fork up and running -- that's what all of this is about.)
bmurt has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<kfogel>
jaegerca: interesting
<kfogel>
jaegerca: I see 'eventmachine (>= 0.12.6)' yes
sspreitz has quit [Ping timeout: 240 seconds]
patarr has quit [Ping timeout: 240 seconds]
<jaegerca>
You might try to update thin, it looks like there is a 1.7.0 version out.
JeanCarloMachado has quit [Ping timeout: 240 seconds]
<kfogel>
jaegerca: that's just what I was starting to think... will try!
<jaegerca>
Although I would hope it's getting the most recent version since it's looking for anything > that 0.12
<kfogel>
jaegerca: current Gemfile says "gem 'thin', '~> 1.3.1'" -- kind of worrying what happens if I go to 1.7.0, but worth a try.
RichardFeynman has joined #ruby
<kfogel>
jaegerca: of eventmachine, right. Yeah, that was puzzling. Well, I'll try thin first.
sspreitz has joined #ruby
apparition has joined #ruby
<RichardFeynman>
Hi peeps
<jaegerca>
I would think upgrading thin would have a very minimal impact, nothing to worry about
<kfogel>
jaegerca: well, I tried libmagickwand-dev first (b/c am on Debian, but maybe I should try treating Debian like Ubuntu first, since libmagickwand-dev didn't fix it -- trying libmagick9 now.
<kfogel>
)
<kfogel>
jaegerca: graphicsmagick-libmagick-dev-compat is the Debian name, it turns out
<jaegerca>
I hope that works - if it doesn't then I would imagine it's a path issue - but there really shouldn't be one
<kfogel>
jaegerca: it's all still part of the imagemagick problems, but this is a new problem
<jaegerca>
You have all the -devel libraries?
<jaegerca>
Imagemagick-devel as well?
t-recx has quit [Quit: t-recx]
<kfogel>
jaegerca: well, I thought I did, but double-checking
<jaegerca>
I have never needed to install anything beyond imagemagick and imagemagick-devel, I wasn't aware so many other packages existed!
<kfogel>
jaegerca: "Imagemagick-devel" isn't a Debian package name, and I thought I'd installed all the ones that are Debian-flavored that I might need (libmagick-dev, libmagick++-dev, libmagickwand-dev, graphicsmagick-libmagick-dev-compat, and of course imagemagick itself)
<kfogel>
jaegerca: for you 'imagemagick-devel' exists? Are you on Mac, or Ubuntu, or something other than Debian, I guess/
<kfogel>
?
<jaegerca>
I develop on a mac, and run amazon linux in the cloud
<jaegerca>
You have this as well right? graphicsmagick-imagemagick-compat
<kfogel>
jaegerca: that's not a package here, it turns out
<jaegerca>
hm
<kfogel>
jaegerca: oh wait
<kfogel>
jaegerca: my bad, I did "apt-get install graphicsmagick-libmagick-compat" ... which is not *exactly* what you said :-)
<kfogel>
jaegerca: hmm, this is going to remove other packages like 'cups' etc
<kfogel>
jaegerca: I'm okay with that for now, but want to record the damage just in case
<kfogel>
jaegerca: hunh, even that didn't do it -- same error. still reading
patr0clus has joined #ruby
<jaegerca>
kfogel: I am not seeing much other than just having the right libraries installed - I feel like you have all the right ones though
patr0clus has quit [Max SendQ exceeded]
<kfogel>
jaegerca: agreed. but so far, libmagickcore-dev doesn't do it either; gonna try some more
davidmichaelkarr has quit [Quit: Connection closed for inactivity]
<kfogel>
jaegerca: oh, you know what, I think I'm being too narrow-minded. I fixed the Magick-config issue (it's in /usr/bin/ now). But really, I should just try a more recent version of rmagick.
<kfogel>
jaegerca: the line in Gemfile right now is "gem 'rmagick', '~> 2.13.1'"
<kfogel>
jaegerca: I should play with that a bit.
<jaegerca>
kfogel: That could definitely be it
<kfogel>
jaegerca: worth a shot
houhoulis has joined #ruby
<kfogel>
jaegerca: went to 2.16.0 -- will see if that does it
<kfogel>
jaegerca: that is, "gem 'delayed_job_data_mapper', '1.0.0.rc'" versus "gem 'delayed_job_data_mapper', '1.0.0'"
<kfogel>
jaegerca: (You're very generous to come along on this odyssey as far as you have; I continue to keep you updated because you've been generous enough to respond, but there's no implication that you are obligated to continue to help of course.)
gix has quit [Ping timeout: 240 seconds]
<jaegerca>
kfogel: Haha, don't worry about it - I am just looking at these two messages - amusing is right.
cschneid_ has joined #ruby
<jaegerca>
kfogel: Did you attempt a bundle update?
<jaegerca>
kfogel: Looks like that was dropped a while back, you might need a more up to date do_mysql - but that seems locked in the delayed gem job
<kfogel>
jaegerca: right
<kfogel>
jaegerca: (the heck of it is, this is all a pro bono gig too :-) )
<jaegerca>
If that's correct you might have to unpack that one too and change the gemspec to require a more up to date version of do_mysql
* kfogel
listens
<jaegerca>
kfogel: Ha - those are always the most complicated
<kfogel>
jaegerca: So. True.
<kfogel>
jaegerca: oh, you mean use the same :path => trick we used with json-1.6.1
<jaegerca>
You might be able to just update the do_mysql version in the gemfile first
<kfogel>
jaegerca: but in this case, the "patch" would be updating the module's Gemfile
shinnya has joined #ruby
<jaegerca>
kfogel: Yeah - I would be curious to to know what is requiring the do_mysql (I *think* thats the culprit here) - I think it's a dependency of a dependency in the delayed job gem.
<kfogel>
jaegerca: well, they are really using it.
bronson has joined #ruby
<kfogel>
jaegerca: there's a big SQL dump of sample data accompanying this, from the client
<jaegerca>
That delayed job gem is really really old, I have no doubt it's outdated!
bronson has quit [Ping timeout: 246 seconds]
zhustec has joined #ruby
<kfogel>
jaegerca: yeah. I told them when we first looked at this that they're so far out of date that it's really a huge tech debt, and they should pay down the principle ASAP
<jaegerca>
kfogel: For sure
<kfogel>
jaegerca: s/principle/principal/, and sorry for perpetuating that error ;-)
<kfogel>
jaegerca: nope. but remember, the error is now happening on "rake snorby:setup", as we're past "bundle install --path vendor/bundle"
<kfogel>
jaegerca: i'm rerunning "bundle install --path vendor/bundle" before doing "rake snorby:setup" here each time, but the bundle command just succeds each time now, ending with this:
<kfogel>
Bundled gems are installed into ./vendor/bundle.
<jaegerca>
I wonder if you explicitly require the DATAMAPPER_VESION of dm_mysql, if your other gem isn't depending on a lesser veriosn that will likely work
<jaegerca>
gem 'do_mysql', '1.2.0'
<kfogel>
jaegerca: trying
cschneid_ has quit [Read error: Connection reset by peer]
<kfogel>
jaegerca: well, it was safe, just not effective
<jaegerca>
Oops, try this version: 0.10.17
<jaegerca>
I thought it was in step with the rest of the datamapper gems
coderphive has joined #ruby
<kfogel>
jaegerca: "The bundle currently has do_mysql locked at 0.10.12."
houhoulis has quit [Remote host closed the connection]
cschneid_ has quit [Read error: Connection reset by peer]
cschneid_ has joined #ruby
<kfogel>
jaegerca: looking hard at dm-mysql-adapter-1.2.0 as culprist
KeyJoo has quit [Ping timeout: 264 seconds]
<kfogel>
jaegerca: heh. DM_VERSION is 1.2.0 in the Gemfile, and... http://datamapper.org/ says that's still the latest version, as of 2011.
<jaegerca>
kfogel: Can you try downgrading to ruby 2.1 and see if it works?
<kfogel>
jaegerca: that's an interesting idea. let me se.
<kfogel>
jaegerca: hunh. 'ruby2.1' not available in Debian testing, so this won't be as simple as I thought.
<jaegerca>
I think that the error you are getting is from that being deprecated in 2.2 - if I am right there is a lot of updating that would need to be done -
<kfogel>
jaegerca: I suspect you are right, and I think they are probably running 2.1 in production for this (I can ask them on Monday).
__Yiota has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<jaegerca>
I hate to say it but datamapper is going to continue to be a huge issue as it's been DOA for almost 4 years now.
<kfogel>
jaegerca: btw, any objection to my keeping a transcript of our IRC conversation in my branch on GitHub?
<jaegerca>
Yeah - I really think you need 2.1
<jaegerca>
No not at all
<kfogel>
jaegerca: Strongly suspect you are right.
<kfogel>
jaegerca: Fastest route might be for me to spin up a VM somewhere with an older Debian on it, rather than build ruby from source here or something.
govg has quit [Ping timeout: 255 seconds]
<jaegerca>
From what I can tell, it's go with ruby 2.1 and datamapper, or keep ruby > 2.1 and probably need to replace datamapper with activerecord (which really needs to be done anyway if there is going to be any amount of ongoing work with this, in my opinion)
govg has joined #ruby
<jaegerca>
kfogel: I would definitely test on a vm if you can though - that's a lot of hoops to go through, I really think I am right but better to know for sure!
Vile` has joined #ruby
<kfogel>
jaegerca: yup. Well, bedtime. I've learned that pushing through till 3am on this kind of task is never wise. Thank you so much for your help; I really appreciate it. If you ever have a Subversion question (they're getting rarer, but you never know), look me up.
treaki has joined #ruby
treaki__ has quit [Ping timeout: 255 seconds]
<jaegerca>
kfogel: Sounds good! I am here often enough, feel free to ping me! Have a good night, and I am glad you were able to get through the gem installation part!
<kfogel>
jaegerca: me too; was definitely progress! Okay, good night.
patarr has joined #ruby
kfogel has quit [Quit: Ex-Chat]
jaegerca has quit []
cfec0b8d has joined #ruby
__Yiota has joined #ruby
patarr has quit [Ping timeout: 240 seconds]
jamesaxl has quit [Read error: Connection reset by peer]
jamesaxl has joined #ruby
coderphive has quit [Quit: coderphive]
coderphive has joined #ruby
Vile` has quit [Read error: Connection reset by peer]
coderphive has quit [Ping timeout: 240 seconds]
bronson has joined #ruby
__Yiota has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
enterprisey has quit [Remote host closed the connection]
__Yiota has joined #ruby
apparition has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
duderonomy has joined #ruby
bkxd has quit [Ping timeout: 260 seconds]
bkxd has joined #ruby
__Yiota has quit [Remote host closed the connection]
__Yiota has joined #ruby
ych has joined #ruby
cschneid_ has quit [Remote host closed the connection]
cam27 has joined #ruby
yottanami has joined #ruby
<yottanami>
I am trying to install Ruby 2.2.3 using rbenv but I got this error http://dpaste.com/1TFSR7S
<yottanami>
My libssl-dev version is 1.0.2k-1
<yottanami>
I also tried older versions and I got that error. how should I fix it?
mim1k has joined #ruby
__Yiota has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
Hunter1_ has quit [Remote host closed the connection]
<silverdust>
I also do. Just thought more people here prefer inject so I try to adapt. Thanks
cfec0b8d has quit [Remote host closed the connection]
<ljarvis>
I think inject is more popular, but i use reduce in other languages and i'm just more used to it. It doesn't matter too much either way, use whichever you prefer
yogg-saron has joined #ruby
yogg-saron has quit [Client Quit]
ltem has quit [Quit: Leaving]
x0f has joined #ruby
TreyG has joined #ruby
KeyJoo has quit [Ping timeout: 260 seconds]
judofyr has joined #ruby
pycer has quit [Ping timeout: 260 seconds]
<silverdust>
yeah
<darix>
calling ljarvis inkjet was also popular a while ago
<ljarvis>
:D
<judofyr>
he will always be inkjet for me
<ljarvis>
i will never live it down
<ljarvis>
judofyr: <3
<ljarvis>
judofry*
<judofyr>
heh, judofry highlights in my IRC clinet
<judofyr>
client*
<ljarvis>
injekt and inkjet still do for me :/
oleo has quit [Ping timeout: 272 seconds]
prab97 has joined #ruby
ryzokuken has quit [Quit: Connection closed for inactivity]
jackrandom has joined #ruby
shinnya has quit [Ping timeout: 258 seconds]
<hanmac>
silverdust: also checkout the default value of inject, because if you got an empty hash/array it does return nil
mikecmpb_ has joined #ruby
mikecmpbll has quit [Ping timeout: 260 seconds]
nadir has joined #ruby
brown has joined #ruby
brown is now known as gentleman
cschneid_ has joined #ruby
Jakaria has joined #ruby
cschneid_ has quit [Ping timeout: 246 seconds]
<Jakaria>
what's the defference between self.method_name vs self.class.method_name?
im0nde has quit [Ping timeout: 255 seconds]
<apeiros>
one invokes a method on self, one on self.class
duderonomy has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
flying has quit []
* hanmac
wispers instance method of eigenclass and hides in the corner
xco has joined #ruby
<apeiros>
indeed. I wonder when I gave up on explaining that.
<xco>
why am i getting “nokogiri-1.7.1 requires ruby version >= 2.1.0, which is incompatible with the current version, ruby 2.0.0p648” when rvm says i’m on 2.2.4?
<xco>
any ideas?
<apeiros>
whatever you use to install nokogiri does't use your rvm ruby
<hanmac>
xco seems your "gem" command does not point to the right ruby you use probably the system one
<apeiros>
that'd be one potential reason. there's a couple other reasons.
<xco>
apeiros: i’m doing “bundle install”
brkkyk has joined #ruby
<matthewd>
Start by comparing `ruby -v`, `gem env`, `bundle env`
<somiaj>
I'm looking into using rvm to install ruby on centos6.9. I like the single user install that doesn't require root, but was wondering if I could specifiy which directory it was installed to and if other users who could read that directory could run ruby without having to do a system install with root.
im0nde_ is now known as im0nde
<apeiros>
hanmac: no, I mean the value is stored in the object id
__Yiota has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<hanmac>
apeiros: ah that is what you mean. FLONUM is fixed means 3.4.object_id is always the same ... BUT you need 64bit for that to work
volty has quit [Quit: Konversation terminated!]
my123_ has joined #ruby
my123_ has joined #ruby
Tempesta_ has joined #ruby
ged_ has joined #ruby
mrsolo_ has joined #ruby
bcavileer_ has joined #ruby
sepp2k has joined #ruby
rann_ has joined #ruby
Aeyris_ has joined #ruby
bweston92_ has joined #ruby
Yxhvd has joined #ruby
raatiniemi_ has joined #ruby
TreyG_ has joined #ruby
Kuukunen- has joined #ruby
xsdg has joined #ruby
DefV has joined #ruby
_2easy_ has joined #ruby
ByronJoh1son has joined #ruby
MrSprinkle has joined #ruby
shadeslayer_ has joined #ruby
x0f_ has joined #ruby
Hunter1 has quit [Remote host closed the connection]
rileyy_ has joined #ruby
Hunter1 has joined #ruby
bhaak_ has joined #ruby
IcyDragon has joined #ruby
Trynemjoel2 has joined #ruby
iNs_ has joined #ruby
cydrobolt_ has joined #ruby
bier has joined #ruby
patr0clus has quit [*.net *.split]
whiteline has quit [*.net *.split]
TreyG has quit [*.net *.split]
x0f has quit [*.net *.split]
gizmore has quit [*.net *.split]
Tempesta has quit [*.net *.split]
Aeyris has quit [*.net *.split]
Trynemjoel has quit [*.net *.split]
MrSparkle has quit [*.net *.split]
rann has quit [*.net *.split]
dellavg has quit [*.net *.split]
gremax has quit [*.net *.split]
Yxhuvud has quit [*.net *.split]
ged has quit [*.net *.split]
bcavileer has quit [*.net *.split]
mrsolo has quit [*.net *.split]
testnick[m] has quit [*.net *.split]
bascht1 has quit [*.net *.split]
bweston92 has quit [*.net *.split]
infernix has quit [*.net *.split]
ByronJohnson has quit [*.net *.split]
raatiniemi has quit [*.net *.split]
_2easy has quit [*.net *.split]
Sammichmaker has quit [*.net *.split]
jokke has quit [*.net *.split]
szulak has quit [*.net *.split]
my123 has quit [*.net *.split]
MissionCritical has quit [*.net *.split]
darthThorik has quit [*.net *.split]
Nightmare has quit [*.net *.split]
xsdg_ has quit [*.net *.split]
cydrobolt has quit [*.net *.split]
bier_ has quit [*.net *.split]
devster31 has quit [*.net *.split]
DefV_ has quit [*.net *.split]
shadeslayer has quit [*.net *.split]
Kuukunen has quit [*.net *.split]
iNs has quit [*.net *.split]
bhaak has quit [*.net *.split]
IceDragon has quit [*.net *.split]
rileyy has quit [*.net *.split]
yitsushi has quit [*.net *.split]
Skarlso has quit [*.net *.split]
TheTFEF has joined #ruby
ged_ is now known as ged
Aeyris_ is now known as Aeyris
mrsolo_ is now known as mrsolo
rann_ is now known as rann
bcavileer_ is now known as bcavileer
bweston92_ is now known as bweston92
devster31 has joined #ruby
pratch has quit [Remote host closed the connection]
szulak has joined #ruby
infernix has joined #ruby
bhaak_ is now known as bhaak
pratch has joined #ruby
mathys has quit [Quit: Leaving]
gizmore has joined #ruby
jokke has joined #ruby
tomphp has quit [Ping timeout: 240 seconds]
Mission-Critical has joined #ruby
patr0clus has joined #ruby
patr0clus has quit [Max SendQ exceeded]
gremax has joined #ruby
patr0clus has joined #ruby
patr0clus has quit [Max SendQ exceeded]
patr0clus has joined #ruby
patr0clus has quit [Max SendQ exceeded]
dellavg has joined #ruby
bascht1 has joined #ruby
testnick[m] has joined #ruby
tomphp has joined #ruby
oleo has joined #ruby
BSAlb has joined #ruby
Mission-Critical is now known as MissionCritical
muelleme has quit [Ping timeout: 260 seconds]
pankaj has joined #ruby
BSaboia has quit [Ping timeout: 240 seconds]
BSab has joined #ruby
BSab has quit [Max SendQ exceeded]
BSab has joined #ruby
SHXCXCHCXSH has joined #ruby
Jakaria has quit [Quit: WeeChat 1.4]
tildes has joined #ruby
BSAlb has quit [Ping timeout: 240 seconds]
SHXCXCHCXSH has quit [Ping timeout: 245 seconds]
endemic has quit [Quit: Leaving.]
endemic has joined #ruby
tildes has quit [Ping timeout: 240 seconds]
endemic has quit [Client Quit]
endemic has joined #ruby
cfec0b8d has joined #ruby
endemic has quit [Client Quit]
endemic has joined #ruby
Cohedrin has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
InsaneSplash has joined #ruby
dionysus69 has joined #ruby
duderonomy has joined #ruby
Cohedrin has joined #ruby
yqt has joined #ruby
theta8 has left #ruby [#ruby]
endemic has quit [Quit: Leaving.]
mim1k has joined #ruby
endemic has joined #ruby
sonicmagister has joined #ruby
endemic has quit [Quit: Leaving.]
endemic has joined #ruby
endemic has quit [Client Quit]
endemic has joined #ruby
BSaboia has joined #ruby
xenops has joined #ruby
patr0clus has joined #ruby
patr0clus has quit [Max SendQ exceeded]
BSab has quit [Ping timeout: 268 seconds]
Dreamer3 has quit [Quit: Leaving...]
Dreamer3 has joined #ruby
pankaj has quit [Ping timeout: 240 seconds]
sonicmagister has left #ruby ["Leaving"]
JeanCarl1Machado has joined #ruby
tomphp_ has joined #ruby
ur5us has joined #ruby
tomphp has quit [Read error: Connection reset by peer]
User458764 has quit [Quit: My iMac has gone to sleep. ZZZzzz…]
patr0clus has joined #ruby
patr0clus has quit [Max SendQ exceeded]
patr0clus has joined #ruby
User458764 has joined #ruby
muelleme has joined #ruby
mentok has joined #ruby
pankaj has joined #ruby
jcao219 has quit [Ping timeout: 246 seconds]
BSAlb has joined #ruby
TreyG has joined #ruby
BSaboia has quit [Ping timeout: 272 seconds]
TreyG_ has quit [Ping timeout: 245 seconds]
Guest15117 has quit [Ping timeout: 255 seconds]
ur5us has quit [Remote host closed the connection]
tomphp_ has quit [Ping timeout: 268 seconds]
houhoulis has joined #ruby
tomphp has joined #ruby
mostlybadfly has joined #ruby
Douko has quit [Quit: leaving]
j has joined #ruby
j is now known as Guest8715
mim1k has quit [Ping timeout: 255 seconds]
KeyJoo has joined #ruby
pankaj has quit [Quit: Leaving]
DLSteve has quit [Quit: All rise, the honorable DLSteve has left the channel.]
enterprisey has quit [Remote host closed the connection]
Hunter1 has quit [Remote host closed the connection]
Hunter1 has joined #ruby
Cohedrin has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
tomphp has quit [Read error: Connection reset by peer]
elementaru has quit [Read error: Connection reset by peer]
milardovich has joined #ruby
tomphp has joined #ruby
emptyflask has quit [Read error: Connection reset by peer]
bkxd has quit [Read error: Connection reset by peer]
houhoulis has quit [Remote host closed the connection]
milardovich has quit [Remote host closed the connection]
KnownSyntax has quit [Quit: No Ping reply in 180 seconds.]
milardovich has joined #ruby
Hunter1 has quit [Remote host closed the connection]
nighthwk1 has quit [Read error: Connection reset by peer]
emptyflask has joined #ruby
Hunter1 has joined #ruby
sepp2k1 has joined #ruby
sepp2k has quit [Ping timeout: 260 seconds]
KnownSyntax has joined #ruby
jrafanie has joined #ruby
ltem has quit [Quit: Leaving]
emptyflask has quit [Read error: No route to host]
emptyflask has joined #ruby
SHXCXCHCXSH has joined #ruby
bkxd has joined #ruby
dcunit3d has joined #ruby
SHXCXCHCXSH has quit [Ping timeout: 260 seconds]
ur5us has joined #ruby
t-recx has quit [Quit: t-recx]
jrafanie has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
tomphp has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
kies^ has quit [Remote host closed the connection]
mathys has joined #ruby
alex88 has joined #ruby
<alex88>
hi there, someone still using aws sdk v1? I've the latest 1.x version and I with this config, https://gist.github.com/alex88/dc4a94a996a0a44f4d574a3767b68dd9 connection still waits 120 second before saying there has been a timeout in the request, any idea why?
cioran89 has quit [Ping timeout: 260 seconds]
User458764 has quit [Quit: My iMac has gone to sleep. ZZZzzz…]
<alex88>
oh nvm
nighthwk1 has joined #ruby
emptyflask has quit [Read error: Connection reset by peer]
emptyflask has joined #ruby
nighthwk1 has quit [Read error: Connection reset by peer]
Cohedrin has joined #ruby
fmccann has joined #ruby
milardovich has quit [Remote host closed the connection]
KeyJoo has quit [Remote host closed the connection]
milardovich has joined #ruby
mim1k has joined #ruby
kies has joined #ruby
sepp2k1 has quit [Read error: Connection reset by peer]
Immune_ has joined #ruby
nemish- has joined #ruby
jrm2 has joined #ruby
uxp_ has joined #ruby
pupsicle1 has joined #ruby
sjums_ has joined #ruby
guidos_ has joined #ruby
MrBloo_ has joined #ruby
yosafbridge` has joined #ruby
cout_ has joined #ruby
ironcame1 has joined #ruby
eam_ has joined #ruby
stokachu_ has joined #ruby
connor_g1odwolf has joined #ruby
Rabbit_ has joined #ruby
irick has joined #ruby
alex88 has quit []
lagweezl1_away has joined #ruby
ryotarai_ has joined #ruby
sunya7a__ has joined #ruby
gil__ has joined #ruby
russt has joined #ruby
priodev_ has joined #ruby
lel- has joined #ruby
lucas__ has joined #ruby
reinh1 has joined #ruby
ahuman_ has joined #ruby
z4phod_ has joined #ruby
Tristan-Speccy has joined #ruby
akhkharu has joined #ruby
xybr3 has joined #ruby
Tristan-Speccy is now known as Guest82871
jpterry has quit [Ping timeout: 268 seconds]
gil_ has quit [Ping timeout: 268 seconds]
MrBloo has quit [Ping timeout: 268 seconds]
yosafbridge has quit [Ping timeout: 268 seconds]
brainslug has quit [Ping timeout: 268 seconds]
priodev has quit [Ping timeout: 268 seconds]
nicoulaj has quit [Ping timeout: 268 seconds]
elarson has quit [Ping timeout: 268 seconds]
ryotarai has quit [Ping timeout: 268 seconds]
wlanboy_ has quit [Ping timeout: 268 seconds]
nemish has quit [Read error: Connection reset by peer]
sjums has quit [Quit: Connection reset by beer]
SHyx0rmZ has quit [Quit: Ping timeout (120 seconds)]
blackwind_123 has quit [Ping timeout: 268 seconds]
chihhsin_ has joined #ruby
slima has joined #ruby
lel has quit [Ping timeout: 268 seconds]
irick_ has quit [Ping timeout: 268 seconds]
slima has quit [Read error: Connection reset by peer]
weaksauce has quit [Ping timeout: 268 seconds]
pupsicle has quit [Ping timeout: 268 seconds]
lagweezle_away has quit [Ping timeout: 268 seconds]
guidos has quit [Ping timeout: 268 seconds]
z4phod has quit [Ping timeout: 268 seconds]
russt_ has quit [Ping timeout: 268 seconds]
Lyfe has quit [Ping timeout: 268 seconds]
sunya7a has quit [Ping timeout: 268 seconds]
cout has quit [Ping timeout: 268 seconds]
chihhsin has quit [Ping timeout: 268 seconds]
connor_goodwolf has quit [Ping timeout: 268 seconds]
ironcamel has quit [Ping timeout: 268 seconds]
stokachu has quit [Ping timeout: 268 seconds]
eam has quit [Ping timeout: 268 seconds]
quuxman has quit [Ping timeout: 268 seconds]
wlanboy has joined #ruby
Rabbit__ has quit [Ping timeout: 268 seconds]
pupsicle1 is now known as pupsicle
ski7777 has quit [Ping timeout: 268 seconds]
lucas has quit [Ping timeout: 268 seconds]
ahuman has quit [Ping timeout: 268 seconds]
Immune has quit [Ping timeout: 268 seconds]
bmn_ has quit [Ping timeout: 268 seconds]
Eiam has quit [Ping timeout: 268 seconds]
jrm has quit [Ping timeout: 268 seconds]
xybr_ has quit [Ping timeout: 268 seconds]
ReinH_ has quit [Ping timeout: 268 seconds]
_Tristan-Speccy_ has quit [Ping timeout: 268 seconds]
uxp has quit [Ping timeout: 268 seconds]
joast has quit [Ping timeout: 268 seconds]
bmn has joined #ruby
elarson has joined #ruby
MrBloo_ is now known as MrBloo
ryotarai_ is now known as ryotarai
jrm2 is now known as jrm
wlanboy has quit [Changing host]
slima has joined #ruby
slima has quit [Changing host]
wlanboy has joined #ruby
priodev_ is now known as priodev
guidos_ is now known as guidos
ski4x7 has joined #ruby
jpterry has joined #ruby
Lyfe has joined #ruby
blackwind_123 has joined #ruby
quuxman has joined #ruby
emptyflask has quit []
GinoMan has joined #ruby
jackrandom has quit [Remote host closed the connection]