forked from reddavis/zync
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathzync.gemspec
More file actions
29 lines (24 loc) · 1004 Bytes
/
Copy pathzync.gemspec
File metadata and controls
29 lines (24 loc) · 1004 Bytes
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
# -*- encoding: utf-8 -*-
$:.push File.expand_path('../lib', __FILE__)
require 'zync/version'
Gem::Specification.new do |s|
s.name = 'zync'
s.version = Zync::VERSION
s.platform = Gem::Platform::RUBY
s.summary = 'Lightweight asynchronous Ruby web framework'
s.description = 'Lightweight asynchronous Ruby web framework'
s.authors = ['Peter Kieltyka', 'Kevin Faustino']
s.email = ['peter@nulayer.com']
s.homepage = 'http://github.com/nulayer/zync'
s.files = Dir['README', 'VERSION', 'lib/**/*']
s.require_path = 'lib'
# s.add_dependency('zync-gen', [Zync::VERSION])
s.add_dependency('eventmachine', ['~> 1.0.0.beta.2'])
s.add_dependency('rack', ['~> 1.2.1'])
s.add_dependency('rack-mount', ['~> 0.6.13'])
s.add_dependency('activesupport', ['~> 3.0.5'])
s.add_dependency('i18n')
s.add_development_dependency('rspec', ['~> 2.5.0'])
s.add_development_dependency('timecop', ['~> 0.3.5'])
s.add_development_dependency('thin')
end