Sha256: 9f58487ad0968e09aa0cc66b4ebf84d7bc70460570453291b40cf8fecd718293

Contents?: true

Size: 1.46 KB

Versions: 7

Compression:

Stored size: 1.46 KB

Contents

# coding: utf-8
lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "smcutil/version"

Gem::Specification.new do |spec|
  spec.name          = "smcutil"
  spec.version       = SmcUtil::VERSION
  spec.authors       = ["Rick Mark"]
  spec.email         = ["rickmark@outlook.com"]

  spec.summary       = %q{smcutil is a collection of useful commands for Apple SMC}
  spec.description   = %q{The Apple SMC contains security critical code.  This is a utility designed for the iteraction with the System Management Controller and it's updates.}
  spec.homepage      = "https://github.com/rickmark/smcutil"
  spec.license       = "MIT"

  # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
  # to allow pushing to a single host or delete this section to allow pushing to any host.
  if spec.respond_to?(:metadata)
    spec.metadata["allowed_push_host"] = "https://rubygems.org"
  else
    raise "RubyGems 2.0 or newer is required to protect against " \
      "public gem pushes."
  end

  spec.files         = `git ls-files -z`.split("\x0").reject do |f|
    f.match(%r{^(test|spec|features)/})
  end
  spec.bindir        = "exe"
  spec.executables   = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
  spec.require_paths = ["lib"]

  spec.add_development_dependency "bundler", "~> 1.15"
  spec.add_development_dependency "rake", "~> 10.0"
  spec.add_development_dependency "rspec", "~> 3.0"
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
smcutil-0.1.6 smcutil.gemspec
smcutil-0.1.5 smcutil.gemspec
smcutil-0.1.4 smcutil.gemspec
smcutil-0.1.3 smcutil.gemspec
smcutil-0.1.2 smcutil.gemspec
smcutil-0.1.1 smcutil.gemspec
smcutil-0.1.0 smcutil.gemspec