public
Fork of riham/eventmachine
Description: A fast network I/O and event-management framework for Ruby, Java, and C++ programmers.
Homepage: http://rubyeventmachine.com
Clone URL: git://github.com/espace/eventmachine.git
eventmachine / eventmachine.gemspec
100755 23 lines (21 sloc) 0.871 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
require 'rubygems'
require 'rake/gempackagetask'
 
Gem::Specification.new do |s|
        s.name = "eventmachine"
        s.version = "0.12.2"
        s.date = "2008-9-3"
        s.summary = "Add Notify on read for ruby eventmachine"
        s.description = "Add Notify on read for ruby eventmachine"
s.email = "riham.aldakkak@gmail.com"
s.homepage = "http://github.com/riham/eventmachine"
        s.has_rdoc = true
        s.authors = ["Riham"]
        s.files = FileList["RELEASE_NOTES" , "README" ,
"LEGAL" , "COPYING" , "GNU" ,"TODO" , "DEFERRABLES" ,
"EPOLL" , "SPAWNED_PROCESSES" , "LIGHTWEIGHT_CONCURRENCY" ,
"SMTP" , "PURE_RUBY" , "KEYBOARD" ,
"setup.rb" , "eventmachine.gemspec" , 'lib/**/*' , 'test/**/*' , 'ext/**/*'].to_a
s.test_files = FileList["{test}/**/*.rb"].to_a
s.extensions = 'ext/extconf.rb'
s.extra_rdoc_files = ["README"]
end