forked from altertable-ai/altertable-lakehouse-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaltertable-lakehouse.gemspec
More file actions
40 lines (34 loc) · 1.62 KB
/
Copy pathaltertable-lakehouse.gemspec
File metadata and controls
40 lines (34 loc) · 1.62 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
40
lib = File.expand_path("lib", __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "altertable/lakehouse/version"
Gem::Specification.new do |spec|
spec.name = "altertable-lakehouse"
spec.version = Altertable::Lakehouse::VERSION
spec.authors = ["Altertable AI"]
spec.email = ["support@altertable.ai"]
spec.summary = "Official Ruby client for Altertable Lakehouse"
spec.description = "Official Ruby client for Altertable Lakehouse API."
spec.homepage = "https://github.com/altertable-ai/altertable-lakehouse-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/altertable-ai/altertable-lakehouse-ruby"
spec.metadata["changelog_uri"] = "https://github.com/altertable-ai/altertable-lakehouse-ruby/blob/main/CHANGELOG.md"
spec.files = Dir.chdir(__dir__) do
`git ls-files -z`.split("\x0").reject do |f|
(f == __FILE__) || f.match(%r{\A(?:test|spec|features)/})
end
end
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
spec.add_dependency "base64"
spec.add_development_dependency "faraday", "~> 2.12"
spec.add_development_dependency "faraday-retry", "~> 2.0"
spec.add_development_dependency "faraday-net_http"
spec.add_development_dependency "httpx" # For testing optional support
spec.add_development_dependency "rake", "~> 13.0"
spec.add_development_dependency "rspec", "~> 3.0"
spec.add_development_dependency "rubocop", "~> 1.50"
spec.add_development_dependency "testcontainers"
end