Sha256: 2068cf2763fae4327d4568956e655a3ba8be467d1bbd5dadbef0ef2d9a68738c
Contents?: true
Size: 1.32 KB
Versions: 7
Compression:
Stored size: 1.32 KB
Contents
# frozen_string_literal: true $:.unshift File.expand_path("lib", __dir__) require "ohai/version" Gem::Specification.new do |s| s.name = "ohai" s.version = Ohai::VERSION s.summary = "Ohai profiles your system and emits JSON" s.description = s.summary s.license = "Apache-2.0" s.author = "Adam Jacob" s.email = "adam@chef.io" s.homepage = "https://github.com/chef/ohai/" s.required_ruby_version = ">= 2.6" s.add_dependency "chef-config", ">= 12.8", "< 17" s.add_dependency "chef-utils", ">= 16.0", "< 17" s.add_dependency "ffi", "~> 1.9" s.add_dependency "ffi-yajl", "~> 2.2" s.add_dependency "ipaddress" s.add_dependency "mixlib-cli", ">= 1.7.0" # 1.7+ needed to support passing multiple options s.add_dependency "mixlib-config", ">= 2.0", "< 4.0" s.add_dependency "mixlib-log", ">= 2.0.1", "< 4.0" s.add_dependency "mixlib-shellout", ">= 2.0", "< 4.0" s.add_dependency "plist", "~> 3.1" s.add_dependency "train-core" s.add_dependency "wmi-lite", "~> 1.0" # Note for ohai developers: If chef-config causes you grief, try: # bundle install --with development # this should work as long as chef is a development dependency in Gemfile. # s.bindir = "bin" s.executables = %w{ohai} s.require_path = "lib" s.files = %w{LICENSE Gemfile} + Dir.glob("*.gemspec") + Dir.glob("lib/**/*") end
Version data entries
7 entries across 7 versions & 1 rubygems
Version | Path |
---|---|
ohai-16.13.0 | ohai.gemspec |
ohai-16.12.3 | ohai.gemspec |
ohai-16.10.7 | ohai.gemspec |
ohai-16.10.6 | ohai.gemspec |
ohai-16.10.4 | ohai.gemspec |
ohai-16.8.1 | ohai.gemspec |
ohai-16.7.37 | ohai.gemspec |