-
Notifications
You must be signed in to change notification settings - Fork 55
/
Copy pathforeman_templates.gemspec
30 lines (27 loc) · 1.17 KB
/
foreman_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
$LOAD_PATH.push File.expand_path('lib', __dir__)
# Maintain your gem's version:
require "foreman_templates/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = 'foreman_templates'
s.version = ForemanTemplates::VERSION
s.authors = ["Greg Sutcliffe"]
s.email = '[email protected]'
s.description = 'Engine to synchronise provisioning templates from GitHub'
s.extra_rdoc_files = [
"LICENSE",
"README.md"
]
s.files = Dir["{app,config,db,lib,webpack}/**/*"] + \
["LICENSE", "Rakefile", "README.md", "package.json"] + \
# .mo files are compiled; .po are sources; .edit.po are temporary files
Dir['locale/*/LC_MESSAGES/*.mo'] + Dir["locale/*/#{s.name}.po"]
s.homepage = 'https://github.com/theforeman/foreman_templates'
s.licenses = ["GPL-3.0"]
s.summary = 'Template-syncing engine for Foreman'
s.add_dependency "diffy"
s.add_dependency "git"
s.add_development_dependency "rake"
s.add_development_dependency "rdoc"
s.add_development_dependency "theforeman-rubocop"
end