mirror of https://github.com/docusealco/docuseal
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
873 B
29 lines
873 B
require File.expand_path("../lib/trilogy/version", __FILE__)
|
|
|
|
Gem::Specification.new do |s|
|
|
s.name = "trilogy"
|
|
s.version = Trilogy::VERSION
|
|
s.authors = ["GitHub Engineering"]
|
|
s.email = "opensource+trilogy@github.com"
|
|
s.license = "MIT"
|
|
s.homepage = "https://github.com/trilogy-libraries/trilogy"
|
|
s.summary = "A friendly MySQL-compatible library for Ruby, binding to libtrilogy"
|
|
|
|
s.extensions = "ext/trilogy-ruby/extconf.rb"
|
|
|
|
gem_files = %w[LICENSE README.md Rakefile trilogy.gemspec]
|
|
gem_files += Dir.glob("lib/**/*.rb")
|
|
gem_files += Dir.glob("ext/trilogy-ruby/*.c")
|
|
gem_files += Dir.glob("ext/trilogy-ruby/*.h")
|
|
gem_files += Dir.glob("ext/trilogy-ruby/src/**/*.c")
|
|
gem_files += Dir.glob("ext/trilogy-ruby/inc/**/*.h")
|
|
|
|
s.files = gem_files
|
|
|
|
s.require_paths = ["lib"]
|
|
|
|
s.required_ruby_version = ">= 3.0"
|
|
|
|
s.add_dependency "bigdecimal"
|
|
end
|