-
Notifications
You must be signed in to change notification settings - Fork 1
/
stress_reporter.gemspec
27 lines (22 loc) · 1.07 KB
/
stress_reporter.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
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'stress_reporter/version'
Gem::Specification.new do |gem|
gem.name = "stress_reporter"
gem.version = StressReporter::VERSION
gem.authors = ["Marcello Colacino", "Luca S.G. de Marinis"]
gem.email = ["[email protected]", "[email protected]"]
gem.description = %q{Daemon that runs and reports on stressful stuff}
gem.summary = %q{Was born with specific needs but may be extended to cover more scenarios}
gem.homepage = "https://github.com/InteractSpa/stress_reporter"
gem.files = `git ls-files`.split($/)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.require_paths = ["lib"]
gem.add_runtime_dependency 'sys-cpu'
gem.add_runtime_dependency 'SystemTimer'
gem.add_development_dependency 'rake'
gem.add_development_dependency 'yard'
gem.add_development_dependency 'redcarpet'
end