-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathelevenlabs-ruby.gemspec
More file actions
21 lines (17 loc) · 878 Bytes
/
elevenlabs-ruby.gemspec
File metadata and controls
21 lines (17 loc) · 878 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/elevenlabs/version"
Gem::Specification.new do |spec|
spec.name = "elevenlabs"
spec.version = ElevenLabs::VERSION
spec.authors = ["Codex"]
spec.email = ["dev@elevenlabs.io"]
spec.summary = "Ruby SDK for the ElevenLabs API, generated from the public Python SDK."
spec.description = "A drop-in Ruby alternative to the official elevenlabs-python package with the same API surface."
spec.homepage = "https://github.com/elevenlabs/elevenlabs-ruby"
spec.license = "MIT"
spec.files = Dir.glob("lib/**/*") + %w[Gemfile elevenlabs-ruby.gemspec README.md]
spec.require_paths = ["lib"]
spec.add_runtime_dependency "faraday", ">= 2.0"
spec.add_runtime_dependency "faraday-multipart", ">= 1.0"
spec.add_runtime_dependency "json"
spec.metadata["source_code_uri"] = spec.homepage
end