-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathserverless-rack.gemspec
More file actions
29 lines (27 loc) · 882 Bytes
/
serverless-rack.gemspec
File metadata and controls
29 lines (27 loc) · 882 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
28
29
# frozen_string_literal: true
Gem::Specification.new do |s|
s.name = 'serverless-rack'
s.version = '2.0.1'
s.summary =
'Serverless plugin to deploy Ruby Rack applications (Sinatra/Padrino/Cuba etc.) ' \
'and bundle gems'
s.description =
'A Serverless v1.x plugin to build your deploy Ruby Rack applications using ' \
'Serverless. Compatible Rack application frameworks include Sinatra, ' \
'Cuba and Padrino.'
s.authors = ['Logan Raarup']
s.email = 'logan@logan.dk'
s.files = [
'lib/serverless_rack.rb',
'CHANGELOG.md',
'Gemfile',
'LICENSE',
'README.md',
'serverless-rack.gemspec'
]
s.homepage = 'https://github.com/logandk/serverless-rack'
s.license = 'MIT'
s.required_ruby_version = '>= 2.4.0'
s.add_dependency 'rack', '~> 3.0'
s.metadata['rubygems_mfa_required'] = 'true'
end