-
Notifications
You must be signed in to change notification settings - Fork 5
/
ood-packaging.gemspec
30 lines (25 loc) · 1.07 KB
/
ood-packaging.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
# frozen_string_literal: true
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'ood_packaging/version'
Gem::Specification.new do |spec|
spec.name = 'ood_packaging'
spec.version = OodPackaging::VERSION
spec.authors = ['Trey Dockendorf', 'Jeff Ohrstrom']
spec.email = ['[email protected]', '[email protected]']
spec.summary = 'Open OnDemand packaging library'
spec.description = 'Open OnDemand packaging library provides Rake tasks like package:rpm and pacakge:deb'
spec.homepage = 'https://github.com/OSC/ondemand-packaging'
spec.license = 'MIT'
spec.files = `git ls-files -z`.split("\x0").select do |f|
f.match(%r{^lib/})
end
spec.bindir = 'bin'
spec.executables = ['ood_packaging']
spec.require_paths = ['lib']
spec.required_ruby_version = '>= 2.2.0'
spec.add_runtime_dependency 'rake', '~> 13.0.1'
spec.add_development_dependency 'rspec'
spec.add_development_dependency 'rubocop'
spec.add_development_dependency 'rubocop-rspec'
end