-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfeature_map.gemspec
More file actions
44 lines (40 loc) · 2.08 KB
/
feature_map.gemspec
File metadata and controls
44 lines (40 loc) · 2.08 KB
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
37
38
39
40
41
42
43
44
Gem::Specification.new do |spec|
spec.name = 'feature_map'
spec.version = '1.2.9'
spec.authors = ['Beyond Finance']
spec.email = ['engineering@beyondfinance.com']
spec.summary = 'A gem to help identify and manage features within large Ruby and Rails applications'
spec.description = 'FeatureMap helps identify and manage features within large Ruby and Rails applications. This gem works best in large, usually monolithic code bases for applications that incorporate a wide range of features with various dependencies.'
spec.homepage = 'https://github.com/Beyond-Finance/feature_map'
spec.license = 'MIT'
spec.required_ruby_version = '>= 2.6'
if spec.respond_to?(:metadata)
spec.metadata['homepage_uri'] = spec.homepage
spec.metadata['source_code_uri'] = 'https://github.com/Beyond-Finance/feature_map'
spec.metadata['changelog_uri'] = 'https://github.com/Beyond-Finance/feature_map/releases'
spec.metadata['allowed_push_host'] = 'https://rubygems.org'
else
raise 'RubyGems 2.0 or newer is required to protect against ' \
'public gem pushes.'
end
# https://guides.rubygems.org/make-your-own-gem/#adding-an-executable
# and
# https://bundler.io/blog/2015/03/20/moving-bins-to-exe.html
spec.executables = ['featuremap']
# Specify which files should be added to the gem when it is released.
spec.files = Dir['README.md', 'lib/**/*', 'bin/**/*']
spec.require_paths = ['lib']
spec.add_dependency 'code_ownership', '~> 1.34'
spec.add_dependency 'faraday', '~> 2.7'
spec.add_dependency 'packs-specification', '~> 0.0'
spec.add_dependency 'parser', '~> 3.3'
spec.add_dependency 'rubocop', '~> 1.0'
spec.add_dependency 'uri', '~> 1.0'
spec.add_development_dependency 'debug', '~> 1.9'
spec.add_development_dependency 'github-pages', '~> 232'
spec.add_development_dependency 'railties', '~> 7.2'
spec.add_development_dependency 'rake', '~> 13.2'
spec.add_development_dependency 'rspec', '~> 3.0'
spec.add_development_dependency 'simplecov'
spec.add_development_dependency 'webmock', '~> 3.24'
end