-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbluejay.gemspec
30 lines (24 loc) · 1.08 KB
/
bluejay.gemspec
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
# frozen_string_literal: true
require_relative "lib/bluejay/version"
Gem::Specification.new do |spec|
spec.name = "bluejay"
spec.version = Bluejay::VERSION
spec.authors = ["Adam Petro"]
spec.email = ["[email protected]"]
spec.summary = "A fast GraphQL engine."
spec.description = "A fast GraphQL engine."
spec.homepage = "https://github.com/adampetro/bluejay-rb"
spec.required_ruby_version = ">= 3.1.0"
spec.license = "MIT"
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = "https://github.com/adampetro/bluejay-rb"
spec.metadata["changelog_uri"] = "https://github.com/adampetro/bluejay-rb/blob/main/CHANGELOG"
spec.metadata["cargo_crate_name"] = "bluejay-rb"
spec.files = Dir["{lib,ext}/**/*", "LICENSE", "README.md", "Cargo.*", "rust-toolchain.toml"]
spec.files.reject! { |f| File.directory?(f) || File.extname(f) == ".bundle" }
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
spec.extensions = ["ext/extconf.rb"]
spec.add_dependency("sorbet-runtime")
end