-
Notifications
You must be signed in to change notification settings - Fork 4
/
torquebox-console.gemspec
39 lines (35 loc) · 1.35 KB
/
torquebox-console.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
# -*- encoding: utf-8 -*-
require './lib/torquebox/console/version'
Gem::Specification.new do |s|
s.name = %q{torquebox-console}
s.version = TorqueBox::Console::VERSION
s.date = Time.now.strftime('%Y-%m-%d')
s.authors = ["Lance Ball"]
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.description = %q{TorqueBox Console allows you to peer into the TorqueBox guts using a repl command line. You can view information about the components and applications you have running.}
s.email = %q{[email protected]}
s.executables = ["tbconsole"]
s.extra_rdoc_files = [
"README.md",
"LICENSE",
"TODO"
]
s.files = Dir[
"LICENSE",
"dependencies.rb",
"config/**/*",
"lib/**/*",
"views/**/*",
"stomplets/**/*",
"public/**/*",
"bin/**/*",
"vendor/bundle/**/*",
"config.ru",
"console.rb"
]
s.homepage = %q{http://github.com/torquebox/torquebox-console}
s.licenses = ["AL"]
s.require_paths = ["lib"]
s.rubygems_version = %q{1.5.1}
s.summary = %q{TorqueBox Console - A REPL commandline and information viewer for TorqueBox}
end