forked from OSC/ood_core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ood_core.gemspec
34 lines (30 loc) · 1.48 KB
/
ood_core.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
34
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'ood_core/version'
Gem::Specification.new do |spec|
spec.name = "ood_core"
spec.version = OodCore::VERSION
spec.authors = ["Eric Franz", "Morgan Rodgers", "Jeremy Nicklas"]
spec.summary = %q{Open OnDemand core library}
spec.description = %q{Open OnDemand core library that provides support for an HPC Center to globally define HPC services that web applications can then take advantage of.}
spec.homepage = "https://github.com/OSC/ood_core"
spec.license = "MIT"
spec.files = `git ls-files -z`.split("\x0").reject do |f|
f.match(%r{^(test|spec|features|.github)/})
end
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
spec.required_ruby_version = ">= 2.5.0"
spec.add_runtime_dependency "ood_support", "~> 0.0.2"
spec.add_runtime_dependency "ffi", "~> 1.9", ">= 1.9.6"
spec.add_runtime_dependency "rexml", "~> 3.2"
spec.add_development_dependency "bundler", "~> 2.1"
spec.add_development_dependency "rake", "~> 13.1.0"
spec.add_development_dependency "rspec", "~> 3.0"
spec.add_development_dependency "pry", "~> 0.10"
spec.add_development_dependency "timecop", "~> 0.8"
spec.add_development_dependency "climate_control", "~> 1.2.0"
end