awspec 0.17.0 → 0.17.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/doc/resource_types.md +1 -1
- data/lib/awspec/type/security_group.rb +2 -3
- data/lib/awspec/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9897b708a76aa62064bd1252c47c5cf538f081dc
|
4
|
+
data.tar.gz: 5de3207cbfc28b6cf5fe68d565f306aff1fdab83
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c92beed3db59962ba2406cf453a1f46903787f1c7c7b3f3f362110b295cc6146d54a3f7190a8bf3af209883a21783aa73878fff16016b1386e38f150740730da
|
7
|
+
data.tar.gz: 041294444ed3af5cc2aefa763e7478789f75cf614ac0bd6fafcdf5ecfaf9b6d0fd132edd52c49955326122c8f9c2c87e1355ac1e924405fe140209e6b91258b6
|
data/doc/resource_types.md
CHANGED
@@ -277,7 +277,7 @@ Lambda resource type.
|
|
277
277
|
|
278
278
|
This matcher does not support Amazon S3 event sources. ( [See SDK doc](http://docs.aws.amazon.com/sdkforruby/api/Aws/Lambda/Client.html#list_event_source_mappings-instance_method) )
|
279
279
|
|
280
|
-
#### its(:function_name), its(:function_arn), its(:runtime), its(:role), its(:handler), its(:code_size), its(:description), its(:timeout), its(:memory_size), its(:last_modified)
|
280
|
+
#### its(:function_name), its(:function_arn), its(:runtime), its(:role), its(:handler), its(:code_size), its(:description), its(:timeout), its(:memory_size), its(:last_modified), its(:code_sha_256), its(:version)
|
281
281
|
## <a name="iam_user">iam_user</a>
|
282
282
|
|
283
283
|
IamUser resource type.
|
@@ -91,11 +91,10 @@ module Awspec::Type
|
|
91
91
|
def port_between?(port, from_port, to_port)
|
92
92
|
if port.is_a?(String) && port.include?('-')
|
93
93
|
f, t = port.split('-')
|
94
|
-
|
94
|
+
from_port == f.to_i && to_port == t.to_i
|
95
95
|
else
|
96
|
-
|
96
|
+
port.between?(from_port, to_port)
|
97
97
|
end
|
98
|
-
true
|
99
98
|
end
|
100
99
|
end
|
101
100
|
end
|
data/lib/awspec/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: awspec
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.17.
|
4
|
+
version: 0.17.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- k1LoW
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-10-
|
11
|
+
date: 2015-10-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rspec
|