-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathlow_dependency.gemspec
More file actions
29 lines (22 loc) · 1002 Bytes
/
low_dependency.gemspec
File metadata and controls
29 lines (22 loc) · 1002 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
# frozen_string_literal: true
require_relative 'lib/version'
Gem::Specification.new do |spec|
spec.name = 'low_dependency'
spec.version = Low::DEPENDENCY_VERSION
spec.authors = ['maedi']
spec.email = ['maediprichard@gmail.com']
spec.summary = 'Dependency Injection in crisp and clear syntax'
spec.description = 'Automatic Dependency Injection where you get to see and keep control of the constructor'
spec.homepage = 'https://github.com/low-rb/low_dependency'
spec.required_ruby_version = '>= 3.3.0'
spec.metadata['homepage_uri'] = spec.homepage
spec.metadata['source_code_uri'] = 'https://github.com/low-rb/low_dependency/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 'expressions', '~> 0.1'
end