-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathlow_node.gemspec
More file actions
33 lines (25 loc) · 977 Bytes
/
Copy pathlow_node.gemspec
File metadata and controls
33 lines (25 loc) · 977 Bytes
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
# frozen_string_literal: true
require_relative 'lib/version'
Gem::Specification.new do |spec|
spec.name = 'low_node'
spec.version = Low::Node::VERSION
spec.authors = ['maedi']
spec.email = ['maediprichard@gmail.com']
spec.summary = 'Flexible building blocks'
spec.homepage = 'https://github.com/low-rb/low_node'
spec.required_ruby_version = '>= 3.3.0'
spec.metadata['homepage_uri'] = spec.homepage
spec.metadata['source_code_uri'] = 'https://github.com/low-rb/low_node/src/branch/main'
# Specify which files should be added to the gem when it is released.
spec.files = Dir.chdir(File.expand_path(__dir__)) do
Dir.glob('lib/**/*')
end
spec.require_paths = ['lib']
spec.bindir = 'exe'
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
spec.add_dependency 'low_event'
spec.add_dependency 'low_loop'
spec.add_dependency 'low_type', '~> 1.0'
spec.add_dependency 'antlers'
spec.add_dependency 'observers'
end