-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbmc-daemon-lib.gemspec
35 lines (30 loc) · 1.56 KB
/
bmc-daemon-lib.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
35
# coding: utf-8
Gem::Specification.new do |spec|
# Project version
spec.version = "0.14.0"
# Project description
spec.name = "bmc-daemon-lib"
spec.authors = ["Bruno MEDICI"]
spec.email = "[email protected]"
spec.description = "Shared utilities to build a daemon: logger, configuration, helpers"
spec.summary = spec.description
spec.homepage = "http://github.com/bmedici/#{spec.name}"
spec.licenses = ["MIT"]
spec.date = Time.now.strftime("%Y-%m-%d")
# List files and executables
spec.files = `git ls-files -z`.split("\x0")
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
spec.required_ruby_version = ">= 2.2.2"
# Development dependencies
spec.add_development_dependency "bundler"
spec.add_development_dependency "rake"
spec.add_development_dependency "rspec"
spec.add_development_dependency "rubocop"
# Runtime dependencies
# spec.add_runtime_dependency "hashie" , "~> 3.4.6" # upgrading to 3.5.4 breaks things !
# spec.add_runtime_dependency "chamber" , "~> 2.9.1"
# spec.add_runtime_dependency "hashie" , "~> 3.4.6" # upgrading to 3.5.4 breaks things !
spec.add_runtime_dependency "hashie" , "~> 3" # upgrading to 3.5.4 breaks things !
spec.add_runtime_dependency "chamber"
end