forked from lifo/cramp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcramp.gemspec
28 lines (22 loc) · 822 Bytes
/
cramp.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
Gem::Specification.new do |s|
s.platform = Gem::Platform::RUBY
s.name = 'cramp'
s.version = '0.15.1'
s.summary = 'Asynchronous web framework.'
s.description = 'Cramp is a framework for developing asynchronous web applications.'
s.author = 'Pratik Naik'
s.email = '[email protected]'
s.homepage = 'http://cramp.in'
# Not in a very distant future
# s.required_ruby_version = '>=1.9.2'
s.add_dependency('activesupport', '~> 3.2.8')
s.add_dependency('rack', '~> 1.4.1')
s.add_dependency('eventmachine', '~> 1.0.3')
s.add_dependency('faye-websocket', '0.4.6')
s.add_dependency('thor', '~> 0.16.0')
s.files = Dir['README', 'MIT-LICENSE', 'lib/**/*', 'bin/**/*']
s.has_rdoc = false
s.require_path = 'lib'
s.bindir = 'bin'
s.executables = ['cramp']
end