Sha256: 0b3aafa8033d1af829ba4ba74013b3f5508f2dde84997897b6916e066af6dc8e
Contents?: true
Size: 1.12 KB
Versions: 1
Compression:
Stored size: 1.12 KB
Contents
# coding: utf-8 # frozen_string_literal: true lib = File.expand_path("../lib", __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require "rubystats_psm/version" Gem::Specification.new do |spec| spec.name = "psm-ruby-stats" spec.version = RubyStatsPsm::VERSION spec.authors = ["Personal Social Media"] spec.email = ["contact@personalsocialmedia.net"] spec.description = "A Ruby Gem with methods to find usage statistics such as CPU, Disk, TCP/UDP Connections, Load, Bandwidth, Disk I/O, and Memory" spec.summary = "Extended version of usagewatch_ext" spec.homepage = "https://github.com/personal-social-media/ruby-stats" spec.license = "MIT" spec.rdoc_options << "--main" << "README" spec.files = `git ls-files`.split($/) 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_runtime_dependency "usagewatch", "~> 0.0.7" spec.add_development_dependency "rspec" spec.add_development_dependency "rubocop-rails_config" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
psm-ruby-stats-1.1.0 | psm-ruby-stats.gemspec |