serverspec-aws 0.1.0 → 0.1.1
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 +4 -0
- data/lib/resources/common.rb +1 -1
- metadata +3 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d2976bb6a62fa53473a5cea5e5b58e03cb90581b
|
4
|
+
data.tar.gz: 82cf8c0d6fc51f1ad0d3b3ba04d18048ca545105
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: af5daefea5acfa9012a5e1f62d03d21429ffe3499b482bf0afa395e619614eed9bc7d024baa26d03c68458c487f3a8049160ae9587c41eec074e3cf29d605407
|
7
|
+
data.tar.gz: 9188700b1f5ee7c0f3701dbf7ddd34e2c63c89daf64db180109b1b05a454dd58a7f2925cda7e969dc0988bcb3cc1750ba8b287cedd8926271d3e703855a9673a
|
data/README.md
CHANGED
@@ -9,3 +9,7 @@ The documentation is available as [GitHub page](http://saltwaterc.github.io/serv
|
|
9
9
|
## Usage
|
10
10
|
|
11
11
|
There aren't examples per se, but you can take a peek at the spec directory. The integration tests against itself also shows the usage mode. However, in real world use cases, the stubbing of the AWS SDK is (obviously) not necesary, hence you don't need to pass the instance argument for the resource classes which was implemented as a testing feature. Also, the spec_helper doesn't need to enable the stub_responses for real world use cases.
|
12
|
+
|
13
|
+
## Contributors
|
14
|
+
|
15
|
+
* [Tim Myerscough](https://github.com/temyers)
|
data/lib/resources/common.rb
CHANGED
@@ -8,7 +8,7 @@ module Serverspec
|
|
8
8
|
module AWS
|
9
9
|
# The Serverspec::Type::AWS::VERSION constant actually sets this library
|
10
10
|
# version in the format: major.minor.patch.build
|
11
|
-
VERSION = '0.1.
|
11
|
+
VERSION = '0.1.1'.freeze
|
12
12
|
|
13
13
|
# Check if the initialization argument of an AWS resource class is present
|
14
14
|
# @param arg_name [String] - The name of the init argument
|
metadata
CHANGED
@@ -1,15 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: serverspec-aws
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
|
-
- "Ștefan"
|
8
|
-
- Rusu
|
7
|
+
- "Ștefan Rusu"
|
9
8
|
autorequire:
|
10
9
|
bindir: bin
|
11
10
|
cert_chain: []
|
12
|
-
date: 2016-03-
|
11
|
+
date: 2016-03-19 00:00:00.000000000 Z
|
13
12
|
dependencies:
|
14
13
|
- !ruby/object:Gem::Dependency
|
15
14
|
name: aws-sdk
|