tmuxinator 3.4.0 → 3.4.1

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 322e55351978533f2dcca159c0f3cdd068baa6ff6a74105c26ef4ff788ecd033
4
- data.tar.gz: 64aa7c6fb70e76019575e090e6f56b43be3b88e64e6efb3f7a91a94f0ba96963
3
+ metadata.gz: a09259643bd044af3e5d2ed4dba81a22185e8989459b814ccbf089e84e6a2589
4
+ data.tar.gz: fb7dfd5ae08a7a0fe0ad526fd2576d8b79613e741bcab7175643417ec87bb771
5
5
  SHA512:
6
- metadata.gz: 78c824a5705cc25a9cb7bb013053006c2cdf943b5b158e1431e44b5fe6ddd75db31efca58c6ec5c693f919c2d1b21f4fba7728ed7e260f6452849f4de5d3e5bb
7
- data.tar.gz: 5530202ccef42f13efce8b6082d1af63d80365896251f018f118437746e01278bf8080634a7996e86c67e1ab8280c7d6be8f4f36e0ca0ea717ccda2b9d0cfabc
6
+ metadata.gz: 241501ffa56846f8b46c822a1796ff8af6a132cbd104ab6063291ef78d9ee72816a80c12c1120b6806587bc05b489a1233dd9484e4b7ddec3052b0783f673754
7
+ data.tar.gz: a6f29a21917100234da0ce475e1adb60677d2b606dc84b400a323f42beda1bced2bd8b105b1749994d86eb3812a2fc736c319063b50095db80914b40acdbd0fe
@@ -3,6 +3,9 @@
3
3
  module Tmuxinator
4
4
  module TmuxVersion
5
5
  SUPPORTED_TMUX_VERSIONS = [
6
+ "3.7b",
7
+ "3.7a",
8
+ 3.7,
6
9
  "3.6b",
7
10
  "3.6a",
8
11
  3.6,
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Tmuxinator
4
- VERSION = "3.4.0"
4
+ VERSION = "3.4.1"
5
5
  end
@@ -11,4 +11,6 @@ windows:
11
11
  - shell:
12
12
  root: .
13
13
  panes:
14
- - bin/setup
14
+ - commands:
15
+ - bin/setup
16
+ - bundle exec rake test
@@ -6,6 +6,14 @@ describe "tmuxinator debug snapshots" do
6
6
  let(:cli) { Tmuxinator::Cli }
7
7
  let(:snapshot_root) { File.expand_path("../snapshots/debug", __dir__) }
8
8
 
9
+ def expect_snapshot(output, snapshot_path)
10
+ if ENV["UPDATE_SNAPSHOTS"]
11
+ File.write(snapshot_path, output.delete_suffix("\n"))
12
+ else
13
+ expect(output).to eq("#{File.read(snapshot_path)}\n")
14
+ end
15
+ end
16
+
9
17
  around do |example|
10
18
  original_argv = ARGV.dup
11
19
  example.run
@@ -44,7 +52,7 @@ describe "tmuxinator debug snapshots" do
44
52
  "#{fixture_name}.sh"
45
53
  )
46
54
 
47
- expect(output).to eq("#{File.read(snapshot_path)}\n")
55
+ expect_snapshot(output, snapshot_path)
48
56
  end
49
57
  end
50
58
  end
@@ -60,6 +68,6 @@ describe "tmuxinator debug snapshots" do
60
68
 
61
69
  snapshot_path = File.join(snapshot_root, "2.6", "session_name.sh")
62
70
 
63
- expect(output).to eq("#{File.read(snapshot_path)}\n")
71
+ expect_snapshot(output, snapshot_path)
64
72
  end
65
73
  end
@@ -206,6 +206,9 @@ describe Tmuxinator::Config do
206
206
  "v3.6" => 3.6,
207
207
  "v3.6a" => 3.6,
208
208
  "v3.6b" => 3.6,
209
+ "v3.7" => 3.7,
210
+ "v3.7a" => 3.7,
211
+ "v3.7b" => 3.7,
209
212
  "v3.12.0" => 3.12,
210
213
  "v3.12.5" => 3.12
211
214
  }.freeze
@@ -52,6 +52,7 @@ cd /workspace/basic
52
52
 
53
53
  tmux -L interface send-keys -t basic:1.0 bundle\ exec\ ruby\ -v C-m
54
54
  tmux -L interface send-keys -t basic:1.0 bin/setup C-m
55
+ tmux -L interface send-keys -t basic:1.0 bundle\ exec\ rake\ test C-m
55
56
 
56
57
  tmux -L interface select-layout -t basic:1 tiled
57
58
 
@@ -50,6 +50,7 @@ cd /workspace/basic
50
50
 
51
51
  tmux -L interface send-keys -t basic:1.0 bundle\ exec\ ruby\ -v C-m
52
52
  tmux -L interface send-keys -t basic:1.0 bin/setup C-m
53
+ tmux -L interface send-keys -t basic:1.0 bundle\ exec\ rake\ test C-m
53
54
 
54
55
  tmux -L interface select-layout -t basic:1 tiled
55
56
 
@@ -50,9 +50,10 @@ cd /workspace/basic
50
50
  # Window "shell"
51
51
 
52
52
 
53
-
53
+ tmux -L interface select-pane -t basic:1.0 -T commands
54
54
  tmux -L interface send-keys -t basic:1.0 bundle\ exec\ ruby\ -v C-m
55
55
  tmux -L interface send-keys -t basic:1.0 bin/setup C-m
56
+ tmux -L interface send-keys -t basic:1.0 bundle\ exec\ rake\ test C-m
56
57
 
57
58
  tmux -L interface select-layout -t basic:1 tiled
58
59
 
metadata CHANGED
@@ -1,15 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tmuxinator
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.4.0
4
+ version: 3.4.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Allen Bargi
8
8
  - Christopher Chow
9
- autorequire:
10
9
  bindir: bin
11
10
  cert_chain: []
12
- date: 2026-05-23 00:00:00.000000000 Z
11
+ date: 1980-01-02 00:00:00.000000000 Z
13
12
  dependencies:
14
13
  - !ruby/object:Gem::Dependency
15
14
  name: erubi
@@ -251,8 +250,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
251
250
  - !ruby/object:Gem::Version
252
251
  version: '2.7'
253
252
  requirements: []
254
- rubygems_version: 3.5.22
255
- signing_key:
253
+ rubygems_version: 3.7.2
256
254
  specification_version: 4
257
255
  summary: Create and manage complex tmux sessions easily.
258
256
  test_files: