fortitude 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +20 -0
- data/.rspec-local +4 -0
- data/.travis.yml +26 -0
- data/Gemfile +5 -0
- data/LICENSE.txt +22 -0
- data/README-erector.md +246 -0
- data/README.md +15 -0
- data/Rakefile +67 -0
- data/ext/FortitudeJrubyNativeExtService.java +11 -0
- data/ext/com/fortituderuby/ext/fortitude/FortitudeNativeLibrary.java +223 -0
- data/ext/fortitude_native_ext/extconf.rb +4 -0
- data/ext/fortitude_native_ext/fortitude_native_ext.c +333 -0
- data/fortitude.gemspec +37 -0
- data/lib/fortitude/assign_locals_from_template.rb.smpl +22 -0
- data/lib/fortitude/assigns_proxy.rb +75 -0
- data/lib/fortitude/class_inheritable_attributes.rb +96 -0
- data/lib/fortitude/doctypes/base.rb +38 -0
- data/lib/fortitude/doctypes/html4.rb +20 -0
- data/lib/fortitude/doctypes/html4_frameset.rb +18 -0
- data/lib/fortitude/doctypes/html4_strict.rb +17 -0
- data/lib/fortitude/doctypes/html4_tags_frameset.rb +52 -0
- data/lib/fortitude/doctypes/html4_tags_strict.rb +273 -0
- data/lib/fortitude/doctypes/html4_tags_transitional.rb +114 -0
- data/lib/fortitude/doctypes/html4_transitional.rb +18 -0
- data/lib/fortitude/doctypes/html5.rb +372 -0
- data/lib/fortitude/doctypes/unknown_doctype.rb +19 -0
- data/lib/fortitude/doctypes/xhtml10.rb +19 -0
- data/lib/fortitude/doctypes/xhtml10_frameset.rb +17 -0
- data/lib/fortitude/doctypes/xhtml10_strict.rb +17 -0
- data/lib/fortitude/doctypes/xhtml10_transitional.rb +17 -0
- data/lib/fortitude/doctypes/xhtml11.rb +29 -0
- data/lib/fortitude/doctypes.rb +46 -0
- data/lib/fortitude/errors.rb +153 -0
- data/lib/fortitude/fortitude_ruby_ext.rb +71 -0
- data/lib/fortitude/instance_variable_set.rb +74 -0
- data/lib/fortitude/need_assignment_template.rb.smpl +16 -0
- data/lib/fortitude/need_method_template.rb.smpl +4 -0
- data/lib/fortitude/non_rails_widget_methods.rb +15 -0
- data/lib/fortitude/partial_tag_placeholder.rb +17 -0
- data/lib/fortitude/rails/helpers.rb +153 -0
- data/lib/fortitude/rails/renderer.rb +43 -0
- data/lib/fortitude/rails/template_handler.rb +23 -0
- data/lib/fortitude/rails/widget_methods.rb +17 -0
- data/lib/fortitude/rails/yielded_object_outputter.rb +31 -0
- data/lib/fortitude/railtie.rb +254 -0
- data/lib/fortitude/rendering_context.rb +205 -0
- data/lib/fortitude/simple_template.rb +45 -0
- data/lib/fortitude/staticized_method.rb +85 -0
- data/lib/fortitude/tag.rb +162 -0
- data/lib/fortitude/tag_method_template.rb.smpl +68 -0
- data/lib/fortitude/tag_return_value.rb +11 -0
- data/lib/fortitude/tag_store.rb +48 -0
- data/lib/fortitude/tag_support.rb +48 -0
- data/lib/fortitude/tags_module.rb +14 -0
- data/lib/fortitude/text_method_template.rb.smpl +17 -0
- data/lib/fortitude/tilt/fortitude_template.rb +169 -0
- data/lib/fortitude/version.rb +3 -0
- data/lib/fortitude/widget.rb +904 -0
- data/lib/fortitude/widgets/html4_frameset.rb +9 -0
- data/lib/fortitude/widgets/html4_strict.rb +9 -0
- data/lib/fortitude/widgets/html4_transitional.rb +9 -0
- data/lib/fortitude/widgets/html5.rb +9 -0
- data/lib/fortitude/widgets/xhtml10_frameset.rb +9 -0
- data/lib/fortitude/widgets/xhtml10_strict.rb +9 -0
- data/lib/fortitude/widgets/xhtml10_transitional.rb +9 -0
- data/lib/fortitude/widgets/xhtml11.rb +9 -0
- data/lib/fortitude.rb +93 -0
- data/lib/fortitude_jruby_native_ext.jar +0 -0
- data/spec/helpers/global_helper.rb +8 -0
- data/spec/helpers/rails_helpers.rb +85 -0
- data/spec/helpers/rails_server.rb +386 -0
- data/spec/helpers/system_helpers.rb +117 -0
- data/spec/rails/basic_rails_system_spec.rb +7 -0
- data/spec/rails/capture_system_spec.rb +75 -0
- data/spec/rails/class_loading_system_spec.rb +63 -0
- data/spec/rails/complex_helpers_system_spec.rb +33 -0
- data/spec/rails/data_passing_system_spec.rb +96 -0
- data/spec/rails/default_layout_system_spec.rb +15 -0
- data/spec/rails/development_mode_system_spec.rb +67 -0
- data/spec/rails/erb_integration_system_spec.rb +23 -0
- data/spec/rails/helpers_include_all_off_system_spec.rb +7 -0
- data/spec/rails/helpers_system_spec.rb +79 -0
- data/spec/rails/helpers_unrefined_system_spec.rb +7 -0
- data/spec/rails/layouts_system_spec.rb +60 -0
- data/spec/rails/localization_system_spec.rb +38 -0
- data/spec/rails/production_mode_system_spec.rb +13 -0
- data/spec/rails/rendering_context_system_spec.rb +64 -0
- data/spec/rails/rendering_system_spec.rb +158 -0
- data/spec/rails/rules_system_spec.rb +23 -0
- data/spec/rails/static_method_system_spec.rb +12 -0
- data/spec/rails/templates/base/app/controllers/application_controller.rb +15 -0
- data/spec/rails/templates/base/app/controllers/working_controller.rb +5 -0
- data/spec/rails/templates/base/app/views/layouts/application.html.erb +11 -0
- data/spec/rails/templates/base/config/routes.rb +4 -0
- data/spec/rails/templates/base/config/secrets.yml +22 -0
- data/spec/rails/templates/basic_rails_system_spec/app/controllers/basic_rails_system_spec_controller.rb +8 -0
- data/spec/rails/templates/basic_rails_system_spec/app/views/basic_rails_system_spec/trivial_widget.rb +5 -0
- data/spec/rails/templates/capture_system_spec/app/controllers/capture_system_spec_controller.rb +37 -0
- data/spec/rails/templates/capture_system_spec/app/views/capture_system_spec/_some_erb_partial.html.erb +1 -0
- data/spec/rails/templates/capture_system_spec/app/views/capture_system_spec/another_widget.rb +7 -0
- data/spec/rails/templates/capture_system_spec/app/views/capture_system_spec/capture_erb_from_widget.rb +11 -0
- data/spec/rails/templates/capture_system_spec/app/views/capture_system_spec/capture_widget_from_erb.html.erb +9 -0
- data/spec/rails/templates/capture_system_spec/app/views/capture_system_spec/capture_widget_from_widget.rb +17 -0
- data/spec/rails/templates/capture_system_spec/app/views/capture_system_spec/some_widget.rb +5 -0
- data/spec/rails/templates/capture_system_spec/app/views/capture_system_spec/widget_content_for.rb +19 -0
- data/spec/rails/templates/capture_system_spec/app/views/capture_system_spec/widget_layout_needing_content_yield_with_erb.html.erb +13 -0
- data/spec/rails/templates/capture_system_spec/app/views/capture_system_spec/widget_provide.rb +13 -0
- data/spec/rails/templates/capture_system_spec/app/views/layouts/erb_layout_needing_content.html.erb +15 -0
- data/spec/rails/templates/capture_system_spec/app/views/layouts/widget_layout_needing_content_content_for.rb +23 -0
- data/spec/rails/templates/capture_system_spec/app/views/layouts/widget_layout_needing_content_yield.rb +23 -0
- data/spec/rails/templates/class_loading_system_spec/app/controllers/class_loading_system_spec_controller.rb +74 -0
- data/spec/rails/templates/class_loading_system_spec/app/models/views/app_models_helper.rb +5 -0
- data/spec/rails/templates/class_loading_system_spec/app/models/views/models_widget.rb +5 -0
- data/spec/rails/templates/class_loading_system_spec/app/views/autoload_namespace/autoload_widget.rb +11 -0
- data/spec/rails/templates/class_loading_system_spec/app/views/class_loading_system_spec/_loaded_underscore_widget.rb +11 -0
- data/spec/rails/templates/class_loading_system_spec/app/views/class_loading_system_spec/_underscore_view.rb +5 -0
- data/spec/rails/templates/class_loading_system_spec/app/views/class_loading_system_spec/_underscore_widget.rb +11 -0
- data/spec/rails/templates/class_loading_system_spec/app/views/class_loading_system_spec/app_models.rb +6 -0
- data/spec/rails/templates/class_loading_system_spec/app/views/class_loading_system_spec/autoload_one_widget_from_another.rb +7 -0
- data/spec/rails/templates/class_loading_system_spec/app/views/class_loading_system_spec/class_should_not_load.rb +9 -0
- data/spec/rails/templates/class_loading_system_spec/app/views/class_loading_system_spec/lib_views.rb +8 -0
- data/spec/rails/templates/class_loading_system_spec/app/views/class_loading_system_spec/use_lib_widget_from_view_widget.rb +9 -0
- data/spec/rails/templates/class_loading_system_spec/app/views/class_loading_system_spec/use_models_widget_from_view_widget.rb +7 -0
- data/spec/rails/templates/class_loading_system_spec/app/views/some_namespace/some_other_namespace/.git_keep +0 -0
- data/spec/rails/templates/class_loading_system_spec/app/views/sub_widget.rb +5 -0
- data/spec/rails/templates/class_loading_system_spec/lib/arbitrary_name/some_widget.rb +7 -0
- data/spec/rails/templates/class_loading_system_spec/lib/views/class_loading_system_spec/lib_views_helper.rb +5 -0
- data/spec/rails/templates/class_loading_system_spec/lib/views/class_loading_system_spec/widget_defined_outside_app_views.rb +5 -0
- data/spec/rails/templates/class_loading_system_spec/lib/views/lib_widget.rb +5 -0
- data/spec/rails/templates/complex_helpers_system_spec/app/controllers/complex_helpers_system_spec_controller.rb +14 -0
- data/spec/rails/templates/complex_helpers_system_spec/app/views/complex_helpers_system_spec/cache_test.rb +12 -0
- data/spec/rails/templates/complex_helpers_system_spec/app/views/complex_helpers_system_spec/fields_for_test.rb +14 -0
- data/spec/rails/templates/complex_helpers_system_spec/app/views/complex_helpers_system_spec/form_for_test.rb +14 -0
- data/spec/rails/templates/complex_helpers_system_spec/config/environments/development.rb +31 -0
- data/spec/rails/templates/data_passing_system_spec/app/controllers/data_passing_system_spec_controller.rb +101 -0
- data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/_erb_to_parallel_widget_handoff_erb.html.erb +3 -0
- data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/_implicit_erb_to_widget_handoff_erb.html.erb +3 -0
- data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/_implicit_variable_write_erb.html.erb +1 -0
- data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/_widget_to_parallel_erb_handoff_erb.html.erb +1 -0
- data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/erb_copied_variables.html.erb +1 -0
- data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/erb_to_parallel_widget_handoff.html.erb +2 -0
- data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/erb_to_parallel_widget_handoff_widget.rb +5 -0
- data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/explicit_controller_variable_read.rb +6 -0
- data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/extra_variables.rb +23 -0
- data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/extra_variables_requested.rb +24 -0
- data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/implicit_erb_to_widget_handoff.html.erb +2 -0
- data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/implicit_erb_to_widget_handoff_widget.rb +7 -0
- data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/implicit_shared_variable_access.rb +5 -0
- data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/implicit_shared_variable_access_inheritance.rb +6 -0
- data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/implicit_shared_variable_access_inheritance_child_one.rb +7 -0
- data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/implicit_shared_variable_access_inheritance_child_two.rb +5 -0
- data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/implicit_shared_variable_access_inheritance_parent.rb +3 -0
- data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/implicit_shared_variable_access_inner.rb +8 -0
- data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/implicit_variable_read.rb +5 -0
- data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/implicit_variable_read_inner.rb +7 -0
- data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/implicit_variable_write.html.erb +2 -0
- data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/implicit_variable_write_widget.rb +7 -0
- data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/parent_to_child_passing.rb +7 -0
- data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/parent_to_child_passing_child.rb +7 -0
- data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/parent_to_child_passing_partial.rb +7 -0
- data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/parent_to_child_passing_partial_child.rb +7 -0
- data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/passing_data_widget.rb +8 -0
- data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/passing_locals_and_controller_variables_widget.rb +9 -0
- data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/passing_locals_widget.rb +8 -0
- data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/variables_to_layout.rb +7 -0
- data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/widget_copied_variables.rb +9 -0
- data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/widget_to_parallel_erb_handoff.html.erb +2 -0
- data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/widget_to_parallel_erb_handoff_widget.rb +5 -0
- data/spec/rails/templates/data_passing_system_spec/app/views/layouts/data_layout.rb +14 -0
- data/spec/rails/templates/default_layout_system_spec/app/controllers/default_layout_system_spec_controller.rb +9 -0
- data/spec/rails/templates/default_layout_system_spec/app/views/default_layout_system_spec/erb_with_widget_default_layout.html.erb +1 -0
- data/spec/rails/templates/default_layout_system_spec/app/views/default_layout_system_spec/widget_with_widget_default_layout.rb +5 -0
- data/spec/rails/templates/default_layout_system_spec/app/views/layouts/application.rb +12 -0
- data/spec/rails/templates/development_mode_system_spec/app/controllers/development_mode_system_spec_controller.rb +9 -0
- data/spec/rails/templates/development_mode_system_spec/app/views/development_mode_system_spec/reload_widget.rb +7 -0
- data/spec/rails/templates/development_mode_system_spec/app/views/development_mode_system_spec/sample_output.rb +9 -0
- data/spec/rails/templates/erb_integration_system_spec/app/controllers/erb_integration_system_spec_controller.rb +10 -0
- data/spec/rails/templates/erb_integration_system_spec/app/views/erb_integration_system_spec/_erb_partial_from_widget_partial.html.erb +1 -0
- data/spec/rails/templates/erb_integration_system_spec/app/views/erb_integration_system_spec/_fortitude_partial_with_underscore_partial.rb +5 -0
- data/spec/rails/templates/erb_integration_system_spec/app/views/erb_integration_system_spec/_prefers_erb_partial_partial.html.erb +1 -0
- data/spec/rails/templates/erb_integration_system_spec/app/views/erb_integration_system_spec/erb_partial_from_widget.rb +7 -0
- data/spec/rails/templates/erb_integration_system_spec/app/views/erb_integration_system_spec/erb_to_widget_with_render_partial.html.erb +3 -0
- data/spec/rails/templates/erb_integration_system_spec/app/views/erb_integration_system_spec/erb_to_widget_with_render_partial_widget.rb +5 -0
- data/spec/rails/templates/erb_integration_system_spec/app/views/erb_integration_system_spec/fortitude_partial_with_underscore.html.erb +3 -0
- data/spec/rails/templates/erb_integration_system_spec/app/views/erb_integration_system_spec/prefers_erb_partial.html.erb +3 -0
- data/spec/rails/templates/erb_integration_system_spec/app/views/erb_integration_system_spec/prefers_erb_partial_partial.rb +5 -0
- data/spec/rails/templates/helpers_include_all_off_system_spec/app/controllers/helpers_include_all_off_system_spec_controller.rb +13 -0
- data/spec/rails/templates/helpers_include_all_off_system_spec/app/helpers/application_helper.rb +5 -0
- data/spec/rails/templates/helpers_include_all_off_system_spec/app/helpers/some_helper.rb +5 -0
- data/spec/rails/templates/helpers_include_all_off_system_spec/app/views/helpers_include_all_off_system_spec/include_all_off.rb +23 -0
- data/spec/rails/templates/helpers_include_all_off_system_spec/config/application.rb +28 -0
- data/spec/rails/templates/helpers_system_spec/app/controllers/helpers_system_spec_controller.rb +86 -0
- data/spec/rails/templates/helpers_system_spec/app/helpers/some_helper.rb +21 -0
- data/spec/rails/templates/helpers_system_spec/app/views/helpers_system_spec/automatic_helpers_disabled.rb +37 -0
- data/spec/rails/templates/helpers_system_spec/app/views/helpers_system_spec/automatic_helpers_inheritance.rb +6 -0
- data/spec/rails/templates/helpers_system_spec/app/views/helpers_system_spec/automatic_helpers_inheritance_child_one.rb +34 -0
- data/spec/rails/templates/helpers_system_spec/app/views/helpers_system_spec/automatic_helpers_inheritance_child_two.rb +36 -0
- data/spec/rails/templates/helpers_system_spec/app/views/helpers_system_spec/automatic_helpers_inheritance_parent.rb +4 -0
- data/spec/rails/templates/helpers_system_spec/app/views/helpers_system_spec/basic_helpers.rb +13 -0
- data/spec/rails/templates/helpers_system_spec/app/views/helpers_system_spec/block_helpers.rb +7 -0
- data/spec/rails/templates/helpers_system_spec/app/views/helpers_system_spec/built_in_outputting_helpers.rb +13 -0
- data/spec/rails/templates/helpers_system_spec/app/views/helpers_system_spec/built_in_outputting_to_returning.rb +8 -0
- data/spec/rails/templates/helpers_system_spec/app/views/helpers_system_spec/built_in_returning_to_outputting.rb +10 -0
- data/spec/rails/templates/helpers_system_spec/app/views/helpers_system_spec/controller_helper_method.rb +5 -0
- data/spec/rails/templates/helpers_system_spec/app/views/helpers_system_spec/controller_helper_module.rb +5 -0
- data/spec/rails/templates/helpers_system_spec/app/views/helpers_system_spec/custom_helper_outputs.rb +6 -0
- data/spec/rails/templates/helpers_system_spec/app/views/helpers_system_spec/custom_helpers_basic.rb +5 -0
- data/spec/rails/templates/helpers_system_spec/app/views/helpers_system_spec/custom_helpers_with_a_block.rb +6 -0
- data/spec/rails/templates/helpers_system_spec/app/views/helpers_system_spec/custom_outputting_to_returning.rb +7 -0
- data/spec/rails/templates/helpers_system_spec/app/views/helpers_system_spec/custom_returning_to_outputting.rb +10 -0
- data/spec/rails/templates/helpers_system_spec/app/views/helpers_system_spec/helper_settings_inheritance.rb +10 -0
- data/spec/rails/templates/helpers_system_spec/app/views/helpers_system_spec/helper_settings_inheritance_parent.rb +4 -0
- data/spec/rails/templates/helpers_system_spec/app/views/helpers_system_spec/helpers_that_output_when_refined.rb +9 -0
- data/spec/rails/templates/helpers_system_spec/app/views/helpers_system_spec/private_helper_erb.html.erb +1 -0
- data/spec/rails/templates/helpers_system_spec/app/views/helpers_system_spec/private_helper_fortitude.rb +5 -0
- data/spec/rails/templates/helpers_system_spec/lib/some_stuff.rb +5 -0
- data/spec/rails/templates/helpers_unrefined_system_spec/app/controllers/helpers_unrefined_system_spec_controller.rb +7 -0
- data/spec/rails/templates/helpers_unrefined_system_spec/app/views/helpers_unrefined_system_spec/helpers_that_output_when_refined.rb +9 -0
- data/spec/rails/templates/helpers_unrefined_system_spec/config/environments/production.rb +31 -0
- data/spec/rails/templates/layouts_system_spec/app/controllers/layouts_system_spec_controller.rb +31 -0
- data/spec/rails/templates/layouts_system_spec/app/views/layouts/alternate.html.erb +11 -0
- data/spec/rails/templates/layouts_system_spec/app/views/layouts/application.html.erb +26 -0
- data/spec/rails/templates/layouts_system_spec/app/views/layouts/explicit_yield.rb +12 -0
- data/spec/rails/templates/layouts_system_spec/app/views/layouts/widget_layout.rb +22 -0
- data/spec/rails/templates/layouts_system_spec/app/views/layouts_system_spec/erb_inside_widget_layout.html.erb +8 -0
- data/spec/rails/templates/layouts_system_spec/app/views/layouts_system_spec/the_render_widget.rb +5 -0
- data/spec/rails/templates/layouts_system_spec/app/views/layouts_system_spec/widget_inside_erb_layout.rb +8 -0
- data/spec/rails/templates/layouts_system_spec/app/views/layouts_system_spec/widget_inside_widget_layout.rb +8 -0
- data/spec/rails/templates/layouts_system_spec/app/views/layouts_system_spec/yield_from_widget_explicitly.rb +5 -0
- data/spec/rails/templates/localization_system_spec/app/controllers/localization_system_spec_controller.rb +31 -0
- data/spec/rails/templates/localization_system_spec/app/views/localization_system_spec/content_method.rb +13 -0
- data/spec/rails/templates/localization_system_spec/app/views/localization_system_spec/dot_notation.rb +5 -0
- data/spec/rails/templates/localization_system_spec/app/views/localization_system_spec/explicit_html.rb +13 -0
- data/spec/rails/templates/localization_system_spec/app/views/localization_system_spec/i18n_t.rb +5 -0
- data/spec/rails/templates/localization_system_spec/app/views/localization_system_spec/native_support.rb +7 -0
- data/spec/rails/templates/localization_system_spec/app/views/localization_system_spec/readjust_base.rb +7 -0
- data/spec/rails/templates/localization_system_spec/app/views/localization_system_spec/t.rb +5 -0
- data/spec/rails/templates/localization_system_spec/config/locales/en.yml +21 -0
- data/spec/rails/templates/localization_system_spec/config/locales/fr.yml +14 -0
- data/spec/rails/templates/localization_system_spec/config/locales/pt.yml +2 -0
- data/spec/rails/templates/production_mode_system_spec/app/controllers/production_mode_system_spec_controller.rb +5 -0
- data/spec/rails/templates/production_mode_system_spec/app/views/production_mode_system_spec/sample_output.rb +9 -0
- data/spec/rails/templates/rendering_context_system_spec/app/controllers/rendering_context_system_spec_controller.rb +72 -0
- data/spec/rails/templates/rendering_context_system_spec/app/views/rendering_context_system_spec/_start_end_widget_through_partials_partial.html.erb +1 -0
- 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
- data/spec/rails/templates/rendering_context_system_spec/app/views/rendering_context_system_spec/_uses_specified_context_through_nesting_partial.html.erb +2 -0
- data/spec/rails/templates/rendering_context_system_spec/app/views/rendering_context_system_spec/render_widget.rb +5 -0
- data/spec/rails/templates/rendering_context_system_spec/app/views/rendering_context_system_spec/start_end_widget_basic.rb +12 -0
- data/spec/rails/templates/rendering_context_system_spec/app/views/rendering_context_system_spec/start_end_widget_basic_inner.rb +7 -0
- data/spec/rails/templates/rendering_context_system_spec/app/views/rendering_context_system_spec/start_end_widget_through_partials.rb +16 -0
- data/spec/rails/templates/rendering_context_system_spec/app/views/rendering_context_system_spec/start_end_widget_through_partials_partial_widget.rb +7 -0
- data/spec/rails/templates/rendering_context_system_spec/app/views/rendering_context_system_spec/uses_direct_context_for_all_widgets.rb +7 -0
- data/spec/rails/templates/rendering_context_system_spec/app/views/rendering_context_system_spec/uses_direct_context_for_all_widgets_widget.rb +5 -0
- data/spec/rails/templates/rendering_context_system_spec/app/views/rendering_context_system_spec/uses_direct_context_in_view.rb +5 -0
- data/spec/rails/templates/rendering_context_system_spec/app/views/rendering_context_system_spec/uses_specified_context_in_partials.html.erb +3 -0
- data/spec/rails/templates/rendering_context_system_spec/app/views/rendering_context_system_spec/uses_specified_context_in_partials_partial.rb +5 -0
- data/spec/rails/templates/rendering_context_system_spec/app/views/rendering_context_system_spec/uses_specified_context_in_view.rb +5 -0
- data/spec/rails/templates/rendering_context_system_spec/app/views/rendering_context_system_spec/uses_specified_context_through_nesting.rb +6 -0
- data/spec/rails/templates/rendering_context_system_spec/app/views/rendering_context_system_spec/uses_specified_context_through_nesting_inner_partial.rb +5 -0
- data/spec/rails/templates/rendering_context_system_spec/lib/simple_rc.rb +17 -0
- data/spec/rails/templates/rendering_system_spec/app/controllers/rendering_system_spec_controller.rb +111 -0
- data/spec/rails/templates/rendering_system_spec/app/views/layouts/application.html.erb +19 -0
- data/spec/rails/templates/rendering_system_spec/app/views/rendering_system_spec/_layout_for_partial.html.erb +3 -0
- data/spec/rails/templates/rendering_system_spec/app/views/rendering_system_spec/_the_partial.html.erb +1 -0
- data/spec/rails/templates/rendering_system_spec/app/views/rendering_system_spec/partial_with_layout.rb +5 -0
- data/spec/rails/templates/rendering_system_spec/app/views/rendering_system_spec/render_collection.html.erb +3 -0
- data/spec/rails/templates/rendering_system_spec/app/views/rendering_system_spec/render_collection_as.html.erb +3 -0
- data/spec/rails/templates/rendering_system_spec/app/views/rendering_system_spec/render_file_from_widget.rb +7 -0
- data/spec/rails/templates/rendering_system_spec/app/views/rendering_system_spec/render_html_safe_strings.rb +16 -0
- data/spec/rails/templates/rendering_system_spec/app/views/rendering_system_spec/render_inline_from_widget.rb +11 -0
- data/spec/rails/templates/rendering_system_spec/app/views/rendering_system_spec/render_object.html.erb +3 -0
- data/spec/rails/templates/rendering_system_spec/app/views/rendering_system_spec/render_partial_from_widget.rb +7 -0
- data/spec/rails/templates/rendering_system_spec/app/views/rendering_system_spec/render_partial_with_layout.html.erb +3 -0
- data/spec/rails/templates/rendering_system_spec/app/views/rendering_system_spec/render_partial_with_widget_layout.html.erb +3 -0
- data/spec/rails/templates/rendering_system_spec/app/views/rendering_system_spec/render_template_from_widget.rb +7 -0
- data/spec/rails/templates/rendering_system_spec/app/views/rendering_system_spec/render_text_from_widget.rb +7 -0
- data/spec/rails/templates/rendering_system_spec/app/views/rendering_system_spec/stream_widget.rb +13 -0
- data/spec/rails/templates/rendering_system_spec/app/views/rendering_system_spec/trivial_widget.rb +5 -0
- data/spec/rails/templates/rendering_system_spec/app/views/rendering_system_spec/widget_layout_for_partial.rb +7 -0
- data/spec/rails/templates/rendering_system_spec/app/views/rendering_system_spec/widget_with_name.rb +7 -0
- data/spec/rails/templates/rendering_system_spec/app/views/rendering_system_spec/word.rb +7 -0
- data/spec/rails/templates/rendering_system_spec/app/views/widget_to_render.rb +7 -0
- data/spec/rails/templates/rules_system_spec/app/controllers/rules_system_spec_controller.rb +22 -0
- data/spec/rails/templates/rules_system_spec/app/views/layouts/fortitude_layout_with_p.rb +19 -0
- data/spec/rails/templates/rules_system_spec/app/views/rules_system_spec/_intervening_partial_erb_partial.html.erb +1 -0
- data/spec/rails/templates/rules_system_spec/app/views/rules_system_spec/intervening_partial.rb +9 -0
- data/spec/rails/templates/rules_system_spec/app/views/rules_system_spec/intervening_partial_fortitude_partial.rb +9 -0
- data/spec/rails/templates/rules_system_spec/app/views/rules_system_spec/invalid_start_tag_in_partial.html.erb +3 -0
- data/spec/rails/templates/rules_system_spec/app/views/rules_system_spec/invalid_start_tag_in_partial_partial.rb +9 -0
- data/spec/rails/templates/rules_system_spec/app/views/rules_system_spec/invalid_start_tag_in_view.rb +9 -0
- data/spec/rails/templates/rules_system_spec/app/views/rules_system_spec/invalidly_nested_tag.rb +11 -0
- data/spec/rails/templates/rules_system_spec/app/views/rules_system_spec/invalidly_nested_tag_in_partial.html.erb +3 -0
- data/spec/rails/templates/rules_system_spec/app/views/rules_system_spec/invalidly_nested_tag_in_partial_partial.rb +11 -0
- data/spec/rails/templates/static_method_system_spec/app/controllers/static_method_system_spec_controller.rb +15 -0
- data/spec/rails/templates/static_method_system_spec/app/helpers/some_helper.rb +10 -0
- data/spec/rails/templates/static_method_system_spec/app/views/static_method_system_spec/allows_helper_access.rb +8 -0
- data/spec/rails/templates/static_method_system_spec/app/views/static_method_system_spec/localization.rb +7 -0
- data/spec/rails/templates/static_method_system_spec/config/locales/en.yml +4 -0
- data/spec/rails/templates/static_method_system_spec/config/locales/fr.yml +4 -0
- data/spec/system/around_content_system_spec.rb +399 -0
- data/spec/system/assigns_system_spec.rb +316 -0
- data/spec/system/attribute_rules_system_spec.rb +227 -0
- data/spec/system/basic_system_spec.rb +9 -0
- data/spec/system/content_inheritance_system_spec.rb +13 -0
- data/spec/system/convenience_methods_system_spec.rb +30 -0
- data/spec/system/doctypes_system_spec.rb +213 -0
- data/spec/system/erector_compatibility_system_spec.rb +84 -0
- data/spec/system/escaping_system_spec.rb +43 -0
- data/spec/system/formatting_system_spec.rb +63 -0
- data/spec/system/helpers_system_spec.rb +235 -0
- data/spec/system/id_uniqueness_system_spec.rb +205 -0
- data/spec/system/localization_system_spec.rb +94 -0
- data/spec/system/method_precedence_system_spec.rb +48 -0
- data/spec/system/needs_system_spec.rb +368 -0
- data/spec/system/other_outputters_system_spec.rb +117 -0
- data/spec/system/rails_not_available_spec.rb +11 -0
- data/spec/system/rebuild_notifications_system_spec.rb +208 -0
- data/spec/system/rendering_context_system_spec.rb +83 -0
- data/spec/system/setting_inheritance_system_spec.rb +585 -0
- data/spec/system/shared_variable_system_spec.rb +120 -0
- data/spec/system/start_end_comments_system_spec.rb +363 -0
- data/spec/system/static_method_system_spec.rb +348 -0
- data/spec/system/tag_rendering_system_spec.rb +253 -0
- data/spec/system/tag_return_value_system_spec.rb +41 -0
- data/spec/system/tag_rules_system_spec.rb +196 -0
- data/spec/system/tag_updating_system_spec.rb +171 -0
- data/spec/system/tilt_system_spec.rb +378 -0
- data/spec/system/unparsed_data_system_spec.rb +16 -0
- data/spec/system/void_tags_system_spec.rb +51 -0
- data/spec/system/widget_return_values_system_spec.rb +89 -0
- 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
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
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>` — 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 — 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 —
|
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 — 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 — 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 — 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) — 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` — 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 — 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
|
+
}
|