-
Notifications
You must be signed in to change notification settings - Fork 1
/
share.gemspec
24 lines (20 loc) · 901 Bytes
/
share.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
lib = File.expand_path('../lib/', __FILE__)
$:.unshift lib unless $:.include?(lib)
require "share/version"
Gem::Specification.new do |s|
s.name = "share"
s.version = Share::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Collin Miller"]
s.email = ["[email protected]"]
s.homepage = "https://github.com/collintmiller/share.rb"
s.summary = "port of sharejs server to Ruby ( rack/thin )"
s.description = "OT server for rack/rails applications. Includes JSON OT algorithms ported from ShareJS"
s.required_rubygems_version = ">= 1.3.6"
s.files = Dir.glob("{bin,lib}/**/*") #+ %w(LICENSE README.md ROADMAP.md CHANGELOG.md)
s.require_path = 'lib'
s.add_dependency "thin", "~> 1.4.1"
s.add_dependency "websocket-rack", "~> 0.4.0"
s.add_dependency "activesupport", "~> 3.2.0"
s.add_dependency "thread_safe", "~> 0.0.3"
end