fortitude 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (332) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +20 -0
  3. data/.rspec-local +4 -0
  4. data/.travis.yml +26 -0
  5. data/Gemfile +5 -0
  6. data/LICENSE.txt +22 -0
  7. data/README-erector.md +246 -0
  8. data/README.md +15 -0
  9. data/Rakefile +67 -0
  10. data/ext/FortitudeJrubyNativeExtService.java +11 -0
  11. data/ext/com/fortituderuby/ext/fortitude/FortitudeNativeLibrary.java +223 -0
  12. data/ext/fortitude_native_ext/extconf.rb +4 -0
  13. data/ext/fortitude_native_ext/fortitude_native_ext.c +333 -0
  14. data/fortitude.gemspec +37 -0
  15. data/lib/fortitude/assign_locals_from_template.rb.smpl +22 -0
  16. data/lib/fortitude/assigns_proxy.rb +75 -0
  17. data/lib/fortitude/class_inheritable_attributes.rb +96 -0
  18. data/lib/fortitude/doctypes/base.rb +38 -0
  19. data/lib/fortitude/doctypes/html4.rb +20 -0
  20. data/lib/fortitude/doctypes/html4_frameset.rb +18 -0
  21. data/lib/fortitude/doctypes/html4_strict.rb +17 -0
  22. data/lib/fortitude/doctypes/html4_tags_frameset.rb +52 -0
  23. data/lib/fortitude/doctypes/html4_tags_strict.rb +273 -0
  24. data/lib/fortitude/doctypes/html4_tags_transitional.rb +114 -0
  25. data/lib/fortitude/doctypes/html4_transitional.rb +18 -0
  26. data/lib/fortitude/doctypes/html5.rb +372 -0
  27. data/lib/fortitude/doctypes/unknown_doctype.rb +19 -0
  28. data/lib/fortitude/doctypes/xhtml10.rb +19 -0
  29. data/lib/fortitude/doctypes/xhtml10_frameset.rb +17 -0
  30. data/lib/fortitude/doctypes/xhtml10_strict.rb +17 -0
  31. data/lib/fortitude/doctypes/xhtml10_transitional.rb +17 -0
  32. data/lib/fortitude/doctypes/xhtml11.rb +29 -0
  33. data/lib/fortitude/doctypes.rb +46 -0
  34. data/lib/fortitude/errors.rb +153 -0
  35. data/lib/fortitude/fortitude_ruby_ext.rb +71 -0
  36. data/lib/fortitude/instance_variable_set.rb +74 -0
  37. data/lib/fortitude/need_assignment_template.rb.smpl +16 -0
  38. data/lib/fortitude/need_method_template.rb.smpl +4 -0
  39. data/lib/fortitude/non_rails_widget_methods.rb +15 -0
  40. data/lib/fortitude/partial_tag_placeholder.rb +17 -0
  41. data/lib/fortitude/rails/helpers.rb +153 -0
  42. data/lib/fortitude/rails/renderer.rb +43 -0
  43. data/lib/fortitude/rails/template_handler.rb +23 -0
  44. data/lib/fortitude/rails/widget_methods.rb +17 -0
  45. data/lib/fortitude/rails/yielded_object_outputter.rb +31 -0
  46. data/lib/fortitude/railtie.rb +254 -0
  47. data/lib/fortitude/rendering_context.rb +205 -0
  48. data/lib/fortitude/simple_template.rb +45 -0
  49. data/lib/fortitude/staticized_method.rb +85 -0
  50. data/lib/fortitude/tag.rb +162 -0
  51. data/lib/fortitude/tag_method_template.rb.smpl +68 -0
  52. data/lib/fortitude/tag_return_value.rb +11 -0
  53. data/lib/fortitude/tag_store.rb +48 -0
  54. data/lib/fortitude/tag_support.rb +48 -0
  55. data/lib/fortitude/tags_module.rb +14 -0
  56. data/lib/fortitude/text_method_template.rb.smpl +17 -0
  57. data/lib/fortitude/tilt/fortitude_template.rb +169 -0
  58. data/lib/fortitude/version.rb +3 -0
  59. data/lib/fortitude/widget.rb +904 -0
  60. data/lib/fortitude/widgets/html4_frameset.rb +9 -0
  61. data/lib/fortitude/widgets/html4_strict.rb +9 -0
  62. data/lib/fortitude/widgets/html4_transitional.rb +9 -0
  63. data/lib/fortitude/widgets/html5.rb +9 -0
  64. data/lib/fortitude/widgets/xhtml10_frameset.rb +9 -0
  65. data/lib/fortitude/widgets/xhtml10_strict.rb +9 -0
  66. data/lib/fortitude/widgets/xhtml10_transitional.rb +9 -0
  67. data/lib/fortitude/widgets/xhtml11.rb +9 -0
  68. data/lib/fortitude.rb +93 -0
  69. data/lib/fortitude_jruby_native_ext.jar +0 -0
  70. data/spec/helpers/global_helper.rb +8 -0
  71. data/spec/helpers/rails_helpers.rb +85 -0
  72. data/spec/helpers/rails_server.rb +386 -0
  73. data/spec/helpers/system_helpers.rb +117 -0
  74. data/spec/rails/basic_rails_system_spec.rb +7 -0
  75. data/spec/rails/capture_system_spec.rb +75 -0
  76. data/spec/rails/class_loading_system_spec.rb +63 -0
  77. data/spec/rails/complex_helpers_system_spec.rb +33 -0
  78. data/spec/rails/data_passing_system_spec.rb +96 -0
  79. data/spec/rails/default_layout_system_spec.rb +15 -0
  80. data/spec/rails/development_mode_system_spec.rb +67 -0
  81. data/spec/rails/erb_integration_system_spec.rb +23 -0
  82. data/spec/rails/helpers_include_all_off_system_spec.rb +7 -0
  83. data/spec/rails/helpers_system_spec.rb +79 -0
  84. data/spec/rails/helpers_unrefined_system_spec.rb +7 -0
  85. data/spec/rails/layouts_system_spec.rb +60 -0
  86. data/spec/rails/localization_system_spec.rb +38 -0
  87. data/spec/rails/production_mode_system_spec.rb +13 -0
  88. data/spec/rails/rendering_context_system_spec.rb +64 -0
  89. data/spec/rails/rendering_system_spec.rb +158 -0
  90. data/spec/rails/rules_system_spec.rb +23 -0
  91. data/spec/rails/static_method_system_spec.rb +12 -0
  92. data/spec/rails/templates/base/app/controllers/application_controller.rb +15 -0
  93. data/spec/rails/templates/base/app/controllers/working_controller.rb +5 -0
  94. data/spec/rails/templates/base/app/views/layouts/application.html.erb +11 -0
  95. data/spec/rails/templates/base/config/routes.rb +4 -0
  96. data/spec/rails/templates/base/config/secrets.yml +22 -0
  97. data/spec/rails/templates/basic_rails_system_spec/app/controllers/basic_rails_system_spec_controller.rb +8 -0
  98. data/spec/rails/templates/basic_rails_system_spec/app/views/basic_rails_system_spec/trivial_widget.rb +5 -0
  99. data/spec/rails/templates/capture_system_spec/app/controllers/capture_system_spec_controller.rb +37 -0
  100. data/spec/rails/templates/capture_system_spec/app/views/capture_system_spec/_some_erb_partial.html.erb +1 -0
  101. data/spec/rails/templates/capture_system_spec/app/views/capture_system_spec/another_widget.rb +7 -0
  102. data/spec/rails/templates/capture_system_spec/app/views/capture_system_spec/capture_erb_from_widget.rb +11 -0
  103. data/spec/rails/templates/capture_system_spec/app/views/capture_system_spec/capture_widget_from_erb.html.erb +9 -0
  104. data/spec/rails/templates/capture_system_spec/app/views/capture_system_spec/capture_widget_from_widget.rb +17 -0
  105. data/spec/rails/templates/capture_system_spec/app/views/capture_system_spec/some_widget.rb +5 -0
  106. data/spec/rails/templates/capture_system_spec/app/views/capture_system_spec/widget_content_for.rb +19 -0
  107. data/spec/rails/templates/capture_system_spec/app/views/capture_system_spec/widget_layout_needing_content_yield_with_erb.html.erb +13 -0
  108. data/spec/rails/templates/capture_system_spec/app/views/capture_system_spec/widget_provide.rb +13 -0
  109. data/spec/rails/templates/capture_system_spec/app/views/layouts/erb_layout_needing_content.html.erb +15 -0
  110. data/spec/rails/templates/capture_system_spec/app/views/layouts/widget_layout_needing_content_content_for.rb +23 -0
  111. data/spec/rails/templates/capture_system_spec/app/views/layouts/widget_layout_needing_content_yield.rb +23 -0
  112. data/spec/rails/templates/class_loading_system_spec/app/controllers/class_loading_system_spec_controller.rb +74 -0
  113. data/spec/rails/templates/class_loading_system_spec/app/models/views/app_models_helper.rb +5 -0
  114. data/spec/rails/templates/class_loading_system_spec/app/models/views/models_widget.rb +5 -0
  115. data/spec/rails/templates/class_loading_system_spec/app/views/autoload_namespace/autoload_widget.rb +11 -0
  116. data/spec/rails/templates/class_loading_system_spec/app/views/class_loading_system_spec/_loaded_underscore_widget.rb +11 -0
  117. data/spec/rails/templates/class_loading_system_spec/app/views/class_loading_system_spec/_underscore_view.rb +5 -0
  118. data/spec/rails/templates/class_loading_system_spec/app/views/class_loading_system_spec/_underscore_widget.rb +11 -0
  119. data/spec/rails/templates/class_loading_system_spec/app/views/class_loading_system_spec/app_models.rb +6 -0
  120. data/spec/rails/templates/class_loading_system_spec/app/views/class_loading_system_spec/autoload_one_widget_from_another.rb +7 -0
  121. data/spec/rails/templates/class_loading_system_spec/app/views/class_loading_system_spec/class_should_not_load.rb +9 -0
  122. data/spec/rails/templates/class_loading_system_spec/app/views/class_loading_system_spec/lib_views.rb +8 -0
  123. data/spec/rails/templates/class_loading_system_spec/app/views/class_loading_system_spec/use_lib_widget_from_view_widget.rb +9 -0
  124. data/spec/rails/templates/class_loading_system_spec/app/views/class_loading_system_spec/use_models_widget_from_view_widget.rb +7 -0
  125. data/spec/rails/templates/class_loading_system_spec/app/views/some_namespace/some_other_namespace/.git_keep +0 -0
  126. data/spec/rails/templates/class_loading_system_spec/app/views/sub_widget.rb +5 -0
  127. data/spec/rails/templates/class_loading_system_spec/lib/arbitrary_name/some_widget.rb +7 -0
  128. data/spec/rails/templates/class_loading_system_spec/lib/views/class_loading_system_spec/lib_views_helper.rb +5 -0
  129. data/spec/rails/templates/class_loading_system_spec/lib/views/class_loading_system_spec/widget_defined_outside_app_views.rb +5 -0
  130. data/spec/rails/templates/class_loading_system_spec/lib/views/lib_widget.rb +5 -0
  131. data/spec/rails/templates/complex_helpers_system_spec/app/controllers/complex_helpers_system_spec_controller.rb +14 -0
  132. data/spec/rails/templates/complex_helpers_system_spec/app/views/complex_helpers_system_spec/cache_test.rb +12 -0
  133. data/spec/rails/templates/complex_helpers_system_spec/app/views/complex_helpers_system_spec/fields_for_test.rb +14 -0
  134. data/spec/rails/templates/complex_helpers_system_spec/app/views/complex_helpers_system_spec/form_for_test.rb +14 -0
  135. data/spec/rails/templates/complex_helpers_system_spec/config/environments/development.rb +31 -0
  136. data/spec/rails/templates/data_passing_system_spec/app/controllers/data_passing_system_spec_controller.rb +101 -0
  137. data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/_erb_to_parallel_widget_handoff_erb.html.erb +3 -0
  138. data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/_implicit_erb_to_widget_handoff_erb.html.erb +3 -0
  139. data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/_implicit_variable_write_erb.html.erb +1 -0
  140. data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/_widget_to_parallel_erb_handoff_erb.html.erb +1 -0
  141. data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/erb_copied_variables.html.erb +1 -0
  142. data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/erb_to_parallel_widget_handoff.html.erb +2 -0
  143. data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/erb_to_parallel_widget_handoff_widget.rb +5 -0
  144. data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/explicit_controller_variable_read.rb +6 -0
  145. data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/extra_variables.rb +23 -0
  146. data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/extra_variables_requested.rb +24 -0
  147. data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/implicit_erb_to_widget_handoff.html.erb +2 -0
  148. data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/implicit_erb_to_widget_handoff_widget.rb +7 -0
  149. data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/implicit_shared_variable_access.rb +5 -0
  150. data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/implicit_shared_variable_access_inheritance.rb +6 -0
  151. data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/implicit_shared_variable_access_inheritance_child_one.rb +7 -0
  152. data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/implicit_shared_variable_access_inheritance_child_two.rb +5 -0
  153. data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/implicit_shared_variable_access_inheritance_parent.rb +3 -0
  154. data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/implicit_shared_variable_access_inner.rb +8 -0
  155. data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/implicit_variable_read.rb +5 -0
  156. data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/implicit_variable_read_inner.rb +7 -0
  157. data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/implicit_variable_write.html.erb +2 -0
  158. data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/implicit_variable_write_widget.rb +7 -0
  159. data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/parent_to_child_passing.rb +7 -0
  160. data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/parent_to_child_passing_child.rb +7 -0
  161. data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/parent_to_child_passing_partial.rb +7 -0
  162. data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/parent_to_child_passing_partial_child.rb +7 -0
  163. data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/passing_data_widget.rb +8 -0
  164. data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/passing_locals_and_controller_variables_widget.rb +9 -0
  165. data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/passing_locals_widget.rb +8 -0
  166. data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/variables_to_layout.rb +7 -0
  167. data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/widget_copied_variables.rb +9 -0
  168. data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/widget_to_parallel_erb_handoff.html.erb +2 -0
  169. data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/widget_to_parallel_erb_handoff_widget.rb +5 -0
  170. data/spec/rails/templates/data_passing_system_spec/app/views/layouts/data_layout.rb +14 -0
  171. data/spec/rails/templates/default_layout_system_spec/app/controllers/default_layout_system_spec_controller.rb +9 -0
  172. data/spec/rails/templates/default_layout_system_spec/app/views/default_layout_system_spec/erb_with_widget_default_layout.html.erb +1 -0
  173. data/spec/rails/templates/default_layout_system_spec/app/views/default_layout_system_spec/widget_with_widget_default_layout.rb +5 -0
  174. data/spec/rails/templates/default_layout_system_spec/app/views/layouts/application.rb +12 -0
  175. data/spec/rails/templates/development_mode_system_spec/app/controllers/development_mode_system_spec_controller.rb +9 -0
  176. data/spec/rails/templates/development_mode_system_spec/app/views/development_mode_system_spec/reload_widget.rb +7 -0
  177. data/spec/rails/templates/development_mode_system_spec/app/views/development_mode_system_spec/sample_output.rb +9 -0
  178. data/spec/rails/templates/erb_integration_system_spec/app/controllers/erb_integration_system_spec_controller.rb +10 -0
  179. data/spec/rails/templates/erb_integration_system_spec/app/views/erb_integration_system_spec/_erb_partial_from_widget_partial.html.erb +1 -0
  180. data/spec/rails/templates/erb_integration_system_spec/app/views/erb_integration_system_spec/_fortitude_partial_with_underscore_partial.rb +5 -0
  181. data/spec/rails/templates/erb_integration_system_spec/app/views/erb_integration_system_spec/_prefers_erb_partial_partial.html.erb +1 -0
  182. data/spec/rails/templates/erb_integration_system_spec/app/views/erb_integration_system_spec/erb_partial_from_widget.rb +7 -0
  183. data/spec/rails/templates/erb_integration_system_spec/app/views/erb_integration_system_spec/erb_to_widget_with_render_partial.html.erb +3 -0
  184. data/spec/rails/templates/erb_integration_system_spec/app/views/erb_integration_system_spec/erb_to_widget_with_render_partial_widget.rb +5 -0
  185. data/spec/rails/templates/erb_integration_system_spec/app/views/erb_integration_system_spec/fortitude_partial_with_underscore.html.erb +3 -0
  186. data/spec/rails/templates/erb_integration_system_spec/app/views/erb_integration_system_spec/prefers_erb_partial.html.erb +3 -0
  187. data/spec/rails/templates/erb_integration_system_spec/app/views/erb_integration_system_spec/prefers_erb_partial_partial.rb +5 -0
  188. data/spec/rails/templates/helpers_include_all_off_system_spec/app/controllers/helpers_include_all_off_system_spec_controller.rb +13 -0
  189. data/spec/rails/templates/helpers_include_all_off_system_spec/app/helpers/application_helper.rb +5 -0
  190. data/spec/rails/templates/helpers_include_all_off_system_spec/app/helpers/some_helper.rb +5 -0
  191. data/spec/rails/templates/helpers_include_all_off_system_spec/app/views/helpers_include_all_off_system_spec/include_all_off.rb +23 -0
  192. data/spec/rails/templates/helpers_include_all_off_system_spec/config/application.rb +28 -0
  193. data/spec/rails/templates/helpers_system_spec/app/controllers/helpers_system_spec_controller.rb +86 -0
  194. data/spec/rails/templates/helpers_system_spec/app/helpers/some_helper.rb +21 -0
  195. data/spec/rails/templates/helpers_system_spec/app/views/helpers_system_spec/automatic_helpers_disabled.rb +37 -0
  196. data/spec/rails/templates/helpers_system_spec/app/views/helpers_system_spec/automatic_helpers_inheritance.rb +6 -0
  197. data/spec/rails/templates/helpers_system_spec/app/views/helpers_system_spec/automatic_helpers_inheritance_child_one.rb +34 -0
  198. data/spec/rails/templates/helpers_system_spec/app/views/helpers_system_spec/automatic_helpers_inheritance_child_two.rb +36 -0
  199. data/spec/rails/templates/helpers_system_spec/app/views/helpers_system_spec/automatic_helpers_inheritance_parent.rb +4 -0
  200. data/spec/rails/templates/helpers_system_spec/app/views/helpers_system_spec/basic_helpers.rb +13 -0
  201. data/spec/rails/templates/helpers_system_spec/app/views/helpers_system_spec/block_helpers.rb +7 -0
  202. data/spec/rails/templates/helpers_system_spec/app/views/helpers_system_spec/built_in_outputting_helpers.rb +13 -0
  203. data/spec/rails/templates/helpers_system_spec/app/views/helpers_system_spec/built_in_outputting_to_returning.rb +8 -0
  204. data/spec/rails/templates/helpers_system_spec/app/views/helpers_system_spec/built_in_returning_to_outputting.rb +10 -0
  205. data/spec/rails/templates/helpers_system_spec/app/views/helpers_system_spec/controller_helper_method.rb +5 -0
  206. data/spec/rails/templates/helpers_system_spec/app/views/helpers_system_spec/controller_helper_module.rb +5 -0
  207. data/spec/rails/templates/helpers_system_spec/app/views/helpers_system_spec/custom_helper_outputs.rb +6 -0
  208. data/spec/rails/templates/helpers_system_spec/app/views/helpers_system_spec/custom_helpers_basic.rb +5 -0
  209. data/spec/rails/templates/helpers_system_spec/app/views/helpers_system_spec/custom_helpers_with_a_block.rb +6 -0
  210. data/spec/rails/templates/helpers_system_spec/app/views/helpers_system_spec/custom_outputting_to_returning.rb +7 -0
  211. data/spec/rails/templates/helpers_system_spec/app/views/helpers_system_spec/custom_returning_to_outputting.rb +10 -0
  212. data/spec/rails/templates/helpers_system_spec/app/views/helpers_system_spec/helper_settings_inheritance.rb +10 -0
  213. data/spec/rails/templates/helpers_system_spec/app/views/helpers_system_spec/helper_settings_inheritance_parent.rb +4 -0
  214. data/spec/rails/templates/helpers_system_spec/app/views/helpers_system_spec/helpers_that_output_when_refined.rb +9 -0
  215. data/spec/rails/templates/helpers_system_spec/app/views/helpers_system_spec/private_helper_erb.html.erb +1 -0
  216. data/spec/rails/templates/helpers_system_spec/app/views/helpers_system_spec/private_helper_fortitude.rb +5 -0
  217. data/spec/rails/templates/helpers_system_spec/lib/some_stuff.rb +5 -0
  218. data/spec/rails/templates/helpers_unrefined_system_spec/app/controllers/helpers_unrefined_system_spec_controller.rb +7 -0
  219. data/spec/rails/templates/helpers_unrefined_system_spec/app/views/helpers_unrefined_system_spec/helpers_that_output_when_refined.rb +9 -0
  220. data/spec/rails/templates/helpers_unrefined_system_spec/config/environments/production.rb +31 -0
  221. data/spec/rails/templates/layouts_system_spec/app/controllers/layouts_system_spec_controller.rb +31 -0
  222. data/spec/rails/templates/layouts_system_spec/app/views/layouts/alternate.html.erb +11 -0
  223. data/spec/rails/templates/layouts_system_spec/app/views/layouts/application.html.erb +26 -0
  224. data/spec/rails/templates/layouts_system_spec/app/views/layouts/explicit_yield.rb +12 -0
  225. data/spec/rails/templates/layouts_system_spec/app/views/layouts/widget_layout.rb +22 -0
  226. data/spec/rails/templates/layouts_system_spec/app/views/layouts_system_spec/erb_inside_widget_layout.html.erb +8 -0
  227. data/spec/rails/templates/layouts_system_spec/app/views/layouts_system_spec/the_render_widget.rb +5 -0
  228. data/spec/rails/templates/layouts_system_spec/app/views/layouts_system_spec/widget_inside_erb_layout.rb +8 -0
  229. data/spec/rails/templates/layouts_system_spec/app/views/layouts_system_spec/widget_inside_widget_layout.rb +8 -0
  230. data/spec/rails/templates/layouts_system_spec/app/views/layouts_system_spec/yield_from_widget_explicitly.rb +5 -0
  231. data/spec/rails/templates/localization_system_spec/app/controllers/localization_system_spec_controller.rb +31 -0
  232. data/spec/rails/templates/localization_system_spec/app/views/localization_system_spec/content_method.rb +13 -0
  233. data/spec/rails/templates/localization_system_spec/app/views/localization_system_spec/dot_notation.rb +5 -0
  234. data/spec/rails/templates/localization_system_spec/app/views/localization_system_spec/explicit_html.rb +13 -0
  235. data/spec/rails/templates/localization_system_spec/app/views/localization_system_spec/i18n_t.rb +5 -0
  236. data/spec/rails/templates/localization_system_spec/app/views/localization_system_spec/native_support.rb +7 -0
  237. data/spec/rails/templates/localization_system_spec/app/views/localization_system_spec/readjust_base.rb +7 -0
  238. data/spec/rails/templates/localization_system_spec/app/views/localization_system_spec/t.rb +5 -0
  239. data/spec/rails/templates/localization_system_spec/config/locales/en.yml +21 -0
  240. data/spec/rails/templates/localization_system_spec/config/locales/fr.yml +14 -0
  241. data/spec/rails/templates/localization_system_spec/config/locales/pt.yml +2 -0
  242. data/spec/rails/templates/production_mode_system_spec/app/controllers/production_mode_system_spec_controller.rb +5 -0
  243. data/spec/rails/templates/production_mode_system_spec/app/views/production_mode_system_spec/sample_output.rb +9 -0
  244. data/spec/rails/templates/rendering_context_system_spec/app/controllers/rendering_context_system_spec_controller.rb +72 -0
  245. data/spec/rails/templates/rendering_context_system_spec/app/views/rendering_context_system_spec/_start_end_widget_through_partials_partial.html.erb +1 -0
  246. data/spec/rails/templates/rendering_context_system_spec/app/views/rendering_context_system_spec/_uses_direct_context_for_all_widgets_partial.html.erb +1 -0
  247. data/spec/rails/templates/rendering_context_system_spec/app/views/rendering_context_system_spec/_uses_specified_context_through_nesting_partial.html.erb +2 -0
  248. data/spec/rails/templates/rendering_context_system_spec/app/views/rendering_context_system_spec/render_widget.rb +5 -0
  249. data/spec/rails/templates/rendering_context_system_spec/app/views/rendering_context_system_spec/start_end_widget_basic.rb +12 -0
  250. data/spec/rails/templates/rendering_context_system_spec/app/views/rendering_context_system_spec/start_end_widget_basic_inner.rb +7 -0
  251. data/spec/rails/templates/rendering_context_system_spec/app/views/rendering_context_system_spec/start_end_widget_through_partials.rb +16 -0
  252. data/spec/rails/templates/rendering_context_system_spec/app/views/rendering_context_system_spec/start_end_widget_through_partials_partial_widget.rb +7 -0
  253. data/spec/rails/templates/rendering_context_system_spec/app/views/rendering_context_system_spec/uses_direct_context_for_all_widgets.rb +7 -0
  254. data/spec/rails/templates/rendering_context_system_spec/app/views/rendering_context_system_spec/uses_direct_context_for_all_widgets_widget.rb +5 -0
  255. data/spec/rails/templates/rendering_context_system_spec/app/views/rendering_context_system_spec/uses_direct_context_in_view.rb +5 -0
  256. data/spec/rails/templates/rendering_context_system_spec/app/views/rendering_context_system_spec/uses_specified_context_in_partials.html.erb +3 -0
  257. data/spec/rails/templates/rendering_context_system_spec/app/views/rendering_context_system_spec/uses_specified_context_in_partials_partial.rb +5 -0
  258. data/spec/rails/templates/rendering_context_system_spec/app/views/rendering_context_system_spec/uses_specified_context_in_view.rb +5 -0
  259. data/spec/rails/templates/rendering_context_system_spec/app/views/rendering_context_system_spec/uses_specified_context_through_nesting.rb +6 -0
  260. data/spec/rails/templates/rendering_context_system_spec/app/views/rendering_context_system_spec/uses_specified_context_through_nesting_inner_partial.rb +5 -0
  261. data/spec/rails/templates/rendering_context_system_spec/lib/simple_rc.rb +17 -0
  262. data/spec/rails/templates/rendering_system_spec/app/controllers/rendering_system_spec_controller.rb +111 -0
  263. data/spec/rails/templates/rendering_system_spec/app/views/layouts/application.html.erb +19 -0
  264. data/spec/rails/templates/rendering_system_spec/app/views/rendering_system_spec/_layout_for_partial.html.erb +3 -0
  265. data/spec/rails/templates/rendering_system_spec/app/views/rendering_system_spec/_the_partial.html.erb +1 -0
  266. data/spec/rails/templates/rendering_system_spec/app/views/rendering_system_spec/partial_with_layout.rb +5 -0
  267. data/spec/rails/templates/rendering_system_spec/app/views/rendering_system_spec/render_collection.html.erb +3 -0
  268. data/spec/rails/templates/rendering_system_spec/app/views/rendering_system_spec/render_collection_as.html.erb +3 -0
  269. data/spec/rails/templates/rendering_system_spec/app/views/rendering_system_spec/render_file_from_widget.rb +7 -0
  270. data/spec/rails/templates/rendering_system_spec/app/views/rendering_system_spec/render_html_safe_strings.rb +16 -0
  271. data/spec/rails/templates/rendering_system_spec/app/views/rendering_system_spec/render_inline_from_widget.rb +11 -0
  272. data/spec/rails/templates/rendering_system_spec/app/views/rendering_system_spec/render_object.html.erb +3 -0
  273. data/spec/rails/templates/rendering_system_spec/app/views/rendering_system_spec/render_partial_from_widget.rb +7 -0
  274. data/spec/rails/templates/rendering_system_spec/app/views/rendering_system_spec/render_partial_with_layout.html.erb +3 -0
  275. data/spec/rails/templates/rendering_system_spec/app/views/rendering_system_spec/render_partial_with_widget_layout.html.erb +3 -0
  276. data/spec/rails/templates/rendering_system_spec/app/views/rendering_system_spec/render_template_from_widget.rb +7 -0
  277. data/spec/rails/templates/rendering_system_spec/app/views/rendering_system_spec/render_text_from_widget.rb +7 -0
  278. data/spec/rails/templates/rendering_system_spec/app/views/rendering_system_spec/stream_widget.rb +13 -0
  279. data/spec/rails/templates/rendering_system_spec/app/views/rendering_system_spec/trivial_widget.rb +5 -0
  280. data/spec/rails/templates/rendering_system_spec/app/views/rendering_system_spec/widget_layout_for_partial.rb +7 -0
  281. data/spec/rails/templates/rendering_system_spec/app/views/rendering_system_spec/widget_with_name.rb +7 -0
  282. data/spec/rails/templates/rendering_system_spec/app/views/rendering_system_spec/word.rb +7 -0
  283. data/spec/rails/templates/rendering_system_spec/app/views/widget_to_render.rb +7 -0
  284. data/spec/rails/templates/rules_system_spec/app/controllers/rules_system_spec_controller.rb +22 -0
  285. data/spec/rails/templates/rules_system_spec/app/views/layouts/fortitude_layout_with_p.rb +19 -0
  286. data/spec/rails/templates/rules_system_spec/app/views/rules_system_spec/_intervening_partial_erb_partial.html.erb +1 -0
  287. data/spec/rails/templates/rules_system_spec/app/views/rules_system_spec/intervening_partial.rb +9 -0
  288. data/spec/rails/templates/rules_system_spec/app/views/rules_system_spec/intervening_partial_fortitude_partial.rb +9 -0
  289. data/spec/rails/templates/rules_system_spec/app/views/rules_system_spec/invalid_start_tag_in_partial.html.erb +3 -0
  290. data/spec/rails/templates/rules_system_spec/app/views/rules_system_spec/invalid_start_tag_in_partial_partial.rb +9 -0
  291. data/spec/rails/templates/rules_system_spec/app/views/rules_system_spec/invalid_start_tag_in_view.rb +9 -0
  292. data/spec/rails/templates/rules_system_spec/app/views/rules_system_spec/invalidly_nested_tag.rb +11 -0
  293. data/spec/rails/templates/rules_system_spec/app/views/rules_system_spec/invalidly_nested_tag_in_partial.html.erb +3 -0
  294. data/spec/rails/templates/rules_system_spec/app/views/rules_system_spec/invalidly_nested_tag_in_partial_partial.rb +11 -0
  295. data/spec/rails/templates/static_method_system_spec/app/controllers/static_method_system_spec_controller.rb +15 -0
  296. data/spec/rails/templates/static_method_system_spec/app/helpers/some_helper.rb +10 -0
  297. data/spec/rails/templates/static_method_system_spec/app/views/static_method_system_spec/allows_helper_access.rb +8 -0
  298. data/spec/rails/templates/static_method_system_spec/app/views/static_method_system_spec/localization.rb +7 -0
  299. data/spec/rails/templates/static_method_system_spec/config/locales/en.yml +4 -0
  300. data/spec/rails/templates/static_method_system_spec/config/locales/fr.yml +4 -0
  301. data/spec/system/around_content_system_spec.rb +399 -0
  302. data/spec/system/assigns_system_spec.rb +316 -0
  303. data/spec/system/attribute_rules_system_spec.rb +227 -0
  304. data/spec/system/basic_system_spec.rb +9 -0
  305. data/spec/system/content_inheritance_system_spec.rb +13 -0
  306. data/spec/system/convenience_methods_system_spec.rb +30 -0
  307. data/spec/system/doctypes_system_spec.rb +213 -0
  308. data/spec/system/erector_compatibility_system_spec.rb +84 -0
  309. data/spec/system/escaping_system_spec.rb +43 -0
  310. data/spec/system/formatting_system_spec.rb +63 -0
  311. data/spec/system/helpers_system_spec.rb +235 -0
  312. data/spec/system/id_uniqueness_system_spec.rb +205 -0
  313. data/spec/system/localization_system_spec.rb +94 -0
  314. data/spec/system/method_precedence_system_spec.rb +48 -0
  315. data/spec/system/needs_system_spec.rb +368 -0
  316. data/spec/system/other_outputters_system_spec.rb +117 -0
  317. data/spec/system/rails_not_available_spec.rb +11 -0
  318. data/spec/system/rebuild_notifications_system_spec.rb +208 -0
  319. data/spec/system/rendering_context_system_spec.rb +83 -0
  320. data/spec/system/setting_inheritance_system_spec.rb +585 -0
  321. data/spec/system/shared_variable_system_spec.rb +120 -0
  322. data/spec/system/start_end_comments_system_spec.rb +363 -0
  323. data/spec/system/static_method_system_spec.rb +348 -0
  324. data/spec/system/tag_rendering_system_spec.rb +253 -0
  325. data/spec/system/tag_return_value_system_spec.rb +41 -0
  326. data/spec/system/tag_rules_system_spec.rb +196 -0
  327. data/spec/system/tag_updating_system_spec.rb +171 -0
  328. data/spec/system/tilt_system_spec.rb +378 -0
  329. data/spec/system/unparsed_data_system_spec.rb +16 -0
  330. data/spec/system/void_tags_system_spec.rb +51 -0
  331. data/spec/system/widget_return_values_system_spec.rb +89 -0
  332. metadata +736 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 434f5a087c5b30e778267de15a4bf61de1a414ab
4
+ data.tar.gz: 01cb3a65d7b6086e4203837c455255cd2d9a5419
5
+ SHA512:
6
+ metadata.gz: 30efa375a3fb544c59a271b7f82a512a1cd845cbb227c21a2b4f65cb2b6d4e90c427b95d7691cb09267401048048005f21fbac1e765c97bb4757094af29a6755
7
+ data.tar.gz: 7b51d93fbca484ce657f11cdae73737155169bd2185f1dec0a0dc9d1658922d72e7a498e315094d41177b8e5d8b61a3965d02eb96c5bb9d02c7e5f2b511b195b
data/.gitignore ADDED
@@ -0,0 +1,20 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
18
+ lib/*.bundle
19
+ /*.sublime-project
20
+ /*.sublime-workspace
data/.rspec-local ADDED
@@ -0,0 +1,4 @@
1
+ --format documentation
2
+ --color
3
+ --order random
4
+ -r helpers/global_helper
data/.travis.yml ADDED
@@ -0,0 +1,26 @@
1
+ rvm:
2
+ - "1.8.7"
3
+ - "1.9.3"
4
+ - "2.0.0"
5
+ - "2.1.2"
6
+ - "jruby-1.7.12"
7
+ env:
8
+ - FORTITUDE_SPECS_RAILS_VERSION=4.1.1
9
+ - FORTITUDE_SPECS_RAILS_VERSION=4.0.5
10
+ - FORTITUDE_SPECS_RAILS_VERSION=3.2.18
11
+ - FORTITUDE_SPECS_RAILS_VERSION=3.1.12
12
+ - FORTITUDE_SPECS_RAILS_VERSION=3.0.20
13
+ - FORTITUDE_NATIVE_EXTENSIONS=false FORTITUDE_SPECS_RAILS_VERSION=4.1.1
14
+ - FORTITUDE_NATIVE_EXTENSIONS=false FORTITUDE_SPECS_RAILS_VERSION=3.0.20
15
+ before_script:
16
+ - export JRUBY_OPTS="$JRUBY_OPTS -J-Xmx256m -J-Xms256m -J-Xss2048k"
17
+ - echo "JRUBY_OPTS=$JRUBY_OPTS"
18
+ matrix:
19
+ exclude:
20
+ # Rails 4.x doesn't support Ruby 1.8.7
21
+ - rvm: 1.8.7
22
+ env: FORTITUDE_SPECS_RAILS_VERSION=4.1.1
23
+ - rvm: 1.8.7
24
+ env: FORTITUDE_NATIVE_EXTENSIONS=false FORTITUDE_SPECS_RAILS_VERSION=4.1.1
25
+ - rvm: 1.8.7
26
+ env: FORTITUDE_SPECS_RAILS_VERSION=4.0.5
data/Gemfile ADDED
@@ -0,0 +1,5 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in fortitude.gemspec
4
+ gemspec
5
+
data/LICENSE.txt ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2014 Andrew Geweke
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README-erector.md ADDED
@@ -0,0 +1,246 @@
1
+ # Fortitude for Erector Users
2
+
3
+ This file is intended as a quick introduction to Fortitude for users of Erector. Eventually it will be replaced by
4
+ more complete documentation, but, in the mean time, it should be sufficient to get you started. :)
5
+
6
+ ## What is Fortitude?
7
+
8
+ Fortitude is a Ruby templating engine that works using the same principles as Erector (_i.e._, views are expressed as
9
+ classes containing Ruby code, using a DSL that mimics HTML); from a developer's point of view, the two are very
10
+ similar. However, Fortitude is a complete, ground-up reimagining and reimplementation, and, as such, has many
11
+ advantages:
12
+
13
+ * Dramatically faster: 40-60x faster (no, that's not a typo) than Erector at rendering real-world Web pages (in fact,
14
+ Fortitude appears to be the fastest general-purpose Rails rendering engine, running 10%-40% faster than even
15
+ ERb/Erubis);
16
+ * Dramatically less garbage generation: produces ≤10% as much garbage when rendering a page (and about 50% as much
17
+ garbage as ERb/Erubis);
18
+ * Full, complete native HTML5 support (with selectable X/HTML4.01 Strict/Transitional/Frameset doctypes);
19
+ * Enforces HTML element-nesting and attribute-name rules, and enforce ID uniqueness across a page (configurable, and off by default);
20
+ * In development, beautiful HTML comments around each widget, showing what class is being rendered, the values of all variables supplied to that class, and the nesting depth of that widget;
21
+ * Fully compatible with Ruby 1.8.7-2.1.x, JRuby 1.7.11, and Rails 3.0.x-4.1.x;
22
+ * Full Tilt support, and can be used with or without Rails;
23
+ * Much more thorough Rails support — all known Rails integration points have been resolved, and it should work
24
+ as smoothly with Rails as does (_e.g._) ERb/Erubis;
25
+ * Much cleaner, totally transparent support for helpers (both inside and outside of Rails);
26
+ * Great internationalization support, including Rails' translation mechanism and per-widget language variants;
27
+ * "Staticization" support for incredibly fast rendering of HTML that doesn't depend on input variables;
28
+ * Customizable tags (define your own, modify behavior of existing tags, like whether they start a newline in formatted-output mode);
29
+ * Configure all options on a per-class basis with inheritance (zero "across-the-board" global settings);
30
+ * A much-more-robust `html2fortitude` tool for converting ERb views to Fortitude code;
31
+ * ...and much more!
32
+
33
+ Above all, the primary point of Fortitude is to allow you to _factor your views_, as only Erector (and now Fortitude)
34
+ can do, by allowing you to express them as Ruby code. This is by far the largest advantage of using a rendering engine
35
+ like Fortitude or Erector. But the rest of the bullet points above are pretty nice, too. :)
36
+
37
+ ## Current Status
38
+
39
+ Currently, Fortitude is feature-complete and extremely well-tested (548 examples and counting!). However, it is
40
+ largely yet-undocumented, which is why current users of Erector are the best candidates for its very first beta users.
41
+
42
+ Further, Fortitude has not yet been used "in anger" in the real world yet. As such, bugs are likely to crop up,
43
+ including perhaps some obvious ones, but they will be fixed extremely quickly. You can help Fortitude get ready for
44
+ prime time as quickly as possible by using it, and reporting any issues that crop up!
45
+
46
+ Fortitude _is_ API-stable, however: at this point, backwards-incompatible changes to its API are heavily discouraged,
47
+ and, ideally, will not be made. You should feel confident starting to build a codebase of Fortitude code without worry
48
+ that you'll have to make big changes later.
49
+
50
+ Fortitude supports and is tested against:
51
+
52
+ * Ruby 1.8.7, 1.9.3, 2.0.0, and 2.1.2;
53
+ * JRuby 1.7.11;
54
+ * Rails 3.0.20, 3.1.12, 3.2.18, 4.0.5, and 4.1.1.
55
+
56
+ Other Rails and Ruby versions not on this list will most likely work just fine, too; this is simply the testing
57
+ matrix we've chosen.
58
+
59
+ ## Getting Help
60
+
61
+ * For general information and discussion, join the [`fortitude-ruby`](https://groups.google.com/forum/#!forum/fortitude-ruby) Google group.
62
+ * To report bugs, please file a [GitHub issue](https://github.com/ageweke/fortitude/issues).
63
+ * To contact the author directly, please [send an email](mailto:andrew@geweke.org).
64
+
65
+ ## What Doesn't It Support?
66
+
67
+ The only major feature of Erector that Fortitude doesn't support (and likely will never support) is Erector's special
68
+ syntax for assigning classes or IDs to HTML tags. For example, in Erector, you can write:
69
+
70
+ p.foo # => '<p class="foo"/>'
71
+ p.foo! # => '<p id="foo"/>'
72
+
73
+ Supporting this kind of syntax would, as far as this author can determine, necessarily incur a severe performance
74
+ penalty in Fortitude. One of the reasons Fortitude is so much faster than Erector is that it can generate HTML
75
+ directly and immediately from, say, the `p` method; supporting the syntax above prevents it from doing that (this is
76
+ Erector's `Promise` and related code). (In Erector, you can even do `a(:href => 'foo') { ... }.bar!`, and it will
77
+ turn that into `<a href="foo" id="bar!">...</a>` &mdash; which is very cool, but very expensive to implement.) The
78
+ solution is simply to turn this into hash-style code:
79
+
80
+ p(class: 'foo')
81
+ p(id: 'foo')
82
+
83
+ ...which has the advantage of being consistent with the way other attributes are expressed anyway, and allows Fortitude
84
+ to achieve great speed.
85
+
86
+ Fortitude also does not support various pieces of Erector that are not particularly part of its core rendering engine,
87
+ but which are included in the `erector` gem anyway &mdash; things like the `Page`, `Table`, and `Form` widgets, the
88
+ JQuery and SASS integration, and so on. These have been kept out of Fortitude because (a) there are already
89
+ conventional (and much-more-common) ways of integrating these with Rails, (b) trying to design widgets like these that
90
+ are useful to nearly all users of Erector/Fortitude may be an unsolvable problem, and (c) the author feels that this
91
+ would be best suited for another gem that can depend on `fortitude` anyway.
92
+
93
+ Finally, there may be small methods or classes here and there from Erector that the author has simply overlooked in
94
+ his implementation of Fortitude. As you find things like these that you need, feel free to open a GitHub issue for
95
+ them, and they'll be implemented (or a decision made not to implement them) on a case-by-case basis.
96
+
97
+ ## Awesome! How do I get started?
98
+
99
+ Getting started with Fortitude is very simple:
100
+
101
+ 1. Remove Erector from your application and add Fortitude;
102
+ 1. Create a base widget class for your application and declare the doctype you are using;
103
+ 1. Make sure your view classes are named properly and located in the right files so they can be loaded;
104
+ 1. If needed, set various options for backwards compatibility with Erector.
105
+
106
+ ### Remove Erector from Your Application and Add Fortitude
107
+
108
+ Because both Fortitude and Erector use Ruby class files (`*.rb`) as views, they cannot co-exist at the same time.
109
+ Remove `erector` from your `Gemfile` (or whatever mechanism you're using for loading gems), and add `fortitude`.
110
+
111
+ ### Create a Base Widget Class
112
+
113
+ While Fortitude does provide widget classes you can inherit from directly (`class MyView < Fortitude::Widgets::Html5`),
114
+ you'll almost certainly be happier if you define a single widget class that all your views inherit from. (If you're
115
+ using Erector, you probably already have this.) In that class, you want to declare the doctype you're using &mdash;
116
+ are we generating HTML5? HTML4.01 Transitional? What?
117
+
118
+ The simplest way to do this (path assumes Rails; in other applications, all that matters is that this class is
119
+ available in the runtime somehow &mdash; you're responsible for making sure it gets loaded):
120
+
121
+ app/views/base.rb:
122
+
123
+ class Views::Base < Fortitude::Widget
124
+ doctype :html5
125
+ end
126
+
127
+ You do not have to (nor should you) declare a `doctype` in any widgets that inherit from this class.
128
+
129
+ ### Put Views In the Right Place
130
+
131
+ Fundamentally, all that Fortitude really cares about is that the class that represents a view gets loaded somehow.
132
+ Assuming you're using Rails, if you have a `UsersController` and an action `show`, you can build the view like so:
133
+
134
+ app/views/users/show.rb:
135
+
136
+ class Views::Users::Show < Views::Base
137
+ needs :user
138
+
139
+ def content
140
+ h1("Welcome, #{user.name}!", :class => [ 'announcement', 'heading' ])
141
+ p(:class => 'content') {
142
+ text "Welcome! We're glad to see you, "
143
+ b user.full_name
144
+ text ". We think you're awesome!"
145
+ }
146
+ end
147
+ end
148
+
149
+ The careful reader may note that this doesn't quite make sense: if `app/views` is on the load path, a file at
150
+ `users/show.rb` should define a class named `Users::Show`, not `Views::Users::Show`. The trick is _not_ that `app/` is
151
+ on the load path; that would be exceedingly dangerous (since `models/user.rb` could be inferred to contain a class
152
+ called `Models::User`). Rather, Fortitude augments ActiveSupport's autoload mechanism to allow exactly the behavior
153
+ shown above, where any file under `app/views` will be autoloaded, and assumed to have a class name of `Views::` plus
154
+ its path underneath `app/views`.
155
+
156
+ ### Set Options for Backwards Compatibility
157
+
158
+ Already, you'll notice one major difference from Erector: we access the `user` "need" by calling a method named `user`,
159
+ not accessing the `@user` instance variable. This is a deliberate choice: because of this, a) you can override that
160
+ method if you need (and call `super` in it as necessary), and b) if you misspell it or later remove the `needs :user`
161
+ declaration, you'll get an error immediately, rather than just an always-`nil` variable.
162
+
163
+ However, if you have an existing codebase using Erector syntax (`@user`), you can change Fortitude to use this instead:
164
+
165
+ class Views::Base < Fortitude::Widget
166
+ doctype :html5
167
+
168
+ use_instance_variables_for_assigns true
169
+ end
170
+
171
+ Now the user will be available at both `@user` and `user`.
172
+
173
+ Fortitude is also considerably more strict about variables passed to its views; only those listed in the `needs`
174
+ declaration will be available (and if no `needs` declaration is present, none will be available). Further, variables
175
+ set in the controller are only available to a widget if a) it's the top-level view and it `needs` that variable, or
176
+ b) it's explicitly passed to that widget. You can change this, too:
177
+
178
+ class Views::Base < Fortitude::Widget
179
+ doctype :html5
180
+
181
+ extra_assigns :use
182
+ implicit_shared_variable_access true
183
+ end
184
+
185
+ `extra_assigns :use` says "if passed assignments that I haven't `need`ed, make them available anyway, instead of
186
+ ignoring them". (There's `method_missing` magic happening here that causes these extra assignments to show up as
187
+ methods; if you've set `use_instance_variables_for_assigns`, they'll show as instance variables, too).
188
+ `implicit_shared_variable_access` allows access from the widget to data that hasn't been passed to the widget at all,
189
+ but is defined elsewhere &mdash; in Rails, this means controller instance variables.
190
+
191
+ Note that both these options allow considerably sloppier views, and they are not generally recommended; however, they
192
+ do make Fortitude work more like Erector, and thus are very useful if you have a codebase of existing Erector widgets.
193
+
194
+ Finally, note that these settings take effect on whatever widget you set them on, and all widgets that inherit from
195
+ that one, but can be overridden in subclasses. Thus you can (for example) create a `Views::ErectorCompatibility`
196
+ widget that sets some of these options for Erector compatibility, but a separate `Views::New` class (or whatever you
197
+ want to call it) that you use for new widgets, and on which you don't set `extra_assigns` or
198
+ `use_instance_variables_for_assigns`.
199
+
200
+ # Cool Stuff You Can Do
201
+
202
+ In addition to the features listed at the beginning, here's some cool stuff you can do &mdash; there's much more, but
203
+ this is just to whet your appetite:
204
+
205
+ * Set `enforce_element_nesting_rules true` in a widget to cause Fortitude to raise an exception if you nest elements
206
+ against the HTML specification (for example, try to put a `p` inside a `span`). You'll get a very detailed error
207
+ message, including a hyperlink to the HTML spec in question. (It's recommended you only do this
208
+ `if Rails.env.development? || Rails.env.test?` or something similar, for obvious reasons.)
209
+ * Set `enforce_attribute_rules true` in a widget to cause Fortitude to raise an exception if you try to use an
210
+ attribute that isn't defined in the HTML specification.
211
+ * Set `enforce_id_uniqueness true` in a widget to cause Fortitude to raise an exception if you try to use an ID on
212
+ a tag that has already been used on that page.
213
+ * By default, `format_output true` is set on `Fortitude::Widget` in Rails development mode. This causes Fortitude to
214
+ produce beautifully-indented HTML, with only a minor performance penalty. You can turn it off in development, or on
215
+ in production, the obvious way.
216
+ * By default, `start_and_end_comments true` is set on `Fortitude::Widget` in Rails development mode. This causes
217
+ Fortitude to emit a beautifully-formatted HTML comment above every single widget, telling you what class it's
218
+ rendering and what assigns were passed to it; this makes changing and debugging your output _vastly_ easier, in my
219
+ experience.
220
+ * If you want, `close_void_tags false` can be set to emit `<br>` instead of `<br/>`. (The former is arguably more
221
+ correct, while the latter is more consistent with XML and is also accepted in browsers.) This only affects elements
222
+ that are _required_ to be void (have no contents) &mdash; elements that can contain data must always be closed if
223
+ they don't.
224
+ * `shared_variables` in a widget allows access to shared (controller-set) variables no matter what the setting of
225
+ `implicit_shared_variable_access` &mdash; for example, `shared_variables[:foo]`. You can even write shared variables
226
+ using `shared_variables[:foo] = 'bar'`, although that's incredibly evil.
227
+ * `assigns` in a widget similarly allows access to all assigns passed to that widget, both read and write, when
228
+ indexed like a `Hash` (_e.g._, `assigns[:foo]`, `assigns[:bar] = 'baz'`).
229
+ * `doctype!` used within a `content` method will emit the proper `<!DOCTYPE ...>` declaration for the doctype you've
230
+ selected.
231
+ * `javascript`, passed a `String`, will generate the proper `<script>` tag for JavaScript, depending on the doctype
232
+ you've selected. (XHTML doctypes will add `CDATA`, HTML4 will add `type="javascript"`, and HTML5 will leave it
233
+ simple, since that's all that's required for HTML5.)
234
+ * `comment`, passed a `String`, will emit an HTML comment, properly escaping its text.
235
+ * If you have a method in a widget that emits static HTML (_i.e._, always emits the same thing, no matter what
236
+ variables are passed into a widget), define it, then (at class level) say `static :my_method_name`. This causes
237
+ Fortitude to precompile it into a method that simply emits a string, speeding up output significantly.
238
+ * At class level, if you say `around_content :foo`, then, instead of simply running `content` on your widget, it will
239
+ run the method `foo`, calling `content` when you `yield`. You can have `around_content` calls, and they nest
240
+ properly, running superclasses' `around_content` blocks outside of subclasses', and so on. This can be used to build
241
+ neat features on top of Fortitude (and is how `start_and_end_comments` is implemented, among other things).
242
+ * If you declare a method called, _e.g._, `localized_content_fr`, then, if `I18n.locale` is `fr`, it will run that
243
+ method _instead_ of `content`. This can be used to build completely-different content variants for localization.
244
+ * If you're building a layout, and you factor it into multiple methods, it can be difficult to get `yield` working
245
+ properly. You can call `yield_from_widget` anywhere within a widget, and it will do the exact same thing as Rails'
246
+ `yield`.
data/README.md ADDED
@@ -0,0 +1,15 @@
1
+ # Fortitude
2
+
3
+ Fortitude is a new rendering engine for Ruby (with or without Rails), based on the same principles as
4
+ [Erector](https://github.com/erector/erector). It expresses HTML using a Ruby DSL. By doing this, it allows you to
5
+ factor your view layer far more (and much more naturally) than any other templating engine, allowing dramatically
6
+ better maintainability and code quality &mdash; in what is often one of your application's largest layers.
7
+
8
+ Currently, Fortitude is in beta release: while there are no known bugs, and it has extensive tests (548 examples and
9
+ counting), it is as-of-yet largely undocumented and has not received much use outside of its author's environment.
10
+ As a result, it is largely intended for people who are already familiar with Erector, and for use in environments
11
+ where occasional bugs (that will be fixed quickly) are not an issue.
12
+
13
+ Fortitude should be production-ready in a short while, including very extensive documentation.
14
+
15
+ If you're familiar with Erector and want to use Fortitude, see [README-erector.md](README-erector.md).
data/Rakefile ADDED
@@ -0,0 +1,67 @@
1
+ require "bundler/gem_tasks"
2
+ require "rspec/core/rake_task"
3
+ require "fileutils"
4
+
5
+ RSpec::Core::RakeTask.new(:spec)
6
+
7
+ default_prerequisites = [ :spec ]
8
+ if defined?(RUBY_ENGINE) && RUBY_ENGINE.to_s.strip.downcase == 'jruby'
9
+ default_prerequisites = [ 'jruby:clean', 'jruby:compile' ] + default_prerequisites
10
+ else
11
+ default_prerequisites = [ :clobber, :compile ] + default_prerequisites
12
+ end
13
+
14
+ task :default => default_prerequisites
15
+
16
+ require 'rake/extensiontask'
17
+ spec = Gem::Specification.load('fortitude.gemspec')
18
+ Rake::ExtensionTask.new('fortitude_native_ext', spec)
19
+
20
+ namespace :jruby do
21
+ base_directory = File.expand_path(File.dirname(__FILE__))
22
+ jar_path = File.join(base_directory, 'lib', 'fortitude_jruby_native_ext.jar')
23
+ source_path = File.join(base_directory, 'ext')
24
+ classes_output_path = File.join(base_directory, 'tmp', 'classes')
25
+ jruby_jar_path = File.join(RbConfig::CONFIG['libdir'], 'jruby.jar')
26
+
27
+ def safe_system(cmd)
28
+ output = `#{cmd} 2>&1`
29
+ unless $?.success?
30
+ raise "Command failed:\n #{cmd}\nreturned #{$?.inspect}, and produced output:\n#{output}"
31
+ end
32
+ end
33
+
34
+ task :ensure_jruby do
35
+ unless RUBY_ENGINE == 'jruby'
36
+ raise "You must run this task using JRuby, not #{RUBY_ENGINE}"
37
+ end
38
+ end
39
+
40
+ desc "Cleans all temporary files and the JAR from the JRuby extension"
41
+ task :clean => [ :ensure_jruby ] do
42
+ to_remove = [ classes_output_path, jar_path ]
43
+ to_remove.each { |r| FileUtils.rm_rf(r) }
44
+ puts "Cleaned: #{to_remove.join(", ")}"
45
+ end
46
+
47
+ desc "Compiles the JRuby extension"
48
+ task :compile => [ :ensure_jruby ] do
49
+ require 'find'
50
+
51
+ files = [ ]
52
+ Find.find(source_path) do |f|
53
+ files << "'#{f}'" if f =~ /\.java$/i
54
+ end
55
+
56
+ FileUtils.mkdir_p(classes_output_path)
57
+ FileUtils.mkdir_p(File.dirname(jruby_jar_path))
58
+
59
+ puts "Compiling #{files.length} Java source files."
60
+ safe_system("javac -cp '#{jruby_jar_path}' -g -sourcepath '#{source_path}' -d '#{classes_output_path}' #{files.join(" ")}")
61
+ FileUtils.rm_rf(jar_path)
62
+ puts "Building JAR."
63
+ Dir.chdir(classes_output_path) do
64
+ safe_system("jar cf '#{jar_path}' .")
65
+ end
66
+ end
67
+ end
@@ -0,0 +1,11 @@
1
+ import java.io.IOException;
2
+
3
+ import org.jruby.Ruby;
4
+ import org.jruby.runtime.load.BasicLibraryService;
5
+
6
+ public class FortitudeJrubyNativeExtService implements BasicLibraryService {
7
+ public boolean basicLoad(final Ruby runtime) throws IOException {
8
+ new com.fortituderuby.ext.fortitude.FortitudeNativeLibrary().load(runtime, false);
9
+ return true;
10
+ }
11
+ }
@@ -0,0 +1,223 @@
1
+ package com.fortituderuby.ext.fortitude;
2
+
3
+ import java.io.IOException;
4
+ import org.jruby.Ruby;
5
+ import org.jruby.RubyBasicObject;
6
+ import org.jruby.RubyArray;
7
+ import org.jruby.RubyClass;
8
+ import org.jruby.RubyFixnum;
9
+ import org.jruby.RubyHash;
10
+ import org.jruby.RubyNil;
11
+ import org.jruby.RubyString;
12
+ import org.jruby.RubySymbol;
13
+ import org.jruby.anno.JRubyClass;
14
+ import org.jruby.anno.JRubyMethod;
15
+ import org.jruby.exceptions.RaiseException;
16
+ import org.jruby.runtime.ThreadContext;
17
+ import org.jruby.runtime.builtin.IRubyObject;
18
+ import org.jruby.runtime.load.Library;
19
+
20
+ public class FortitudeNativeLibrary implements Library {
21
+ public static final int BUFFER_SIZE = 256;
22
+
23
+ static Ruby runtime;
24
+
25
+ public void load(Ruby theRuntime, boolean wrap) throws IOException {
26
+ runtime = theRuntime;
27
+
28
+ RubyClass stringClass = runtime.getClass("String");
29
+ stringClass.defineAnnotatedMethod(FortitudeStringExtensions.class, "fortitude_append_escaped_string");
30
+
31
+ RubyClass hashClass = runtime.getClass("Hash");
32
+ hashClass.defineAnnotatedMethod(FortitudeHashExtensions.class, "fortitude_append_as_attributes");
33
+ }
34
+
35
+ public static class FortitudeStringExtensions {
36
+ public static final int MAX_SUBSTITUTION_LENGTH = 6;
37
+
38
+ public static final byte AMPERSAND_BYTE = (byte) '&';
39
+ public static final byte LESS_THAN_BYTE = (byte) '<';
40
+ public static final byte GREATER_THAN_BYTE = (byte) '>';
41
+ public static final byte SINGLE_QUOTE_BYTE = (byte) '\'';
42
+ public static final byte DOUBLE_QUOTE_BYTE = (byte) '\"';
43
+
44
+ @JRubyMethod(name = "fortitude_append_escaped_string")
45
+ public static IRubyObject fortitude_append_escaped_string(ThreadContext context, IRubyObject self, IRubyObject output) {
46
+ if (! (output instanceof RubyString)) {
47
+ RaiseException exception = runtime.newArgumentError("You can only append to a String (this is a native (Java) method)");
48
+ throw exception;
49
+ }
50
+
51
+ RubyString selfString = (RubyString) self;
52
+ RubyString outputString = (RubyString) output;
53
+
54
+ IRubyObject htmlSafe = selfString.getInstanceVariable("@html_safe");
55
+ if (htmlSafe != null && htmlSafe.isTrue()) {
56
+ outputString.cat(selfString);
57
+ } else {
58
+ byte[] selfBytes = selfString.getBytes();
59
+ fortitude_escaped_strcpy(outputString, selfBytes);
60
+ }
61
+
62
+ return runtime.getNil();
63
+ }
64
+
65
+ public static void fortitude_escaped_strcpy(RubyString output, byte[] source) {
66
+ byte[] buffer = new byte[BUFFER_SIZE];
67
+ int bufferPos = 0;
68
+
69
+ for (int i = 0; i < source.length; ++i) {
70
+ if (bufferPos > (BUFFER_SIZE - MAX_SUBSTITUTION_LENGTH)) {
71
+ output.cat(buffer, 0, bufferPos);
72
+ bufferPos = 0;
73
+ }
74
+
75
+ byte sourceByte = source[i];
76
+
77
+ switch(sourceByte) {
78
+ case AMPERSAND_BYTE:
79
+ buffer[bufferPos++] = '&';
80
+ buffer[bufferPos++] = 'a';
81
+ buffer[bufferPos++] = 'm';
82
+ buffer[bufferPos++] = 'p';
83
+ buffer[bufferPos++] = ';';
84
+ break;
85
+
86
+ case LESS_THAN_BYTE:
87
+ buffer[bufferPos++] = '&';
88
+ buffer[bufferPos++] = 'l';
89
+ buffer[bufferPos++] = 't';
90
+ buffer[bufferPos++] = ';';
91
+ break;
92
+
93
+ case GREATER_THAN_BYTE:
94
+ buffer[bufferPos++] = '&';
95
+ buffer[bufferPos++] = 'g';
96
+ buffer[bufferPos++] = 't';
97
+ buffer[bufferPos++] = ';';
98
+ break;
99
+
100
+ case SINGLE_QUOTE_BYTE:
101
+ buffer[bufferPos++] = '&';
102
+ buffer[bufferPos++] = '#';
103
+ buffer[bufferPos++] = '3';
104
+ buffer[bufferPos++] = '9';
105
+ buffer[bufferPos++] = ';';
106
+ break;
107
+
108
+ case DOUBLE_QUOTE_BYTE:
109
+ buffer[bufferPos++] = '&';
110
+ buffer[bufferPos++] = 'q';
111
+ buffer[bufferPos++] = 'u';
112
+ buffer[bufferPos++] = 'o';
113
+ buffer[bufferPos++] = 't';
114
+ buffer[bufferPos++] = ';';
115
+ break;
116
+
117
+ default:
118
+ buffer[bufferPos++] = sourceByte;
119
+ break;
120
+ }
121
+ }
122
+
123
+ if (bufferPos > 0) {
124
+ output.cat(buffer, 0, bufferPos);
125
+ }
126
+ }
127
+ }
128
+
129
+ public static class FortitudeHashExtensions {
130
+ public static final byte SPACE = (byte) ' ';
131
+
132
+ public static void fortitude_append_to(IRubyObject object, RubyString rbOutput) {
133
+ if (object instanceof RubyString) {
134
+ FortitudeStringExtensions.fortitude_escaped_strcpy(rbOutput, ((RubyString) object).getBytes());
135
+ } else if (object instanceof RubySymbol) {
136
+ FortitudeStringExtensions.fortitude_escaped_strcpy(rbOutput, ((RubyString) ((RubySymbol) object).to_s()).getBytes());
137
+ } else if (object instanceof RubyArray) {
138
+ RubyArray array = (RubyArray) object;
139
+
140
+ for (int i = 0; i < array.getLength(); ++i) {
141
+ IRubyObject element = (IRubyObject) array.entry(i);
142
+ if (i > 0) {
143
+ rbOutput.cat(SPACE);
144
+ }
145
+ fortitude_append_to(element, rbOutput);
146
+ }
147
+ } else if (object instanceof RubyNil) {
148
+ // nothing here
149
+ } else if (object instanceof RubyFixnum) {
150
+ RubyString asString = ((RubyFixnum) object).to_s();
151
+ FortitudeStringExtensions.fortitude_escaped_strcpy(rbOutput, asString.getBytes());
152
+ } else {
153
+ RubyString asString = (RubyString) ((RubyBasicObject) object).callMethod("to_s");
154
+ FortitudeStringExtensions.fortitude_escaped_strcpy(rbOutput, asString.getBytes());
155
+ }
156
+ }
157
+
158
+ public static class AppendKeyAndValueVisitor extends RubyHash.Visitor {
159
+ public final ThreadContext threadContext;
160
+ public final RubyString prefix;
161
+ public final RubyString output;
162
+
163
+ public static final byte[] EQUALS_QUOTE = new byte[] { (byte) '=', (byte) '"' };
164
+
165
+ public AppendKeyAndValueVisitor(ThreadContext threadContext, RubyString prefix, RubyString output) {
166
+ this.threadContext = threadContext;
167
+ this.prefix = prefix;
168
+ this.output = output;
169
+ }
170
+
171
+ public void visit(IRubyObject key, IRubyObject value) {
172
+ if (value instanceof RubyHash) {
173
+ RubyString newPrefix;
174
+
175
+ if (prefix != null) {
176
+ newPrefix = (RubyString) prefix.dup();
177
+ fortitude_append_to(key, newPrefix);
178
+ } else {
179
+ newPrefix = RubyString.newEmptyString(runtime);
180
+ fortitude_append_to(key, newPrefix);
181
+ }
182
+
183
+ newPrefix.cat('-');
184
+ fortitude_append_as_attributes(threadContext, value, output, newPrefix);
185
+ } else {
186
+ output.cat(' ');
187
+
188
+ if (prefix != null) {
189
+ output.cat(prefix);
190
+ } else {
191
+ // nothing here
192
+ }
193
+
194
+ fortitude_append_to(key, output);
195
+ output.cat(EQUALS_QUOTE);
196
+ fortitude_append_to(value, output);
197
+ output.cat('"');
198
+ }
199
+ }
200
+ }
201
+
202
+ @JRubyMethod(name = "fortitude_append_as_attributes")
203
+ public static IRubyObject fortitude_append_as_attributes(ThreadContext context, IRubyObject self, IRubyObject output, IRubyObject prefix) {
204
+ if (! (output instanceof RubyString)) {
205
+ RaiseException exception = runtime.newArgumentError("You can only append to a String (this is a native (Java) method)");
206
+ throw exception;
207
+ }
208
+ if (prefix instanceof RubyNil) {
209
+ prefix = null;
210
+ }
211
+ if (prefix != null && (! (prefix instanceof RubyString))) {
212
+ RaiseException exception = runtime.newArgumentError("You can only use a prefix that is a String (this is a native (Java) method)");
213
+ throw exception;
214
+ }
215
+
216
+ AppendKeyAndValueVisitor visitor = new AppendKeyAndValueVisitor(context, (RubyString) prefix, (RubyString) output);
217
+
218
+ ((RubyHash) self).visitAll(visitor);
219
+
220
+ return runtime.getNil();
221
+ }
222
+ }
223
+ }
@@ -0,0 +1,4 @@
1
+ require 'mkmf'
2
+ extension_name = 'fortitude_native_ext'
3
+ dir_config(extension_name)
4
+ create_makefile(extension_name)