Sha256: 7a5ccebc79090663081abdf1646a325ff89076be6c20cf3d2e2be85270da34fa
Contents?: true
Size: 1.79 KB
Versions: 3
Compression:
Stored size: 1.79 KB
Contents
# 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" end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
ruby-amazon-bedrock-0.2.2 | ruby-amazon-bedrock.gemspec |
ruby-amazon-bedrock-0.2.1 | ruby-amazon-bedrock.gemspec |
ruby-amazon-bedrock-0.2.0 | ruby-amazon-bedrock.gemspec |