Sha256: a3cc83db96c054579345e53d544f6994ac3fbb56ded14c3e4ae3256389c698f7
Contents?: true
Size: 1.06 KB
Versions: 1
Compression:
Stored size: 1.06 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'cloudstats/version' Gem::Specification.new do |spec| spec.name = "cloudstats" spec.version = Cloudstats::VERSION spec.authors = ["niwo"] spec.email = ["nik.wolfgramm@gmail.com"] spec.summary = %q{Collect CloudStack stats and feed them to InfluxdDB.} spec.description = %q{Collect project and account statistics from the CloudStack API and feeds them into InfluxDB.} spec.homepage = "https://github.com/niwo/cloudstats" spec.license = "MIT" spec.files = `git ls-files -z`.split("\x0").reject do |f| f.match(%r{^(test|spec|features)/}) end spec.executables = %w(cloudstats) spec.require_paths = ["lib"] spec.add_development_dependency "bundler", "~> 1.13" spec.add_development_dependency "rake", "~> 12.0" spec.add_development_dependency "minitest", "~> 5.0" spec.add_runtime_dependency "thor", "~> 0.19" spec.add_runtime_dependency "cloudstack_client", "~> 1.5" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
cloudstats-0.6.0 | cloudstats.gemspec |