File: prometheus-client-model.gemspec

package info (click to toggle)
golang-github-prometheus-client-model 0.0.2%2Bgit20150212.12.fa8ad6f-2~bpo8%2B1
  • links: PTS, VCS
  • area: main
  • in suites: jessie-backports
  • size: 624 kB
  • sloc: xml: 122; ruby: 97; makefile: 50; python: 21
file content (22 lines) | stat: -rw-r--r-- 830 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'prometheus/client/model/version'

Gem::Specification.new do |spec|
  spec.name          = 'prometheus-client-model'
  spec.version       = Prometheus::Client::Model::VERSION
  spec.authors       = ['Tobias Schmidt']
  spec.email         = ['tobidt@gmail.com']
  spec.summary       = 'Data model artifacts for the Prometheus Ruby client'
  spec.homepage      = 'https://github.com/prometheus/client_model/tree/master/ruby'
  spec.license       = 'Apache 2.0'

  spec.files         = %w[README.md LICENSE] + Dir.glob('{lib/**/*}')
  spec.require_paths = ['lib']

  spec.add_dependency 'beefcake', '>= 0.4.0'

  spec.add_development_dependency 'bundler', '~> 1.3'
  spec.add_development_dependency 'rake'
end