-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrust_regexp.gemspec
More file actions
28 lines (23 loc) · 1.01 KB
/
rust_regexp.gemspec
File metadata and controls
28 lines (23 loc) · 1.01 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
# frozen_string_literal: true
require_relative "lib/rust_regexp/version"
Gem::Specification.new do |spec|
spec.name = "rust_regexp"
spec.version = RustRegexp::VERSION
spec.authors = ["Dmytro Horoshko"]
spec.email = ["electric.molfar@gmail.com"]
spec.summary = "Simple bindings for rust/regex library"
spec.description = "Simple bindings for rust/regex library."
spec.homepage = "https://github.com/ocvit/rust_regexp"
spec.license = "MIT"
spec.metadata = {
"bug_tracker_uri" => "https://github.com/ocvit/rust_regexp/issues",
"homepage_uri" => "https://github.com/ocvit/rust_regexp",
"source_code_uri" => "https://github.com/ocvit/rust_regexp"
}
spec.files = Dir["lib/**/*.rb", "ext/rust_regexp/src/**/*.rs", "ext/rust_regexp/*.{toml,lock,rb}", "README.md", "LICENSE.txt"]
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
spec.extensions = ["ext/rust_regexp/extconf.rb"]
spec.required_ruby_version = ">= 2.7.0"
end