crankharder has left #bundler [#bundler]
IteratorP has joined #bundler
thumpba__ has quit [Remote host closed the connection]
havenwood has joined #bundler
robbyoconnor has quit [Ping timeout: 272 seconds]
robbyoconnor has joined #bundler
havenwood has quit []
cha1tanya has joined #bundler
thumpba_ has joined #bundler
thumpba_ has quit [Ping timeout: 250 seconds]
thumpba_ has joined #bundler
cha1tanya has quit [Ping timeout: 245 seconds]
thumpba_ has quit [Ping timeout: 240 seconds]
thumpba_ has joined #bundler
IteratorP has quit [Remote host closed the connection]
thumpba_ has quit [Remote host closed the connection]
IteratorP has joined #bundler
thumpba_ has joined #bundler
x1337807x has joined #bundler
thumpba_ has quit [Remote host closed the connection]
IteratorP has quit [Remote host closed the connection]
IteratorP has joined #bundler
IteratorP has quit [Remote host closed the connection]
IteratorP has joined #bundler
tbuehlmann has joined #bundler
IteratorP has quit [Remote host closed the connection]
IteratorP has joined #bundler
IteratorP has quit [Remote host closed the connection]
x1337807x has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
IteratorP has joined #bundler
ixti has joined #bundler
tcurdt has joined #bundler
robbyoconnor has quit [Ping timeout: 256 seconds]
robbyoconnor has joined #bundler
tcurdt has quit [Ping timeout: 272 seconds]
tcurdt has joined #bundler
tcurdt has quit [Ping timeout: 250 seconds]
robbyoconnor has quit [Excess Flood]
robbyoconnor has joined #bundler
IteratorP has quit [Remote host closed the connection]
bgupta has quit [Read error: Connection reset by peer]
havenwood has joined #bundler
bgupta has joined #bundler
havenwood has quit [Ping timeout: 264 seconds]
solars has joined #bundler
<
solars>
it's a svn project, that's why this sounds a bit confusing
<
solars>
I think I got it
tcurdt has joined #bundler
thumpba_ has joined #bundler
thumpba_ has quit [Ping timeout: 240 seconds]
dwradcliffe has quit [Ping timeout: 245 seconds]
dwradcliffe has joined #bundler
ohcibi_ is now known as ohcibi
thejoecarroll has joined #bundler
havenwood has joined #bundler
pothibo has joined #bundler
chouhoulis has joined #bundler
havenwood has quit [Remote host closed the connection]
thumpba_ has joined #bundler
thumpba_ has quit [Ping timeout: 260 seconds]
havenwood has joined #bundler
solars has left #bundler ["WeeChat 0.4.1"]
havenwood has quit [Remote host closed the connection]
havenwood has joined #bundler
mechanicalduck_ has joined #bundler
<
mechanicalduck_>
hi
<
mechanicalduck_>
So I got the problem that there are two gems which require different versions of a third gem.
<
mechanicalduck_>
How can I solve this?
<
mechanicalduck_>
Downgrade until a common denominator is found?
<
mechanicalduck_>
susy (~> 2.1.3) ruby depends on sass (< 3.5, >= 3.3.0) ruby
<
mechanicalduck_>
compass (~> 0.12.7) ruby depends on sass (3.2.19)
<
mechanicalduck_>
great#
<
mechanicalduck_>
So I solved it now by using alpha version of compass.
<
mechanicalduck_>
Otherwise I would have to downgrade susy several releases and I don't like that.
ixti has quit [Quit: WeeChat 0.4.3]
ixti has joined #bundler
tcurdt has quit [Quit: bye bye]
tbuehlmann has quit [Quit: Leaving]
havenwood has quit [Remote host closed the connection]
havenwood has joined #bundler
slash_nick is now known as lib
lib is now known as slash_nick
x1337807x has joined #bundler
x1337807x has quit [Client Quit]
havenwood has quit [Remote host closed the connection]
x1337807x has joined #bundler
x1337807x has quit [Ping timeout: 260 seconds]
ixti has quit [Read error: Connection reset by peer]
ixti has joined #bundler
postmodern has joined #bundler
havenwood has joined #bundler
<
postmodern>
so how does one securely deploy a bundled app to heroku, where some of the gems are pulled down from github with OAuth tokens?
<
postmodern>
the OAuth token ends up in Gemfile.lock, and is already under version control
<
postmodern>
do people just hardcode the token?
<
postmodern>
surely there must be some way to keep the token in an env variable?
Olipro has quit [Ping timeout: 256 seconds]
x1337807x has joined #bundler
x1337807x has quit [Client Quit]
Olipro has joined #bundler
x1337807x has joined #bundler
x1337807x has quit [Client Quit]
x1337807x has joined #bundler
x1337807x has quit [Client Quit]
x1337807x has joined #bundler
x1337807x has quit [Client Quit]
x1337807x has joined #bundler
x1337807x has quit [Client Quit]
x1337807x has joined #bundler
havenwood has quit [Remote host closed the connection]
havenwood has joined #bundler
havenwood has quit [Ping timeout: 264 seconds]
lele has quit [Ping timeout: 256 seconds]
<
tmoore>
postmodern: do you know if heroku is using Bundler 1.6.x yet (I think it is)
<
tmoore>
postmodern: essentially 'bundle config #{source_url} #{username}:#{password}'
<
postmodern>
tmoore, ah ha, so i'd just have to ssh into heroku and add the configuration there
<
tmoore>
I wonder if there's a way to do it via env var... sorry I don't know Heroku very well
<
postmodern>
tmoore, can bundler accept http credentials via env variables?
<
tmoore>
I don't think so unfortunately
<
tmoore>
Most config settings can be done via env var, but since this one needs the URL in it, I don't think that will work
<
tmoore>
I'm not sure if this will work, but you might be able to read an ENV variable in the Gemfile
<
tmoore>
AFAIK username & password are excluded from Gemfile.lock in the latest Bundler version
<
postmodern>
apparently heroku has it's own configuration for gem fury
<
postmodern>
which appears to still rely on hardcoding a secret token
<
postmodern>
if you commit your secret token, it's not so secret anymore...