25 lines
745 B
Ruby
25 lines
745 B
Ruby
Gem::Specification.new do |spec|
|
|
spec.name = "shared"
|
|
spec.version = "0.1.0"
|
|
spec.authors = ["Your Name"]
|
|
spec.email = ["your_email@example.com"]
|
|
|
|
spec.summary = "Shared library for Lambda functions"
|
|
spec.description = "A shared Ruby library for common functionality used by multiple AWS Lambda functions."
|
|
spec.license = "MIT"
|
|
|
|
# Files to include in the gem
|
|
spec.files = Dir.glob("lib/**/*.rb") + ["README.md"]
|
|
|
|
# Entry point for the library
|
|
spec.require_paths = ["lib"]
|
|
|
|
# Dependencies
|
|
spec.add_dependency "aws-sdk-s3", "~> 1.0"
|
|
spec.add_dependency "json", "~> 2.0"
|
|
|
|
# Development dependencies (optional)
|
|
spec.add_development_dependency "rspec", "~> 3.0"
|
|
end
|
|
|