public
Description: A very fast & simple Ruby web server
Homepage: http://code.macournoyer.com/thin/
Clone URL: git://github.com/macournoyer/thin.git
Search Repo:
Require EventMachine 0.11
macournoyer (author)
Mon Mar 03 07:38:37 -0800 2008
commit  38a20d9da9f41cb141c5a553106e6e80720375d0
tree    4996769c1fac1283792b4ce386beb45bec85ee2a
parent  e546c5da487d51056631ac49caf9e699da6b1808
...
1
 
 
2
3
4
...
1
2
3
4
5
6
0
@@ -1,4 +1,6 @@
0
 == 0.7.1 Fancy Pants release
0
+ * Require EventMachine 0.11. Until it's released, install from:
0
+ gem install eventmachine --source http://code.macournoyer.com
0
  * Ruby 1.8.5 compatibility, closes #49 [Wincent Colaiuta]
0
  * Move all EventMachine stuff out of Server, you can now create a Thin Backend that
0
    does not depend on EventMachine.
...
15
16
17
18
 
19
20
21
22
 
 
23
 
 
24
25
26
...
15
16
17
 
18
19
20
 
 
21
22
23
24
25
26
27
28
0
@@ -15,12 +15,14 @@
0
   s.has_rdoc = true
0
   s.executables = %w(thin)
0
 
0
- s.required_ruby_version = '>= 1.8.6' # Makes sure the CGI eof fix is there
0
+ s.required_ruby_version = '>= 1.8.5'
0
   
0
   s.add_dependency 'rack', '>= 0.2.0'
0
- s.add_dependency 'eventmachine', '>= 0.8.1'
0
- unless WIN
0
+ if WIN
0
+ s.add_dependency 'eventmachine', '>= 0.8.1'
0
     s.add_dependency 'daemons', '>= 1.0.9'
0
+ else
0
+ s.add_dependency 'eventmachine', '>= 0.11.0'
0
   end
0
 
0
   s.files = %w(COPYING CHANGELOG README Rakefile) +

Comments

    No one has commented yet.