public
Description: Async MySQL driver for Ruby/Eventmachine
Homepage:
Clone URL: git://github.com/tmm1/em-mysql.git
em-mysql / em-mysql.gemspec
100644 22 lines (20 sloc) 0.54 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
spec = Gem::Specification.new do |s|
  s.name = 'em-mysql'
  s.version = '0.4.0'
  s.date = '2009-06-23'
  s.summary = 'Async MySQL client API for Ruby/EventMachine'
  s.email = "em-mysql@tmm1.net"
  s.homepage = "http://github.com/tmm1/em-mysql"
  s.description = 'Async MySQL client API for Ruby/EventMachine'
  s.has_rdoc = false
  s.authors = ["Aman Gupta"]
  s.add_dependency('eventmachine', '>= 0.12.9')
 
  # git ls-files
  s.files = %w[
README
em-mysql.gemspec
lib/em/mysql.rb
lib/sequel/async.rb
test.rb
]
end