|
1 | | -# frozen_string_literal: true |
2 | | - |
3 | 1 | require_relative "lib/lambda_punch/version"
|
4 | 2 |
|
5 | 3 | Gem::Specification.new do |spec|
|
6 | 4 | spec.name = "lambda_punch"
|
7 | 5 | spec.version = LambdaPunch::VERSION
|
8 | 6 | spec.authors = ["Ken Collins"]
|
9 | 7 | spec.email = ["ken@metaskills.net"]
|
10 | | - |
11 | | - spec.summary = "TODO: Write a short summary, because RubyGems requires one." |
12 | | - spec.description = "TODO: Write a longer description or delete this line." |
13 | | - spec.homepage = "TODO: Put your gem's website or public repo URL here." |
| 8 | + spec.summary = "LambdaPunch: Async Processing using Lambda Extensions" |
| 9 | + spec.description = "LambdaPunch: Async Processing using Lambda Extensions" |
| 10 | + spec.homepage = "https://github.com/customink/lambda_punch" |
14 | 11 | spec.license = "MIT"
|
15 | | - spec.required_ruby_version = Gem::Requirement.new(">= 2.4.0") |
16 | | - |
17 | | - spec.metadata["allowed_push_host"] = "TODO: Set to 'http://mygemserver.com'" |
18 | | - |
19 | 12 | spec.metadata["homepage_uri"] = spec.homepage
|
20 | | - spec.metadata["source_code_uri"] = "TODO: Put your gem's public repo URL here." |
21 | | - spec.metadata["changelog_uri"] = "TODO: Put your gem's CHANGELOG.md URL here." |
22 | | - |
23 | | - # Specify which files should be added to the gem when it is released. |
24 | | - # The `git ls-files -z` loads the files in the RubyGem that have been added into git. |
| 13 | + spec.metadata["source_code_uri"] = "https://github.com/customink/lambda_punch" |
| 14 | + spec.metadata["changelog_uri"] = "https://github.com/customink/lambda_punch/blob/main/CHANGELOG.md" |
25 | 15 | spec.files = Dir.chdir(File.expand_path(__dir__)) do
|
26 | | - `git ls-files -z`.split("\x0").reject { |f| f.match(%r{\A(?:test|spec|features)/}) } |
| 16 | + `git ls-files -z`.split("\x0").reject { |f| f.match(%r{\A(?:test|spec|features|images)/}) } |
27 | 17 | end
|
28 | 18 | spec.bindir = "exe"
|
29 | 19 | spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
|
30 | 20 | spec.require_paths = ["lib"]
|
31 | | - |
32 | | - # Uncomment to register a new dependency of your gem |
33 | 21 | # spec.add_dependency "example-gem", "~> 1.0"
|
34 | | - |
35 | | - # For more information and examples about making a new gem, checkout our |
36 | | - # guide at: https://bundler.io/guides/creating_gem.html |
37 | 22 | end
|
0 commit comments