From 3965a7698168d7a88213931b6902e91e95b35644 Mon Sep 17 00:00:00 2001 From: k1LoW Date: Fri, 28 Aug 2015 06:58:03 +0900 Subject: [PATCH] Bump up version number --- README.md | 2 +- doc/_resource_types/lambda.md | 3 +++ doc/resource_types.md | 2 ++ lib/awspec/version.rb | 2 +- 4 files changed, 7 insertions(+), 2 deletions(-) create mode 100644 doc/_resource_types/lambda.md diff --git a/README.md b/README.md index 3229e0d89..510b7fa5a 100644 --- a/README.md +++ b/README.md @@ -91,12 +91,12 @@ $ awspec generate ec2 vpc-ab123cde >> spec/ec2_spec.rb - [x] RouteTable (`route_table`) - [x] EBS Volume (`ebs`) - [x] ELB (`elb`) +- [x] Lambda (`lambda`) [Resource Types more infomation here](doc/resource_types.md) ### Next.. -- [ ] Lambda - IAM - [ ] IAM User - ... diff --git a/doc/_resource_types/lambda.md b/doc/_resource_types/lambda.md new file mode 100644 index 000000000..267a74284 --- /dev/null +++ b/doc/_resource_types/lambda.md @@ -0,0 +1,3 @@ +### have_event_source + +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) ) diff --git a/doc/resource_types.md b/doc/resource_types.md index df5a277bd..8d1d5cbbf 100644 --- a/doc/resource_types.md +++ b/doc/resource_types.md @@ -265,4 +265,6 @@ Lambda resource type. ### have_event_source +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) ) + #### 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) diff --git a/lib/awspec/version.rb b/lib/awspec/version.rb index 12f74835e..764589ae6 100644 --- a/lib/awspec/version.rb +++ b/lib/awspec/version.rb @@ -1,3 +1,3 @@ module Awspec - VERSION = '0.6.4' + VERSION = '0.7.0' end