-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlibsql2.gemspec
More file actions
24 lines (19 loc) · 827 Bytes
/
Copy pathlibsql2.gemspec
File metadata and controls
24 lines (19 loc) · 827 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# frozen_string_literal: true
require_relative "lib/libsql/version"
Gem::Specification.new do |spec|
spec.name = "libsql2"
spec.version = Libsql::VERSION
spec.authors = ["speria-jp"]
spec.summary = "Ruby bindings for libSQL"
spec.description = "Native Ruby bindings for libSQL database, built with Rust (magnus + libsql crate)"
spec.homepage = "https://github.com/speria-jp/libsql-ruby2"
spec.license = "MIT"
spec.required_ruby_version = ">= 3.4"
spec.files = Dir["{lib,ext}/**/*", "LICENSE", "README.md", "Cargo.*"]
spec.files.reject! { |f| File.directory?(f) }
spec.files.reject! { |f| f =~ /\.(dll|so|dylib|lib|bundle)\Z/ }
spec.require_paths = ["lib"]
spec.extensions = ["ext/libsql2/extconf.rb"]
spec.add_dependency "rb_sys", "~> 0.9"
spec.metadata["rubygems_mfa_required"] = "true"
end