generic_form_for 0.0.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.
Files changed (150) hide show
  1. data/.document +5 -0
  2. data/.rspec +2 -0
  3. data/.rvmrc +1 -0
  4. data/Gemfile +2 -0
  5. data/Gemfile.lock +123 -0
  6. data/MIT-LICENSE +20 -0
  7. data/README.textile +217 -0
  8. data/Rakefile +52 -0
  9. data/VERSION +1 -0
  10. data/generic_form_for.gemspec +232 -0
  11. data/generic_form_for.tmproj +166 -0
  12. data/lib/generators/generic_form_for/form_builder/form_builder_generator.rb +16 -0
  13. data/lib/generators/generic_form_for/form_builder/templates/form_builder.erb +37 -0
  14. data/lib/generators/generic_form_for/form_builder/templates/helper.erb +15 -0
  15. data/lib/generators/generic_form_for/install/install_generator.rb +20 -0
  16. data/lib/generators/generic_form_for/install/templates/_form.html.erb +11 -0
  17. data/lib/generators/generic_form_for/install/templates/_form.html.haml +8 -0
  18. data/lib/generators/generic_form_for/install/templates/form_for.en.yml +11 -0
  19. data/lib/generators/generic_form_for/install/templates/initializer.rb +5 -0
  20. data/lib/generic_form_for.rb +22 -0
  21. data/lib/generic_form_for/actions.rb +10 -0
  22. data/lib/generic_form_for/actions/base.rb +63 -0
  23. data/lib/generic_form_for/actions/base/icon.rb +24 -0
  24. data/lib/generic_form_for/actions/button_action.rb +14 -0
  25. data/lib/generic_form_for/actions/input_action.rb +11 -0
  26. data/lib/generic_form_for/engine.rb +11 -0
  27. data/lib/generic_form_for/form_builder.rb +111 -0
  28. data/lib/generic_form_for/helpers.rb +10 -0
  29. data/lib/generic_form_for/helpers/action_helper.rb +52 -0
  30. data/lib/generic_form_for/helpers/actions_helper.rb +35 -0
  31. data/lib/generic_form_for/helpers/fieldset_helper.rb +48 -0
  32. data/lib/generic_form_for/helpers/form_helper.rb +64 -0
  33. data/lib/generic_form_for/helpers/input_helper.rb +77 -0
  34. data/lib/generic_form_for/i18n.rb +44 -0
  35. data/lib/generic_form_for/inputs.rb +22 -0
  36. data/lib/generic_form_for/inputs/base.rb +98 -0
  37. data/lib/generic_form_for/inputs/base/error_message.rb +30 -0
  38. data/lib/generic_form_for/inputs/base/hint.rb +28 -0
  39. data/lib/generic_form_for/inputs/base/label.rb +42 -0
  40. data/lib/generic_form_for/inputs/base/number.rb +18 -0
  41. data/lib/generic_form_for/inputs/base/placeholder.rb +20 -0
  42. data/lib/generic_form_for/inputs/base/string.rb +17 -0
  43. data/lib/generic_form_for/inputs/base/validations.rb +42 -0
  44. data/lib/generic_form_for/inputs/boolean_input.rb +35 -0
  45. data/lib/generic_form_for/inputs/email_input.rb +19 -0
  46. data/lib/generic_form_for/inputs/file_input.rb +13 -0
  47. data/lib/generic_form_for/inputs/hidden_input.rb +23 -0
  48. data/lib/generic_form_for/inputs/number_input.rb +20 -0
  49. data/lib/generic_form_for/inputs/password_input.rb +13 -0
  50. data/lib/generic_form_for/inputs/phone_input.rb +19 -0
  51. data/lib/generic_form_for/inputs/range_input.rb +19 -0
  52. data/lib/generic_form_for/inputs/search_input.rb +19 -0
  53. data/lib/generic_form_for/inputs/select_input.rb +32 -0
  54. data/lib/generic_form_for/inputs/string_input.rb +13 -0
  55. data/lib/generic_form_for/inputs/text_input.rb +20 -0
  56. data/lib/generic_form_for/inputs/url_input.rb +19 -0
  57. data/sample_app/.gitignore +15 -0
  58. data/sample_app/Gemfile +15 -0
  59. data/sample_app/Gemfile.lock +130 -0
  60. data/sample_app/README.rdoc +261 -0
  61. data/sample_app/Rakefile +7 -0
  62. data/sample_app/app/assets/images/rails.png +0 -0
  63. data/sample_app/app/assets/javascripts/application.js +14 -0
  64. data/sample_app/app/assets/javascripts/posts.js.coffee +3 -0
  65. data/sample_app/app/assets/javascripts/samples.js.coffee +3 -0
  66. data/sample_app/app/assets/stylesheets/application.css +14 -0
  67. data/sample_app/app/assets/stylesheets/posts.css.scss +3 -0
  68. data/sample_app/app/assets/stylesheets/samples.css.scss +3 -0
  69. data/sample_app/app/assets/stylesheets/scaffolds.css.scss +56 -0
  70. data/sample_app/app/controllers/application_controller.rb +3 -0
  71. data/sample_app/app/controllers/samples_controller.rb +83 -0
  72. data/sample_app/app/form_builders/sample_form_builder.rb +17 -0
  73. data/sample_app/app/helpers/application_helper.rb +2 -0
  74. data/sample_app/app/helpers/sample_form_builder_helper.rb +15 -0
  75. data/sample_app/app/helpers/samples_helper.rb +2 -0
  76. data/sample_app/app/mailers/.gitkeep +0 -0
  77. data/sample_app/app/models/.gitkeep +0 -0
  78. data/sample_app/app/models/sample.rb +29 -0
  79. data/sample_app/app/views/layouts/application.html.erb +16 -0
  80. data/sample_app/app/views/samples/_form.html.erb +49 -0
  81. data/sample_app/app/views/samples/edit.html.erb +6 -0
  82. data/sample_app/app/views/samples/index.html.erb +21 -0
  83. data/sample_app/app/views/samples/new.html.erb +5 -0
  84. data/sample_app/app/views/samples/show.html.erb +5 -0
  85. data/sample_app/config.ru +4 -0
  86. data/sample_app/config/application.rb +65 -0
  87. data/sample_app/config/boot.rb +6 -0
  88. data/sample_app/config/database.yml +25 -0
  89. data/sample_app/config/environment.rb +5 -0
  90. data/sample_app/config/environments/development.rb +37 -0
  91. data/sample_app/config/environments/production.rb +67 -0
  92. data/sample_app/config/environments/test.rb +37 -0
  93. data/sample_app/config/initializers/backtrace_silencers.rb +7 -0
  94. data/sample_app/config/initializers/generic_form_for.rb +5 -0
  95. data/sample_app/config/initializers/inflections.rb +15 -0
  96. data/sample_app/config/initializers/mime_types.rb +5 -0
  97. data/sample_app/config/initializers/secret_token.rb +7 -0
  98. data/sample_app/config/initializers/session_store.rb +8 -0
  99. data/sample_app/config/initializers/wrap_parameters.rb +14 -0
  100. data/sample_app/config/locales/en.yml +22 -0
  101. data/sample_app/config/locales/form_for.en.yml +13 -0
  102. data/sample_app/config/routes.rb +61 -0
  103. data/sample_app/db/migrate/20120203082117_create_samples.rb +22 -0
  104. data/sample_app/db/schema.rb +36 -0
  105. data/sample_app/db/seeds.rb +7 -0
  106. data/sample_app/lib/assets/.gitkeep +0 -0
  107. data/sample_app/lib/tasks/.gitkeep +0 -0
  108. data/sample_app/lib/templates/erb/scaffold/_form.html.erb +11 -0
  109. data/sample_app/log/.gitkeep +0 -0
  110. data/sample_app/public/404.html +26 -0
  111. data/sample_app/public/422.html +26 -0
  112. data/sample_app/public/500.html +25 -0
  113. data/sample_app/public/favicon.ico +0 -0
  114. data/sample_app/public/robots.txt +5 -0
  115. data/sample_app/script/rails +6 -0
  116. data/sample_app/vendor/assets/javascripts/.gitkeep +0 -0
  117. data/sample_app/vendor/assets/stylesheets/.gitkeep +0 -0
  118. data/sample_app/vendor/plugins/.gitkeep +0 -0
  119. data/spec/actions/base/icon_spec.rb +38 -0
  120. data/spec/actions/button_action_spec.rb +43 -0
  121. data/spec/actions/input_action_spec.rb +66 -0
  122. data/spec/helpers/action_helper_spec.rb +32 -0
  123. data/spec/helpers/actions_helper_spec.rb +60 -0
  124. data/spec/helpers/fieldset_helper_spec.rb +83 -0
  125. data/spec/helpers/form_helper_spec.rb +101 -0
  126. data/spec/helpers/input_helper_spec.rb +66 -0
  127. data/spec/i18n_spec.rb +46 -0
  128. data/spec/inputs/base/error_message_spec.rb +86 -0
  129. data/spec/inputs/base/hint_spec.rb +77 -0
  130. data/spec/inputs/base/label_spec.rb +99 -0
  131. data/spec/inputs/base/number_spec.rb +32 -0
  132. data/spec/inputs/base/placeholder_spec.rb +32 -0
  133. data/spec/inputs/base/string_spec.rb +25 -0
  134. data/spec/inputs/base/validations_spec.rb +53 -0
  135. data/spec/inputs/base_spec.rb +69 -0
  136. data/spec/inputs/boolean_input_spec.rb +95 -0
  137. data/spec/inputs/email_input_spec.rb +30 -0
  138. data/spec/inputs/file_input_spec.rb +30 -0
  139. data/spec/inputs/hidden_input_spec.rb +30 -0
  140. data/spec/inputs/number_input_spec.rb +37 -0
  141. data/spec/inputs/password_input_spec.rb +30 -0
  142. data/spec/inputs/phone_input_spec.rb +30 -0
  143. data/spec/inputs/range_input_spec.rb +37 -0
  144. data/spec/inputs/search_input_spec.rb +30 -0
  145. data/spec/inputs/select_input_spec.rb +51 -0
  146. data/spec/inputs/string_input_spec.rb +115 -0
  147. data/spec/inputs/text_input_spec.rb +30 -0
  148. data/spec/inputs/url_input_spec.rb +30 -0
  149. data/spec/spec_helper.rb +122 -0
  150. metadata +374 -0
@@ -0,0 +1,5 @@
1
+ lib/**/*.rb
2
+ bin/*
3
+ -
4
+ features/**/*.feature
5
+ LICENSE.txt
data/.rspec ADDED
@@ -0,0 +1,2 @@
1
+ --color
2
+ --format=progress
data/.rvmrc ADDED
@@ -0,0 +1 @@
1
+ rvm ruby-1.9.3@generic_form_for
data/Gemfile ADDED
@@ -0,0 +1,2 @@
1
+ source "http://rubygems.org"
2
+ gemspec
@@ -0,0 +1,123 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ generic_form_for (0.0.1)
5
+ generic_form_for
6
+ rails (>= 3.1.0)
7
+
8
+ GEM
9
+ remote: http://rubygems.org/
10
+ specs:
11
+ actionmailer (3.2.1)
12
+ actionpack (= 3.2.1)
13
+ mail (~> 2.4.0)
14
+ actionpack (3.2.1)
15
+ activemodel (= 3.2.1)
16
+ activesupport (= 3.2.1)
17
+ builder (~> 3.0.0)
18
+ erubis (~> 2.7.0)
19
+ journey (~> 1.0.1)
20
+ rack (~> 1.4.0)
21
+ rack-cache (~> 1.1)
22
+ rack-test (~> 0.6.1)
23
+ sprockets (~> 2.1.2)
24
+ activemodel (3.2.1)
25
+ activesupport (= 3.2.1)
26
+ builder (~> 3.0.0)
27
+ activerecord (3.2.1)
28
+ activemodel (= 3.2.1)
29
+ activesupport (= 3.2.1)
30
+ arel (~> 3.0.0)
31
+ tzinfo (~> 0.3.29)
32
+ activeresource (3.2.1)
33
+ activemodel (= 3.2.1)
34
+ activesupport (= 3.2.1)
35
+ activesupport (3.2.1)
36
+ i18n (~> 0.6)
37
+ multi_json (~> 1.0)
38
+ arel (3.0.1)
39
+ builder (3.0.0)
40
+ diff-lcs (1.1.3)
41
+ erubis (2.7.0)
42
+ git (1.2.5)
43
+ hike (1.2.1)
44
+ i18n (0.6.0)
45
+ jeweler (1.8.3)
46
+ bundler (~> 1.0)
47
+ git (>= 1.2.5)
48
+ rake
49
+ rdoc
50
+ journey (1.0.1)
51
+ json (1.6.5)
52
+ mail (2.4.1)
53
+ i18n (>= 0.4.0)
54
+ mime-types (~> 1.16)
55
+ treetop (~> 1.4.8)
56
+ mime-types (1.17.2)
57
+ multi_json (1.0.4)
58
+ nokogiri (1.5.0)
59
+ polyglot (0.3.3)
60
+ rack (1.4.1)
61
+ rack-cache (1.1)
62
+ rack (>= 0.4)
63
+ rack-ssl (1.3.2)
64
+ rack
65
+ rack-test (0.6.1)
66
+ rack (>= 1.0)
67
+ rails (3.2.1)
68
+ actionmailer (= 3.2.1)
69
+ actionpack (= 3.2.1)
70
+ activerecord (= 3.2.1)
71
+ activeresource (= 3.2.1)
72
+ activesupport (= 3.2.1)
73
+ bundler (~> 1.0)
74
+ railties (= 3.2.1)
75
+ railties (3.2.1)
76
+ actionpack (= 3.2.1)
77
+ activesupport (= 3.2.1)
78
+ rack-ssl (~> 1.3.2)
79
+ rake (>= 0.8.7)
80
+ rdoc (~> 3.4)
81
+ thor (~> 0.14.6)
82
+ rake (0.9.2.2)
83
+ rdoc (3.12)
84
+ json (~> 1.4)
85
+ rspec (2.8.0)
86
+ rspec-core (~> 2.8.0)
87
+ rspec-expectations (~> 2.8.0)
88
+ rspec-mocks (~> 2.8.0)
89
+ rspec-core (2.8.0)
90
+ rspec-expectations (2.8.0)
91
+ diff-lcs (~> 1.1.2)
92
+ rspec-mocks (2.8.0)
93
+ rspec-rails (2.8.1)
94
+ actionpack (>= 3.0)
95
+ activesupport (>= 3.0)
96
+ railties (>= 3.0)
97
+ rspec (~> 2.8.0)
98
+ sprockets (2.1.2)
99
+ hike (~> 1.2)
100
+ rack (~> 1.0)
101
+ tilt (~> 1.1, != 1.3.0)
102
+ thor (0.14.6)
103
+ tilt (1.3.3)
104
+ treetop (1.4.10)
105
+ polyglot
106
+ polyglot (>= 0.3.1)
107
+ tzinfo (0.3.31)
108
+ webrat (0.7.3)
109
+ nokogiri (>= 1.2.0)
110
+ rack (>= 1.0)
111
+ rack-test (>= 0.5.3)
112
+
113
+ PLATFORMS
114
+ ruby
115
+
116
+ DEPENDENCIES
117
+ bundler (~> 1.0.0)
118
+ generic_form_for!
119
+ jeweler (~> 1.8.3)
120
+ rdoc (~> 3.12)
121
+ rspec (~> 2.8.0)
122
+ rspec-rails (> 2.8.0)
123
+ webrat
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2012 Aivars Akots
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,217 @@
1
+ h1. Generic FormFor
2
+
3
+ Generic FormFor is a Rails FormBuilder with easy customization in mind
4
+ DSL is inspired (read stolen) from "Formtastic":http://github.com/justinfrench/formtastic with some minor changes
5
+
6
+ h2. Compatibility
7
+
8
+ Currently tested with rails 3.2.x
9
+
10
+ h2. Yet another form builder
11
+
12
+ Mainly all form builders does the same thing. Usually the difference is only in DSL they provide and the outputed HTML. I prefer "Formtastic":http://github.com/justinfrench/formtastic DSL because of its candy DSL. What I do not like is the HTML they generate. Of course, there is always the possibility to fix it all with CSS, but I wanted to make this step easier.
13
+
14
+ My goal is to create a generic formbuilderi which could easy and quickly adoptable to fit in all my Rails applications. For example, one project is using "Bootstrap, from Twitter":http://twitter.github.com/bootstrap/ style, another "jQuery UI":http://jqueryui.com/, another something else. In all these projects I would gladly use one DSL, one form builder - GenericFormFor
15
+
16
+ h2. Instalation
17
+
18
+ Simply add GenericFormFor to your Gemfile:
19
+
20
+ <pre>
21
+ gem 'generic_form_for'
22
+ </pre>
23
+
24
+ Run the installation generator:
25
+
26
+ <pre>
27
+ $ rails generate generic_form_for:install
28
+ </pre>
29
+
30
+ _This will generate initializer, form template and i18n yml file_
31
+
32
+ Run the form builder generator:
33
+
34
+ <pre>
35
+ $ rails generate generic_form_for:form_builder project1
36
+ </pre>
37
+
38
+ _This will generate new form builder and helper_
39
+
40
+ Open then app/form_builders/project1_form_builder.rb and adjust form output settings
41
+
42
+ h2. Usage
43
+
44
+ customize your form builder _(in app/form_builders)_
45
+
46
+ Simple example:
47
+
48
+ <pre>
49
+ module Project1FormBuilder
50
+ class Project1FormBuilder < GenericFormFor::FormBuilder
51
+
52
+ #customize form tag
53
+ form_wrapper do
54
+ #add default class for form tag
55
+ form_html :class => "project1-form"
56
+ end
57
+
58
+ #pack your input with legend and error message
59
+ input_wrapper do
60
+ #wrap your input in block with class input-block
61
+ wrap_in :class => "input-block" do
62
+ #use label
63
+ label_html
64
+ #here comes input tag intself
65
+ input_html
66
+ #show error messages with class input-error-message
67
+ error_html :class => "input-error-message"
68
+ end
69
+ end
70
+ end
71
+ end
72
+ </pre>
73
+
74
+ Create forms with new form builder
75
+
76
+ <pre>
77
+ <%= project1_form_for @sample do |f| %>
78
+ <%= f.builder %>
79
+ <%= f.fieldset :my_form do %>
80
+ <%=f.input :email %>
81
+ <%=f.input :name %>
82
+ <% end %>
83
+ <%= f.actions do %>
84
+ <%= f.action :submit %>
85
+ <% end %>
86
+ <% end %>
87
+ </pre>
88
+
89
+ More complex example (perfectly fits with "Bootstrap, from Twitter":http://twitter.github.com/bootstrap/ css):
90
+
91
+ <pre>
92
+ module Project1FormBuilder
93
+ class Project1FormBuilder < GenericFormFor::FormBuilder
94
+ #Override GenericFormFor default config
95
+ self.html5_browser_validate = true
96
+ self.html5_browser_autofocus = true
97
+ self.default_text_field_size = 40
98
+ self.required_string = "*"
99
+ self.use_translations = true
100
+
101
+ #Customize your form builder
102
+
103
+ #customize form tag
104
+ form_wrapper do
105
+ form_html :class => "form-horizontal"
106
+ end
107
+
108
+ #customize fieldset and legend tags
109
+ fieldset_wrapper do
110
+ fieldset_html do
111
+ legend_html
112
+ end
113
+ end
114
+
115
+ #customize your input package tag
116
+ input_wrapper do
117
+ wrap_in :class => "control-group" do
118
+ label_html :class => "control-label"
119
+ wrap_in :class => "controls" do
120
+ input_html :class => "input-xlarge"
121
+ error_html :tag => :span, :class => "input-errors"
122
+ hint_html :class => "help-block"
123
+ end
124
+ end
125
+ end
126
+
127
+ #customize actions wrapper tag
128
+ actions_wrapper do
129
+ actions_html :class => "form-actions"
130
+ end
131
+
132
+ #customize action (button, input or link) tag
133
+ action_wrapper do
134
+ action_html :class => "btn btn-primary" do
135
+ icon_html :class => "icon-white", :tag => :i
136
+ end
137
+ end
138
+
139
+ end
140
+ end
141
+ </pre>
142
+
143
+
144
+ h1. Documentation
145
+
146
+ h2. The Available Inputs
147
+
148
+ h3. Options for all inputs
149
+ * :wrapper_html => html options for first level wrapper tag if used one
150
+ * :as => what type of input should it be
151
+ * :label_html => html options for label tag
152
+ * :label => label value for input. If symbol given then form_builder will try to localize it from activerecord.attributes.#{object_name}.#{value} and form_for.#{object_name}.attributes.#{value}. Set to false to hide lable tag at all for input
153
+ * :error_html => html options for error tag
154
+ * :hint_html => html options for hint tag
155
+ * :hint => Hint for input. If symbol given then form_builder will try to localize it from form_for.#{object_name}.hints.#{value}
156
+ * :autofocus => set this field as autofocus (works in combination with setting autofocus=>false for form)
157
+ * :required => true|false
158
+ * :class => html class for input
159
+
160
+ h3. Available inputs
161
+
162
+ * boolean
163
+ ** :checked => true|false
164
+ ** :value => custom value
165
+ ** _all options that check_box accepts_
166
+ * email
167
+ ** _all options that text_field accepts_
168
+ ** input tag with type "email"
169
+ * file
170
+ ** _all options that file_field accepts_
171
+ * hidden
172
+ ** _all options that hidden_field accepts_
173
+ ** wont print legend, hint and error
174
+ * number
175
+ ** _all options that text_field accepts_
176
+ ** input tag with type "number"
177
+ * password
178
+ ** _all options that password_field accepts_
179
+ * phone
180
+ ** _all options that text_field accepts_
181
+ ** input tag with type "tel"
182
+ * range
183
+ ** _all options that text_field accepts_
184
+ ** input tag with type "range"
185
+ * search
186
+ ** _all options that text_field accepts_
187
+ ** input tag with type "search"
188
+ * select
189
+ * string
190
+ ** _all options that text_field accepts_
191
+ ** input tag with type "text"
192
+ * text
193
+ ** _all options that text_area accepts_
194
+ * url
195
+ ** _all options that text_field accepts_
196
+ ** input tag with type "url"
197
+
198
+ h1. TODO
199
+
200
+ * add configuration option for each input type
201
+ * add checkboxes input
202
+ * add radio input
203
+ * add date/time/datetime input
204
+ * add country input
205
+
206
+ h1. Contributing to generic_form_for
207
+
208
+ * Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet.
209
+ * Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it.
210
+ * Fork the project.
211
+ * Start a feature/bugfix branch.
212
+ * Create a pull request on Github
213
+
214
+ h1. Copyright
215
+
216
+ Copyright (c) 2012 Aivars Akots, released under the MIT license.
217
+
@@ -0,0 +1,52 @@
1
+ # encoding: utf-8
2
+
3
+ require 'rubygems'
4
+ require 'bundler'
5
+ begin
6
+ Bundler.setup(:default, :development)
7
+ rescue Bundler::BundlerError => e
8
+ $stderr.puts e.message
9
+ $stderr.puts "Run `bundle install` to install missing gems"
10
+ exit e.status_code
11
+ end
12
+ require 'rake'
13
+
14
+ require 'jeweler'
15
+ Jeweler::Tasks.new do |gem|
16
+ # gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options
17
+ gem.name = "generic_form_for"
18
+ gem.homepage = "http://github.com/aivarsak/generic_form_for"
19
+ gem.license = "MIT"
20
+ gem.summary = %Q{Yet another form builder}
21
+ gem.description = %Q{Super easy adjustable form builder with formtastic style DSL}
22
+ gem.email = "aivars.akots@gmail.com"
23
+ gem.authors = ["Aivars Akots"]
24
+ # dependencies defined in Gemfile
25
+ gem.add_runtime_dependency 'rails', '>= 3.1.0'
26
+ gem.add_development_dependency 'rspec-rails', '> 2.8.0'
27
+ gem.add_development_dependency 'webrat'
28
+ end
29
+ Jeweler::RubygemsDotOrgTasks.new
30
+
31
+ require 'rspec/core'
32
+ require 'rspec/core/rake_task'
33
+ RSpec::Core::RakeTask.new(:spec) do |spec|
34
+ spec.pattern = FileList['spec/**/*_spec.rb']
35
+ end
36
+
37
+ RSpec::Core::RakeTask.new(:rcov) do |spec|
38
+ spec.pattern = 'spec/**/*_spec.rb'
39
+ spec.rcov = true
40
+ end
41
+
42
+ task :default => :spec
43
+
44
+ require 'rdoc/task'
45
+ Rake::RDocTask.new do |rdoc|
46
+ version = File.exist?('VERSION') ? File.read('VERSION') : ""
47
+
48
+ rdoc.rdoc_dir = 'rdoc'
49
+ rdoc.title = "generic_form_for #{version}"
50
+ rdoc.rdoc_files.include('README*')
51
+ rdoc.rdoc_files.include('lib/**/*.rb')
52
+ end
data/VERSION ADDED
@@ -0,0 +1 @@
1
+ 0.0.1
@@ -0,0 +1,232 @@
1
+ # Generated by jeweler
2
+ # DO NOT EDIT THIS FILE DIRECTLY
3
+ # Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
4
+ # -*- encoding: utf-8 -*-
5
+
6
+ Gem::Specification.new do |s|
7
+ s.name = "generic_form_for"
8
+ s.version = "0.0.1"
9
+
10
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
+ s.authors = ["Aivars Akots"]
12
+ s.date = "2012-02-22"
13
+ s.description = "Super easy adjustable form builder with formtastic style DSL"
14
+ s.email = "aivars.akots@gmail.com"
15
+ s.extra_rdoc_files = [
16
+ "README.textile"
17
+ ]
18
+ s.files = [
19
+ ".document",
20
+ ".rspec",
21
+ ".rvmrc",
22
+ "Gemfile",
23
+ "Gemfile.lock",
24
+ "MIT-LICENSE",
25
+ "README.textile",
26
+ "Rakefile",
27
+ "VERSION",
28
+ "generic_form_for.gemspec",
29
+ "generic_form_for.tmproj",
30
+ "lib/generators/generic_form_for/form_builder/form_builder_generator.rb",
31
+ "lib/generators/generic_form_for/form_builder/templates/form_builder.erb",
32
+ "lib/generators/generic_form_for/form_builder/templates/helper.erb",
33
+ "lib/generators/generic_form_for/install/install_generator.rb",
34
+ "lib/generators/generic_form_for/install/templates/_form.html.erb",
35
+ "lib/generators/generic_form_for/install/templates/_form.html.haml",
36
+ "lib/generators/generic_form_for/install/templates/form_for.en.yml",
37
+ "lib/generators/generic_form_for/install/templates/initializer.rb",
38
+ "lib/generic_form_for.rb",
39
+ "lib/generic_form_for/actions.rb",
40
+ "lib/generic_form_for/actions/base.rb",
41
+ "lib/generic_form_for/actions/base/icon.rb",
42
+ "lib/generic_form_for/actions/button_action.rb",
43
+ "lib/generic_form_for/actions/input_action.rb",
44
+ "lib/generic_form_for/engine.rb",
45
+ "lib/generic_form_for/form_builder.rb",
46
+ "lib/generic_form_for/helpers.rb",
47
+ "lib/generic_form_for/helpers/action_helper.rb",
48
+ "lib/generic_form_for/helpers/actions_helper.rb",
49
+ "lib/generic_form_for/helpers/fieldset_helper.rb",
50
+ "lib/generic_form_for/helpers/form_helper.rb",
51
+ "lib/generic_form_for/helpers/input_helper.rb",
52
+ "lib/generic_form_for/i18n.rb",
53
+ "lib/generic_form_for/inputs.rb",
54
+ "lib/generic_form_for/inputs/base.rb",
55
+ "lib/generic_form_for/inputs/base/error_message.rb",
56
+ "lib/generic_form_for/inputs/base/hint.rb",
57
+ "lib/generic_form_for/inputs/base/label.rb",
58
+ "lib/generic_form_for/inputs/base/number.rb",
59
+ "lib/generic_form_for/inputs/base/placeholder.rb",
60
+ "lib/generic_form_for/inputs/base/string.rb",
61
+ "lib/generic_form_for/inputs/base/validations.rb",
62
+ "lib/generic_form_for/inputs/boolean_input.rb",
63
+ "lib/generic_form_for/inputs/email_input.rb",
64
+ "lib/generic_form_for/inputs/file_input.rb",
65
+ "lib/generic_form_for/inputs/hidden_input.rb",
66
+ "lib/generic_form_for/inputs/number_input.rb",
67
+ "lib/generic_form_for/inputs/password_input.rb",
68
+ "lib/generic_form_for/inputs/phone_input.rb",
69
+ "lib/generic_form_for/inputs/range_input.rb",
70
+ "lib/generic_form_for/inputs/search_input.rb",
71
+ "lib/generic_form_for/inputs/select_input.rb",
72
+ "lib/generic_form_for/inputs/string_input.rb",
73
+ "lib/generic_form_for/inputs/text_input.rb",
74
+ "lib/generic_form_for/inputs/url_input.rb",
75
+ "sample_app/.gitignore",
76
+ "sample_app/Gemfile",
77
+ "sample_app/Gemfile.lock",
78
+ "sample_app/README.rdoc",
79
+ "sample_app/Rakefile",
80
+ "sample_app/app/assets/images/rails.png",
81
+ "sample_app/app/assets/javascripts/application.js",
82
+ "sample_app/app/assets/javascripts/posts.js.coffee",
83
+ "sample_app/app/assets/javascripts/samples.js.coffee",
84
+ "sample_app/app/assets/stylesheets/application.css",
85
+ "sample_app/app/assets/stylesheets/posts.css.scss",
86
+ "sample_app/app/assets/stylesheets/samples.css.scss",
87
+ "sample_app/app/assets/stylesheets/scaffolds.css.scss",
88
+ "sample_app/app/controllers/application_controller.rb",
89
+ "sample_app/app/controllers/samples_controller.rb",
90
+ "sample_app/app/form_builders/sample_form_builder.rb",
91
+ "sample_app/app/helpers/application_helper.rb",
92
+ "sample_app/app/helpers/sample_form_builder_helper.rb",
93
+ "sample_app/app/helpers/samples_helper.rb",
94
+ "sample_app/app/mailers/.gitkeep",
95
+ "sample_app/app/models/.gitkeep",
96
+ "sample_app/app/models/sample.rb",
97
+ "sample_app/app/views/layouts/application.html.erb",
98
+ "sample_app/app/views/samples/_form.html.erb",
99
+ "sample_app/app/views/samples/edit.html.erb",
100
+ "sample_app/app/views/samples/index.html.erb",
101
+ "sample_app/app/views/samples/new.html.erb",
102
+ "sample_app/app/views/samples/show.html.erb",
103
+ "sample_app/config.ru",
104
+ "sample_app/config/application.rb",
105
+ "sample_app/config/boot.rb",
106
+ "sample_app/config/database.yml",
107
+ "sample_app/config/environment.rb",
108
+ "sample_app/config/environments/development.rb",
109
+ "sample_app/config/environments/production.rb",
110
+ "sample_app/config/environments/test.rb",
111
+ "sample_app/config/initializers/backtrace_silencers.rb",
112
+ "sample_app/config/initializers/generic_form_for.rb",
113
+ "sample_app/config/initializers/inflections.rb",
114
+ "sample_app/config/initializers/mime_types.rb",
115
+ "sample_app/config/initializers/secret_token.rb",
116
+ "sample_app/config/initializers/session_store.rb",
117
+ "sample_app/config/initializers/wrap_parameters.rb",
118
+ "sample_app/config/locales/en.yml",
119
+ "sample_app/config/locales/form_for.en.yml",
120
+ "sample_app/config/routes.rb",
121
+ "sample_app/db/migrate/20120203082117_create_samples.rb",
122
+ "sample_app/db/schema.rb",
123
+ "sample_app/db/seeds.rb",
124
+ "sample_app/lib/assets/.gitkeep",
125
+ "sample_app/lib/tasks/.gitkeep",
126
+ "sample_app/lib/templates/erb/scaffold/_form.html.erb",
127
+ "sample_app/log/.gitkeep",
128
+ "sample_app/public/404.html",
129
+ "sample_app/public/422.html",
130
+ "sample_app/public/500.html",
131
+ "sample_app/public/favicon.ico",
132
+ "sample_app/public/robots.txt",
133
+ "sample_app/script/rails",
134
+ "sample_app/vendor/assets/javascripts/.gitkeep",
135
+ "sample_app/vendor/assets/stylesheets/.gitkeep",
136
+ "sample_app/vendor/plugins/.gitkeep",
137
+ "spec/actions/base/icon_spec.rb",
138
+ "spec/actions/button_action_spec.rb",
139
+ "spec/actions/input_action_spec.rb",
140
+ "spec/helpers/action_helper_spec.rb",
141
+ "spec/helpers/actions_helper_spec.rb",
142
+ "spec/helpers/fieldset_helper_spec.rb",
143
+ "spec/helpers/form_helper_spec.rb",
144
+ "spec/helpers/input_helper_spec.rb",
145
+ "spec/i18n_spec.rb",
146
+ "spec/inputs/base/error_message_spec.rb",
147
+ "spec/inputs/base/hint_spec.rb",
148
+ "spec/inputs/base/label_spec.rb",
149
+ "spec/inputs/base/number_spec.rb",
150
+ "spec/inputs/base/placeholder_spec.rb",
151
+ "spec/inputs/base/string_spec.rb",
152
+ "spec/inputs/base/validations_spec.rb",
153
+ "spec/inputs/base_spec.rb",
154
+ "spec/inputs/boolean_input_spec.rb",
155
+ "spec/inputs/email_input_spec.rb",
156
+ "spec/inputs/file_input_spec.rb",
157
+ "spec/inputs/hidden_input_spec.rb",
158
+ "spec/inputs/number_input_spec.rb",
159
+ "spec/inputs/password_input_spec.rb",
160
+ "spec/inputs/phone_input_spec.rb",
161
+ "spec/inputs/range_input_spec.rb",
162
+ "spec/inputs/search_input_spec.rb",
163
+ "spec/inputs/select_input_spec.rb",
164
+ "spec/inputs/string_input_spec.rb",
165
+ "spec/inputs/text_input_spec.rb",
166
+ "spec/inputs/url_input_spec.rb",
167
+ "spec/spec_helper.rb"
168
+ ]
169
+ s.homepage = "http://github.com/aivarsak/generic_form_for"
170
+ s.licenses = ["MIT"]
171
+ s.require_paths = ["lib"]
172
+ s.rubygems_version = "1.8.15"
173
+ s.summary = "Yet another form builder"
174
+
175
+ if s.respond_to? :specification_version then
176
+ s.specification_version = 3
177
+
178
+ if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
179
+ s.add_runtime_dependency(%q<generic_form_for>, [">= 0"])
180
+ s.add_development_dependency(%q<rspec>, ["~> 2.8.0"])
181
+ s.add_development_dependency(%q<rdoc>, ["~> 3.12"])
182
+ s.add_development_dependency(%q<bundler>, ["~> 1.0.0"])
183
+ s.add_development_dependency(%q<jeweler>, ["~> 1.8.3"])
184
+ s.add_development_dependency(%q<rspec-rails>, ["> 2.8.0"])
185
+ s.add_development_dependency(%q<webrat>, [">= 0"])
186
+ s.add_development_dependency(%q<rspec-rails>, ["> 2.8.0"])
187
+ s.add_development_dependency(%q<webrat>, [">= 0"])
188
+ s.add_development_dependency(%q<rspec-rails>, ["> 2.8.0"])
189
+ s.add_development_dependency(%q<webrat>, [">= 0"])
190
+ s.add_development_dependency(%q<rspec-rails>, ["> 2.8.0"])
191
+ s.add_development_dependency(%q<webrat>, [">= 0"])
192
+ s.add_runtime_dependency(%q<rails>, [">= 3.1.0"])
193
+ s.add_development_dependency(%q<rspec-rails>, ["> 2.8.0"])
194
+ s.add_development_dependency(%q<webrat>, [">= 0"])
195
+ else
196
+ s.add_dependency(%q<generic_form_for>, [">= 0"])
197
+ s.add_dependency(%q<rspec>, ["~> 2.8.0"])
198
+ s.add_dependency(%q<rdoc>, ["~> 3.12"])
199
+ s.add_dependency(%q<bundler>, ["~> 1.0.0"])
200
+ s.add_dependency(%q<jeweler>, ["~> 1.8.3"])
201
+ s.add_dependency(%q<rspec-rails>, ["> 2.8.0"])
202
+ s.add_dependency(%q<webrat>, [">= 0"])
203
+ s.add_dependency(%q<rspec-rails>, ["> 2.8.0"])
204
+ s.add_dependency(%q<webrat>, [">= 0"])
205
+ s.add_dependency(%q<rspec-rails>, ["> 2.8.0"])
206
+ s.add_dependency(%q<webrat>, [">= 0"])
207
+ s.add_dependency(%q<rspec-rails>, ["> 2.8.0"])
208
+ s.add_dependency(%q<webrat>, [">= 0"])
209
+ s.add_dependency(%q<rails>, [">= 3.1.0"])
210
+ s.add_dependency(%q<rspec-rails>, ["> 2.8.0"])
211
+ s.add_dependency(%q<webrat>, [">= 0"])
212
+ end
213
+ else
214
+ s.add_dependency(%q<generic_form_for>, [">= 0"])
215
+ s.add_dependency(%q<rspec>, ["~> 2.8.0"])
216
+ s.add_dependency(%q<rdoc>, ["~> 3.12"])
217
+ s.add_dependency(%q<bundler>, ["~> 1.0.0"])
218
+ s.add_dependency(%q<jeweler>, ["~> 1.8.3"])
219
+ s.add_dependency(%q<rspec-rails>, ["> 2.8.0"])
220
+ s.add_dependency(%q<webrat>, [">= 0"])
221
+ s.add_dependency(%q<rspec-rails>, ["> 2.8.0"])
222
+ s.add_dependency(%q<webrat>, [">= 0"])
223
+ s.add_dependency(%q<rspec-rails>, ["> 2.8.0"])
224
+ s.add_dependency(%q<webrat>, [">= 0"])
225
+ s.add_dependency(%q<rspec-rails>, ["> 2.8.0"])
226
+ s.add_dependency(%q<webrat>, [">= 0"])
227
+ s.add_dependency(%q<rails>, [">= 3.1.0"])
228
+ s.add_dependency(%q<rspec-rails>, ["> 2.8.0"])
229
+ s.add_dependency(%q<webrat>, [">= 0"])
230
+ end
231
+ end
232
+