threeman 0.9.1 → 0.9.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f519d68b5998e9a5db91d357a765a8e4f2d1aeac019148287ad0cdc275e761d0
4
- data.tar.gz: 42d158adcc2662f12809ad76a69dff032cb63101cb35c86e75604ee71a96eb96
3
+ metadata.gz: cd4ea391ddc6aca445375ce456da0cd8cade5742bd7e8121fc51f537a83dbb1c
4
+ data.tar.gz: 9e89a02dc6003fec6bb92c4cd956b0ea745a75859104d591b647de00292fe112
5
5
  SHA512:
6
- metadata.gz: 8b9b66503f87fc52d6e4ea622355c11dccd840d62c77d6514ec63728068864739090970ece36289eae2fdcb814cd662d7ff3ac1de195e54d33dd02e66254f2b2
7
- data.tar.gz: 61de9bbde308eb33ac6c7ce112a63e7632cda712573a6b50d19913d57e9bbcd646be7bae531de2e6615914325cb67ee6d80938ef9b7011205da8296f52e721ce
6
+ metadata.gz: 60e68d095d97b637220017ffb2ab2e73b60014acbb07b8872c04a93fb8aa41556eba15ab530c813cb51e3669cbbf413d886fc29c25efa72dcfb8d56d459b122c
7
+ data.tar.gz: d17660d4861c0bbab94a6d1e49628ec76fbe1ea13dc6f95c4c0d27f9fccd1f3bd7aea8b65e6d78bd37db36e2e1f2b5a2c92f93f4d748a8952b85af89e6046a27
data/.threeman CHANGED
@@ -1,4 +1,4 @@
1
1
  panes:
2
2
  - one
3
3
  - three
4
- formation: one=1,two=2,three=3
4
+ formation: one=1,two=2,three=3,zero=0
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ # 0.9.2 - April 24, 2019
2
+
3
+ * Bug fix for my bug fix: don't allow 0.9.1's bug fix to prevent specifying formation in a dotfile
4
+
1
5
  # 0.9.1 - March 25, 2019
2
6
 
3
7
  * Bug fix: add default formation of all=1 to restore previous behavior if formation isn't passed
data/Procfile CHANGED
@@ -1,3 +1,4 @@
1
1
  one: echo 1; sleep 10
2
2
  two: echo 2; sleep 10
3
3
  three: echo 3; sleep 10
4
+ zero: echo 'This should never appear'; sleep 10
data/lib/threeman/cli.rb CHANGED
@@ -26,7 +26,7 @@ module Threeman
26
26
  option :layout_name, desc: "If using tmux, the layout name to use for paned commands", type: :string
27
27
  option :procfile, desc: "Procfile file name", default: "Procfile", aliases: "-f"
28
28
  option :root, desc: "Directory of Procfile", aliases: "-d"
29
- option :formation, aliases: '-m', default: "all=1"
29
+ option :formation, aliases: '-m'
30
30
  option(
31
31
  :open_in_new_tab,
32
32
  desc: "If using iterm3, configure how threeman opens",
@@ -52,7 +52,7 @@ module Threeman
52
52
  procfile_name = options[:procfile]
53
53
  pwd = options[:root] || Dir.pwd
54
54
  procfile = Threeman::Procfile.new(File.expand_path(procfile_name, pwd))
55
- formation = parse_formation(options[:formation])
55
+ formation = parse_formation(options[:formation] || 'all=1')
56
56
  commands = procfile.commands(pwd, options[:port] || 5000, options[:command_prefix], formation)
57
57
 
58
58
  frontend_name = options[:frontend] || auto_frontend
@@ -1,3 +1,3 @@
1
1
  module Threeman
2
- VERSION = "0.9.1"
2
+ VERSION = "0.9.2"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: threeman
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.1
4
+ version: 0.9.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nat Budin
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2019-03-25 00:00:00.000000000 Z
11
+ date: 2019-04-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: foreman