active_form 0.0.5 → 0.0.6

Sign up to get free protection for your applications and to get access to all the features.
data.tar.gz.sig CHANGED
Binary file
data/Manifest.txt CHANGED
@@ -82,6 +82,7 @@ lib/rails/acts_as_dropdown/acts_as_dropdown.rb
82
82
  lib/rails/acts_as_dropdown/dropdown.rb
83
83
  lib/rails/controller_helper.rb
84
84
  lib/rails/model/loader.rb
85
+ lib/rails/support.rb
85
86
  lib/rails/view_helper.rb
86
87
  samples/html/css/style.css
87
88
  samples/html/js/effects.js
data/README.txt CHANGED
@@ -1 +1,9 @@
1
- README
1
+ Copyright (c) 2007-2008 atelierfabien - loobmedia
2
+
3
+ ActiveForm provides a DSL for defining complete XHTML forms with validation. You can compose your own widgets and (nested) form sections from basic elements. Markup is generated by Builder, using several wrappers and callbacks which render their child elements accordingly. This allows one to customize all output.
4
+
5
+ Both serverside as well as clientside validation is supported and values are bound in a nested fashion to their elements, similar to how Rails expects params from forms.
6
+
7
+ It's possible to output elements, sections and the complete forms, allowing easy integration with ERB templates. While it's distributed as a gem it can easily be used as a plugin for Rails.
8
+
9
+ See test/ and samples/ for more information.
@@ -2,7 +2,7 @@ module ActiveForm #:nodoc:
2
2
  module VERSION #:nodoc:
3
3
  MAJOR = 0
4
4
  MINOR = 0
5
- TINY = 5
5
+ TINY = 6
6
6
 
7
7
  STRING = [MAJOR, MINOR, TINY].join('.')
8
8
  end
@@ -0,0 +1,5 @@
1
+ require 'rails/view_helper'
2
+ require 'rails/controller_helper'
3
+ require 'rails/model/loader'
4
+ require 'rails/acts_as_dropdown/acts_as_dropdown'
5
+ require 'rails/acts_as_dropdown/dropdown'
metadata CHANGED
@@ -3,8 +3,8 @@ rubygems_version: 0.9.4
3
3
  specification_version: 1
4
4
  name: active_form
5
5
  version: !ruby/object:Gem::Version
6
- version: 0.0.5
7
- date: 2008-02-14 00:00:00 +01:00
6
+ version: 0.0.6
7
+ date: 2008-02-28 00:00:00 +01:00
8
8
  summary: ActiveForm provides a DSL for defining complete XHTML forms with validation.
9
9
  require_paths:
10
10
  - lib
@@ -136,6 +136,7 @@ files:
136
136
  - lib/rails/acts_as_dropdown/dropdown.rb
137
137
  - lib/rails/controller_helper.rb
138
138
  - lib/rails/model/loader.rb
139
+ - lib/rails/support.rb
139
140
  - lib/rails/view_helper.rb
140
141
  - samples/html/css/style.css
141
142
  - samples/html/js/effects.js
metadata.gz.sig CHANGED
Binary file