-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathunifig-rails.gemspec
32 lines (24 loc) · 1018 Bytes
/
unifig-rails.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
30
31
32
# frozen_string_literal: true
require_relative 'lib/unifig/rails/version'
Gem::Specification.new do |spec|
spec.name = 'unifig-rails'
spec.version = Unifig::Rails::VERSION
spec.license = 'MIT'
spec.authors = ['Aaron Lasseigne']
spec.email = ['aaron.lasseigne@gmail.com']
spec.summary = 'Unifig support for Rails.'
spec.description = spec.summary
spec.homepage = 'https://github.com/AaronLasseigne/unifig-rails'
spec.metadata['homepage_uri'] = spec.homepage
spec.metadata['source_code_uri'] = spec.homepage
spec.metadata['changelog_uri'] = "#{spec.homepage}/blob/main/CHANGELOG.md"
spec.metadata['rubygems_mfa_required'] = 'true'
spec.required_ruby_version = '>= 2.7.0'
spec.files =
%w[CHANGELOG.md CONTRIBUTING.md LICENSE.txt README.md] +
Dir.glob(File.join('lib', '**', '*.rb'))
spec.test_files = Dir.glob(File.join('spec', '**', '*.rb'))
spec.add_dependency 'railties', '>= 6'
spec.add_dependency 'tty-table', '0.12.0'
spec.add_dependency 'unifig', '~> 0.4.0'
end