public
Description: The web app builder for Rails
Homepage: http://hobocentral.net
Clone URL: git://github.com/tablatom/hobo.git
Changelog and version numbers for 0.8.2 release
tablatom (author)
Sat Sep 13 06:44:24 -0700 2008
commit  00ddb65998efc1cb9fa9c6a827f13097fcd83ee3
tree    e765620e9400ae79e93f6001b7dc0c0ffd4300a3
parent  ec64b2aa75df792688483bd883dc26b0165969b6
...
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
0
@@ -1,3 +1,48 @@
0
+=== Hobo 0.8.2 ===
0
+
0
+Hobo models -- improvement to name-in-URL (#to_param)
0
+
0
+Added missing input for time fields
0
+
0
+Rapid forms -- added missing hours/minutes/seconds fields to datetime input
0
+
0
+Reorg of Hobo Rakefile, in preprartion for move to Shoulda
0
+
0
+Rapid -- fix to <create-button>
0
+
0
+Echoe tasks -- adding workaround for developer-dependencies problem
0
+
0
+Rapid -- fixes to css class named that had '_' instead of '-'
0
+
0
+Rapid pages generators -- improvements to form submit button labels
0
+
0
+ModelController - set the provided key on the record *before* the view permission check during a lifecycle
0
+transition
0
+
0
+Hobo Models -- Model.user_find can now take a block to perform actions on the record prior to the permission check
0
+
0
+Added Rails dependency to hobofields gem
0
+
0
+Fix to Rails dependency - any Rails >= 2.1 is ok
0
+
0
+Reorganised generator tests
0
+
0
+Hobo users now have an #account_active? method. Used in two places:
0
+
0
+ - This method rather than the return value of the block passed to hobo_login, is now used to figure out if an
0
+ account is active when logging in.
0
+
0
+ - After signing up, also log the user in iff account_active? is true. This is useful if there is a second step to
0
+ signing up, such as email activation
0
+
0
+hobo_front_controller generator -- improved title of home page
0
+
0
+Rapid generators -- fix to owner link on new-for-owner page
0
+
0
+Fix to bug where validations were not happening during lifecycle creates/transitions
0
+
0
+
0
+
0
 === Hobo 0.8.1 ===
0
 
0
     Fixes to generating and loading subsite controllers
...
42
43
44
45
 
46
47
48
49
 
 
50
51
52
...
42
43
44
 
45
46
47
 
 
48
49
50
51
52
0
@@ -42,11 +42,11 @@ Echoe.new('hobo') do |p|
0
   p.project = "hobo"
0
 
0
   p.changelog = "CHANGES.txt"
0
- p.version = "0.8.1"
0
+ p.version = "0.8.2"
0
 
0
   p.dependencies = [
0
- 'hobosupport >=0.8.1',
0
- 'hobofields >=0.8.1',
0
+ 'hobosupport >=0.8.2',
0
+ 'hobofields >=0.8.2',
0
     'rails >=2.1',
0
     'mislav-will_paginate >=2.2.1']
0
     
...
26
27
28
29
 
30
31
32
...
26
27
28
 
29
30
31
32
0
@@ -26,7 +26,7 @@ class HoboError < RuntimeError; end
0
 
0
 module Hobo
0
 
0
- VERSION = "0.8.1"
0
+ VERSION = "0.8.2"
0
 
0
   class RawJs < String; end
0
 
...
8
9
10
11
 
12
13
 
14
15
16
...
8
9
10
 
11
12
 
13
14
15
16
0
@@ -8,9 +8,9 @@ Echoe.new('hobofields') do |p|
0
   p.project = "hobo"
0
 
0
   p.changelog = "CHANGES.txt"
0
- p.version = "0.8.1"
0
+ p.version = "0.8.2"
0
 
0
- p.dependencies = ['hobosupport >=0.8', 'rails >=2.1']
0
+ p.dependencies = ['hobosupport >=0.8.2', 'rails >=2.1']
0
   p.development_dependencies = []
0
 end
0
 
...
9
10
11
12
 
13
14
15
...
9
10
11
 
12
13
14
15
0
@@ -9,7 +9,7 @@ end
0
 
0
 module HoboFields
0
 
0
- VERSION = "0.8.1"
0
+ VERSION = "0.8.2"
0
 
0
   extend self
0
 
...
8
9
10
11
 
12
13
14
...
8
9
10
 
11
12
13
14
0
@@ -8,7 +8,7 @@ Echoe.new('hobosupport') do |p|
0
   p.project = "hobo"
0
   
0
   p.changelog = "CHANGES.txt"
0
- p.version = "0.8.1"
0
+ p.version = "0.8.2"
0
   
0
   p.development_dependencies = []
0
 end
...
13
14
15
16
 
17
18
19
...
13
14
15
 
16
17
18
19
0
@@ -13,7 +13,7 @@ require 'hobosupport/module'
0
 
0
 module HoboSupport
0
 
0
- VERSION = "0.8.1"
0
+ VERSION = "0.8.2"
0
 
0
 end
0
 

Comments

    No one has commented yet.