-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathtorquebox-backstage.gemspec
69 lines (62 loc) · 2.24 KB
/
torquebox-backstage.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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = %q{torquebox-backstage}
s.version = IO.read(File.join(File.dirname(__FILE__), 'VERSION')).strip
s.date = Time.now.strftime('%Y-%m-%d')
s.authors = ["Tobias Crawley", "David Glassborow", "Penumbra Shadow", "Tom Beauvais"]
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.description = %q{BackStage allows you to look behind the TorqueBox curtain, and view information about all of the components you have running. It includes support for remote code execution and log tailing to aid in debugging.}
s.email = %q{tcrawley@redhat.com}
s.executables = ["backstage"]
s.extra_rdoc_files = [
"README.md",
"TODO"
]
s.files = Dir[
"backstage.rb",
"config.ru",
"torquebox-backstage.gemspec",
"[A-Z]*",
"config/**/*",
"lib/**/*",
"public/**/*",
"views/**/*"
] - %w{ Gemfile.lock }
s.homepage = %q{http://github.com/torquebox/backstage}
s.licenses = ["Apache-2.0"]
s.require_paths = ["lib"]
s.rubygems_version = %q{1.5.1}
s.summary = %q{BackStage - Queue/Topic/Job/etc viewer for TorqueBox}
deps = [
[%q<sinatra>, "= 1.4.4"],
[%q<haml>, "~> 3.0"],
[%q<sass>, "~> 3.1.2"],
[%q<jmx>, "= 1.0"],
[%q<json>, "= 1.8.1"],
[%q<torquebox>, ">= 2.0", "< 4.0"],
[%q<rack-accept>, "~> 0.4.4"],
[%q<thor>, "= 0.14.6"],
[%q<bundler>, "~> 1.0"],
[%q<torquebox-webconsole>, '0.2.0']
]
if s.respond_to? :specification_version then
s.specification_version = 3
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
deps.each do |name, version, dev|
if dev
s.add_development_dependency(name, [version])
else
s.add_runtime_dependency(name, [version])
end
end
else
deps.each do |name, version|
s.add_dependency(name, [version])
end
end
else
deps.each do |name, version|
s.add_dependency(name, [version])
end
end
end