sesh 0.1.1 → 0.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/lib/sesh/tmux_control.rb +2 -1
- data/lib/sesh/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 274885c1f96070e479f601f2f9af7cf9b007e65c
|
|
4
|
+
data.tar.gz: a27312149c29cc6e47d6f6f9654c58a7fb968ba6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 41e7c2c8a282573a7a9007aa08575be839d3e355abb65aea3cfd60988f573ac6b4b6f3a485e15e52677fbaba0db7a36029a1e6a055e0a9a3e544ebaa275d0c7f
|
|
7
|
+
data.tar.gz: 444fb567e61f66f024d9648230063e920830c9b35fa79216ad99132adee9a59a2a35fcbad414a2a7e1caa16b7467e8ac6fe62f777aef5d96b3a00fa113e67fb1
|
data/Gemfile.lock
CHANGED
data/lib/sesh/tmux_control.rb
CHANGED
|
@@ -15,8 +15,9 @@ module Sesh
|
|
|
15
15
|
"[t]mux.*[#{pn[0]}]#{pn[1..-1]}" end
|
|
16
16
|
|
|
17
17
|
def issue_start_command!
|
|
18
|
+
# Add bundle exec to the sesh begin command for dev purposes.
|
|
18
19
|
cmd = Sesh.format_command <<-BASH
|
|
19
|
-
tmux -S "#{@options[:socket_file]}" new-session -d "eval \\"\$SHELL -l -c 'rvm use default;
|
|
20
|
+
tmux -S "#{@options[:socket_file]}" new-session -d "eval \\"\$SHELL -l -c 'rvm use default; sesh begin'\\"" 2>&1
|
|
20
21
|
BASH
|
|
21
22
|
# puts cmd
|
|
22
23
|
output = `#{cmd}`.strip
|
data/lib/sesh/version.rb
CHANGED