-
Notifications
You must be signed in to change notification settings - Fork 7
/
evt.gemspec
29 lines (24 loc) · 1.22 KB
/
evt.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
require_relative 'lib/evt/version'
Gem::Specification.new do |spec|
spec.name = "evt"
spec.version = Evt::VERSION
spec.authors = ["Delton Ding"]
spec.email = ["[email protected]"]
spec.summary = "The Event Library that designed for Ruby 3.0 Fiber Scheluer."
spec.description = "A low-level Event Handler designed for Ruby 3 Scheduler for better performance"
spec.homepage = "https://github.com/dsh0416/evt"
spec.license = 'BSD-3-Clause'
spec.required_ruby_version = '>= 3.0.0'
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = "https://github.com/dsh0416/evt"
# Specify which files should be added to the gem when it is released.
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|examples|.vscode)/}) }
end
spec.require_paths = ["lib"]
spec.extensions = ['ext/evt/extconf.rb']
spec.add_development_dependency 'rake-compiler', '~> 1.0'
spec.add_development_dependency 'simplecov', '~> 0.20.0'
spec.add_development_dependency 'minitest-reporters', '~> 1.4'
end