Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
source 'https://rubygems.org'

group :development, :test do
gem 'rake'
gem 'rspec'
end
gemspec

gem 'rake'
gem 'rspec'
6 changes: 6 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
PATH
remote: .
specs:
prometheus-client (0.1.0)

GEM
remote: https://rubygems.org/
specs:
Expand All @@ -17,5 +22,6 @@ PLATFORMS
ruby

DEPENDENCIES
prometheus-client!
rake
rspec
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ snapshot thereof.

* add histogram support
* add push support to a vanilla prometheus exporter
* package as gem
* add tests for Rack middlewares
* use a more performant JSON library

Expand Down
11 changes: 11 additions & 0 deletions prometheus-client.gemspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
Gem::Specification.new do |s|
s.name = 'prometheus-client'
s.version = '0.1.0'
s.summary = 'A suite of instrumentation metric primitives for Ruby that can be exposed through a JSON web services interface.'
s.author = 'Tobias Schmidt'
s.email = 'grobie@soundcloud.com'
s.homepage = 'http://github.com/prometheus/client_ruby'

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