-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathe2b.gemspec
More file actions
39 lines (32 loc) · 1.5 KB
/
e2b.gemspec
File metadata and controls
39 lines (32 loc) · 1.5 KB
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
# frozen_string_literal: true
require_relative "lib/e2b/version"
Gem::Specification.new do |spec|
spec.name = "e2b"
spec.version = E2B::VERSION
spec.authors = ["Tao Luo"]
spec.email = ["luotao@hey.com"]
spec.summary = "Ruby SDK for E2B sandbox API"
spec.description = <<~DESC
Ruby client for creating and managing E2B sandboxes - secure cloud environments
for AI-generated code execution. Supports sandbox lifecycle management, command
execution, file operations, PTY terminals, git operations, and directory watching.
DESC
spec.homepage = "https://github.com/ya-luotao/e2b-ruby"
spec.license = "MIT"
spec.required_ruby_version = ">= 3.0.0"
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = "https://github.com/ya-luotao/e2b-ruby"
spec.metadata["documentation_uri"] = "https://e2b.dev/docs"
spec.metadata["changelog_uri"] = "https://github.com/ya-luotao/e2b-ruby/blob/main/CHANGELOG.md"
spec.metadata["rubygems_mfa_required"] = "true"
spec.files = Dir.glob("lib/**/*") + ["README.md", "LICENSE.txt"]
spec.require_paths = ["lib"]
spec.add_dependency "base64", "~> 0.2"
spec.add_dependency "faraday", ">= 1.0", "< 3.0"
spec.add_dependency "faraday-multipart", "~> 1.0"
spec.add_development_dependency "rake", "~> 13.0"
spec.add_development_dependency "rspec", "~> 3.0"
spec.add_development_dependency "rubocop", "~> 1.72"
spec.add_development_dependency "rubocop-rspec", "~> 3.0"
spec.add_development_dependency "webmock", "~> 3.0"
end