awspec 0.17.0 → 0.17.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 079365d4a013ed8f6ef32f280e5698831094b170
4
- data.tar.gz: f6bf2551315170c4d5fe7fe4823387067ac60c50
3
+ metadata.gz: 9897b708a76aa62064bd1252c47c5cf538f081dc
4
+ data.tar.gz: 5de3207cbfc28b6cf5fe68d565f306aff1fdab83
5
5
  SHA512:
6
- metadata.gz: d6237ae37aa33e1decc7ff2fe2ddb1cb86ed3ade49d9f158a6609e7ffd23740057af858c8fc88d0d2ccff9c0f4164edeba650dd5bf14dee9a4649c8b33c244f4
7
- data.tar.gz: 6cba16c1621ba3617c6280cfbc6d00322efbb5b6667c1d5a594b93795ed09831b544db40085c10bf183ab8ea10912f9d1a670ebbff2731745f5ae02023ee6993
6
+ metadata.gz: c92beed3db59962ba2406cf453a1f46903787f1c7c7b3f3f362110b295cc6146d54a3f7190a8bf3af209883a21783aa73878fff16016b1386e38f150740730da
7
+ data.tar.gz: 041294444ed3af5cc2aefa763e7478789f75cf614ac0bd6fafcdf5ecfaf9b6d0fd132edd52c49955326122c8f9c2c87e1355ac1e924405fe140209e6b91258b6
@@ -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
- false unless from_port == f.to_i && to_port == t.to_i
94
+ from_port == f.to_i && to_port == t.to_i
95
95
  else
96
- false unless port.between?(from_port, to_port)
96
+ port.between?(from_port, to_port)
97
97
  end
98
- true
99
98
  end
100
99
  end
101
100
  end
@@ -1,3 +1,3 @@
1
1
  module Awspec
2
- VERSION = '0.17.0'
2
+ VERSION = '0.17.1'
3
3
  end
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.0
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-08 00:00:00.000000000 Z
11
+ date: 2015-10-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rspec