forked from websocket-rails/websocket-rails
-
Notifications
You must be signed in to change notification settings - Fork 0
/
websocket-rails.gemspec
41 lines (33 loc) · 1.46 KB
/
websocket-rails.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
$:.push File.expand_path("../lib", __FILE__)
require "websocket_rails/version"
Gem::Specification.new do |s|
s.name = "websocket-rails"
s.summary = "Plug and play websocket support for ruby on rails. Includes event router for mapping javascript events to controller actions."
s.description = "Seamless Ruby on Rails websocket integration."
s.homepage = "http://danknox.github.com/websocket-rails/"
s.version = WebsocketRails::VERSION
s.platform = Gem::Platform::RUBY
s.authors = [ "Dan Knox", "Kyle Whalen", "Three Dot Loft LLC" ]
s.email = [ "[email protected]" ]
s.rubyforge_project = "websocket-rails"
s.files = Dir["{lib,bin,spec}/**/*"] + ["MIT-LICENSE", "Rakefile", "Gemfile", "README.md", "CHANGELOG.md"]
s.executables = ['thin-socketrails']
s.require_path = 'lib'
s.add_dependency "rails"
s.add_dependency "rack"
s.add_dependency "faye-websocket"
s.add_dependency "thin"
s.add_dependency "redis"
s.add_dependency "hiredis"
s.add_dependency "em-synchrony"
s.add_development_dependency "rake"
s.add_development_dependency "rspec-rails"
s.add_development_dependency 'rspec-matchers-matchers'
s.post_install_message = <<-EOF
Welcome to WebsocketRails v#{WebsocketRails::VERSION}!
There have been a few significant changes in the public
API, so if you are upgrading please be sure to read the
CHANGELOG located at:
http://github.com/DanKnox/websocket-rails/CHANGELOG.md
EOF
end