forked from fnproject/fdk-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fdk.gemspec
22 lines (19 loc) · 937 Bytes
/
fdk.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
$:.push File.expand_path("../lib", __FILE__)
require "fdk/version"
Gem::Specification.new do |s|
s.name = "fdk"
s.version = FDK::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Travis Reeder", "Ewan Slater","Owen Cliffe"]
s.email = ["treeder@gmail.com", "ewan.slater@gmail.com","owen.cliffe@oracle.com"]
s.homepage = "https://github.com/fnproject/fdk-ruby"
s.summary = "Ruby FDK for Fn Project"
s.description = "Ruby Function Developer Kit for Fn Project."
s.license = "Apache-2.0"
s.required_ruby_version = ">= 2.4"
s.add_runtime_dependency "json", "~> 2.1", ">= 2.1.0"
s.add_runtime_dependency "webrick", "~> 1.4", ">= 1.4.2"
s.add_development_dependency "net_http_unix", "~> 0.2", ">= 0.2.1"
s.add_development_dependency "rubocop", "~> 0.60"
s.files = Dir["Rakefile", "{bin,lib,man,test,spec}/**/*", "README*", "LICENSE*"] & `git ls-files -z`.split("\0")
end