forked from sensu/sensu-dashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsensu-dashboard.gemspec
32 lines (29 loc) · 1.36 KB
/
sensu-dashboard.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
28
29
30
31
32
# -*- encoding: utf-8 -*-
require File.join(File.dirname(__FILE__), 'lib', 'sensu-dashboard', 'constants')
Gem::Specification.new do |s|
s.name = "sensu-dashboard"
s.version = Sensu::Dashboard::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Justin Kolberg", "Sean Porter"]
s.email = ["[email protected]", "[email protected]"]
s.homepage = "https://github.com/sensu/sensu-dashboard"
s.summary = "A web interface for Sensu, a monitoring framework that aims to be simple, malleable, and scalable."
s.description = "A web interface for Sensu, a monitoring framework that aims to be simple, malleable, and scalable."
s.license = "MIT"
s.has_rdoc = false
s.add_dependency('sensu', '>= 0.9.12')
s.add_dependency('cookiejar', '0.3.0')
s.add_dependency('em-http-request', '~> 1.0.1')
s.add_dependency('sass')
s.add_dependency('slim')
s.add_dependency('sprockets')
s.add_dependency('yui-compressor')
s.add_dependency('coffee-script')
s.add_dependency('handlebars_assets')
s.add_dependency('therubyracer', '0.11.4')
s.add_dependency('less')
s.add_dependency('sinatra', '1.3.5')
s.files = Dir.glob('{bin,lib}/**/*') + %w[sensu-dashboard.gemspec README.md CHANGELOG.md MIT-LICENSE.txt]
s.executables = Dir.glob('bin/**/*').map { |file| File.basename(file) }
s.require_paths = ['lib']
end