-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathwebtools.gemspec
23 lines (22 loc) · 1.33 KB
/
webtools.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Gem::Specification.new do |s|
s.name = 'maglev-webtools'
s.version = '1.0.2'
s.date = Date.today.to_s
s.summary = "The MagLev WebTools suite"
s.description = "A suite of tools for inspecting, interfacing and working with MagLev. It consists of a number of Rack middlewares to record runtime information in the stone, an associated set of Sinatra middlewares for exposing said information through a JSON interface, and a number of Sinatra web-applications that take advantage of that interface to build a few simple browser-based development tools."
s.authors = ["Peter McLain", "Monty Williams", "Tim Felgentreff", "James Foster"]
s.email = "[email protected]"
s.files = Dir.glob("lib/**/*") + Dir.glob("public/**/*") + Dir.glob("views/**/*") << "LICENSE.txt" << "README.rdoc"
s.homepage = "http://github.com/MagLev/webtools"
s.license = 'MIT'
s.require_path = 'lib'
s.executables = ["webtools"]
s.add_dependency 'json_pure', '~> 1.5'
s.add_dependency 'rack', '~> 1.1'
s.add_dependency 'rack-contrib', '~> 1.1'
s.add_dependency 'rubymirrors', '~> 0.0.2'
s.add_dependency 'sinatra', '~> 1.3.0'
s.add_development_dependency 'activemodel', '~> 3.0'
s.add_development_dependency 'mocha', '~> 0.9'
s.add_development_dependency 'minitest', '~> 2.4'
end