forked from Cimpress-MCP/LambdaWrap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
lambda_wrap.gemspec
22 lines (20 loc) · 910 Bytes
/
lambda_wrap.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# encoding: utf-8
$LOAD_PATH.unshift File.expand_path('../lib', __FILE__)
require 'lambda_wrap/version'
Gem::Specification.new do |s|
s.name = 'lambda_wrap'
s.version = LambdaWrap::VERSION
s.authors = ['Markus Thurner', 'Dorota Ruta', 'Ted Armstrong']
s.email = ['[email protected]']
s.homepage = 'https://github.com/Cimpress-MCP/LambdaWrap'
s.summary = 'Easy deployment of AWS Lambda functions and dependencies.'
s.description = 'This gem wraps the AWS SDK to simplify deployment of AWS \
Lambda functions backed by API Gateway and DynamoDB.'
s.files = Dir['lib/**/*.rb']
s.platform = Gem::Platform::RUBY
s.require_paths = ['lib']
s.add_runtime_dependency('aws-sdk', '~> 2')
s.add_runtime_dependency('activesupport', '~> 4')
s.license = 'Apache-2.0'
s.required_ruby_version = '>= 1.9.3'
end