forked from bbc/aws-lambda-runner
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaws-lambda-runner.gemspec
More file actions
27 lines (22 loc) · 895 Bytes
/
aws-lambda-runner.gemspec
File metadata and controls
27 lines (22 loc) · 895 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# -*- encoding: utf-8 -*-
$LOAD_PATH.push File.expand_path('../lib', __FILE__)
Gem::Specification.new do |s|
s.name = 'aws-lambda-runner'
s.version = '1.0.0'
s.date = '2015-01-09'
s.summary = 'AWS Lambda testing helper'
s.description = 'Trigger AWS Lambda functions without deploying to AWS'
s.homepage = 'https://github.com/bbc/aws-lambda-runner'
s.license = 'Apache 2'
s.authors = ['andrew wheat', 'tristan hill']
s.email = []
s.files = Dir['lib/**/*.rb', 'lib/*.json', 'js/*.json', 'js/*.js']
s.test_files = %w( )
s.require_paths = ['lib']
s.add_dependency 'process-helper', '~> 1'
s.add_dependency 'rest-client', '~> 1.0'
s.add_dependency 'file_utils', '~> 1'
s.add_development_dependency 'rubocop', '~> 0'
s.add_development_dependency 'minitest', '~> 5.0'
s.add_development_dependency 'rake', '~> 10.0'
end