eventhub-command 0.7.0 → 0.7.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 +5 -0
- data/README.md +2 -2
- data/lib/eh/commands/generate.rb +1 -1
- data/lib/eh/commands/repository.rb +1 -1
- data/lib/eh/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6f71b36349c7fdafb75e918e5d1deb301dd97422
|
|
4
|
+
data.tar.gz: 47fa63a00d8f5cfcf100779ce42a69f946eeb9f7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 99f1032a219af200371e08c0e1f7111e2e3d3f0080b44ed966463c3bf02ffe714110129c743228b26f73d46b7e6c308ef3ba8938656dab1aa3ee8d1d4481fe9a
|
|
7
|
+
data.tar.gz: 52a8f47c0354a187a35ac4367384b443ec51b834d90a2219bf76daea3a3fe9f60bc246bdd96ba21d683bf1669fde47270329ce907b40ea656923b6f3f37bedd0
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
|
@@ -50,11 +50,11 @@ The file name is the name of the stage, the content describes environments, host
|
|
|
50
50
|
Help and description for the commands can be obtained through:
|
|
51
51
|
|
|
52
52
|
~~~
|
|
53
|
-
eh
|
|
53
|
+
eh help
|
|
54
54
|
~~~
|
|
55
55
|
and more specific for a single command
|
|
56
56
|
~~~
|
|
57
|
-
eh <COMMAND>
|
|
57
|
+
eh help <COMMAND> [<SUBCOMMAND>]
|
|
58
58
|
~~~
|
|
59
59
|
|
|
60
60
|
|
data/lib/eh/commands/generate.rb
CHANGED
|
@@ -57,7 +57,7 @@ command :repository do |command|
|
|
|
57
57
|
|
|
58
58
|
Eh::Settings.current.data['repositories'] << {
|
|
59
59
|
'url' => args[0],
|
|
60
|
-
'dir' => args[1],
|
|
60
|
+
'dir' => File::ALT_SEPARATOR ? args[1].gsub(File::ALT_SEPARATOR, File::SEPARATOR) : args[1],
|
|
61
61
|
'deploy_username' => args[2],
|
|
62
62
|
'deploy_password' => args[3],
|
|
63
63
|
'current' => (Eh::Settings.current.data['repositories'].length == 0)
|
data/lib/eh/version.rb
CHANGED