vscripts 0.1.3 → 0.1.5

Sign up to get free protection for your applications and to get access to all the features.
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.3
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-08 00:00:00.000000000 Z
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/aws_spec_helper.rb
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/aws_spec_helper.rb
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
@@ -1,10 +0,0 @@
1
- require 'spec_helper'
2
- require 'aws-sdk'
3
-
4
- ::AWS.config({
5
- :access_key_id => '1234',
6
- :secret_access_key => '5678',
7
- :region => 'us-east-1',
8
- :logger => nil,
9
- :stub_requests => true
10
- })