-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathjschat.gemspec
24 lines (21 loc) · 893 Bytes
/
jschat.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
require 'rake'
Gem::Specification.new do |s|
s.name = %q{jschat}
s.version = '0.3.7'
s.required_rubygems_version = Gem::Requirement.new('>= 0') if s.respond_to? :required_rubygems_version=
s.authors = ['Alex R. Young']
s.date = %q{2012-04-13}
s.description = %q{JsChat is a JSON-based web and console chat app.}
s.email = %q{[email protected]}
s.files = FileList['{bin,http,lib,test}/**/*', 'README.textile', 'MIT-LICENSE'].to_a
s.has_rdoc = false
s.bindir = 'bin'
s.executables = %w{jschat-server jschat-client jschat-web}
s.default_executable = 'bin/jschat-server'
s.homepage = %q{http://github.com/alexyoung/jschat}
s.summary = %q{JsChat features a chat server, client and web app.}
s.add_dependency('sinatra', '>= 0.9.4')
s.add_dependency('json', '>= 1.1.9')
s.add_dependency('eventmachine', '>= 0.12.8')
s.add_dependency('ncurses', '>= 0.9.1')
end