nerdinator 0.1.0 → 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 246dc6956b0b02cad986e56d0a0d5ca0575eacc4
4
- data.tar.gz: 16a10c37dd2987088987560a80bd47b3f927c7f6
3
+ metadata.gz: deb0a13a24db52ade6cb8eb5993f18fa2da829bb
4
+ data.tar.gz: 27955f4f11dd33e14ee8105dbde82a6af1863199
5
5
  SHA512:
6
- metadata.gz: 400efb641b9534e7f89b27009bb7a4839390f52ffd06ceb682d9462f44b8007d7b777c426ba8f06b37acc69086ef56a30940872830f7090c137de67efe882b14
7
- data.tar.gz: 1ea6bb99f2bc178480ff4e6bb82e3c1edd6d9cccf200249f81f82b13669121fed133ce687fd49af814b4d08c013346071dd0584d88666dd585386814184be4d1
6
+ metadata.gz: 718b56a437aeb2560e6ef79f84e5234f4be2c8622332311369d5d5c5481da4fa68874950c68264e50e0bc4465003ae6b22eb299acd22bccf4a334f65ababd2af
7
+ data.tar.gz: 6af4e651f3bfbfd2be4bf3c425866a821d708164047618e7e552d065b28664b797776ad661040224387960675f0122a2242e757a5d4e23fea5a9235b940dee84
@@ -7,12 +7,15 @@ module Nerdinator
7
7
  @session.tree = @config.read || Hash.new
8
8
  end
9
9
 
10
- desc 'list', 'list all namespaced tmuxinator sessions'
10
+ desc 'list',
11
+ 'list all namespaced tmuxinator sessions'
11
12
  def list
12
13
  @session.list
13
14
  end
14
15
 
15
- desc 'add [NAMESPACE]/NAME', 'add tmuxinator config NAME to the specified namespace if provided, else to the top level namespace'
16
+ desc 'add [NAMESPACE]/NAME',
17
+ 'add tmuxinator config NAME to the specified namespace if provided, else to the top
18
+ level namespace'
16
19
  def add(session_path)
17
20
  session_query = session_path.split('/')
18
21
  @session.add(session_query)
@@ -21,7 +24,8 @@ module Nerdinator
21
24
  @config.link(session_query.last)
22
25
  end
23
26
 
24
- desc 'remove NAMESPACE/[NAME]', 'remove config NAME from the NAMESPACE if provided, else recursively remove NAMESPACE'
27
+ desc 'remove NAMESPACE/[NAME]',
28
+ 'remove config NAME from the NAMESPACE if provided, else recursively remove NAMESPACE'
25
29
  def remove(session_path)
26
30
  session_query = session_path.split('/')
27
31
  @session.remove(session_query)
@@ -1,3 +1,3 @@
1
1
  module Nerdinator
2
- VERSION = "0.1.0"
2
+ VERSION = "0.2.0"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: nerdinator
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - danreynolds
@@ -94,5 +94,5 @@ rubyforge_project:
94
94
  rubygems_version: 2.0.14.1
95
95
  signing_key:
96
96
  specification_version: 4
97
- summary: Aggregator for groupings of Tmuxinator sessions
97
+ summary: Command-line interface for organizing and running groups of Tmuxinator configurations
98
98
  test_files: []