eventhub-command 0.2.5 → 0.2.7
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/lib/deployer/mule_deployer.rb +1 -1
- data/lib/eh/commands/deploy_mule.rb +1 -1
- data/lib/eh/commands/deploy_ruby.rb +1 -1
- data/lib/eh/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ad9546577d6d84138dadf728abdcfece9a97968e
|
|
4
|
+
data.tar.gz: dcb7a1dfc5cf8470076533472fe93f82ff277214
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5b2f5107eb62159bb0f3a85f0107941865c9a68968ff34234b732dd86325de15ddfc70645e88ff7ee2b46df5f74e8de3b9ad37109e56d8bb283d1ca36eb45475
|
|
7
|
+
data.tar.gz: e56393837f97d18dbe95ceec0d7c33dc1cf591ce9134c601a0c7eba63d2f4351da8ea07a097e23660a02b74086750db84f219bec442ea29bb27c6c76f6c0d358
|
|
@@ -39,7 +39,7 @@ class Deployer::MuleDeployer < Deployer::BaseDeployer
|
|
|
39
39
|
executor.execute("if [[ -d #{config_source} ]] ; then cd #{config_source} ; zip -r #{configuration_target} . ; fi")
|
|
40
40
|
|
|
41
41
|
# deploy
|
|
42
|
-
executor.execute("cp #{
|
|
42
|
+
executor.execute("cp #{configuration_target} $MULE_HOME/apps")
|
|
43
43
|
end
|
|
44
44
|
end
|
|
45
45
|
end
|
|
@@ -3,7 +3,7 @@ arg_name '[channel_adapter[,other_channel_adapter,pattern*]]'
|
|
|
3
3
|
|
|
4
4
|
command :deploy_mule do |c|
|
|
5
5
|
c.flag([:stage], desc: 'stage', type: String, long_desc: 'Stage where channel adapter is deployed to', default_value: 'development')
|
|
6
|
-
c.flag([:deploy_via], desc: 'how to get hold of the channel adapter: scm or scp', type: String, long_desc: 'copy the channel adapter zip file via scp from this machine or check it out from scm', default_value: '
|
|
6
|
+
c.flag([:deploy_via], desc: 'how to get hold of the channel adapter: scm or scp', type: String, long_desc: 'copy the channel adapter zip file via scp from this machine or check it out from scm', default_value: 'svn')
|
|
7
7
|
|
|
8
8
|
c.switch([:v, :verbose], :desc => 'Show additional output.')
|
|
9
9
|
|
|
@@ -3,7 +3,7 @@ arg_name '[processor_name,[other_processor_name,pattern*]]'
|
|
|
3
3
|
|
|
4
4
|
command :deploy_ruby do |c|
|
|
5
5
|
c.flag([:stage], desc: 'stage', type: String, long_desc: 'Stage where processor is deployed to', default_value: 'development')
|
|
6
|
-
c.flag([:deploy_via], desc: 'how to get hold of the processor: scm or scp', type: String, long_desc: 'copy the processor zip file via scp from this machine or check it out from scm', default_value: '
|
|
6
|
+
c.flag([:deploy_via], desc: 'how to get hold of the processor: scm or scp', type: String, long_desc: 'copy the processor zip file via scp from this machine or check it out from scm', default_value: 'svn')
|
|
7
7
|
c.flag([:branch], desc: 'branch', type: String, long_desc: 'What branch to deploy. Only when deploy_via=scm', default_value: 'master')
|
|
8
8
|
c.flag([:tag], desc: 'tag', type: String, long_desc: 'What tag to deploy. Only when deploy_via=scm', default_value: nil)
|
|
9
9
|
|
data/lib/eh/version.rb
CHANGED
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.2.
|
|
4
|
+
version: 0.2.7
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Pascal Betz
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2015-02-
|
|
12
|
+
date: 2015-02-27 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: rake
|