bivouac 0.1.0 → 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
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.1.1:
16
+ * Mineur bug correction in postamble to be really ready for Rails 2.0 !!!!!
17
+ * the index class is no longer Root (but Index)
18
+
15
19
  === 0.1.0:
16
20
  * Add plugins support. See will_paginate plugin for Bivouac.
17
21
  * Ready for Rails 2.0 !!!!
data/doc/rdoc/created.rid CHANGED
@@ -1 +1 @@
1
- Tue, 23 Oct 2007 16:11:26 +0200
1
+ Wed, 09 Jan 2008 17:49:05 +0100
@@ -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 / Tue Oct 23 15:31:10 +0200 2007</div>
90
+ <div class="path">README / Wed Jan 09 17:48:08 +0100 2008</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.1.1:</h3>
116
+ <ul>
117
+ <li>Mineur bug correction in postamble to be really ready for Rails 2.0 !!!!!
118
+
119
+ </li>
120
+ <li>the index class is no longer Root (but Index)
121
+
122
+ </li>
123
+ </ul>
115
124
  <h3>0.1.0:</h3>
116
125
  <ul>
117
126
  <li>Add plugins support. See will_paginate plugin for Bivouac.
@@ -17,7 +17,7 @@ class BivouacSampleDaemon < SimpleDaemon::Base
17
17
 
18
18
  BivouacSample::Models::Base.establish_connection :adapter => 'sqlite3', :database => DIRNAME + "/../db/BivouacSample.db"
19
19
  BivouacSample::Models::Base.logger = Logger.new(DIRNAME + "/../log/BivouacSample.log")
20
- BivouacSample::Models::Base.threaded_connections = false
20
+ # BivouacSample::Models::Base.threaded_connections = false
21
21
  BivouacSample.create if BivouacSample.respond_to? :create
22
22
 
23
23
  trap(:INT) do
@@ -22,7 +22,7 @@ class <%= @appname %>Daemon < SimpleDaemon::Base
22
22
  end
23
23
  <%= @appname %>::Models::Base.establish_connection database_connection
24
24
  <%= @appname %>::Models::Base.logger = Logger.new(DIRNAME + "/../log/<%= @appname %>.log")
25
- <%= @appname %>::Models::Base.threaded_connections = false
25
+ # -- DON'T WORK WITH RAILS 2 -- # <%= @appname %>::Models::Base.threaded_connections = false
26
26
  <%= @appname %>.create if <%= @appname %>.respond_to? :create
27
27
 
28
28
  trap(:INT) do
@@ -1,5 +1,5 @@
1
1
  module <%= @appname %>::Controllers
2
- class Root < R '/', '/index'
2
+ class Index < R '/', '/index'
3
3
  def get
4
4
  redirect Public, "index.html"
5
5
  end
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.1.0
7
- date: 2007-10-23 00:00:00 +02:00
6
+ version: 0.1.1
7
+ date: 2008-01-09 00:00:00 +01:00
8
8
  summary: Developpe with Camping like you do with Rails
9
9
  require_paths:
10
10
  - lib