-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathprocess_settings.gemspec
29 lines (26 loc) · 1.17 KB
/
process_settings.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
# frozen_string_literal: true
lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "process_settings/version"
Gem::Specification.new do |spec|
spec.name = 'process_settings'
spec.version = ProcessSettings::VERSION
spec.license = 'MIT'
spec.date = '2019-09-19'
spec.summary = 'Dynamic process settings'
spec.description = 'Targeted process settings that dynamically reload without restarting the process'
spec.authors = ['Invoca']
spec.email = '[email protected]'
spec.files = Dir.glob("{bin,lib}/**/*") + %w[README.md LICENSE]
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.homepage = 'https://rubygems.org/gems/process_settings'
spec.metadata = {
"source_code_uri" => "https://github.com/Invoca/process_settings",
'allowed_push_host' => "https://rubygems.org"
}
spec.require_paths = ["lib"]
spec.add_runtime_dependency 'activesupport'
spec.add_runtime_dependency 'json'
spec.add_runtime_dependency 'listen', '~> 3.0'
spec.add_runtime_dependency 'psych', '>= 3.2' # so latest libyaml will be pulled in
end