<alex88>
any idea? I've included rubysl inside my Gemfile but ofc it's not yet installed
ereslibre has quit [Ping timeout: 252 seconds]
g0bl1n has joined #bundler
simi has joined #bundler
havenwood has joined #bundler
ereslibre has joined #bundler
ereslibre has quit [Changing host]
ereslibre has joined #bundler
ereslibre has quit [Remote host closed the connection]
ereslibre has joined #bundler
ereslibre has quit [Changing host]
ereslibre has joined #bundler
g0bl1n has quit [Read error: Operation timed out]
Who has joined #bundler
chouhoulis has joined #bundler
samphippen has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
cwebber has joined #bundler
Who has quit [Quit: Who]
alex88 has quit [Quit: Leaving...]
chouhoul_ has joined #bundler
f0ster has joined #bundler
<f0ster>
having some weird issue with bundler and dependencies of other gems, if anyone could take a look it'd be much appreciated, https://gist.github.com/f0ster/8477726
Guest70187 has quit [Ping timeout: 264 seconds]
chouhoulis has quit [Ping timeout: 260 seconds]
Guest70187 has joined #bundler
patcon has joined #bundler
patcon_ has joined #bundler
patcon has quit [Ping timeout: 245 seconds]
Guest70187 has quit [Read error: Connection reset by peer]
Guest70187 has joined #bundler
patcon_ has quit [Ping timeout: 245 seconds]
patcon has joined #bundler
patcon_ has joined #bundler
Guest70187 has quit [Ping timeout: 264 seconds]
patcon has quit [Ping timeout: 245 seconds]
Guest70187 has joined #bundler
robbyoconnor has quit [Ping timeout: 260 seconds]
robbyoconnor has joined #bundler
Senjai has quit [Ping timeout: 276 seconds]
Senjai has joined #bundler
patcon_ has quit [Remote host closed the connection]
danp has joined #bundler
karlfreeman has joined #bundler
<karlfreeman>
indirect: You there?
wdperson has joined #bundler
jfoy has joined #bundler
simi has quit [Read error: Operation timed out]
jfoy has left #bundler [#bundler]
<indirect>
karlfreeman: hi
jfoy has joined #bundler
<indirect>
f0ster: open a ticket?
<karlfreeman>
indirect: hey, just looking over some more bundler-site things and wondered if it would be safe to base some more pull requests from 'syntax-upgrade'
<indirect>
karlfreeman: yeah, let me merge it now
<f0ster>
indirect, so there was a gemfile.lock in place that was cauising problems, i deleted it, same problem, but i brought back in an old gemfile that was before a merge mess, and then it could update fine
<indirect>
I should add the recommended git config to the bundler docs
<indirect>
I'll open a ticket to remind me to do that :)
<indirect>
karlfreeman: awesome
<indirect>
f0ster: the secret to Gemfile.lock merge conflicts is "git checkout HEAD -- Gemfile && bundle install"
<f0ster>
indirect: so i had a gemfile that had locked versions for everything, with which my environment was up to date, someone comitted the old gemfile to the head with the gemfile.lock, overwriting my changes, and that's when it didnt work, i restored the gemfile, and deleted the gemfile.lock, but it wouldnt rebundle
<f0ster>
so basically I did that command
<f0ster>
but still had dep issues
<karlfreeman>
indirect: ok, great. Have a good weekend.
<indirect>
karlfreeman: you too! thanks for the help with the site :D
thumpba has joined #bundler
<indirect>
f0ster: oh, weird. if it seems like a commonly reproducible problem, feel free to open a ticket
<karlfreeman>
indirect: no worries. Looking to get more involved in Bundler and decided to start with the 'low hanging fruit'.
<thumpba>
Error installing bundler invalid gem format for /usr/lib/ruby/gems/1.8/cache/bundler-1.5.2.gem
<thumpba>
on centos 6.5
<indirect>
karlfreeman: awesome. msg me your email address and I'll send you the volunteer welcome email and add you to the campfire :)
<karlfreeman>
indirect: karlfreeman@gmail.com
<indirect>
thumpba: your .gem file is bad. delete it and try gem install again
<thumpba>
tried deleting but gem install bundler keeps recreating it
<indirect>
thumpba: I don't know what that means
tockitj has joined #bundler
<indirect>
running gem install will recreate it
<indirect>
by downloading it again
<tockitj>
is there a way to specify a rubygems version in Gemfile ?
<indirect>
try "gem install bundler --pre"?
jfoy has quit [Quit: jfoy]
<indirect>
tockitj: I don't know what you mean... ruby can only have one rubygems version installed at a time
<indirect>
do you want your app to blow up with a different version of rubygems?
<tockitj>
indirect, true - I'd like bundler to check if it is using correct version (as it can fix ruby version)
<tockitj>
indirect, yes - that is it :)
<thumpba>
bundler-1.5.2.gem is what its complaining about even after i rm it. once i run gem install bundler it stops the install and give me the same eror
<tockitj>
jruby 1.7.3 does not go along well with rubygems 2.x.y
<indirect>
tockitj: Gemfiles are just ruby... add something like raise("You need at least Rubygems 2.1!") unless Gem::Requirement.new("~> 2.1").satisfied_by?(Gem::Version.new(Gem::VERSION))
<indirect>
ugh :(
<tockitj>
indirect, thanks
<indirect>
I also strongly suggest filing bugs on the rubygems/rubygems issue tracker
<indirect>
thumpba: sounds like the gem that is being downloaded is corrupt?
<indirect>
network issue or caching server that somehow has a bad gem version?
<indirect>
try downloading the .gem file directly and then running "gem install /patht/to/bundler-1.5.2.gem"
<tockitj>
indirect, is there a way to specify bundler version too (in Gemfile)
<indirect>
f0ster: here's a script that will automatically do that lock error resolution thing (not that that was your problem) https://gist.github.com/itspriddle/5548930
<thumpba>
indirect do i need to be in the ruby/gems dir wen i install it or will it install it there by itself
<indirect>
tockitj: I think Bundler will ignore a version?
<indirect>
I am not sure
<indirect>
thumpba: it will install it there no matter where you run from
<f0ster>
thanks indirect
<tockitj>
indirect, it does ignore `gem 'bundler', '~>1.3.6'` line
<tockitj>
indirect, it would be nice to be able to lockdown bundler & rubygems version in Gemfile through DSL
patcon has joined #bundler
<indirect>
tockitj: bundler has extremely strict compatibility requirements
<indirect>
tockitj: if bundler breaks backwards compat, we will fix it right away
<indirect>
Rubygems is a different problem, but at least it doesn't get upgraded without you doing it on purpose :\
kaawee has joined #bundler
<indirect>
tockitj: I am torn on Bundler version requirements
Guest70187 has quit [Ping timeout: 264 seconds]
<tockitj>
issue we have is with deployment - administrators get errors that they can not interpret when they try to run bundle install with wrong rubygems/ruby combo
<tockitj>
it would be nice to be able to fix environment as much as possible through bundler
<tockitj>
imho
patcon has quit [Ping timeout: 245 seconds]
<tockitj>
there is already a statement that can declare valid ruby version (just blow up if it is wrong) - it would be great if it could be expanded to rubygems (and/or bundler)
havenwood has quit [Remote host closed the connection]
<tockitj>
since these are the main dependencies outside the bundlers 'scope' atm
<thumpba>
thanks indirect that gem install bundler worked
kaawee_ has joined #bundler
kaawee has quit [Ping timeout: 252 seconds]
<tockitj>
for most other file-formats it is normal to specify version of software that can work reliably with it. i think it would be ok if Gemfile could specify which bundler version was able to read it well
<thumpba>
now im seeing my other gems corrupt
<thumpba>
not sure why
<tockitj>
thumpba, which ruby / rubygems version are you using ?
havenwood has joined #bundler
<thumpba>
2.1.11
<thumpba>
actually 2.2.1
<tockitj>
thumpba, can you show the error you are getting
<tockitj>
I joined too late to see it
<tockitj>
also what is your ruby version
<thumpba>
when i run bundle install it says package metadata is missing in /usr/lib64/ruby/gems/1.8/cache/daemons-1.1.9.gem diff-lcs etc..
<thumpba>
so ive been downloading from rubygems site and manually installing them
<thumpba>
after removing them
<tockitj>
are you using rvm ?
<thumpba>
no
<tockitj>
this is ruby 1.8 ?
<thumpba>
yes
<tockitj>
sorry, thumpba - don't know what is the issue