-
Notifications
You must be signed in to change notification settings - Fork 0
/
serverless-tools.gemspec
55 lines (44 loc) · 2.12 KB
/
serverless-tools.gemspec
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "serverless-tools/version"
Gem::Specification.new do |spec|
spec.name = "serverless-tools"
spec.version = ServerlessTools::VERSION
spec.authors = ["FreeAgent"]
spec.summary = "Serverless Tools"
spec.description = "A collection of tools used to ease the use of serverless projects"
spec.homepage = "https://www.freeagent.com"
spec.license = "MIT"
# Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
# to allow pushing to a single host or delete this section to allow pushing to any host.
if spec.respond_to?(:metadata)
spec.metadata["allowed_push_host"] = "https://rubygems.pkg.github.com/fac"
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = "https://github.com/fac/serverless-tools"
spec.metadata["changelog_uri"] = "https://github.com/fac/serverless-tools/releases"
else
raise "RubyGems 2.0 or newer is required to protect against " \
"public gem pushes."
end
spec.files = Dir["lib/**/*"] + %w(Gemfile LICENSE README.md Rakefile serverless-tools.gemspec)
spec.bindir = "bin"
spec.executables = ["serverless-tools"]
spec.require_paths = ["lib"]
spec.requirements = ["zip", "git", "docker", "python3", "poetry", "bundle"]
spec.post_install_message = "Serverless tools, and beyond!"
spec.add_development_dependency "bundler", "~> 2.4"
spec.add_development_dependency "rake"
spec.add_development_dependency "rubocop"
spec.add_development_dependency "rexml"
spec.add_development_dependency "minitest", "~> 5.0"
spec.add_development_dependency "test-unit"
spec.add_development_dependency "mocha"
spec.add_development_dependency "gem-release"
spec.add_runtime_dependency "aws-sdk-lambda"
spec.add_runtime_dependency "aws-sdk-s3"
spec.add_runtime_dependency "aws-sdk-ecr"
spec.add_runtime_dependency "faraday-retry"
spec.add_runtime_dependency "thor"
spec.add_runtime_dependency "slack-ruby-client"
spec.add_runtime_dependency "octokit"
end