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
data/lib/fortitude.rb
ADDED
@@ -0,0 +1,93 @@
|
|
1
|
+
require "fortitude/version"
|
2
|
+
|
3
|
+
module Fortitude
|
4
|
+
module Widgets
|
5
|
+
autoload :Html5, 'fortitude/widgets/html5'
|
6
|
+
autoload :Html4Strict, 'fortitude/widgets/html4_strict'
|
7
|
+
autoload :Html4Transitional, 'fortitude/widgets/html4_transitional'
|
8
|
+
autoload :Html4Frameset, 'fortitude/widgets/html4_frameset'
|
9
|
+
autoload :Xhtml10Strict, 'fortitude/widgets/xhtml10_strict'
|
10
|
+
autoload :Xhtml10Transitional, 'fortitude/widgets/xhtml10_transitional'
|
11
|
+
autoload :Xhtml10Frameset, 'fortitude/widgets/xhtml10_frameset'
|
12
|
+
autoload :Xhtml11, 'fortitude/widgets/xhtml11'
|
13
|
+
end
|
14
|
+
end
|
15
|
+
|
16
|
+
# See if we can load Rails -- but don't fail if we can't; we'll just use this to decide whether we should
|
17
|
+
# load the Railtie or not.
|
18
|
+
begin
|
19
|
+
gem 'rails'
|
20
|
+
rescue Gem::LoadError => le
|
21
|
+
# ok
|
22
|
+
end
|
23
|
+
|
24
|
+
begin
|
25
|
+
require 'rails'
|
26
|
+
rescue LoadError => le
|
27
|
+
# ok
|
28
|
+
end
|
29
|
+
|
30
|
+
if defined?(::Rails)
|
31
|
+
require 'action_view'
|
32
|
+
|
33
|
+
require 'fortitude/rails/widget_methods'
|
34
|
+
require 'fortitude/rails/renderer'
|
35
|
+
require 'fortitude/rails/template_handler'
|
36
|
+
require 'fortitude/railtie'
|
37
|
+
else
|
38
|
+
require 'fortitude/non_rails_widget_methods'
|
39
|
+
|
40
|
+
::String.class_eval do
|
41
|
+
alias_method :original_concat, :concat
|
42
|
+
end
|
43
|
+
end
|
44
|
+
|
45
|
+
require 'fortitude/widget'
|
46
|
+
|
47
|
+
native_loaded = false
|
48
|
+
|
49
|
+
if %w{false off 0}.include?((ENV['FORTITUDE_NATIVE_EXTENSIONS'] || '').strip.downcase)
|
50
|
+
$stderr.puts <<-EOM
|
51
|
+
WARNING: Fortitude native extensions disabled via environment variable FORTITUDE_NATIVE_EXTENSIONS.
|
52
|
+
Performance may be reduced by a factor of 3-5x!
|
53
|
+
EOM
|
54
|
+
else
|
55
|
+
begin
|
56
|
+
if defined?(RUBY_ENGINE) && RUBY_ENGINE == 'jruby'
|
57
|
+
require 'fortitude_jruby_native_ext.jar'
|
58
|
+
else
|
59
|
+
require File.join(File.dirname(__FILE__), 'fortitude_native_ext')
|
60
|
+
end
|
61
|
+
|
62
|
+
native_loaded = true
|
63
|
+
rescue LoadError => le
|
64
|
+
$stderr.puts <<-EOM
|
65
|
+
WARNING: The Fortitude gem cannot load its native extensions. Performance may be reduced by a factor of 3-5x!
|
66
|
+
Load path: #{$:.inspect}
|
67
|
+
Error: #{le.message} (#{le.class})
|
68
|
+
EOM
|
69
|
+
native_loaded = false
|
70
|
+
end
|
71
|
+
end
|
72
|
+
|
73
|
+
unless native_loaded
|
74
|
+
require 'fortitude/fortitude_ruby_ext'
|
75
|
+
end
|
76
|
+
|
77
|
+
if defined?(::ActiveSupport::SafeBuffer)
|
78
|
+
::ActiveSupport::SafeBuffer.class_eval do
|
79
|
+
public :original_concat
|
80
|
+
end
|
81
|
+
end
|
82
|
+
|
83
|
+
begin
|
84
|
+
require 'tilt'
|
85
|
+
rescue LoadError => le
|
86
|
+
# ok, whatever
|
87
|
+
end
|
88
|
+
|
89
|
+
if defined?(::Tilt)
|
90
|
+
require 'fortitude/tilt/fortitude_template'
|
91
|
+
|
92
|
+
Tilt.register(Fortitude::Tilt::FortitudeTemplate, 'rb')
|
93
|
+
end
|
Binary file
|
@@ -0,0 +1,85 @@
|
|
1
|
+
require 'active_support'
|
2
|
+
require 'json'
|
3
|
+
require 'helpers/rails_server'
|
4
|
+
|
5
|
+
module RailsHelpers
|
6
|
+
extend ActiveSupport::Concern
|
7
|
+
|
8
|
+
attr_reader :rails_server
|
9
|
+
|
10
|
+
def rails_template_name
|
11
|
+
@rails_template_name || raise("No Rails template name!")
|
12
|
+
end
|
13
|
+
|
14
|
+
def full_path(subpath)
|
15
|
+
"#{rails_template_name}/#{subpath}"
|
16
|
+
end
|
17
|
+
|
18
|
+
def get(subpath, options = { })
|
19
|
+
@rails_server.get(full_path(subpath), options)
|
20
|
+
end
|
21
|
+
|
22
|
+
def get_response(subpath, options = { })
|
23
|
+
@rails_server.get_response(full_path(subpath), options)
|
24
|
+
end
|
25
|
+
|
26
|
+
def get_success(subpath, options = { })
|
27
|
+
data = get(subpath, options)
|
28
|
+
data.should match(/rails_spec_application/i) unless options[:no_layout]
|
29
|
+
data
|
30
|
+
end
|
31
|
+
|
32
|
+
def expect_match(subpath, *args)
|
33
|
+
options = args.extract_options!
|
34
|
+
regexes = args
|
35
|
+
|
36
|
+
data = get_success(subpath, options)
|
37
|
+
regexes.each do |regex|
|
38
|
+
data.should match(regex)
|
39
|
+
end
|
40
|
+
|
41
|
+
data
|
42
|
+
end
|
43
|
+
|
44
|
+
def expect_exception(subpath, class_name, message)
|
45
|
+
data = get(subpath)
|
46
|
+
|
47
|
+
json = begin
|
48
|
+
JSON.parse(data)
|
49
|
+
rescue => e
|
50
|
+
raise %{Expected a JSON response from '#{subpath}' (because we expected an exception),
|
51
|
+
but we couldn't parse it as JSON; when we tried, we got:
|
52
|
+
|
53
|
+
(#{e.class.name}) #{e.message}
|
54
|
+
|
55
|
+
The data is:
|
56
|
+
|
57
|
+
#{data.inspect}}
|
58
|
+
end
|
59
|
+
|
60
|
+
json['exception'].should be
|
61
|
+
json['exception']['class'].should == class_name.to_s
|
62
|
+
json['exception']['message'].should match(message)
|
63
|
+
end
|
64
|
+
|
65
|
+
module ClassMethods
|
66
|
+
def rails_template_name
|
67
|
+
@rails_template_name || raise("No Rails template name!")
|
68
|
+
end
|
69
|
+
|
70
|
+
def uses_rails_with_template(template_name, options = { })
|
71
|
+
before :all do
|
72
|
+
@rails_template_name = template_name
|
73
|
+
|
74
|
+
templates = [ 'base', template_name ].map { |t| "rails/templates/#{t}" }
|
75
|
+
|
76
|
+
@rails_server = Spec::Helpers::RailsServer.new(template_name, templates, options)
|
77
|
+
@rails_server.start!
|
78
|
+
end
|
79
|
+
|
80
|
+
after :all do
|
81
|
+
@rails_server.stop!
|
82
|
+
end
|
83
|
+
end
|
84
|
+
end
|
85
|
+
end
|
@@ -0,0 +1,386 @@
|
|
1
|
+
require 'fileutils'
|
2
|
+
require 'find'
|
3
|
+
require 'net/http'
|
4
|
+
require 'uri'
|
5
|
+
|
6
|
+
module Spec
|
7
|
+
module Helpers
|
8
|
+
class RailsServer
|
9
|
+
class CommandFailedError < StandardError
|
10
|
+
attr_reader :directory, :command, :result, :output
|
11
|
+
|
12
|
+
def initialize(directory, command, result, output)
|
13
|
+
@directory = directory
|
14
|
+
@command = command
|
15
|
+
@result = result
|
16
|
+
@output = output
|
17
|
+
|
18
|
+
super(%{Command failed: in directory '#{directory}', we tried to run:
|
19
|
+
% #{command}
|
20
|
+
but got result: #{result.inspect}
|
21
|
+
and output:
|
22
|
+
#{output}})
|
23
|
+
end
|
24
|
+
end
|
25
|
+
|
26
|
+
class << self
|
27
|
+
def run_bundle_install!(name)
|
28
|
+
@bundle_installs_run ||= { }
|
29
|
+
|
30
|
+
cmd = "bundle install"
|
31
|
+
description = "running bundle install for #{name.inspect}"
|
32
|
+
|
33
|
+
can_run_locally = @bundle_installs_run[name] || (ENV['FORTITUDE_SPECS_RAILS_GEMS_INSTALLED'] == 'true')
|
34
|
+
|
35
|
+
if can_run_locally
|
36
|
+
cmd << " --local"
|
37
|
+
else
|
38
|
+
description << " (WITHOUT --local flag)"
|
39
|
+
say %{NOTE: We're running 'bundle install' without the --local flag, meaning it will
|
40
|
+
go out and access rubygems.org for the lists of the latest gems. This is a slow operation.
|
41
|
+
If you run multiple Rails specs at once, this will only happen once.
|
42
|
+
|
43
|
+
However, this only actually needs to happen once, ever, for a given Rails version; if you set
|
44
|
+
FORTITUDE_SPECS_RAILS_GEMS_INSTALLED=true (e.g.,
|
45
|
+
FORTITUDE_SPECS_RAILS_GEMS_INSTALLED=true bundle exec rspec spec/rails/...),
|
46
|
+
then we will skip this command and your spec will run much faster.}
|
47
|
+
end
|
48
|
+
|
49
|
+
# Sigh. Travis CI sometimes fails this with the following exception:
|
50
|
+
#
|
51
|
+
# Gem::RemoteFetcher::FetchError: Errno::ETIMEDOUT: Connection timed out - connect(2)
|
52
|
+
#
|
53
|
+
# So, we catch the command failure, look to see if this is the problem, and, if so, retry
|
54
|
+
iterations = 0
|
55
|
+
while true
|
56
|
+
begin
|
57
|
+
safe_system(cmd, description)
|
58
|
+
break
|
59
|
+
rescue CommandFailedError => cfe
|
60
|
+
raise if (cfe.output !~ /Gem::RemoteFetcher::FetchError.*connect/i) || (iterations >= 5)
|
61
|
+
say %{Got an exception trying to run 'bundle install'; sleeping and trying again (iteration #{iterations}):
|
62
|
+
|
63
|
+
#{cfe.output}}
|
64
|
+
# keep going
|
65
|
+
end
|
66
|
+
|
67
|
+
sleep 1
|
68
|
+
iterations += 1
|
69
|
+
end
|
70
|
+
|
71
|
+
@bundle_installs_run[name] ||= true
|
72
|
+
end
|
73
|
+
|
74
|
+
def say(s, newline = true)
|
75
|
+
if newline
|
76
|
+
$stdout.puts s
|
77
|
+
else
|
78
|
+
$stdout << s
|
79
|
+
end
|
80
|
+
$stdout.flush
|
81
|
+
end
|
82
|
+
|
83
|
+
def safe_system(cmd, notice = nil, options = { })
|
84
|
+
say("#{notice}...", false) if notice
|
85
|
+
|
86
|
+
total_cmd = if options[:background]
|
87
|
+
"#{cmd} 2>&1 &"
|
88
|
+
else
|
89
|
+
"#{cmd} 2>&1"
|
90
|
+
end
|
91
|
+
|
92
|
+
output = `#{total_cmd}`
|
93
|
+
raise CommandFailedError.new(Dir.pwd, total_cmd, $?, output) unless $?.success?
|
94
|
+
say "OK" if notice
|
95
|
+
|
96
|
+
output
|
97
|
+
end
|
98
|
+
end
|
99
|
+
|
100
|
+
attr_reader :rails_root
|
101
|
+
|
102
|
+
def initialize(name, template_paths, options = { })
|
103
|
+
@name = name || (raise ArgumentError, "Must specify a name")
|
104
|
+
@rails_version = ENV['FORTITUDE_SPECS_RAILS_VERSION'] || options[:rails_version]
|
105
|
+
|
106
|
+
@rails_root = File.expand_path(File.join(File.dirname(__FILE__), "../../tmp/spec/rails", rails_version.to_s, @name.to_s))
|
107
|
+
|
108
|
+
@port = 20_000 + rand(10_000)
|
109
|
+
|
110
|
+
@gem_root = File.expand_path(File.join(File.dirname(__FILE__), '../..'))
|
111
|
+
@spec_root = File.expand_path(File.join(File.dirname(__FILE__), '..'))
|
112
|
+
@template_paths = Array(template_paths).map { |t| File.expand_path(File.join(@spec_root, t)) }
|
113
|
+
|
114
|
+
@options = options
|
115
|
+
@server_pid = nil
|
116
|
+
end
|
117
|
+
|
118
|
+
def rails_version
|
119
|
+
@rails_version || :default
|
120
|
+
end
|
121
|
+
|
122
|
+
def say(*args)
|
123
|
+
self.class.say(*args)
|
124
|
+
end
|
125
|
+
|
126
|
+
def safe_system(*args)
|
127
|
+
self.class.safe_system(*args)
|
128
|
+
end
|
129
|
+
|
130
|
+
def start!
|
131
|
+
unless @server_pid
|
132
|
+
do_start!
|
133
|
+
end
|
134
|
+
end
|
135
|
+
|
136
|
+
def stop!
|
137
|
+
if @server_pid
|
138
|
+
stop_server!
|
139
|
+
end
|
140
|
+
end
|
141
|
+
|
142
|
+
def get(path, options = { })
|
143
|
+
get_response(path, options).body.strip
|
144
|
+
end
|
145
|
+
|
146
|
+
def uri_for(path)
|
147
|
+
uri_string = "http://localhost:#{@port}/#{path}"
|
148
|
+
URI.parse(uri_string)
|
149
|
+
end
|
150
|
+
|
151
|
+
def get_response(path, options = { })
|
152
|
+
uri = uri_for(path)
|
153
|
+
data = Net::HTTP.get_response(uri)
|
154
|
+
unless data.code.to_s == '200' || options[:ignore_status_code]
|
155
|
+
raise "'#{uri}' returned #{data.code.inspect}, not 200; body was: #{data.body.strip}"
|
156
|
+
end
|
157
|
+
data
|
158
|
+
end
|
159
|
+
|
160
|
+
private
|
161
|
+
def rails_env
|
162
|
+
(@options[:rails_env] || 'production').to_s
|
163
|
+
end
|
164
|
+
|
165
|
+
def do_start!
|
166
|
+
Bundler.with_clean_env do
|
167
|
+
with_rails_env do
|
168
|
+
setup_directories!
|
169
|
+
|
170
|
+
in_rails_root_parent do
|
171
|
+
splat_bootstrap_gemfile!
|
172
|
+
rails_new!
|
173
|
+
update_gemfile!
|
174
|
+
end
|
175
|
+
|
176
|
+
in_rails_root do
|
177
|
+
self.class.run_bundle_install!(:primary)
|
178
|
+
splat_template_files!
|
179
|
+
start_server!
|
180
|
+
verify_server!
|
181
|
+
end
|
182
|
+
end
|
183
|
+
end
|
184
|
+
end
|
185
|
+
|
186
|
+
def with_rails_env
|
187
|
+
old_rails_env = ENV['RAILS_ENV']
|
188
|
+
begin
|
189
|
+
ENV['RAILS_ENV'] = rails_env
|
190
|
+
yield
|
191
|
+
ensure
|
192
|
+
ENV['RAILS_ENV'] = old_rails_env
|
193
|
+
end
|
194
|
+
end
|
195
|
+
|
196
|
+
|
197
|
+
def setup_directories!
|
198
|
+
return if @directories_setup
|
199
|
+
|
200
|
+
@template_paths.each do |template_path|
|
201
|
+
raise Errno::ENOENT, "You must specify template paths that exist; this doesn't: '#{template_path}'" unless File.directory?(template_path)
|
202
|
+
end
|
203
|
+
FileUtils.rm_rf(@rails_root) if File.exist?(@rails_root)
|
204
|
+
FileUtils.mkdir_p(@rails_root)
|
205
|
+
|
206
|
+
@directories_setup = true
|
207
|
+
end
|
208
|
+
|
209
|
+
def in_rails_root(&block)
|
210
|
+
Dir.chdir(@rails_root, &block)
|
211
|
+
end
|
212
|
+
|
213
|
+
def in_rails_root_parent(&block)
|
214
|
+
Dir.chdir(File.dirname(@rails_root), &block)
|
215
|
+
end
|
216
|
+
|
217
|
+
def splat_bootstrap_gemfile!
|
218
|
+
File.open("Gemfile", "w") do |f|
|
219
|
+
rails_version_spec = if @rails_version then ", \"= #{@rails_version}\"" else "" end
|
220
|
+
f << <<-EOS
|
221
|
+
source 'https://rubygems.org'
|
222
|
+
|
223
|
+
gem 'rails'#{rails_version_spec}
|
224
|
+
EOS
|
225
|
+
end
|
226
|
+
|
227
|
+
self.class.run_bundle_install!(:bootstrap)
|
228
|
+
end
|
229
|
+
|
230
|
+
def rails_new!
|
231
|
+
# This is a little trick to specify the exact version of Rails you want to create it with...
|
232
|
+
# http://stackoverflow.com/questions/379141/specifying-rails-version-to-use-when-creating-a-new-application
|
233
|
+
rails_version_spec = @rails_version ? "_#{@rails_version}_" : ""
|
234
|
+
safe_system("bundle exec rails #{rails_version_spec} new #{File.basename(@rails_root)} -d sqlite3 -f -B", "creating a new Rails installation for '#{@name}'")
|
235
|
+
end
|
236
|
+
|
237
|
+
def update_gemfile!
|
238
|
+
gemfile = File.join(@rails_root, 'Gemfile')
|
239
|
+
gemfile_contents = File.read(gemfile)
|
240
|
+
gemfile_contents << "\ngem 'fortitude', :path => '#{@gem_root}'\n"
|
241
|
+
|
242
|
+
# Since Rails 3.0.20 was released, a new version of the I18n gem, 0.5.2, was released that moves a constant
|
243
|
+
# into a different namespace. (See https://github.com/mislav/will_paginate/issues/347 for more details.)
|
244
|
+
# So, if we're running Rails 3.0.x, we lock the 'i18n' gem to an earlier version.
|
245
|
+
gemfile_contents << "\ngem 'i18n', '= 0.5.0'\n" if @rails_version && @rails_version =~ /^3\.0\./
|
246
|
+
|
247
|
+
# Apparently execjs released a version 2.2.0 that will happily install on Ruby 1.8.7, but which contains some
|
248
|
+
# new-style hash syntax. As a result, we pin the version backwards in this one specific case.
|
249
|
+
gemfile_contents << "\ngem 'execjs', '~> 2.0.0'\n" if RUBY_VERSION =~ /^1\.8\./
|
250
|
+
|
251
|
+
File.open(gemfile, 'w') { |f| f << gemfile_contents }
|
252
|
+
end
|
253
|
+
|
254
|
+
def with_env(new_env)
|
255
|
+
old_env = { }
|
256
|
+
new_env.keys.each { |k| old_env[k] = ENV[k] }
|
257
|
+
|
258
|
+
begin
|
259
|
+
set_env(new_env)
|
260
|
+
yield
|
261
|
+
ensure
|
262
|
+
set_env(old_env)
|
263
|
+
end
|
264
|
+
end
|
265
|
+
|
266
|
+
def set_env(new_env)
|
267
|
+
new_env.each do |k,v|
|
268
|
+
if v
|
269
|
+
ENV[k] = v
|
270
|
+
else
|
271
|
+
ENV.delete(k)
|
272
|
+
end
|
273
|
+
end
|
274
|
+
end
|
275
|
+
|
276
|
+
def splat_template_files!
|
277
|
+
@template_paths.each do |template_path|
|
278
|
+
Find.find(template_path) do |file|
|
279
|
+
next unless File.file?(file)
|
280
|
+
|
281
|
+
if file[0..(template_path.length)] == "#{template_path}/"
|
282
|
+
subpath = file[(template_path.length + 1)..-1]
|
283
|
+
else
|
284
|
+
raise "#{file} isn't under #{template_path}?!?"
|
285
|
+
end
|
286
|
+
dest_file = File.join(@rails_root, subpath)
|
287
|
+
|
288
|
+
FileUtils.mkdir_p(File.dirname(dest_file))
|
289
|
+
FileUtils.cp(file, dest_file)
|
290
|
+
end
|
291
|
+
end
|
292
|
+
end
|
293
|
+
|
294
|
+
def start_server!
|
295
|
+
output = File.join(@rails_root, 'log', 'rails-server.out')
|
296
|
+
cmd = "rails server -p #{@port} > '#{output}'"
|
297
|
+
safe_system(cmd, "starting 'rails server' on port #{@port}", :background => true)
|
298
|
+
|
299
|
+
server_pid_file = File.join(@rails_root, 'tmp', 'pids', 'server.pid')
|
300
|
+
|
301
|
+
start_time = Time.now
|
302
|
+
while Time.now < start_time + 15
|
303
|
+
if File.exist?(server_pid_file)
|
304
|
+
server_pid = File.read(server_pid_file).strip
|
305
|
+
if server_pid =~ /^(\d{1,10})$/i
|
306
|
+
@server_pid = Integer(server_pid)
|
307
|
+
break
|
308
|
+
end
|
309
|
+
end
|
310
|
+
sleep 0.1
|
311
|
+
end
|
312
|
+
end
|
313
|
+
|
314
|
+
def verify_server!
|
315
|
+
server_verify_url = "http://localhost:#{@port}/working/rails_is_working"
|
316
|
+
uri = URI.parse(server_verify_url)
|
317
|
+
|
318
|
+
data = nil
|
319
|
+
start_time = Time.now
|
320
|
+
while (! data)
|
321
|
+
begin
|
322
|
+
data = Net::HTTP.get_response(uri)
|
323
|
+
rescue Errno::ECONNREFUSED, EOFError
|
324
|
+
raise if Time.now > (start_time + 20)
|
325
|
+
# keep waiting
|
326
|
+
sleep 0.1
|
327
|
+
end
|
328
|
+
end
|
329
|
+
|
330
|
+
unless data.code.to_s == '200'
|
331
|
+
raise "'#{server_verify_url}' returned #{data.code.inspect}, not 200"
|
332
|
+
end
|
333
|
+
result = data.body.strip
|
334
|
+
|
335
|
+
unless result =~ /^Rails\s+version\s*:\s*(\d+\.\d+\.\d+)$/
|
336
|
+
raise "'#{server_verify_url}' returned: #{result.inspect}"
|
337
|
+
end
|
338
|
+
actual_version = $1
|
339
|
+
|
340
|
+
if @rails_version && (actual_version != @rails_version)
|
341
|
+
raise "We seem to have spawned the wrong version of Rails; wanted: #{@rails_version.inspect} but got: #{actual_version.inspect}"
|
342
|
+
end
|
343
|
+
|
344
|
+
say "Successfully spawned a server running Rails #{actual_version} on port #{@port}."
|
345
|
+
end
|
346
|
+
|
347
|
+
def is_alive?(pid)
|
348
|
+
cmd = "ps -o pid #{pid}"
|
349
|
+
results = `#{cmd}`
|
350
|
+
results.split(/[\r\n]+/).each do |line|
|
351
|
+
line = line.strip.downcase
|
352
|
+
next if line == 'pid'
|
353
|
+
if line =~ /^\d+$/i
|
354
|
+
return true if Integer(line) == pid
|
355
|
+
else
|
356
|
+
raise "Unexpected output from '#{cmd}': #{results}"
|
357
|
+
end
|
358
|
+
end
|
359
|
+
|
360
|
+
false
|
361
|
+
end
|
362
|
+
|
363
|
+
def stop_server!
|
364
|
+
# We do this because under 1.8.7 SIGTERM doesn't seem to work, and it's actually fine to slaughter this
|
365
|
+
# process mercilessly -- we don't need anything it has at this point, anyway.
|
366
|
+
Process.kill("KILL", @server_pid)
|
367
|
+
|
368
|
+
start_time = Time.now
|
369
|
+
|
370
|
+
while true
|
371
|
+
if is_alive?(@server_pid)
|
372
|
+
raise "Unable to kill server at PID #{@server_pid}!" if (Time.now - start_time) > 20
|
373
|
+
say "Waiting for server at PID #{@server_pid} to die."
|
374
|
+
sleep 0.1
|
375
|
+
else
|
376
|
+
break
|
377
|
+
end
|
378
|
+
end
|
379
|
+
|
380
|
+
say "Successfully terminated Rails server at PID #{@server_pid}."
|
381
|
+
|
382
|
+
@server_pid = nil
|
383
|
+
end
|
384
|
+
end
|
385
|
+
end
|
386
|
+
end
|