forked from Chris911/iStats
-
Notifications
You must be signed in to change notification settings - Fork 0
/
iStats.gemspec
34 lines (27 loc) · 1.17 KB
/
iStats.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
# coding: utf-8
require 'rake'
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'iStats/version'
spec = Gem::Specification.new do |s|
s.name = "iStats"
s.version = IStats::VERSION
s.authors = ["Chris911"]
s.email = ["[email protected]"]
s.description = %q{iStats is a command-line tool that allows you to easily grab the CPU temperature, fan speeds and battery information on macOS.}
s.summary = "Stats for your mac"
s.homepage = "https://github.com/Chris911/iStats"
s.license = "MIT"
s.files = `git ls-files`.split($/)
s.executables = s.files.grep(%r{^bin/}) { |f| File.basename(f) }
s.test_files = s.files.grep(%r{^(test|spec|features)/})
s.require_paths = ["lib", "ext"]
s.platform = Gem::Platform::RUBY
s.extensions = FileList["ext/**/extconf.rb"]
s.required_ruby_version = ">= 1.9.3"
s.add_dependency "sparkr", "~> 0.4"
s.add_dependency "parseconfig", "~> 1.0"
s.add_development_dependency "bundler", "~> 1.3"
s.add_development_dependency "rake", "~> 1.8"
s.add_development_dependency "rake-compiler", "~> 1.8"
end