forked from riemann/riemann-dash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
riemann-dash.gemspec
27 lines (24 loc) · 1.02 KB
/
riemann-dash.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'riemann/dash/version'
Gem::Specification.new do |gem|
gem.rubyforge_project = 'riemann-dash'
gem.name = "riemann-dash"
gem.version = Riemann::Dash::VERSION
gem.authors = ["Kyle Kingsbury"]
gem.email = ['[email protected]']
gem.description = %q{HTTP dashboard for the distributed event system Riemann.}
gem.summary = gem.description
gem.homepage = 'https://github.com/riemann/riemann-dash'
gem.platform = Gem::Platform::RUBY
gem.add_dependency 'erubis', '>= 2.7.0'
gem.add_dependency 'sinatra', '~> 1.4.5'
gem.add_dependency 'sass', '>= 3.1.14'
gem.add_dependency 'webrick'
gem.add_dependency 'multi_json', '1.3.6'
gem.files = `git ls-files`.split($/)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.require_paths = ["lib"]
end