fortitude 0.0.4-java
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 +50 -0
- data/CHANGES.md +62 -0
- data/CONTRIBUTORS.md +6 -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 +42 -0
- data/lib/fortitude.rb +7 -0
- data/lib/fortitude/doctypes.rb +48 -0
- data/lib/fortitude/doctypes/base.rb +42 -0
- data/lib/fortitude/doctypes/html4.rb +21 -0
- data/lib/fortitude/doctypes/html4_frameset.rb +20 -0
- data/lib/fortitude/doctypes/html4_strict.rb +18 -0
- data/lib/fortitude/doctypes/html4_tags_frameset.rb +53 -0
- data/lib/fortitude/doctypes/html4_tags_strict.rb +274 -0
- data/lib/fortitude/doctypes/html4_tags_transitional.rb +115 -0
- data/lib/fortitude/doctypes/html4_transitional.rb +19 -0
- data/lib/fortitude/doctypes/html5.rb +373 -0
- data/lib/fortitude/doctypes/unknown_doctype.rb +20 -0
- data/lib/fortitude/doctypes/xhtml10.rb +20 -0
- data/lib/fortitude/doctypes/xhtml10_frameset.rb +18 -0
- data/lib/fortitude/doctypes/xhtml10_strict.rb +18 -0
- data/lib/fortitude/doctypes/xhtml10_transitional.rb +18 -0
- data/lib/fortitude/doctypes/xhtml11.rb +30 -0
- data/lib/fortitude/errors.rb +153 -0
- data/lib/fortitude/extensions/fortitude_ruby_ext.rb +76 -0
- data/lib/fortitude/extensions/native_extensions.rb +33 -0
- data/lib/fortitude/method_templates/assign_locals_from_template.rb.smpl +22 -0
- data/lib/fortitude/method_templates/need_assignment_template.rb.smpl +16 -0
- data/lib/fortitude/method_templates/need_method_template.rb.smpl +4 -0
- data/lib/fortitude/method_templates/simple_template.rb +50 -0
- data/lib/fortitude/method_templates/tag_method_template.rb.smpl +68 -0
- data/lib/fortitude/method_templates/text_method_template.rb.smpl +17 -0
- data/lib/fortitude/rails.rb +26 -0
- data/lib/fortitude/rails/helpers.rb +153 -0
- data/lib/fortitude/rails/railtie.rb +256 -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 +13 -0
- data/lib/fortitude/rails/yielded_object_outputter.rb +31 -0
- data/lib/fortitude/rendering_context.rb +205 -0
- data/lib/fortitude/support/assigns_proxy.rb +77 -0
- data/lib/fortitude/support/class_inheritable_attributes.rb +98 -0
- data/lib/fortitude/support/instance_variable_set.rb +76 -0
- data/lib/fortitude/support/staticized_method.rb +87 -0
- data/lib/fortitude/tags/partial_tag_placeholder.rb +19 -0
- data/lib/fortitude/tags/tag.rb +189 -0
- data/lib/fortitude/tags/tag_return_value.rb +13 -0
- data/lib/fortitude/tags/tag_store.rb +53 -0
- data/lib/fortitude/tags/tag_support.rb +51 -0
- data/lib/fortitude/tags/tags_module.rb +16 -0
- data/lib/fortitude/tilt.rb +17 -0
- data/lib/fortitude/tilt/fortitude_template.rb +169 -0
- data/lib/fortitude/version.rb +3 -0
- data/lib/fortitude/widget.rb +54 -0
- data/lib/fortitude/widget/around_content.rb +53 -0
- data/lib/fortitude/widget/capturing.rb +37 -0
- data/lib/fortitude/widget/content.rb +61 -0
- data/lib/fortitude/widget/doctypes.rb +53 -0
- data/lib/fortitude/widget/helpers.rb +62 -0
- data/lib/fortitude/widget/integration.rb +76 -0
- data/lib/fortitude/widget/localization.rb +63 -0
- data/lib/fortitude/widget/modules_and_subclasses.rb +58 -0
- data/lib/fortitude/widget/needs.rb +164 -0
- data/lib/fortitude/widget/non_rails_widget_methods.rb +13 -0
- data/lib/fortitude/widget/rendering.rb +98 -0
- data/lib/fortitude/widget/start_and_end_comments.rb +69 -0
- data/lib/fortitude/widget/staticization.rb +50 -0
- data/lib/fortitude/widget/tag_like_methods.rb +102 -0
- data/lib/fortitude/widget/tags.rb +55 -0
- data/lib/fortitude/widget/temporary_overrides.rb +28 -0
- data/lib/fortitude/widget/widget_class_inheritable_attributes.rb +35 -0
- data/lib/fortitude/widgets.rb +12 -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_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 +228 -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/inline_system_spec.rb +58 -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 +381 -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 +260 -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 +382 -0
- data/spec/system/unparsed_data_system_spec.rb +16 -0
- data/spec/system/void_tags_system_spec.rb +90 -0
- data/spec/system/widget_return_values_system_spec.rb +107 -0
- metadata +759 -0
@@ -0,0 +1,43 @@
|
|
1
|
+
require 'fortitude/rendering_context'
|
2
|
+
|
3
|
+
::ActiveSupport::SafeBuffer.class_eval do
|
4
|
+
alias_method :fortitude_concat, :original_concat
|
5
|
+
public :fortitude_concat
|
6
|
+
end
|
7
|
+
|
8
|
+
module Fortitude
|
9
|
+
module Rails
|
10
|
+
class Renderer
|
11
|
+
class << self
|
12
|
+
# TODO: Refactor this and render :widget => ... support into one method somewhere.
|
13
|
+
def render(widget_class, template_handler, local_assigns, &block)
|
14
|
+
total_assigns = template_handler.assigns.symbolize_keys.merge(local_assigns.symbolize_keys)
|
15
|
+
|
16
|
+
needed_assigns = if widget_class.extra_assigns == :use
|
17
|
+
total_assigns
|
18
|
+
else
|
19
|
+
widget_class.extract_needed_assigns_from(total_assigns)
|
20
|
+
end
|
21
|
+
|
22
|
+
widget = widget_class.new(needed_assigns)
|
23
|
+
template_handler.with_output_buffer do
|
24
|
+
rendering_context_options = { :delegate_object => template_handler, :yield_block => block }
|
25
|
+
controller = template_handler.controller
|
26
|
+
rendering_context = controller.fortitude_rendering_context(rendering_context_options)
|
27
|
+
|
28
|
+
# TODO: Refactor this -- both passing it into the constructor and setting yield_block here is gross.
|
29
|
+
#
|
30
|
+
# We need to call #with_yield_block here, because we can actually be invoked with different yield blocks
|
31
|
+
# in the case of "partial layouts" (which most people probably don't even realize exist); we use the same
|
32
|
+
# RC for both the initial view rendering and for the partial layout, but they need different yield blocks.
|
33
|
+
# Yuck, but this does the job.
|
34
|
+
rendering_context.with_yield_block(block) do
|
35
|
+
widget.render_to(rendering_context)
|
36
|
+
end
|
37
|
+
rendering_context.flush!
|
38
|
+
end
|
39
|
+
end
|
40
|
+
end
|
41
|
+
end
|
42
|
+
end
|
43
|
+
end
|
@@ -0,0 +1,23 @@
|
|
1
|
+
require 'fortitude/rails/renderer'
|
2
|
+
|
3
|
+
module Fortitude
|
4
|
+
module Rails
|
5
|
+
class TemplateHandler
|
6
|
+
def call(template, &block)
|
7
|
+
require_dependency template.identifier
|
8
|
+
widget_class_name = "views/#{template.identifier =~ %r(views/([^.]*)(\..*)?\.rb) && $1}".camelize
|
9
|
+
is_partial = File.basename(template.identifier) =~ /^_/
|
10
|
+
|
11
|
+
<<-SRC
|
12
|
+
Fortitude::Rails::Renderer.render(#{widget_class_name}, self, local_assigns) { |*args| yield *args }
|
13
|
+
SRC
|
14
|
+
end
|
15
|
+
|
16
|
+
def supports_streaming?
|
17
|
+
true
|
18
|
+
end
|
19
|
+
end
|
20
|
+
end
|
21
|
+
end
|
22
|
+
|
23
|
+
ActionView::Template.register_template_handler :rb, Fortitude::Rails::TemplateHandler.new
|
@@ -0,0 +1,31 @@
|
|
1
|
+
module Fortitude
|
2
|
+
module Rails
|
3
|
+
YIELDED_OBJECT_OUTPUTTER_SUPERCLASS = if defined?(::BasicObject) then ::BasicObject else ::Object end
|
4
|
+
class YieldedObjectOutputter < YIELDED_OBJECT_OUTPUTTER_SUPERCLASS
|
5
|
+
def initialize(widget, yielded_object, method_names)
|
6
|
+
@widget = widget
|
7
|
+
@yielded_object = yielded_object
|
8
|
+
@method_names_hash = { }
|
9
|
+
method_names.each do |method_name|
|
10
|
+
@method_names_hash[method_name.to_sym] = true
|
11
|
+
end
|
12
|
+
end
|
13
|
+
|
14
|
+
EMPTY_RETURN_VALUE = ''.freeze
|
15
|
+
|
16
|
+
def method_missing(method_name, *args, &block)
|
17
|
+
return_value = @yielded_object.send(method_name, *args, &block)
|
18
|
+
if @method_names_hash[method_name.to_sym]
|
19
|
+
@widget.rawtext(return_value)
|
20
|
+
EMPTY_RETURN_VALUE
|
21
|
+
else
|
22
|
+
return_value
|
23
|
+
end
|
24
|
+
end
|
25
|
+
|
26
|
+
def respond_to?(symbol, include_all = false)
|
27
|
+
@yielded_object.respond_to?(symbol, include_all)
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
31
|
+
end
|
@@ -0,0 +1,205 @@
|
|
1
|
+
require 'fortitude/support/instance_variable_set'
|
2
|
+
|
3
|
+
module Fortitude
|
4
|
+
class RenderingContext
|
5
|
+
attr_reader :output_buffer_holder, :instance_variable_set, :helpers_object
|
6
|
+
|
7
|
+
def initialize(options)
|
8
|
+
options.assert_valid_keys(:delegate_object, :output_buffer_holder, :helpers_object, :instance_variables_object,
|
9
|
+
:yield_block, :render_yield_result)
|
10
|
+
|
11
|
+
@output_buffer_holder = options[:output_buffer_holder]
|
12
|
+
if (! @output_buffer_holder) && options[:delegate_object] && options[:delegate_object].respond_to?(:output_buffer)
|
13
|
+
@output_buffer_holder = options[:delegate_object]
|
14
|
+
end
|
15
|
+
@output_buffer_holder ||= OutputBufferHolder.new
|
16
|
+
@helpers_object = options[:helpers_object] || options[:delegate_object] || Object.new
|
17
|
+
|
18
|
+
instance_variables_object = options[:instance_variables_object] || options[:delegate_object] || Object.new
|
19
|
+
@instance_variable_set = Fortitude::Support::InstanceVariableSet.new(instance_variables_object)
|
20
|
+
|
21
|
+
@render_yield_result = true unless options.has_key?(:render_yield_result) && (! options[:render_yield_result])
|
22
|
+
|
23
|
+
@indent = 0
|
24
|
+
@newline_needed = false
|
25
|
+
@have_output = false
|
26
|
+
@indenting_disabled = false
|
27
|
+
|
28
|
+
@current_element_nesting = [ ]
|
29
|
+
@current_widget_nesting = [ ]
|
30
|
+
@ids_used = { }
|
31
|
+
|
32
|
+
@yield_block = options[:yield_block]
|
33
|
+
end
|
34
|
+
|
35
|
+
def with_element_nesting_validation(value)
|
36
|
+
old_value = @element_nesting_validation_disabled
|
37
|
+
@element_nesting_validation_disabled = !value
|
38
|
+
begin
|
39
|
+
yield
|
40
|
+
ensure
|
41
|
+
@element_nesting_validation_disabled = old_value
|
42
|
+
end
|
43
|
+
end
|
44
|
+
|
45
|
+
def with_attribute_validation(value)
|
46
|
+
old_value = @attribute_validation_disabled
|
47
|
+
@attribute_validation_disabled = !value
|
48
|
+
begin
|
49
|
+
yield
|
50
|
+
ensure
|
51
|
+
@attribute_validation_disabled = old_value
|
52
|
+
end
|
53
|
+
end
|
54
|
+
|
55
|
+
def with_id_uniqueness(value)
|
56
|
+
old_value = @id_uniqueness_disabled
|
57
|
+
@id_uniqueness_disabled = !value
|
58
|
+
begin
|
59
|
+
yield
|
60
|
+
ensure
|
61
|
+
@id_uniqueness_disabled = old_value
|
62
|
+
end
|
63
|
+
end
|
64
|
+
|
65
|
+
def attribute_validation_disabled?
|
66
|
+
!! @attribute_validation_disabled
|
67
|
+
end
|
68
|
+
|
69
|
+
def record_widget(widget)
|
70
|
+
start_widget!(widget)
|
71
|
+
@current_widget_nesting << widget
|
72
|
+
begin
|
73
|
+
yield
|
74
|
+
ensure
|
75
|
+
last = @current_widget_nesting.pop
|
76
|
+
unless last.equal?(widget)
|
77
|
+
raise "Something horrible happened -- the last widget we started was #{last}, but now we're ending #{widget}?!?"
|
78
|
+
end
|
79
|
+
end_widget!(widget)
|
80
|
+
end
|
81
|
+
end
|
82
|
+
|
83
|
+
def start_widget!(widget)
|
84
|
+
# nothing here
|
85
|
+
end
|
86
|
+
|
87
|
+
def end_widget!(widget)
|
88
|
+
# nothing here
|
89
|
+
end
|
90
|
+
|
91
|
+
def current_widget_depth
|
92
|
+
@current_widget_nesting.length - 1
|
93
|
+
end
|
94
|
+
|
95
|
+
def record_tag(widget, tag_object)
|
96
|
+
validate_element_for_rules(widget, tag_object)
|
97
|
+
@current_element_nesting << tag_object
|
98
|
+
|
99
|
+
begin
|
100
|
+
yield
|
101
|
+
ensure
|
102
|
+
last = @current_element_nesting.pop
|
103
|
+
unless last.equal?(tag_object)
|
104
|
+
raise "Something horrible happened -- the last tag we started was #{last}, but now we're ending #{tag_object}?!?"
|
105
|
+
end
|
106
|
+
end
|
107
|
+
end
|
108
|
+
|
109
|
+
def format_output?
|
110
|
+
true
|
111
|
+
end
|
112
|
+
|
113
|
+
def increase_indent!
|
114
|
+
@indent += 1
|
115
|
+
end
|
116
|
+
|
117
|
+
def decrease_indent!
|
118
|
+
@indent -= 1
|
119
|
+
end
|
120
|
+
|
121
|
+
def needs_newline!
|
122
|
+
@newline_needed = true
|
123
|
+
end
|
124
|
+
|
125
|
+
def current_indent
|
126
|
+
(" " * @indent).freeze
|
127
|
+
end
|
128
|
+
|
129
|
+
def with_indenting_disabled
|
130
|
+
old_indenting_disabled = @indenting_disabled
|
131
|
+
@indenting_disabled = true
|
132
|
+
begin
|
133
|
+
yield
|
134
|
+
ensure
|
135
|
+
@indenting_disabled = old_indenting_disabled
|
136
|
+
end
|
137
|
+
end
|
138
|
+
|
139
|
+
def about_to_output_non_whitespace!
|
140
|
+
if @newline_needed
|
141
|
+
if @have_output
|
142
|
+
o = @output_buffer_holder.output_buffer
|
143
|
+
o.original_concat(NEWLINE)
|
144
|
+
o.original_concat(current_indent) unless @indenting_disabled
|
145
|
+
end
|
146
|
+
|
147
|
+
@newline_needed = false
|
148
|
+
end
|
149
|
+
|
150
|
+
@have_output = true
|
151
|
+
end
|
152
|
+
|
153
|
+
def with_yield_block(new_yield_block)
|
154
|
+
old_yield_block, @yield_block = @yield_block, new_yield_block
|
155
|
+
begin
|
156
|
+
yield
|
157
|
+
ensure
|
158
|
+
@yield_block = old_yield_block
|
159
|
+
end
|
160
|
+
end
|
161
|
+
|
162
|
+
NEWLINE = "\n"
|
163
|
+
|
164
|
+
def yield_from_widget(*args)
|
165
|
+
raise "No layout to yield to!" unless @yield_block
|
166
|
+
result = @yield_block.call(*args)
|
167
|
+
@output_buffer_holder.output_buffer << result if @render_yield_result
|
168
|
+
result
|
169
|
+
end
|
170
|
+
|
171
|
+
def flush!
|
172
|
+
# nothing here right now
|
173
|
+
end
|
174
|
+
|
175
|
+
def validate_id_uniqueness(widget, tag_name, id)
|
176
|
+
id = id.to_s
|
177
|
+
if @ids_used[id] && (! @id_uniqueness_disabled)
|
178
|
+
(already_used_widget, already_used_tag_name) = @ids_used[id]
|
179
|
+
raise Fortitude::Errors::DuplicateId.new(widget, id, already_used_widget, already_used_tag_name, tag_name)
|
180
|
+
else
|
181
|
+
@ids_used[id] = [ widget, tag_name ]
|
182
|
+
end
|
183
|
+
end
|
184
|
+
|
185
|
+
private
|
186
|
+
def validate_element_for_rules(widget, tag_object)
|
187
|
+
current = @current_element_nesting[-1]
|
188
|
+
current.validate_can_enclose!(widget, tag_object) if current && (! @element_nesting_validation_disabled)
|
189
|
+
end
|
190
|
+
|
191
|
+
class OutputBufferHolder
|
192
|
+
attr_accessor :output_buffer
|
193
|
+
|
194
|
+
def initialize
|
195
|
+
if defined?(::ActionView::OutputBuffer)
|
196
|
+
@output_buffer = ::ActionView::OutputBuffer.new
|
197
|
+
else
|
198
|
+
@output_buffer = ::ActiveSupport::SafeBuffer.new
|
199
|
+
end
|
200
|
+
|
201
|
+
@output_buffer.force_encoding(Encoding::UTF_8) if @output_buffer.respond_to?(:force_encoding)
|
202
|
+
end
|
203
|
+
end
|
204
|
+
end
|
205
|
+
end
|
@@ -0,0 +1,77 @@
|
|
1
|
+
require 'active_support/core_ext'
|
2
|
+
|
3
|
+
module Fortitude
|
4
|
+
module Support
|
5
|
+
class AssignsProxy
|
6
|
+
def initialize(widget, keys)
|
7
|
+
@widget = widget
|
8
|
+
@keys = { }
|
9
|
+
keys.each { |k| @keys[k] = true }
|
10
|
+
end
|
11
|
+
|
12
|
+
def is_default?(x)
|
13
|
+
!! @widget._fortitude_default_assigns[x.to_sym]
|
14
|
+
end
|
15
|
+
|
16
|
+
def keys
|
17
|
+
@keys.keys
|
18
|
+
end
|
19
|
+
|
20
|
+
def has_key?(x)
|
21
|
+
!! @keys[x.to_sym]
|
22
|
+
end
|
23
|
+
|
24
|
+
def [](x)
|
25
|
+
if has_key?(x)
|
26
|
+
ivar_name = @widget.class.instance_variable_name_for_need(x)
|
27
|
+
@widget.instance_variable_get(ivar_name)
|
28
|
+
end
|
29
|
+
end
|
30
|
+
|
31
|
+
def []=(x, y)
|
32
|
+
if has_key?(x)
|
33
|
+
ivar_name = @widget.class.instance_variable_name_for_need(x)
|
34
|
+
@widget.instance_variable_set(ivar_name, y)
|
35
|
+
end
|
36
|
+
end
|
37
|
+
|
38
|
+
def to_hash
|
39
|
+
out = { }
|
40
|
+
keys.each { |k| out[k] = self[k] }
|
41
|
+
out
|
42
|
+
end
|
43
|
+
|
44
|
+
def to_h
|
45
|
+
to_hash
|
46
|
+
end
|
47
|
+
|
48
|
+
def length
|
49
|
+
@keys.length
|
50
|
+
end
|
51
|
+
|
52
|
+
def size
|
53
|
+
@keys.size
|
54
|
+
end
|
55
|
+
|
56
|
+
def to_s
|
57
|
+
"<Assigns for #{@widget}: #{to_hash}>"
|
58
|
+
end
|
59
|
+
|
60
|
+
def inspect
|
61
|
+
"<Assigns for #{@widget}: #{to_hash.inspect}>"
|
62
|
+
end
|
63
|
+
|
64
|
+
def member?(x)
|
65
|
+
has_key?(x)
|
66
|
+
end
|
67
|
+
|
68
|
+
def store(key, value)
|
69
|
+
self[key] = value
|
70
|
+
end
|
71
|
+
|
72
|
+
delegate :==, :assoc, :each, :each_pair, :each_key, :each_value, :empty?, :eql?, :fetch, :flatten,
|
73
|
+
:has_value?, :hash, :include?, :invert, :key, :key?, :merge, :rassoc, :reject, :select,
|
74
|
+
:to_a, :value?, :values, :values_at, :to => :to_hash
|
75
|
+
end
|
76
|
+
end
|
77
|
+
end
|
@@ -0,0 +1,98 @@
|
|
1
|
+
require 'active_support'
|
2
|
+
require 'active_support/concern'
|
3
|
+
|
4
|
+
module Fortitude
|
5
|
+
module Support
|
6
|
+
module ClassInheritableAttributes
|
7
|
+
extend ActiveSupport::Concern
|
8
|
+
|
9
|
+
module ClassMethods
|
10
|
+
def _fortitude_invoke_class_inheritable_attribute(attribute_name, allowable_values, *args)
|
11
|
+
raise ArgumentError, "Invalid arguments: #{args.inspect}" if args.length > 1
|
12
|
+
instance_variable_name = "@_fortitude_#{attribute_name}"
|
13
|
+
if args.length == 0
|
14
|
+
_fortitude_read_class_inheritable_attribute(attribute_name, instance_variable_name, false)
|
15
|
+
else
|
16
|
+
_fortitude_write_class_inheritable_attribute(attribute_name, instance_variable_name, allowable_values, args[0])
|
17
|
+
end
|
18
|
+
end
|
19
|
+
|
20
|
+
def _fortitude_read_class_inheritable_attribute(attribute_name, instance_variable_name, allow_not_present)
|
21
|
+
return instance_variable_get(instance_variable_name) if instance_variable_defined?(instance_variable_name)
|
22
|
+
return superclass.send(attribute_name) if superclass.respond_to?(attribute_name)
|
23
|
+
|
24
|
+
if allow_not_present
|
25
|
+
:_fortitude_class_inheritable_attribute_not_present
|
26
|
+
else
|
27
|
+
raise "Fortitude class-inheritable attribute error: there should always be a declared value for #{attribute_name} at the top of the inheritance hierarchy somewhere"
|
28
|
+
end
|
29
|
+
end
|
30
|
+
|
31
|
+
def _fortitude_write_class_inheritable_attribute(attribute_name, instance_variable_name, allowable_values, new_value)
|
32
|
+
allowed = if allowable_values.respond_to?(:call)
|
33
|
+
allowable_values.call(new_value, self)
|
34
|
+
else
|
35
|
+
allowable_values.include?(new_value)
|
36
|
+
end
|
37
|
+
|
38
|
+
if (! allowed)
|
39
|
+
error = "#{attribute_name} cannot be set to #{new_value.inspect}"
|
40
|
+
error << "; valid values are: #{allowable_values.inspect}" unless allowable_values.respond_to?(:call)
|
41
|
+
raise ArgumentError, error
|
42
|
+
end
|
43
|
+
|
44
|
+
old_value = _fortitude_read_class_inheritable_attribute(attribute_name, instance_variable_name, true)
|
45
|
+
|
46
|
+
instance_variable_set(instance_variable_name, new_value)
|
47
|
+
|
48
|
+
if (old_value != :_fortitude_class_inheritable_attribute_not_present) && (new_value != old_value)
|
49
|
+
_fortitude_class_inheritable_attribute_changed!(attribute_name, old_value, new_value)
|
50
|
+
end
|
51
|
+
|
52
|
+
new_value
|
53
|
+
end
|
54
|
+
|
55
|
+
def _fortitude_class_inheritable_attribute(attribute_name, default_value, allowable_values)
|
56
|
+
metaclass = (class << self; self; end)
|
57
|
+
|
58
|
+
metaclass.send(:define_method, attribute_name) do |*args|
|
59
|
+
_fortitude_invoke_class_inheritable_attribute(attribute_name, allowable_values, *args)
|
60
|
+
end
|
61
|
+
|
62
|
+
send(attribute_name, default_value)
|
63
|
+
end
|
64
|
+
|
65
|
+
def _fortitude_on_class_inheritable_attribute_change(*attribute_names, &block)
|
66
|
+
if attribute_names.length == 0
|
67
|
+
raise ArgumentError, "You must pass at least one attribute name, not: #{attribute_names.inspect}"
|
68
|
+
end
|
69
|
+
|
70
|
+
@_fortitude_class_inheritable_attribute_change_callbacks ||= { }
|
71
|
+
attribute_names.each do |attribute_name|
|
72
|
+
@_fortitude_class_inheritable_attribute_change_callbacks[attribute_name] ||= [ ]
|
73
|
+
@_fortitude_class_inheritable_attribute_change_callbacks[attribute_name] |= [ block ]
|
74
|
+
end
|
75
|
+
end
|
76
|
+
|
77
|
+
def _fortitude_class_inheritable_attribute_callbacks_for(attribute_name)
|
78
|
+
out = if superclass.respond_to?(:_fortitude_class_inheritable_attribute_callbacks_for)
|
79
|
+
superclass._fortitude_class_inheritable_attribute_callbacks_for(attribute_name)
|
80
|
+
else
|
81
|
+
[ ]
|
82
|
+
end
|
83
|
+
|
84
|
+
@_fortitude_class_inheritable_attribute_change_callbacks ||= { }
|
85
|
+
out += @_fortitude_class_inheritable_attribute_change_callbacks[attribute_name] || [ ]
|
86
|
+
|
87
|
+
out
|
88
|
+
end
|
89
|
+
|
90
|
+
def _fortitude_class_inheritable_attribute_changed!(attribute_name, old_value, new_value)
|
91
|
+
callbacks = _fortitude_class_inheritable_attribute_callbacks_for(attribute_name)
|
92
|
+
# klass = self
|
93
|
+
callbacks.each { |cb| instance_exec(attribute_name, old_value, new_value, &cb) }
|
94
|
+
end
|
95
|
+
end
|
96
|
+
end
|
97
|
+
end
|
98
|
+
end
|