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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 0c7dbd01c57417a4d8ffdffd338f2fa1ad170d23
4
- data.tar.gz: f582323a6905bae41cd7bba5b5bffe1f35b3533a
3
+ metadata.gz: 6f71b36349c7fdafb75e918e5d1deb301dd97422
4
+ data.tar.gz: 47fa63a00d8f5cfcf100779ce42a69f946eeb9f7
5
5
  SHA512:
6
- metadata.gz: 52d5cabc1dd6546c835ec7fbef0c294b919135310bf933623048868f547e7a45ad650eeacc5ca04d49b00f326e86a7fc061e0791c2e5ac225c6a85f82a46e805
7
- data.tar.gz: 1ee64c56a674128255197cdac3d2dbdd1969379a38825b27fdcb043f81c6b7724845837a8fbc9446cf1bdd3470a3f9717fe98792b02d9dbd3a67bcc6e5a227e9
6
+ metadata.gz: 99f1032a219af200371e08c0e1f7111e2e3d3f0080b44ed966463c3bf02ffe714110129c743228b26f73d46b7e6c308ef3ba8938656dab1aa3ee8d1d4481fe9a
7
+ data.tar.gz: 52a8f47c0354a187a35ac4367384b443ec51b834d90a2219bf76daea3a3fe9f60bc246bdd96ba21d683bf1669fde47270329ce907b40ea656923b6f3f37bedd0
data/CHANGELOG.md CHANGED
@@ -1,3 +1,8 @@
1
+ ## 0.7.1 (2017-10-24)
2
+
3
+ * Add: Support for windows backslashes
4
+ * Edit: More colorized output
5
+
1
6
  ## 0.7.0 (2017-10-24)
2
7
 
3
8
  * Fix: Generate ruby pocessor
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 --help
53
+ eh help
54
54
  ~~~
55
55
  and more specific for a single command
56
56
  ~~~
57
- eh <COMMAND> --help
57
+ eh help <COMMAND> [<SUBCOMMAND>]
58
58
  ~~~
59
59
 
60
60
 
@@ -56,7 +56,7 @@ command :generate do |c|
56
56
 
57
57
  FileUtils.rm_rf template_tmp_dir
58
58
 
59
- puts "Done."
59
+ puts "Done.".green
60
60
  end
61
61
  end
62
62
 
@@ -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
@@ -1,3 +1,3 @@
1
1
  module Eh
2
- VERSION = '0.7.0'
2
+ VERSION = '0.7.1'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: eventhub-command
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.0
4
+ version: 0.7.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Pascal Betz