bivouac 0.0.7 → 0.0.8

Sign up to get free protection for your applications and to get access to all the features.
data/README CHANGED
@@ -12,6 +12,10 @@ Bivouac is a simple generator for camping[http://code.whytheluckystiff.net/campi
12
12
 
13
13
  == FEATURES/PROBLEMS:
14
14
 
15
+ === 0.0.8:
16
+ * Bivouac now work with WEBrick -- Bug correction
17
+ * Markaby::Builder.set(:indent, 2)
18
+
15
19
  === 0.0.7:
16
20
  * <tt>--postamble</tt>' bivouac option is deprecated! You can use the <tt>-d</tt> option to start your application as a daemon :
17
21
  $ ruby script/server -d start
@@ -55,7 +59,6 @@ Bivouac is a simple generator for camping[http://code.whytheluckystiff.net/campi
55
59
 
56
60
  * add test with mosquito[http://code.whytheluckystiff.net/camping/wiki/MosquitoForBugFreeCamping]
57
61
  * test with Apache and Lighttpd
58
- * rewrite script/server and remove postamble
59
62
  * add mysql, postgresql, oracle, ... support
60
63
 
61
64
  == SYNOPSIS:
data/doc/rdoc/created.rid CHANGED
@@ -1 +1 @@
1
- Wed, 12 Sep 2007 14:59:15 +0200
1
+ Thu, 20 Sep 2007 19:42:20 +0200
@@ -87,7 +87,7 @@ end</strong>
87
87
  <div id="README" class="page_shade">
88
88
  <div class="page">
89
89
  <div class="header">
90
- <div class="path">README / Wed Sep 12 14:58:49 +0200 2007</div>
90
+ <div class="path">README / Wed Sep 19 09:25:49 +0200 2007</div>
91
91
  </div>
92
92
 
93
93
  <h1>Bivouac</h1>
@@ -112,6 +112,15 @@ Bivouac is a simple generator for <a
112
112
  href="http://code.whytheluckystiff.net/camping">camping</a>.
113
113
  </p>
114
114
  <h2>FEATURES/PROBLEMS:</h2>
115
+ <h3>0.0.8:</h3>
116
+ <ul>
117
+ <li>Bivouac now work with WEBrick &#8212; Bug correction
118
+
119
+ </li>
120
+ <li>Markaby::Builder.set(:indent, 2)
121
+
122
+ </li>
123
+ </ul>
115
124
  <h3>0.0.7:</h3>
116
125
  <ul>
117
126
  <li><tt>&#8212;postamble</tt>&#8217; bivouac option is deprecated! You can use
@@ -221,9 +230,6 @@ href="http://code.whytheluckystiff.net/camping/wiki/MosquitoForBugFreeCamping">m
221
230
  </li>
222
231
  <li>test with Apache and Lighttpd
223
232
 
224
- </li>
225
- <li>rewrite script/server and remove postamble
226
-
227
233
  </li>
228
234
  <li>add mysql, postgresql, oracle, &#8230; support
229
235
 
@@ -75,3 +75,5 @@ allow_concurrency=false
75
75
  allow_concurrency=false
76
76
  allow_concurrency=false
77
77
  allow_concurrency=false
78
+ allow_concurrency=false
79
+ allow_concurrency=false
@@ -37,6 +37,7 @@ class <%= @appname %>Daemon < SimpleDaemon::Base
37
37
  @@server = WEBrick::HTTPServer.new :BindAddress => config.environment.address, :Port => config.environment.port
38
38
  puts "** <%= @appname %> is running at http://#{config.environment.address}:#{config.environment.port}"
39
39
  @@server.mount "/", WEBrick::CampingHandler, <%= @appname %>
40
+ @@server.start
40
41
  end
41
42
  end
42
43
 
@@ -16,6 +16,9 @@ require 'camping/session'
16
16
  require 'mime/types'
17
17
  require 'bivouac'
18
18
 
19
+ # Indent the code -- See http://code.whytheluckystiff.net/markaby/wiki/TipsAndTrickery
20
+ Markaby::Builder.set(:indent, 2)
21
+
19
22
  include Bivouac
20
23
 
21
24
  Camping.goes :<%= @appname %>
metadata CHANGED
@@ -3,8 +3,8 @@ rubygems_version: 0.9.4
3
3
  specification_version: 1
4
4
  name: bivouac
5
5
  version: !ruby/object:Gem::Version
6
- version: 0.0.7
7
- date: 2007-09-12 00:00:00 +02:00
6
+ version: 0.0.8
7
+ date: 2007-09-20 00:00:00 +02:00
8
8
  summary: Developpe with Camping like you do with Rails
9
9
  require_paths:
10
10
  - lib