forked from josqu4red/ilorb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ilorb.gemspec
29 lines (25 loc) · 1.08 KB
/
ilorb.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
lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "ilorb/version"
Gem::Specification.new do |spec|
spec.name = "ilorb"
spec.version = ILORb::VERSION
spec.authors = ["Jonathan Amiez"]
spec.email = ["[email protected]"]
spec.description = "HP ILO Ruby interface"
spec.summary = "Configure and retrieve data from server's ILO management card"
spec.homepage = "https://github.com/josqu4red/ilorb"
spec.license = "MIT"
spec.files = `git ls-files`.split($RS)
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]
spec.add_development_dependency "bundler", "~> 1.2"
spec.add_development_dependency "rspec", "~> 2.14"
spec.add_development_dependency "webmock", "~> 1.13"
spec.add_development_dependency "pry"
spec.add_development_dependency "rubocop"
spec.add_dependency "nokogiri"
spec.add_dependency "nori", "~> 2"
end