ry / ebb fork watch download tarball
public
Description: web server
Homepage: http://ebb.rubyforge.org
Clone URL: git://github.com/ry/ebb.git
version bump
ry (author)
Tue Jul 08 03:24:33 -0700 2008
commit  46a479b71a2d34767a76dfbd5776cf85d63c64e8
tree    3fcd8af83620edc31fa59fcd64ec2df650fd2a03
parent  c4c335fbc176ec313004bf2a791bdaef17fe03fb
...
1
2
3
 
4
5
6
...
1
2
 
3
4
5
6
0
@@ -1,6 +1,6 @@
0
 Gem::Specification.new do |s|
0
   s.name = %q{ebb}
0
- s.version = "0.2.0"
0
+ s.version = "0.2.1"
0
 
0
   s.specification_version = 2 if s.respond_to? :specification_version=
0
 
...
3
4
5
6
 
7
8
9
...
18
19
20
21
 
22
23
24
...
3
4
5
 
6
7
8
9
...
18
19
20
 
21
22
23
24
0
@@ -3,7 +3,7 @@
0
 # See README file for details.
0
 require 'stringio'
0
 module Ebb
0
- VERSION = "0.2.0"
0
+ VERSION = "0.2.1"
0
   LIBDIR = File.dirname(__FILE__)
0
   autoload :Runner, LIBDIR + '/ebb/runner'
0
   autoload :FFI, LIBDIR + '/../src/ebb_ext'
0
@@ -18,7 +18,7 @@ module Ebb
0
       FFI::server_listen_on_unix_socket(socketfile)
0
       log.puts "Ebb is listening on unix socket #{socketfile}"
0
     else
0
- port = (options[:Port] || 4001).to_i
0
+ port = (options[:Port] || options[:port] || 4001).to_i
0
       FFI::server_listen_on_port(port)
0
       log.puts "Ebb is listening at http://0.0.0.0:#{port}/"
0
     end
...
13
14
15
16
 
17
18
19
...
13
14
15
 
16
17
18
19
0
@@ -13,7 +13,7 @@
0
 
0
 typedef struct ebb_server ebb_server;
0
 typedef struct ebb_client ebb_client;
0
-#define EBB_VERSION "0.2.0"
0
+#define EBB_VERSION "0.2.1"
0
 #define EBB_BUFFERSIZE (1024 * (80 + 33))
0
 #define EBB_MAX_CLIENTS 1024
0
 #define EBB_TIMEOUT 30.0

Comments

    No one has commented yet.