forked from rails-lambda/lambda-console-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlambda-console-ruby.gemspec
More file actions
21 lines (20 loc) 路 851 Bytes
/
Copy pathlambda-console-ruby.gemspec
File metadata and controls
21 lines (20 loc) 路 851 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
require_relative "lib/lambda-console-ruby/version"
Gem::Specification.new do |spec|
spec.name = "lambda-console-ruby"
spec.version = LambdaConsole::VERSION
spec.authors = ["Ken Collins"]
spec.email = ["ken@metaskills.net"]
spec.summary = "A Ruby implementation of the Lambda Console project specification."
spec.description = "A Ruby implementation of the Lambda Console project specification."
spec.homepage = "https://github.com/rails-lambda/lambda-console-ruby"
spec.license = "MIT"
spec.files = Dir.chdir(__dir__) do
`git ls-files -z`.split("\x0").reject do |f|
(File.expand_path(f) == __FILE__) || f.start_with?(*%w[bin/ test/ spec/ .git])
end
end
spec.require_paths = ["lib"]
spec.add_development_dependency "rake"
spec.add_development_dependency "minitest"
spec.add_development_dependency "mocha"
end