-
Notifications
You must be signed in to change notification settings - Fork 119
Expand file tree
/
Copy pathcramp.gemspec
More file actions
26 lines (22 loc) · 819 Bytes
/
cramp.gemspec
File metadata and controls
26 lines (22 loc) · 819 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
Gem::Specification.new do |s|
s.platform = Gem::Platform::RUBY
s.name = 'cramp'
s.version = '0.5'
s.summary = "Async ORM and controller layer."
s.description = <<-EOF
Cramp provides ORM and controller layers for developing asynchronous web applications.
EOF
s.author = "Pratik Naik"
s.email = "pratiknaik@gmail.com"
s.homepage = "http://m.onkey.org"
s.add_dependency('activesupport', '= 3.0.pre')
s.add_dependency('activemodel', '= 3.0.pre')
s.add_dependency('arel', '~> 0.1.2')
s.add_dependency('rack', '~> 1.0.0')
s.add_dependency('mysqlplus', '~> 0.1.1')
s.add_dependency('eventmachine', '~> 0.12.10')
s.add_dependency('thin', '~> 1.2.5')
s.files = Dir['README', 'MIT-LICENSE', 'lib/**/*']
s.has_rdoc = false
s.require_path = 'lib'
end