-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathmad_chatter.gemspec
35 lines (30 loc) · 1.32 KB
/
mad_chatter.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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "mad_chatter/version"
Gem::Specification.new do |s|
s.name = "mad_chatter"
s.version = MadChatter::VERSION
s.authors = ["Andrew Havens"]
s.email = ["[email protected]"]
s.homepage = "http://github.com/andrewhavens/mad_chatter"
s.summary = %q{Mad Chatter is a fun, easy to customize chat server, utilizing HTML 5 Web Sockets}
s.description = %q{Mad Chatter is a fun, easy to customize chat server, utilizing HTML 5 Web Sockets}
# s.rubyforge_project = "mad_chatter"
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
s.add_runtime_dependency "thor"
s.add_runtime_dependency "eventmachine"
s.add_runtime_dependency "em-websocket"
s.add_runtime_dependency "daemons", "1.1.4"
s.add_development_dependency "rspec"
# s.add_development_dependency "shoulda" # do we need this?
unless ENV["CI"]
s.add_development_dependency 'simplecov'
s.add_development_dependency 'guard'
s.add_development_dependency 'guard-rspec'
s.add_development_dependency 'rb-fsevent'
s.add_development_dependency 'ruby-growl'
end
end