-
Notifications
You must be signed in to change notification settings - Fork 80
/
semian.gemspec
36 lines (30 loc) · 1.19 KB
/
semian.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
31
32
33
34
35
36
# frozen_string_literal: true
$LOAD_PATH.unshift(File.expand_path("../lib", __FILE__))
require "semian/version"
require "semian/platform"
Gem::Specification.new do |s|
s.name = "semian"
s.version = Semian::VERSION
s.summary = "Bulkheading for Ruby with SysV semaphores"
s.description = <<-DOC
A Ruby C extention that is used to control access to shared resources
across process boundaries with SysV semaphores.
DOC
s.homepage = "https://github.com/shopify/semian"
s.authors = ["Scott Francis", "Simon Eskildsen", "Dale Hamel"]
s.email = "[email protected]"
s.license = "MIT"
s.metadata = {
"allowed_push_host" => "https://rubygems.org",
"bug_tracker_uri" => "https://github.com/Shopify/semian/issues",
"changelog_uri" => "https://github.com/Shopify/semian/blob/main/CHANGELOG.md",
"documentation_uri" => "https://github.com/Shopify/semian",
"homepage_uri" => "https://github.com/Shopify/semian",
"source_code_uri" => "https://github.com/Shopify/semian",
}
s.required_ruby_version = ">= 2.7.0"
s.files = Dir["{lib,ext}/**/**/*.{rb,h,c}"]
s.files += ["LICENSE.md", "README.md"]
s.extensions = ["ext/semian/extconf.rb"]
s.require_paths = ["lib"]
end