-
Notifications
You must be signed in to change notification settings - Fork 7
/
ruby-amazon-bedrock.gemspec
41 lines (35 loc) · 1.88 KB
/
ruby-amazon-bedrock.gemspec
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
30
31
32
33
34
35
36
37
38
39
40
41
# frozen_string_literal: true
require_relative "lib/amazon_bedrock/version"
Gem::Specification.new do |spec|
spec.name = "ruby-amazon-bedrock"
spec.version = RubyAmazonBedrock::VERSION
spec.authors = ["Alvaro Delgado"]
spec.email = ["hola@alvarodelgado.dev"]
spec.summary = "Seamless Integration with Amazon Bedrock for AI-Powered Text and Image Generation in Ruby."
spec.description = "The ruby-amazon-bedrock gem offers Ruby developers an efficient and user-friendly interface to \
Amazon Bedrock, a powerful library for AI-driven text and image generation. This gem simplifies the process of \
connecting to Amazon Bedrock's APIs, enabling developers to easily harness the capabilities of advanced machine \
learning models for generating high-quality text and images."
spec.homepage = "https://github.com/AAlvAAro/ruby-amazon-bedrock"
spec.license = "MIT"
spec.required_ruby_version = ">= 2.6.0"
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = "https://github.com/AAlvAAro/ruby-amazon-bedrock"
spec.metadata["changelog_uri"] = "https://github.com/AAlvAAro/ruby-amazon-bedrock/blob/main/CHANGELOG.md"
spec.metadata["rubygems_mfa_required"] = "true"
# Specify which files should be added to the gem when it is released.
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
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/ features/ .git .github appveyor Gemfile])
f.end_with?(*%w[.gem])
end
end
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
spec.add_dependency "aws-sdk-bedrockruntime", "~> 1.0"
spec.add_dependency "aws-sdk-s3", "~> 1.0"
spec.add_dependency "base64", "~> 0.2"
end