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
@@ -0,0 +1,333 @@
1
+ #include "ruby.h"
2
+
3
+ void Init_fortitude_native_ext();
4
+
5
+ VALUE method_append_escaped_string(VALUE self, VALUE rb_output);
6
+ VALUE method_append_as_attributes(VALUE self, VALUE rb_output, VALUE prefix);
7
+
8
+ void Init_fortitude_native_ext() {
9
+ VALUE string_class, hash_class;
10
+
11
+ string_class = rb_const_get(rb_cObject, rb_intern("String"));
12
+ rb_define_method(string_class, "fortitude_append_escaped_string", method_append_escaped_string, 1);
13
+
14
+ hash_class = rb_const_get(rb_cObject, rb_intern("Hash"));
15
+ rb_define_method(hash_class, "fortitude_append_as_attributes", method_append_as_attributes, 2);
16
+ }
17
+
18
+ #define BUF_SIZE 256
19
+ #define MAX_SUBSTITUTION_LENGTH 6
20
+
21
+ void fortitude_escaped_strcpy(VALUE rb_output, const char * src) {
22
+ char buf[BUF_SIZE + 1];
23
+ char* buf_pos = buf;
24
+ char* max_buf_pos = buf + (BUF_SIZE - MAX_SUBSTITUTION_LENGTH);
25
+ char ch;
26
+
27
+ while (1) {
28
+ if (buf_pos >= max_buf_pos) {
29
+ *buf_pos = '\0';
30
+ rb_str_cat2(rb_output, buf);
31
+ buf_pos = buf;
32
+ }
33
+
34
+ ch = *src;
35
+
36
+ if (ch == '&') {
37
+ *buf_pos++ = '&';
38
+ *buf_pos++ = 'a';
39
+ *buf_pos++ = 'm';
40
+ *buf_pos++ = 'p';
41
+ *buf_pos++ = ';';
42
+ } else if (ch == '<') {
43
+ *buf_pos++ = '&';
44
+ *buf_pos++ = 'l';
45
+ *buf_pos++ = 't';
46
+ *buf_pos++ = ';';
47
+ } else if (ch == '>') {
48
+ *buf_pos++ = '&';
49
+ *buf_pos++ = 'g';
50
+ *buf_pos++ = 't';
51
+ *buf_pos++ = ';';
52
+ } else if (ch == '\'') {
53
+ *buf_pos++ = '&';
54
+ *buf_pos++ = '#';
55
+ *buf_pos++ = '3';
56
+ *buf_pos++ = '9';
57
+ *buf_pos++ = ';';
58
+ } else if (ch == '"') {
59
+ *buf_pos++ = '&';
60
+ *buf_pos++ = 'q';
61
+ *buf_pos++ = 'u';
62
+ *buf_pos++ = 'o';
63
+ *buf_pos++ = 't';
64
+ *buf_pos++ = ';';
65
+ } else {
66
+ if (ch == '\0') {
67
+ break;
68
+ }
69
+
70
+ *buf_pos++ = ch;
71
+ }
72
+
73
+ src++;
74
+ }
75
+
76
+ if (buf_pos > buf) {
77
+ *buf_pos = '\0';
78
+ rb_str_cat2(rb_output, buf);
79
+ }
80
+ }
81
+
82
+ VALUE method_append_escaped_string(VALUE self, VALUE rb_output) {
83
+ const char* c_self = RSTRING_PTR(self);
84
+ VALUE html_safe = rb_iv_get(self, "@html_safe");
85
+
86
+ if (TYPE(rb_output) != T_STRING) {
87
+ rb_raise(rb_eArgError, "You can only append to a String (this is a native (C) method)");
88
+ }
89
+
90
+ if (RTEST(html_safe)) {
91
+ rb_str_cat2(rb_output, c_self);
92
+ return Qnil;
93
+ }
94
+
95
+ fortitude_escaped_strcpy(rb_output, c_self);
96
+ return Qnil;
97
+ }
98
+
99
+ void fortitude_append_to(VALUE object, VALUE rb_output) {
100
+ ID to_s;
101
+ char buf[25];
102
+ long value;
103
+ int i;
104
+ VALUE new_string, array_element;
105
+
106
+ #ifdef CONST_ID
107
+ CONST_ID(to_s, "to_s");
108
+ #else
109
+ to_s = rb_intern("to_s");
110
+ #endif
111
+
112
+ switch (TYPE(object)) {
113
+ case T_STRING:
114
+ fortitude_escaped_strcpy(rb_output, RSTRING_PTR(object));
115
+ break;
116
+
117
+ case T_SYMBOL:
118
+ fortitude_escaped_strcpy(rb_output, rb_id2name(SYM2ID(object)));
119
+ break;
120
+
121
+ case T_ARRAY:
122
+ value = RARRAY_LEN(object);
123
+ for (i = 0; i < value; ++i) {
124
+ array_element = rb_ary_entry(object, i);
125
+ if (i > 0) {
126
+ rb_str_cat2(rb_output, " ");
127
+ }
128
+ fortitude_append_to(array_element, rb_output);
129
+ }
130
+
131
+ case T_NONE:
132
+ case T_NIL:
133
+ break;
134
+
135
+ case T_FIXNUM:
136
+ value = NUM2LONG(object);
137
+ sprintf(buf, "%ld", value);
138
+ rb_str_cat2(rb_output, buf);
139
+ break;
140
+
141
+ default:
142
+ new_string = rb_funcall(object, to_s, 0);
143
+ fortitude_escaped_strcpy(rb_output, RSTRING_PTR(new_string));
144
+ break;
145
+ }
146
+ }
147
+
148
+ struct fortitude_prefix_and_output {
149
+ VALUE prefix;
150
+ VALUE rb_output;
151
+ };
152
+
153
+ int fortitude_append_key_and_value(VALUE key, VALUE value, VALUE prefix_and_output_value) {
154
+ struct fortitude_prefix_and_output * prefix_and_output = (struct fortitude_prefix_and_output *)prefix_and_output_value;
155
+
156
+ VALUE prefix = prefix_and_output->prefix;
157
+ VALUE rb_output = prefix_and_output->rb_output;
158
+
159
+ if (TYPE(value) == T_HASH) {
160
+ VALUE new_prefix_as_string;
161
+ ID dup;
162
+ ID to_s;
163
+
164
+ #ifdef CONST_ID
165
+ CONST_ID(dup, "dup");
166
+ CONST_ID(to_s, "to_s");
167
+ #else
168
+ dup = rb_intern("dup");
169
+ to_s = rb_intern("to_s");
170
+ #endif
171
+
172
+ switch (TYPE(prefix)) {
173
+ case T_STRING:
174
+ new_prefix_as_string = rb_funcall(prefix, dup, 0);
175
+ fortitude_append_to(key, new_prefix_as_string);
176
+ break;
177
+
178
+ case T_NIL:
179
+ new_prefix_as_string = rb_str_new("", 0);
180
+ fortitude_append_to(key, new_prefix_as_string);
181
+ break;
182
+
183
+ default:
184
+ rb_raise(rb_eArgError, "You can only use a String as a prefix (this is a native (C) method)");
185
+ break;
186
+ }
187
+
188
+ rb_str_cat2(new_prefix_as_string, "-");
189
+ method_append_as_attributes(value, rb_output, new_prefix_as_string);
190
+ } else {
191
+ rb_str_cat2(rb_output, " ");
192
+
193
+ switch (TYPE(prefix)) {
194
+ case T_STRING:
195
+ rb_str_append(rb_output, prefix);
196
+ break;
197
+
198
+ case T_NIL:
199
+ break;
200
+
201
+ default:
202
+ rb_raise(rb_eArgError, "You can only use a String as a prefix (this is a native (C) method)");
203
+ break;
204
+ }
205
+
206
+ fortitude_append_to(key, rb_output);
207
+ rb_str_cat2(rb_output, "=\"");
208
+ fortitude_append_to(value, rb_output);
209
+ rb_str_cat2(rb_output, "\"");
210
+ }
211
+
212
+ return 0;
213
+ }
214
+
215
+
216
+ VALUE method_append_as_attributes(VALUE self, VALUE rb_output, VALUE prefix) {
217
+ struct fortitude_prefix_and_output prefix_and_output;
218
+
219
+ if (TYPE(rb_output) != T_STRING) {
220
+ rb_raise(rb_eArgError, "You can only append to a String (this is a native (C) method)");
221
+ }
222
+
223
+ prefix_and_output.prefix = prefix;
224
+ prefix_and_output.rb_output = rb_output;
225
+
226
+ rb_hash_foreach(self, fortitude_append_key_and_value, (VALUE) &prefix_and_output);
227
+ return Qnil;
228
+ }
229
+
230
+ // int append_hash_attributes(VALUE key, VALUE val, VALUE current_output) {
231
+ // static char buf[100];
232
+
233
+ // char *c_key, *c_value;
234
+
235
+ // sprintf(buf, " %s=\"%s\"", RSTRING_PTR(key), RSTRING_PTR(val));
236
+ // rb_str_cat2(current_output, buf);
237
+
238
+ // return ST_CONTINUE;
239
+ // }
240
+
241
+ // VALUE method_insert_element(VALUE self, VALUE rb_output, VALUE rb_name, VALUE rb_attributes) {
242
+ // char* c_name = RSTRING_PTR(rb_name);
243
+
244
+ // static char buf[100];
245
+
246
+ // switch(TYPE(rb_attributes)) {
247
+ // case T_STRING:
248
+ // sprintf(buf, "<%s>", c_name);
249
+ // rb_str_cat2(rb_output, buf);
250
+
251
+ // rb_str_append(rb_output, rb_attributes);
252
+
253
+ // sprintf(buf, "</%s>", c_name);
254
+ // rb_str_cat2(rb_output, buf);
255
+ // break;
256
+
257
+ // case T_HASH:
258
+ // sprintf(buf, "<%s ", c_name);
259
+ // rb_str_cat2(rb_output, buf);
260
+
261
+ // // fprintf(stderr, "About to append attributes...");
262
+
263
+ // // rb_hash_foreach(rb_attributes, append_hash_attributes, rb_output);
264
+
265
+ // // fprintf(stderr, "...appended attributes.");
266
+
267
+ // if (rb_block_given_p()) {
268
+ // rb_str_cat2(rb_output, ">");
269
+
270
+ // rb_yield(Qnil);
271
+
272
+ // sprintf(buf, "</%s>", c_name);
273
+ // rb_str_cat2(rb_output, buf);
274
+ // } else {
275
+ // rb_str_cat2(rb_output, "/>");
276
+ // sprintf(buf, ">");
277
+ // }
278
+ // break;
279
+
280
+ // case T_NIL:
281
+ // if (rb_block_given_p()) {
282
+ // sprintf(buf, "<%s>", c_name);
283
+ // rb_str_cat2(rb_output, buf);
284
+
285
+ // rb_yield(Qnil);
286
+
287
+ // sprintf(buf, "</%s>", c_name);
288
+ // rb_str_cat2(rb_output, buf);
289
+ // } else {
290
+ // sprintf(buf, "<%s/>", c_name);
291
+ // rb_str_cat2(rb_output, buf);
292
+ // }
293
+ // break;
294
+
295
+ // default:
296
+ // /* raise */
297
+ // break;
298
+ // }
299
+
300
+ // return Qnil;
301
+ // }
302
+
303
+ // /*
304
+ // def #{element_name}(attributes = nil)
305
+ // o = @_fortitude_output
306
+
307
+ // if (! attributes)
308
+ // if block_given?
309
+ // o << FAST_ELEMENT_#{element_name.upcase}_OPEN
310
+ // yield
311
+ // o << FAST_ELEMENT_#{element_name.upcase}_CLOSE
312
+ // else
313
+ // o << FAST_ELEMENT_#{element_name.upcase}_ALONE
314
+ // end
315
+ // elsif attributes.kind_of?(String)
316
+ // o << FAST_ELEMENT_#{element_name.upcase}_OPEN
317
+ // o << attributes
318
+ // o << FAST_ELEMENT_#{element_name.upcase}_CLOSE
319
+ // else
320
+ // o << FAST_ELEMENT_#{element_name.upcase}_PARTIAL_OPEN
321
+ // _attributes(attributes)
322
+
323
+ // if block_given?
324
+ // o << FAST_ELEMENT_PARTIAL_OPEN_END
325
+ // yield
326
+ // o << FAST_ELEMENT_#{element_name.upcase}_CLOSE
327
+ // else
328
+ // o << FAST_ELEMENT_PARTIAL_OPEN_ALONE_END
329
+ // end
330
+ // end
331
+ // end
332
+
333
+ // */
data/fortitude.gemspec ADDED
@@ -0,0 +1,37 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'fortitude/version'
5
+
6
+ Gem::Specification.new do |s|
7
+ s.name = "fortitude"
8
+ s.version = Fortitude::VERSION
9
+ s.authors = ["Andrew Geweke"]
10
+ s.email = ["andrew@geweke.org"]
11
+ s.summary = %q{Views Are Code: use all the power of Ruby to build views in your own language.}
12
+ s.description = %q{Views Are Code: use all the power of Ruby to build views in your own language.}
13
+ s.homepage = "https://github.com/ageweke/fortitude"
14
+ s.license = "MIT"
15
+
16
+ s.files = `git ls-files`.split($/)
17
+ s.executables = s.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
+ s.test_files = s.files.grep(%r{^(test|spec|features)/})
19
+ s.require_paths = ["lib"]
20
+
21
+ s.extensions << "ext/fortitude_native_ext/extconf.rb"
22
+
23
+ activesupport_spec = if RUBY_VERSION =~ /^1\.8\./
24
+ [ ">= 3.0", "< 4.0" ]
25
+ else
26
+ [ ">= 3.0" ]
27
+ end
28
+
29
+ s.add_dependency "activesupport", *activesupport_spec
30
+
31
+ s.add_development_dependency "bundler", "~> 1.5"
32
+ s.add_development_dependency "rake"
33
+ s.add_development_dependency "rspec", "~> 2.99"
34
+ s.add_development_dependency "rake-compiler"
35
+ s.add_development_dependency "json"
36
+ s.add_development_dependency "tilt", "~> 2.0"
37
+ end
@@ -0,0 +1,22 @@
1
+ def assign_locals_from(assigns)
2
+ @_fortitude_raw_assigns = assigns
3
+ @_fortitude_raw_assigns = @_fortitude_raw_assigns.delete_if { |k,v| ! self.class.is_valid_ruby_method_name?(k) } # :if extra_assigns == :use
4
+ @_fortitude_default_assigns = { }
5
+ the_needs = needs_as_hash
6
+ missing = [ ]
7
+ have_missing = false
8
+
9
+ @_fortitude_extra_assigns = assigns.symbolize_keys # :if [ :error, :use ].include?(extra_assigns)
10
+
11
+ #{needs_text}
12
+
13
+ if @_fortitude_extra_assigns.size > 0 # :if extra_assigns == :error
14
+ raise Fortitude::Errors::ExtraAssigns.new(self, @_fortitude_extra_assigns) # :if extra_assigns == :error
15
+ end # :if extra_assigns == :error
16
+
17
+ @_fortitude_extra_assigns.each do |key, value| # :if extra_assigns == :use
18
+ instance_variable_set(instance_variable_name_for_need(key), value) # :if extra_assigns == :use
19
+ end # :if extra_assigns == :use
20
+
21
+ raise Fortitude::Errors::MissingNeed.new(self, missing, assigns) if have_missing
22
+ end
@@ -0,0 +1,75 @@
1
+ require 'active_support/core_ext'
2
+
3
+ module Fortitude
4
+ class AssignsProxy
5
+ def initialize(widget, keys)
6
+ @widget = widget
7
+ @keys = { }
8
+ keys.each { |k| @keys[k] = true }
9
+ end
10
+
11
+ def is_default?(x)
12
+ !! @widget._fortitude_default_assigns[x.to_sym]
13
+ end
14
+
15
+ def keys
16
+ @keys.keys
17
+ end
18
+
19
+ def has_key?(x)
20
+ !! @keys[x.to_sym]
21
+ end
22
+
23
+ def [](x)
24
+ if has_key?(x)
25
+ ivar_name = @widget.class.instance_variable_name_for_need(x)
26
+ @widget.instance_variable_get(ivar_name)
27
+ end
28
+ end
29
+
30
+ def []=(x, y)
31
+ if has_key?(x)
32
+ ivar_name = @widget.class.instance_variable_name_for_need(x)
33
+ @widget.instance_variable_set(ivar_name, y)
34
+ end
35
+ end
36
+
37
+ def to_hash
38
+ out = { }
39
+ keys.each { |k| out[k] = self[k] }
40
+ out
41
+ end
42
+
43
+ def to_h
44
+ to_hash
45
+ end
46
+
47
+ def length
48
+ @keys.length
49
+ end
50
+
51
+ def size
52
+ @keys.size
53
+ end
54
+
55
+ def to_s
56
+ "<Assigns for #{@widget}: #{to_hash}>"
57
+ end
58
+
59
+ def inspect
60
+ "<Assigns for #{@widget}: #{to_hash.inspect}>"
61
+ end
62
+
63
+ def member?(x)
64
+ has_key?(x)
65
+ end
66
+
67
+ def store(key, value)
68
+ self[key] = value
69
+ end
70
+
71
+ delegate :==, :assoc, :each, :each_pair, :each_key, :each_value, :empty?, :eql?, :fetch, :flatten,
72
+ :has_value?, :hash, :include?, :invert, :key, :key?, :merge, :rassoc, :reject, :select,
73
+ :to_a, :value?, :values, :values_at, :to => :to_hash
74
+ end
75
+ end
@@ -0,0 +1,96 @@
1
+ require 'active_support'
2
+ require 'active_support/concern'
3
+
4
+ module Fortitude
5
+ module ClassInheritableAttributes
6
+ extend ActiveSupport::Concern
7
+
8
+ module ClassMethods
9
+ def _fortitude_invoke_class_inheritable_attribute(attribute_name, allowable_values, *args)
10
+ raise ArgumentError, "Invalid arguments: #{args.inspect}" if args.length > 1
11
+ instance_variable_name = "@_fortitude_#{attribute_name}"
12
+ if args.length == 0
13
+ _fortitude_read_class_inheritable_attribute(attribute_name, instance_variable_name, false)
14
+ else
15
+ _fortitude_write_class_inheritable_attribute(attribute_name, instance_variable_name, allowable_values, args[0])
16
+ end
17
+ end
18
+
19
+ def _fortitude_read_class_inheritable_attribute(attribute_name, instance_variable_name, allow_not_present)
20
+ return instance_variable_get(instance_variable_name) if instance_variable_defined?(instance_variable_name)
21
+ return superclass.send(attribute_name) if superclass.respond_to?(attribute_name)
22
+
23
+ if allow_not_present
24
+ :_fortitude_class_inheritable_attribute_not_present
25
+ else
26
+ raise "Fortitude class-inheritable attribute error: there should always be a declared value for #{attribute_name} at the top of the inheritance hierarchy somewhere"
27
+ end
28
+ end
29
+
30
+ def _fortitude_write_class_inheritable_attribute(attribute_name, instance_variable_name, allowable_values, new_value)
31
+ allowed = if allowable_values.respond_to?(:call)
32
+ allowable_values.call(new_value)
33
+ else
34
+ allowable_values.include?(new_value)
35
+ end
36
+
37
+ if (! allowed)
38
+ error = "#{attribute_name} cannot be set to #{new_value.inspect}"
39
+ error << "; valid values are: #{allowable_values.inspect}" unless allowable_values.respond_to?(:call)
40
+ raise ArgumentError, error
41
+ end
42
+
43
+ old_value = _fortitude_read_class_inheritable_attribute(attribute_name, instance_variable_name, true)
44
+
45
+ instance_variable_set(instance_variable_name, new_value)
46
+
47
+ if (old_value != :_fortitude_class_inheritable_attribute_not_present) && (new_value != old_value)
48
+ _fortitude_class_inheritable_attribute_changed!(attribute_name, old_value, new_value)
49
+ end
50
+
51
+ new_value
52
+ end
53
+
54
+ def _fortitude_class_inheritable_attribute(attribute_name, default_value, allowable_values)
55
+ metaclass = (class << self; self; end)
56
+
57
+ metaclass.send(:define_method, attribute_name) do |*args|
58
+ _fortitude_invoke_class_inheritable_attribute(attribute_name, allowable_values, *args)
59
+ end
60
+
61
+ send(attribute_name, default_value)
62
+ end
63
+
64
+ def _fortitude_on_class_inheritable_attribute_change(*attribute_names, &block)
65
+ if attribute_names.length == 0
66
+ raise ArgumentError, "You must pass at least one attribute name, not: #{attribute_names.inspect}"
67
+ end
68
+
69
+ @_fortitude_class_inheritable_attribute_change_callbacks ||= { }
70
+ attribute_names.each do |attribute_name|
71
+ @_fortitude_class_inheritable_attribute_change_callbacks[attribute_name] ||= [ ]
72
+ @_fortitude_class_inheritable_attribute_change_callbacks[attribute_name] |= [ block ]
73
+ end
74
+ end
75
+
76
+ def _fortitude_class_inheritable_attribute_callbacks_for(attribute_name)
77
+ out = if superclass.respond_to?(:_fortitude_class_inheritable_attribute_callbacks_for)
78
+ superclass._fortitude_class_inheritable_attribute_callbacks_for(attribute_name)
79
+ else
80
+ [ ]
81
+ end
82
+
83
+ @_fortitude_class_inheritable_attribute_change_callbacks ||= { }
84
+ out += @_fortitude_class_inheritable_attribute_change_callbacks[attribute_name] || [ ]
85
+
86
+ out
87
+ end
88
+
89
+ def _fortitude_class_inheritable_attribute_changed!(attribute_name, old_value, new_value)
90
+ callbacks = _fortitude_class_inheritable_attribute_callbacks_for(attribute_name)
91
+ # klass = self
92
+ callbacks.each { |cb| instance_exec(attribute_name, old_value, new_value, &cb) }
93
+ end
94
+ end
95
+ end
96
+ end
@@ -0,0 +1,38 @@
1
+ require 'fortitude/tag_store'
2
+
3
+ module Fortitude
4
+ module Doctypes
5
+ class Base
6
+ extend Fortitude::TagStore
7
+
8
+ class << self
9
+ def delegate_tag_stores
10
+ if superclass.respond_to?(:tags)
11
+ [ superclass ]
12
+ else
13
+ [ ]
14
+ end
15
+ end
16
+ end
17
+
18
+ attr_reader :name
19
+
20
+ def initialize(name, doctype_line)
21
+ @name = name
22
+ @doctype_line = doctype_line
23
+ end
24
+
25
+ def tags
26
+ self.class.tags
27
+ end
28
+
29
+ def declare!(w)
30
+ w.doctype(@doctype_line)
31
+ end
32
+
33
+ def to_s
34
+ "<Doctype #{name.inspect}>"
35
+ end
36
+ end
37
+ end
38
+ end
@@ -0,0 +1,20 @@
1
+ require 'fortitude/doctypes/base'
2
+ require 'fortitude/doctypes/html4_tags_strict'
3
+
4
+ module Fortitude
5
+ module Doctypes
6
+ class Html4 < Base
7
+ def default_javascript_tag_attributes
8
+ { :type => 'text/javascript'.freeze }.freeze
9
+ end
10
+
11
+ def needs_cdata_in_javascript_tag?
12
+ false
13
+ end
14
+
15
+ def close_void_tags?
16
+ false
17
+ end
18
+ end
19
+ end
20
+ end
@@ -0,0 +1,18 @@
1
+ require 'fortitude/doctypes/html4'
2
+ require 'fortitude/doctypes/html4_tags_frameset'
3
+
4
+ module Fortitude
5
+ module Doctypes
6
+ class Html4Frameset < Html4Transitional
7
+ def initialize
8
+ super(:html4_frameset, 'HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd"')
9
+ end
10
+
11
+ class << self
12
+ def delegate_tag_stores
13
+ [ Fortitude::Doctypes::Html4TagsFrameset ]
14
+ end
15
+ end
16
+ end
17
+ end
18
+ end
@@ -0,0 +1,17 @@
1
+ require 'fortitude/doctypes/html4'
2
+
3
+ module Fortitude
4
+ module Doctypes
5
+ class Html4Strict < Html4
6
+ def initialize
7
+ super(:html4_strict, 'HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"')
8
+ end
9
+
10
+ class << self
11
+ def delegate_tag_stores
12
+ [ Fortitude::Doctypes::Html4TagsStrict ]
13
+ end
14
+ end
15
+ end
16
+ end
17
+ end