continuent-tools-core 0.9.0 → 0.10.6
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 +23 -2
- data/bin/tungsten_analyze_thl_index +23 -10
- data/bin/tungsten_create_load +38 -7
- data/bin/tungsten_directory +379 -0
- data/bin/tungsten_manage_configuration +1654 -0
- data/bin/tungsten_migrate_schema +123 -0
- data/lib/continuent-tools-core.rb +123 -0
- data/lib/ipparse.rb +144 -0
- data/lib/ipparse/README +18 -0
- data/lib/ipparse/platforms/linux.rb +103 -0
- data/lib/tungsten/datasources/mysql.rb +4 -36
- data/lib/tungsten/exec.rb +16 -16
- data/lib/tungsten/script.rb +57 -121
- data/lib/tungsten/util.rb +0 -9
- data/providers/awsec2.rb +141 -0
- metadata +12 -2
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: continuent-tools-core
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.10.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Continuent
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-
|
11
|
+
date: 2015-09-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: json_pure
|
@@ -113,12 +113,18 @@ email: info@continuent.com
|
|
113
113
|
executables:
|
114
114
|
- tungsten_analyze_thl_index
|
115
115
|
- tungsten_create_load
|
116
|
+
- tungsten_directory
|
117
|
+
- tungsten_manage_configuration
|
118
|
+
- tungsten_migrate_schema
|
116
119
|
- tungsten_policy
|
117
120
|
extensions: []
|
118
121
|
extra_rdoc_files: []
|
119
122
|
files:
|
120
123
|
- bin/tungsten_analyze_thl_index
|
121
124
|
- bin/tungsten_create_load
|
125
|
+
- bin/tungsten_directory
|
126
|
+
- bin/tungsten_manage_configuration
|
127
|
+
- bin/tungsten_migrate_schema
|
122
128
|
- bin/tungsten_policy
|
123
129
|
- lib/continuent-tools-core.rb
|
124
130
|
- lib/iniparse/document.rb
|
@@ -128,6 +134,9 @@ files:
|
|
128
134
|
- lib/iniparse/lines.rb
|
129
135
|
- lib/iniparse/parser.rb
|
130
136
|
- lib/iniparse.rb
|
137
|
+
- lib/ipparse/platforms/linux.rb
|
138
|
+
- lib/ipparse/README
|
139
|
+
- lib/ipparse.rb
|
131
140
|
- lib/tungsten/api.rb
|
132
141
|
- lib/tungsten/common.rb
|
133
142
|
- lib/tungsten/datasource.rb
|
@@ -141,6 +150,7 @@ files:
|
|
141
150
|
- lib/tungsten/status.rb
|
142
151
|
- lib/tungsten/util.rb
|
143
152
|
- lib/tungsten.rb
|
153
|
+
- providers/awsec2.rb
|
144
154
|
- LICENSE
|
145
155
|
- README.md
|
146
156
|
homepage: https://github.com/continuent/continuent-tools-core
|