-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdirect.gemspec
25 lines (21 loc) · 905 Bytes
/
direct.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
lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "direct/version"
Gem::Specification.new do |spec|
spec.name = "direct"
spec.version = Direct::VERSION
spec.authors = ["Jim Gay"]
spec.email = ["[email protected]"]
spec.summary = "Direct objects to perform arbitrary blocks by name"
spec.description = "Direct objects to perform arbitrary blocks by name"
spec.homepage = "https://github.com/saturnflyer/direct"
spec.license = "MIT"
spec.files = Dir.chdir(File.expand_path(__dir__)) do
Dir["{app,config,db,lib}/**/*", "LICENSE.txt", "Rakefile", "README.md", "CHANGELOG.md", "CODE_OF_CONDUCT.md"]
end
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
spec.add_dependency "concurrent-ruby", ">= 1.0"
spec.required_ruby_version = ">= 2.7"
end