00:14
woollyams has quit [Ping timeout: 252 seconds]
00:15
woollyams has joined #bundler
00:26
woollyams has quit [Read error: Connection reset by peer]
00:31
woollyams has joined #bundler
00:36
retro|cz has quit [Ping timeout: 252 seconds]
00:48
Cidan is now known as zz_Cidan
00:55
1JTAAA4L9 is now known as adam12
01:09
zz_Cidan is now known as Cidan
01:43
Cidan is now known as zz_Cidan
02:09
zz_Cidan has quit [Ping timeout: 252 seconds]
02:11
cha1tanya has joined #bundler
02:11
zz_Cidan has joined #bundler
02:11
zz_Cidan is now known as Cidan
02:12
Cidan has quit [Changing host]
02:12
Cidan has joined #bundler
02:57
Who has joined #bundler
02:57
Who has quit [Changing host]
02:57
Who has joined #bundler
03:03
<
Who >
Radar: ah your also here, I would prefer this channel over the RoR one (since its always so busy)
03:10
cha1tanya has quit [Ping timeout: 240 seconds]
04:17
deitrick has joined #bundler
04:18
deitrick has quit [Client Quit]
04:24
woollyams has quit [Ping timeout: 252 seconds]
04:26
woollyams has joined #bundler
04:50
Who has quit [Quit: Who]
04:57
robbyoconnor has joined #bundler
06:07
retro|cz has joined #bundler
06:20
retro|cz has quit [Ping timeout: 250 seconds]
07:18
robbyoconnor has quit [Quit: Konversation terminated!]
07:24
Cidan is now known as zz_Cidan
07:51
RubyPanther has quit [Read error: Connection timed out]
07:51
RubyPanther has joined #bundler
08:03
RubyPanther has quit [Ping timeout: 252 seconds]
08:14
samphippen has joined #bundler
08:16
RubyPanther has joined #bundler
08:23
woollyams has quit [Ping timeout: 252 seconds]
08:49
samphippen has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
09:36
samphippen has joined #bundler
09:46
brixen has quit [Ping timeout: 240 seconds]
09:49
Garoe has joined #bundler
09:52
brixen has joined #bundler
10:04
samphipp_ has joined #bundler
10:08
samphippen has quit [Ping timeout: 252 seconds]
11:08
woollyams has joined #bundler
13:09
samphipp_ is now known as samphippen
13:10
timgauthier has joined #bundler
13:37
Who has joined #bundler
13:45
RubyPanther has quit [Ping timeout: 258 seconds]
13:55
chouhoulis has joined #bundler
13:55
chouhoulis has quit [Remote host closed the connection]
13:55
chouhoulis has joined #bundler
13:56
jacobat_ has quit [Quit: WeeChat 0.4.0]
13:58
RubyPanther has joined #bundler
14:13
t4nkd has joined #bundler
14:22
kgrz has joined #bundler
14:26
xunil has joined #bundler
14:26
<
xunil >
Can I let bundler use a different work dir?
14:26
<
xunil >
For bundle install?
14:27
cwebber has joined #bundler
14:28
<
Who >
xunil: can you tell me what you need to do?
14:35
<
xunil >
Who: when there isn't a package in official bundler repository, can I use a private repository, too?
14:36
<
Who >
so let describe the problem so we’re on the same page
14:36
<
Who >
you have project called x1
14:36
<
Who >
and another one called x2
14:36
<
Who >
on x2 you did bundle pack
14:37
<
Who >
now you want use x2 package to install gems on x1
14:37
<
Who >
is this correct?
14:43
<
xunil >
somehow yes
14:43
<
xunil >
Because I had to make my own package because there isn't yet one in repo.
14:45
ixti has joined #bundler
14:45
ixti has quit [Read error: Connection reset by peer]
14:49
<
Who >
I don’t think there is a way to use another projects cache dir, bundle install —local doesn’t take a path
15:17
timgauthier has quit [Ping timeout: 240 seconds]
15:18
timgauthier has joined #bundler
15:26
kgrz has quit [Remote host closed the connection]
15:27
kgrz has joined #bundler
15:28
<
xunil >
So I ran bundle install and it is done, I can also invoke the new commands.
15:28
<
xunil >
I want to install them locally into the directory.
15:28
<
xunil >
Is this possible?
15:28
<
xunil >
Because I can't find them in that directory.
15:28
<
Who >
then install using bundle install —local
15:30
cwebber has quit []
15:30
<
xunil >
I called bundle install --local and it went through successfully. But the gems still aren't there.
15:30
<
xunil >
I can call them but they aren't in that directory.
15:30
<
xunil >
which librarian-puppet
15:30
<
xunil >
/var/lib/jenkins/.rbenv/shims/librarian-puppet
15:30
<
Who >
will put them into
15:30
<
Who >
vendor/cache dir
15:31
<
Who >
in your project root folder
15:31
<
xunil >
Who: So first install, then pack?
15:31
<
xunil >
Who: or can I directly use pack?
15:31
<
Who >
should call install
15:31
<
xunil >
Who: ok, there are gem files now
15:31
<
xunil >
Who: But how can I now call the command?
15:32
<
xunil >
e.g. for librarian-puppet-1.0.1.gem
15:32
<
Who >
which command
15:32
<
xunil >
I want to call librarian-puppet
15:32
<
Who >
does it have a bin?
15:32
<
Who >
bundle exec librarian-puppet
15:32
<
xunil >
Who: it is a shell script starting with '#!/usr/bin/env bash'
15:32
<
xunil >
Who: so first bundle pack, then bundle exec?
15:33
<
Who >
bundle pack caches your gems
15:33
<
Who >
so in the future you can install using bundle install --local
15:33
<
Who >
(e.g. while deploying)
15:33
<
Who >
but if you intention is not to cache
15:33
<
Who >
just bundle install
15:34
<
Who >
and bundle exec should do
15:34
<
xunil >
Who: The following: The ci server should pull the dependencies for a build.
15:34
<
xunil >
Who: So I want to have those gems locally for the build until the workspace is cleaned.
15:34
<
Who >
then you want to cache
15:34
<
Who >
use bundle pack
15:35
kgrz has quit [Ping timeout: 258 seconds]
15:36
<
xunil >
Who: ok, so bundle pack and bundle exec, right?
15:57
cwebber has joined #bundler
16:08
<
xunil >
Who: it is nowhere mentioned in the documentation
16:12
<
Who >
I cecked the code
16:13
<
xunil >
Who: I think they should add it to the docs. I am not so good in ruby :)
16:21
zz_Cidan is now known as Cidan
16:21
havenwood has joined #bundler
16:22
cwebber has quit []
16:23
cwebber has joined #bundler
16:32
kgrz has joined #bundler
16:34
Who has quit [Quit: Who]
16:36
kgrz has quit [Ping timeout: 245 seconds]
16:36
Who has joined #bundler
16:47
samphippen has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
16:48
Who has quit [Quit: Who]
17:03
Sylario has joined #bundler
17:10
<
Sylario >
My Rails/Capistrano do a strange bundler command that makes bundler install ruby in a bundle folder. How can i control the ruby version installed in the BUNDLE_PATH folder
17:11
<
Sylario >
What is strange is the bundle exec ruby -v does not return the version of the bundle folder
17:12
timgauthier is now known as timstarke
17:12
timstarke is now known as tstarke
17:13
xunil has left #bundler [#bundler]
17:14
tstarke is now known as timgauthier
17:28
cha1tanya has joined #bundler
17:32
havenwood has quit [Remote host closed the connection]
17:33
havenwood has joined #bundler
17:37
havenwood has quit [Ping timeout: 250 seconds]
17:42
cha1tanya has quit [Ping timeout: 258 seconds]
18:08
havenwood has joined #bundler
18:08
samphippen has joined #bundler
18:08
kgrz has joined #bundler
18:24
kgrz has quit [Remote host closed the connection]
18:28
cwebber has quit []
18:39
samphippen has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
19:00
steerio has joined #bundler
19:23
cwebber has joined #bundler
19:34
Garoe has quit [Quit: Saliendo]
19:34
jplussier has joined #bundler
19:37
Sylario has left #bundler [#bundler]
19:39
jplussier has quit [Quit: Leaving...]
19:59
jplussier has joined #bundler
20:04
jplussier is now known as t4nkd
20:25
Cidan is now known as zz_Cidan
20:26
zz_Cidan is now known as Cidan
20:27
kgrz has joined #bundler
20:32
kgrz has quit [Ping timeout: 252 seconds]
20:47
jaimef has quit [Excess Flood]
20:47
jaimef has joined #bundler
21:12
x1337807x has joined #bundler
21:13
robbyoconnor has joined #bundler
21:33
x1337807x has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
21:38
x1337807x has joined #bundler
22:45
jaimef has quit [Excess Flood]
22:50
jaimef has joined #bundler
22:52
samphippen has joined #bundler
23:16
chouhoulis has quit [Ping timeout: 250 seconds]
23:42
samphippen has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]