-
Notifications
You must be signed in to change notification settings - Fork 0
/
bmc-tools.gemspec
29 lines (25 loc) · 1.15 KB
/
bmc-tools.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
# coding: utf-8
Gem::Specification.new do |spec|
# Project version
spec.version = "0.2.1"
# Project description
spec.name = "bmc-tools"
spec.authors = ["Bruno MEDICI"]
spec.email = "[email protected]"
spec.description = ""
spec.summary = spec.description
spec.homepage = "http://github.com/bmedici/bmc-tools"
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.non_ruby_executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
spec.required_ruby_version = ">= 2.2"
# Development dependencies
spec.add_development_dependency "bundler", "~> 1.6"
spec.add_development_dependency "rake"
spec.add_development_dependency "rspec"
# Runtime dependencies
end