takeltau 0.45.10 → 0.45.12
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/README.md +9 -3
- data/lib/takeltau/completion/cli.rb +1 -1
- data/lib/takeltau/ship/completion/bash.rb +2 -0
- data/lib/takeltau/ship/project/start.rb +1 -0
- data/lib/takeltau/version +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a32cd38d1255e8701260211ac9b2ba7f4a9b002bd343dec0ee3d734d924781e4
|
4
|
+
data.tar.gz: 599f3350515cff75a2aa3bd6cf519654d81d8f37f296f690decc508d5fb463e5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b14a43a2af5e26038f3c1261a171642840e8221f96255c024b92d8948facf6aa63bfdcaa4f6796f90ab1a702c02958ff55b4f4bf8a6f0164bad6e9fb0ca2e504
|
7
|
+
data.tar.gz: e674a798c71eb1982779d5657eb2281b7fb78c435695e5e7210bc73f6be61df240cb0ec88d1a67031086f4b5c6a1032e91899a278f54a282cf6f624f9923b503
|
data/README.md
CHANGED
@@ -194,10 +194,10 @@ or *tau config*.
|
|
194
194
|
| TAKELAGE_TAU_CONFIG_* | ultimate | Fileless configuration through TAKELAGE_TAU_CONFIG environment variables. |
|
195
195
|
|
196
196
|
The tau command line tool is directory-aware so it is important that you can set the working directory of the tau command.
|
197
|
-
The project directory is identified by
|
197
|
+
The project directory is identified by precedence:
|
198
198
|
|
199
|
-
| Method | Precedence |
|
200
|
-
|
199
|
+
| Method | Precedence |
|
200
|
+
|-|-|
|
201
201
|
| Current working directory | lowest |
|
202
202
|
| Main [`Rakefile`](Rakefile) | normal |
|
203
203
|
| `TAKELAGE_WORKDIR` environment variable | highest |
|
@@ -267,6 +267,12 @@ Add this to your [bash startup files](https://www.gnu.org/software/bash/manual/h
|
|
267
267
|
source <(tau completion bash)
|
268
268
|
```
|
269
269
|
|
270
|
+
and/or
|
271
|
+
|
272
|
+
```bash
|
273
|
+
source <(ship completion bash)
|
274
|
+
```
|
275
|
+
|
270
276
|
### Software Tests
|
271
277
|
|
272
278
|
*takelage-cli* uses
|
@@ -80,6 +80,7 @@ module ShipProjectStart
|
|
80
80
|
ports_list = _ship_project_start_get_ports_list ports, max_length
|
81
81
|
ports_list.sort_by! { |port| port[:port] }
|
82
82
|
say ports_list.map { |port| port[:string] }.join("\n")
|
83
|
+
say
|
83
84
|
end
|
84
85
|
|
85
86
|
# get a sortable list of port numbers and strings describing the ports
|
data/lib/takeltau/version
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.45.
|
1
|
+
0.45.12
|