-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcloud-templates.gemspec
33 lines (33 loc) · 1.64 KB
/
cloud-templates.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
33
Gem::Specification.new do |s|
s.name = 'cloud-templates'
s.version = '0.4.0'
s.license = 'Apache 2.0'
s.summary = 'Hierarchical data templates'
s.description = 'MVC-based templating framework for hierarchical data structures. ' \
'It is created to fulfil different needs of putting your entire application ' \
'configuration and infrastructure definition under the same roof.'
s.authors = ['Ivan Matylitski', 'Corrado Primier']
s.email = ['[email protected]', '[email protected]']
s.files = Dir['lib/**/*'] +
Dir['spec/**/*'] +
Dir['examples/**/*'] +
[
'LICENSE', 'Gemfile', 'NOTICE', 'README.md', 'Rakefile',
'.rubocop.yml', '.simplecov', 'cloud-templates.gemspec',
'.rspec'
]
s.executables << 'cloud-templates-runner.rb'
s.test_files = Dir['spec/**/*'] + Dir['examples/spec/**/*']
s.homepage = 'https://rubygems.org/gems/cloud-templates'
s.required_ruby_version = Gem::Requirement.new(">= 2.4.0")
s.add_dependency('facets', '>=3.0', '~> 3')
s.add_dependency('concurrent-ruby', '>=1.0.4', '~>1.0')
s.add_dependency('thor', '>=0.20.0', '~>0.20')
s.add_dependency('treetop', '>=1.6.0', '~>1.6')
s.add_development_dependency('rspec', '>= 3.2', '~> 3')
s.add_development_dependency('rubocop', '~> 0.50')
s.add_development_dependency('rubocop-rspec', '~> 1.17')
s.add_development_dependency('byebug', '>= 9.0.5', '~> 9')
s.add_development_dependency('yard', '~> 0.9')
s.add_development_dependency('simplecov', '~> 0.14')
end