vscripts 0.1.3 → 0.1.5
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 +8 -8
- data/.travis.yml +1 -0
- data/CHANGELOG.md +20 -0
- data/README.md +17 -2
- data/bin/vscripts +1 -1
- data/lib/vscripts.rb +13 -4
- data/lib/vscripts/aws/ec2.rb +14 -5
- data/lib/vscripts/command_line.rb +28 -23
- data/lib/vscripts/commands/identify.rb +19 -16
- data/lib/vscripts/commands/tags2facts.rb +10 -10
- data/lib/vscripts/config.rb +52 -0
- data/lib/vscripts/util/local_system.rb +0 -5
- data/lib/vscripts/version.rb +11 -6
- data/spec/integration/commands/identify_spec.rb +101 -0
- data/spec/integration/commands/tags2facts_spec.rb +98 -0
- data/spec/integration/commands_spec.rb +12 -0
- data/spec/integration/config_spec.rb +56 -0
- data/spec/integration/global_opts_spec.rb +56 -0
- data/spec/spec_helper.rb +127 -3
- data/spec/unit/vscripts/aws/ec2_spec.rb +9 -1
- data/spec/unit/vscripts/aws_spec.rb +0 -1
- data/spec/unit/vscripts/command_line_spec.rb +5 -4
- data/spec/unit/vscripts/commands/identify_spec.rb +16 -12
- data/spec/unit/vscripts/commands/tags2facts_spec.rb +4 -0
- data/spec/unit/vscripts/commands_spec.rb +1 -1
- data/spec/unit/vscripts/config_spec.rb +53 -0
- data/spec/unit/vscripts/util/local_system_spec.rb +4 -12
- data/spec/unit/vscripts/version_spec.rb +13 -1
- data/spec/unit/vscripts_spec.rb +33 -14
- data/tasks/deploy.rake +23 -14
- data/vscripts.gemspec +8 -6
- metadata +15 -6
- data/VERSION +0 -1
- data/spec/aws_spec_helper.rb +0 -10
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: vscripts
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Vlad Ghinea
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-06-
|
11
|
+
date: 2014-06-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk
|
@@ -185,7 +185,6 @@ files:
|
|
185
185
|
- LICENSE
|
186
186
|
- README.md
|
187
187
|
- Rakefile
|
188
|
-
- VERSION
|
189
188
|
- bin/vscripts
|
190
189
|
- lib/vscripts.rb
|
191
190
|
- lib/vscripts/aws.rb
|
@@ -195,10 +194,15 @@ files:
|
|
195
194
|
- lib/vscripts/commands.rb
|
196
195
|
- lib/vscripts/commands/identify.rb
|
197
196
|
- lib/vscripts/commands/tags2facts.rb
|
197
|
+
- lib/vscripts/config.rb
|
198
198
|
- lib/vscripts/util.rb
|
199
199
|
- lib/vscripts/util/local_system.rb
|
200
200
|
- lib/vscripts/version.rb
|
201
|
-
- spec/
|
201
|
+
- spec/integration/commands/identify_spec.rb
|
202
|
+
- spec/integration/commands/tags2facts_spec.rb
|
203
|
+
- spec/integration/commands_spec.rb
|
204
|
+
- spec/integration/config_spec.rb
|
205
|
+
- spec/integration/global_opts_spec.rb
|
202
206
|
- spec/spec_helper.rb
|
203
207
|
- spec/unit/vscripts/aws/ec2_spec.rb
|
204
208
|
- spec/unit/vscripts/aws/metadata_spec.rb
|
@@ -207,6 +211,7 @@ files:
|
|
207
211
|
- spec/unit/vscripts/commands/identify_spec.rb
|
208
212
|
- spec/unit/vscripts/commands/tags2facts_spec.rb
|
209
213
|
- spec/unit/vscripts/commands_spec.rb
|
214
|
+
- spec/unit/vscripts/config_spec.rb
|
210
215
|
- spec/unit/vscripts/util/local_system_spec.rb
|
211
216
|
- spec/unit/vscripts/version_spec.rb
|
212
217
|
- spec/unit/vscripts_spec.rb
|
@@ -239,7 +244,11 @@ signing_key:
|
|
239
244
|
specification_version: 4
|
240
245
|
summary: VladGh.com's automation scripts
|
241
246
|
test_files:
|
242
|
-
- spec/
|
247
|
+
- spec/integration/commands/identify_spec.rb
|
248
|
+
- spec/integration/commands/tags2facts_spec.rb
|
249
|
+
- spec/integration/commands_spec.rb
|
250
|
+
- spec/integration/config_spec.rb
|
251
|
+
- spec/integration/global_opts_spec.rb
|
243
252
|
- spec/spec_helper.rb
|
244
253
|
- spec/unit/vscripts/aws/ec2_spec.rb
|
245
254
|
- spec/unit/vscripts/aws/metadata_spec.rb
|
@@ -248,7 +257,7 @@ test_files:
|
|
248
257
|
- spec/unit/vscripts/commands/identify_spec.rb
|
249
258
|
- spec/unit/vscripts/commands/tags2facts_spec.rb
|
250
259
|
- spec/unit/vscripts/commands_spec.rb
|
260
|
+
- spec/unit/vscripts/config_spec.rb
|
251
261
|
- spec/unit/vscripts/util/local_system_spec.rb
|
252
262
|
- spec/unit/vscripts/version_spec.rb
|
253
263
|
- spec/unit/vscripts_spec.rb
|
254
|
-
has_rdoc:
|
data/VERSION
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
0.1.3
|