eventhub-command 0.3.5 → 0.3.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/README.md +0 -2
- data/lib/eh/commands/stage.rb +1 -0
- data/lib/eh/settings.rb +5 -1
- data/lib/eh/version.rb +1 -1
- data/lib/eh-commands.rb +1 -0
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e905d03ba5f13b0dc2c8b458f08619bd359b52fb
|
|
4
|
+
data.tar.gz: f1b06b1b645d511aa791253f648ab68c5f1ffa2b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: dc69822118ed75ea670985a295b6803245763652f89112bfb02f267a5ffdb7ff9bfc176a3e91585356414ece6dc833e7de15f68d5e6e49521014780e363177c4
|
|
7
|
+
data.tar.gz: cde30ea67d3c8202850d6f1b9cc17324a19366429597b7dc1b0a1241c55b5e8bfc492d95332ad386783b6a28475464a5692d375454cb8de3914d00bc0a8bb607
|
data/README.md
CHANGED
|
@@ -87,5 +87,3 @@ Those config files will be used uppon next deployment.
|
|
|
87
87
|
* package_ruby: package ruby processors to zip files and copy to release directory on local machines. Those packages
|
|
88
88
|
will be used upon next "deploy_via scp" or if you commit them to SVN then upon next "deploy_via svn"
|
|
89
89
|
* generate_processor: generate a processor from a basic template
|
|
90
|
-
|
|
91
|
-
|
data/lib/eh/commands/stage.rb
CHANGED
data/lib/eh/settings.rb
CHANGED
|
@@ -118,10 +118,14 @@ class Eh::Settings
|
|
|
118
118
|
end
|
|
119
119
|
|
|
120
120
|
def deployment_management_files
|
|
121
|
-
[
|
|
121
|
+
[File.join(deployment_dir, 'management', 'launcher.rb')]
|
|
122
122
|
end
|
|
123
123
|
|
|
124
124
|
def stages_dir
|
|
125
125
|
File.join(repository.dir, 'config', 'stages')
|
|
126
126
|
end
|
|
127
|
+
|
|
128
|
+
def db_backups_dir
|
|
129
|
+
'/tmp/foo'
|
|
130
|
+
end
|
|
127
131
|
end
|
data/lib/eh/version.rb
CHANGED
data/lib/eh-commands.rb
CHANGED
|
@@ -9,6 +9,7 @@ if Eh::Settings.current.repository
|
|
|
9
9
|
require 'eh/commands/deploy_mule'
|
|
10
10
|
require 'eh/commands/deploy_console'
|
|
11
11
|
require 'eh/commands/dump'
|
|
12
|
+
require 'eh/commands/db'
|
|
12
13
|
else
|
|
13
14
|
# remove unused settings for this version
|
|
14
15
|
Eh::Settings.current.data.delete('repository_root_dir')
|
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.3.
|
|
4
|
+
version: 0.3.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-
|
|
12
|
+
date: 2015-06-17 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: rake
|
|
@@ -194,7 +194,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
194
194
|
version: '0'
|
|
195
195
|
requirements: []
|
|
196
196
|
rubyforge_project:
|
|
197
|
-
rubygems_version: 2.4.
|
|
197
|
+
rubygems_version: 2.4.5
|
|
198
198
|
signing_key:
|
|
199
199
|
specification_version: 4
|
|
200
200
|
summary: Event Hub Command Line Tool
|