ranch-hand 0.8.0 → 0.8.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 +4 -4
- data/Changelog.md +2 -0
- data/files/ranch-hand.plugin.zsh +1 -1
- data/lib/ranch_hand/version.rb +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: 2fb14b44db08c6e28ef1ff0e3af33dac5d59db3796b258a335d97e2877a0f8d9
|
|
4
|
+
data.tar.gz: 2f511a77fc5e745c0dd82669e45994be770bd459e362c71023a3c3cf61261de5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b6144eaf7a166690fa432663ff327d07039a587ccbb0273ab48d05cb05210a89296821ff1720f7050aa2d06274b00216774d2b437551e64cfa1ba46e873e10d6
|
|
7
|
+
data.tar.gz: 4607f82b622d699f95ca94ad21fe0b82a8b8ff9a172f164731dc5e4ea43939ced13ad80e472f0c1f138b6eb5d6806a0157819c2486538363952ad1359df48cf1
|
data/Changelog.md
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
### 0.8.1
|
|
2
|
+
- Bug fix for ohmyzsh shortcut that used wrong flag for skip prefix
|
|
1
3
|
### 0.8.0
|
|
2
4
|
- Add ability to specify a command prefix that will be added to all commands run via `ranch-hand exec` by default (peregrinator/ranch-hand/issues/8)
|
|
3
5
|
- Add ability to edit the project config file via new command `ranch-hand update_config` (peregrinator/ranch-hand/issues/9)
|
data/files/ranch-hand.plugin.zsh
CHANGED
|
@@ -3,4 +3,4 @@ alias rhs='ranch-hand setup' # setup ranch hand with Rancher CLI
|
|
|
3
3
|
alias rhi='ranch-hand init' # initialize default ranch hand settings in a project
|
|
4
4
|
alias rhu='ranch-hand update_config' # update default ranch hand settings for a project
|
|
5
5
|
alias rhe='ranch-hand exec' # run a command in a container
|
|
6
|
-
alias rhes='ranch-hand exec --
|
|
6
|
+
alias rhes='ranch-hand exec --skip_prefix' # run a command in a container but skip default command_prefix
|
data/lib/ranch_hand/version.rb
CHANGED