rango 0.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/CHANGELOG +8 -0
- data/LICENSE +20 -0
- data/README.textile +18 -0
- data/bin/rango +30 -0
- data/doc/head/Array.html +114 -0
- data/doc/head/AttributeMixin.html +613 -0
- data/doc/head/Class.html +102 -0
- data/doc/head/ColoredString.html +476 -0
- data/doc/head/Hash.html +643 -0
- data/doc/head/Kernel.html +641 -0
- data/doc/head/Object.html +140 -0
- data/doc/head/ObjectSpace.html +103 -0
- data/doc/head/Path.html +2499 -0
- data/doc/head/Range.html +109 -0
- data/doc/head/Rango.html +397 -0
- data/doc/head/Rango/ApplicationMixin.html +396 -0
- data/doc/head/Rango/Bundling.html +23 -0
- data/doc/head/Rango/Bundling/RequireStrategy.html +283 -0
- data/doc/head/Rango/Bundling/Strategy.html +703 -0
- data/doc/head/Rango/CallableStrategy.html +300 -0
- data/doc/head/Rango/Chainable.html +181 -0
- data/doc/head/Rango/Configurable.html +199 -0
- data/doc/head/Rango/Controller.html +962 -0
- data/doc/head/Rango/ControllerMixin.html +860 -0
- data/doc/head/Rango/ControllerStrategy.html +264 -0
- data/doc/head/Rango/DependencyStrategy.html +116 -0
- data/doc/head/Rango/Dispatcher.html +305 -0
- data/doc/head/Rango/Form.html +162 -0
- data/doc/head/Rango/GemDependencyStrategy.html +210 -0
- data/doc/head/Rango/Generator.html +93 -0
- data/doc/head/Rango/GenericViews.html +128 -0
- data/doc/head/Rango/GitDependencyStrategy.html +224 -0
- data/doc/head/Rango/GithubDependencyStrategy.html +118 -0
- data/doc/head/Rango/Handler.html +474 -0
- data/doc/head/Rango/Helpers.html +1271 -0
- data/doc/head/Rango/Hookable.html +202 -0
- data/doc/head/Rango/ImportMixin.html +755 -0
- data/doc/head/Rango/Logger.html +920 -0
- data/doc/head/Rango/ModelForm.html +42 -0
- data/doc/head/Rango/Project.html +516 -0
- data/doc/head/Rango/RenderMixin.html +23 -0
- data/doc/head/Rango/Request.html +1177 -0
- data/doc/head/Rango/Route.html +751 -0
- data/doc/head/Rango/Router.html +42 -0
- data/doc/head/Rango/Router/Dispatcher.html +311 -0
- data/doc/head/Rango/RouterStrategy.html +258 -0
- data/doc/head/Rango/Session.html +23 -0
- data/doc/head/Rango/Settings.html +23 -0
- data/doc/head/Rango/Settings/Erubis.html +23 -0
- data/doc/head/Rango/Settings/Framework.html +198 -0
- data/doc/head/Rango/Settings/Haml.html +23 -0
- data/doc/head/Rango/SimpleTemplate.html +187 -0
- data/doc/head/Rango/StrategyMixin.html +261 -0
- data/doc/head/Rango/Tasks.html +251 -0
- data/doc/head/Rango/Template.html +95 -0
- data/doc/head/Rango/Template/Adapter.html +90 -0
- data/doc/head/Rango/Templates.html +116 -0
- data/doc/head/Rango/Templates/Adapter.html +128 -0
- data/doc/head/Rango/Templates/Template.html +636 -0
- data/doc/head/Rango/Templates/TemplateHelpers.html +328 -0
- data/doc/head/RangoThor.html +205 -0
- data/doc/head/String.html +163 -0
- data/doc/head/TimeDSL.html +612 -0
- data/doc/head/all-methods.html +2012 -0
- data/doc/head/all-namespaces.html +114 -0
- data/doc/head/app.js +18 -0
- data/doc/head/index.html +18 -0
- data/doc/head/jquery.js +11 -0
- data/doc/head/readme.html +34 -0
- data/doc/head/style.css +68 -0
- data/doc/head/syntax_highlight.css +21 -0
- data/doc/versions/0.0.1/Rango.html +1025 -0
- data/doc/versions/0.0.1/Rango/CallableStrategy.html +166 -0
- data/doc/versions/0.0.1/Rango/ControllerStrategy.html +180 -0
- data/doc/versions/0.0.1/Rango/Route.html +340 -0
- data/doc/versions/0.0.1/Rango/Router.html +502 -0
- data/doc/versions/0.0.1/Rango/RouterStrategy.html +94 -0
- data/doc/versions/0.0.1/Rango/Template.html +28 -0
- data/doc/versions/0.0.1/Rango/Template/Adapter.html +90 -0
- data/doc/versions/0.0.1/all-methods.html +228 -0
- data/doc/versions/0.0.1/all-namespaces.html +36 -0
- data/doc/versions/0.0.1/app.js +18 -0
- data/doc/versions/0.0.1/index.html +18 -0
- data/doc/versions/0.0.1/jquery.js +11 -0
- data/doc/versions/0.0.1/readme.html +137 -0
- data/doc/versions/0.0.1/style.css +68 -0
- data/doc/versions/0.0.1/syntax_highlight.css +21 -0
- data/lib/rango.rb +25 -0
- data/lib/rango/boot.rb +54 -0
- data/lib/rango/bundling/dependency.rb +65 -0
- data/lib/rango/bundling/strategies/copy.rb +36 -0
- data/lib/rango/bundling/strategies/gem.rb +55 -0
- data/lib/rango/bundling/strategies/git.rb +71 -0
- data/lib/rango/bundling/strategies/hg.rb +9 -0
- data/lib/rango/bundling/strategy.rb +85 -0
- data/lib/rango/cli/generator.rb +15 -0
- data/lib/rango/cli/project.rb +87 -0
- data/lib/rango/cli/simple_template.rb +47 -0
- data/lib/rango/contrib/pagination.rb +15 -0
- data/lib/rango/contrib/pagination/README.textile +21 -0
- data/lib/rango/contrib/pagination/TODO +3 -0
- data/lib/rango/contrib/pagination/_pagination.html.haml +39 -0
- data/lib/rango/contrib/pagination/adapters/datamapper.rb +22 -0
- data/lib/rango/contrib/pagination/helpers.rb +12 -0
- data/lib/rango/contrib/pagination/page.rb +107 -0
- data/lib/rango/contrib/pagination/strategies.rb +49 -0
- data/lib/rango/contrib/syndication.rb +1 -0
- data/lib/rango/exceptions.rb +269 -0
- data/lib/rango/ext.rb +14 -0
- data/lib/rango/ext/attribute.rb +140 -0
- data/lib/rango/ext/class.rb +99 -0
- data/lib/rango/ext/colored_string.rb +105 -0
- data/lib/rango/ext/core_ext.rb +52 -0
- data/lib/rango/ext/hash.rb +21 -0
- data/lib/rango/ext/kernel.rb +74 -0
- data/lib/rango/ext/object_space.rb +11 -0
- data/lib/rango/ext/path.rb +222 -0
- data/lib/rango/ext/random.rb +22 -0
- data/lib/rango/ext/string.rb +16 -0
- data/lib/rango/ext/thor.rb +32 -0
- data/lib/rango/ext/time_dsl.rb +63 -0
- data/lib/rango/ext/try.rb +30 -0
- data/lib/rango/forms/form.rb +29 -0
- data/lib/rango/generic_views/static.rb +7 -0
- data/lib/rango/helpers.rb +24 -0
- data/lib/rango/helpers/README +179 -0
- data/lib/rango/helpers/assets.rb +29 -0
- data/lib/rango/helpers/general.rb +41 -0
- data/lib/rango/helpers/merb-helpers.rb +40 -0
- data/lib/rango/helpers/merb-helpers/core_ext.rb +58 -0
- data/lib/rango/helpers/merb-helpers/core_ext/numeric.rb +388 -0
- data/lib/rango/helpers/merb-helpers/date_time_formatting.rb +158 -0
- data/lib/rango/helpers/merb-helpers/date_time_helpers.rb +191 -0
- data/lib/rango/helpers/merb-helpers/form/builder.rb +447 -0
- data/lib/rango/helpers/merb-helpers/form/helpers.rb +451 -0
- data/lib/rango/helpers/merb-helpers/form_helpers.rb +19 -0
- data/lib/rango/helpers/merb-helpers/tag_helpers.rb +63 -0
- data/lib/rango/helpers/merb-helpers/text_helpers.rb +63 -0
- data/lib/rango/helpers/merb-helpers/time_dsl.rb +61 -0
- data/lib/rango/helpers/spec/core_ext_spec.rb +21 -0
- data/lib/rango/helpers/spec/fixture/app/controllers/application.rb +4 -0
- data/lib/rango/helpers/spec/fixture/app/controllers/bound_check_box.rb +2 -0
- data/lib/rango/helpers/spec/fixture/app/controllers/bound_file_field.rb +2 -0
- data/lib/rango/helpers/spec/fixture/app/controllers/bound_hidden_field.rb +2 -0
- data/lib/rango/helpers/spec/fixture/app/controllers/bound_option_tag.rb +2 -0
- data/lib/rango/helpers/spec/fixture/app/controllers/bound_password_field.rb +2 -0
- data/lib/rango/helpers/spec/fixture/app/controllers/bound_radio_button.rb +2 -0
- data/lib/rango/helpers/spec/fixture/app/controllers/bound_radio_group.rb +2 -0
- data/lib/rango/helpers/spec/fixture/app/controllers/bound_select.rb +2 -0
- data/lib/rango/helpers/spec/fixture/app/controllers/bound_text_area.rb +2 -0
- data/lib/rango/helpers/spec/fixture/app/controllers/bound_text_field.rb +2 -0
- data/lib/rango/helpers/spec/fixture/app/controllers/button.rb +2 -0
- data/lib/rango/helpers/spec/fixture/app/controllers/check_box.rb +2 -0
- data/lib/rango/helpers/spec/fixture/app/controllers/custom_builder.rb +2 -0
- data/lib/rango/helpers/spec/fixture/app/controllers/delete_button.rb +2 -0
- data/lib/rango/helpers/spec/fixture/app/controllers/exceptions.rb +25 -0
- data/lib/rango/helpers/spec/fixture/app/controllers/field_set.rb +2 -0
- data/lib/rango/helpers/spec/fixture/app/controllers/fields_for.rb +3 -0
- data/lib/rango/helpers/spec/fixture/app/controllers/file_field.rb +2 -0
- data/lib/rango/helpers/spec/fixture/app/controllers/foo.rb +23 -0
- data/lib/rango/helpers/spec/fixture/app/controllers/form.rb +2 -0
- data/lib/rango/helpers/spec/fixture/app/controllers/form_for.rb +2 -0
- data/lib/rango/helpers/spec/fixture/app/controllers/hacker.rb +2 -0
- data/lib/rango/helpers/spec/fixture/app/controllers/hidden_field.rb +2 -0
- data/lib/rango/helpers/spec/fixture/app/controllers/label.rb +3 -0
- data/lib/rango/helpers/spec/fixture/app/controllers/numeric_ext.rb +3 -0
- data/lib/rango/helpers/spec/fixture/app/controllers/option_tag.rb +2 -0
- data/lib/rango/helpers/spec/fixture/app/controllers/password_field.rb +2 -0
- data/lib/rango/helpers/spec/fixture/app/controllers/radio_button.rb +2 -0
- data/lib/rango/helpers/spec/fixture/app/controllers/radio_group.rb +2 -0
- data/lib/rango/helpers/spec/fixture/app/controllers/relative_date.rb +2 -0
- data/lib/rango/helpers/spec/fixture/app/controllers/relative_date_span.rb +2 -0
- data/lib/rango/helpers/spec/fixture/app/controllers/select.rb +2 -0
- data/lib/rango/helpers/spec/fixture/app/controllers/specs_controller.rb +11 -0
- data/lib/rango/helpers/spec/fixture/app/controllers/submit.rb +2 -0
- data/lib/rango/helpers/spec/fixture/app/controllers/tag_helper.rb +21 -0
- data/lib/rango/helpers/spec/fixture/app/controllers/text_area.rb +2 -0
- data/lib/rango/helpers/spec/fixture/app/controllers/text_field.rb +3 -0
- data/lib/rango/helpers/spec/fixture/app/helpers/global_helpers.rb +8 -0
- data/lib/rango/helpers/spec/fixture/app/models/fake_dm_model.rb +25 -0
- data/lib/rango/helpers/spec/fixture/app/models/first_generic_fake_model.rb +57 -0
- data/lib/rango/helpers/spec/fixture/app/models/hacker_generic_model.rb +5 -0
- data/lib/rango/helpers/spec/fixture/app/models/second_generic_fake_model.rb +18 -0
- data/lib/rango/helpers/spec/fixture/app/models/third_generic_fake_model.rb +3 -0
- data/lib/rango/helpers/spec/fixture/app/views/bound_check_box_specs/basic.html.erb +4 -0
- data/lib/rango/helpers/spec/fixture/app/views/bound_check_box_specs/basic_unchecked.html.erb +3 -0
- data/lib/rango/helpers/spec/fixture/app/views/bound_check_box_specs/checked.html.erb +4 -0
- data/lib/rango/helpers/spec/fixture/app/views/bound_check_box_specs/errors.html.erb +4 -0
- data/lib/rango/helpers/spec/fixture/app/views/bound_check_box_specs/label.html.erb +3 -0
- data/lib/rango/helpers/spec/fixture/app/views/bound_check_box_specs/on_and_off.html.erb +3 -0
- data/lib/rango/helpers/spec/fixture/app/views/bound_check_box_specs/raise_value_error.html.erb +3 -0
- data/lib/rango/helpers/spec/fixture/app/views/bound_file_field_specs/additional_attributes.html.erb +3 -0
- data/lib/rango/helpers/spec/fixture/app/views/bound_file_field_specs/takes_string.html.erb +3 -0
- data/lib/rango/helpers/spec/fixture/app/views/bound_file_field_specs/with_label.html.erb +3 -0
- data/lib/rango/helpers/spec/fixture/app/views/bound_hidden_field_specs/basic.html.erb +3 -0
- data/lib/rango/helpers/spec/fixture/app/views/bound_hidden_field_specs/errors.html.erb +3 -0
- data/lib/rango/helpers/spec/fixture/app/views/bound_hidden_field_specs/hidden_error.html.erb +3 -0
- data/lib/rango/helpers/spec/fixture/app/views/bound_hidden_field_specs/label.html.erb +3 -0
- data/lib/rango/helpers/spec/fixture/app/views/bound_option_tag_specs/grouped.html.erb +3 -0
- data/lib/rango/helpers/spec/fixture/app/views/bound_option_tag_specs/nested.html.erb +3 -0
- data/lib/rango/helpers/spec/fixture/app/views/bound_option_tag_specs/text_and_value.html.erb +4 -0
- data/lib/rango/helpers/spec/fixture/app/views/bound_password_field_specs/attributes.html.erb +3 -0
- data/lib/rango/helpers/spec/fixture/app/views/bound_password_field_specs/basic.html.erb +3 -0
- data/lib/rango/helpers/spec/fixture/app/views/bound_password_field_specs/label.html.erb +3 -0
- data/lib/rango/helpers/spec/fixture/app/views/bound_radio_button_specs/basic.html.erb +3 -0
- data/lib/rango/helpers/spec/fixture/app/views/bound_radio_group_specs/basic.html.erb +3 -0
- data/lib/rango/helpers/spec/fixture/app/views/bound_radio_group_specs/hashes.html.erb +3 -0
- data/lib/rango/helpers/spec/fixture/app/views/bound_radio_group_specs/mixed.html.erb +4 -0
- data/lib/rango/helpers/spec/fixture/app/views/bound_radio_group_specs/override_id.html.erb +3 -0
- data/lib/rango/helpers/spec/fixture/app/views/bound_select_specs/basic.html.erb +3 -0
- data/lib/rango/helpers/spec/fixture/app/views/bound_select_specs/blank.html.erb +3 -0
- data/lib/rango/helpers/spec/fixture/app/views/bound_select_specs/label.html.erb +3 -0
- data/lib/rango/helpers/spec/fixture/app/views/bound_select_specs/multiple.html.erb +3 -0
- data/lib/rango/helpers/spec/fixture/app/views/bound_select_specs/prompt.html.erb +3 -0
- data/lib/rango/helpers/spec/fixture/app/views/bound_select_specs/with_options.html.erb +3 -0
- data/lib/rango/helpers/spec/fixture/app/views/bound_select_specs/with_options_with_blank.html.erb +3 -0
- data/lib/rango/helpers/spec/fixture/app/views/bound_text_area_specs/basic.html.erb +3 -0
- data/lib/rango/helpers/spec/fixture/app/views/bound_text_area_specs/label.html.erb +3 -0
- data/lib/rango/helpers/spec/fixture/app/views/bound_text_field_specs/basic.html.erb +3 -0
- data/lib/rango/helpers/spec/fixture/app/views/button_specs/button_with_label.html.erb +1 -0
- data/lib/rango/helpers/spec/fixture/app/views/button_specs/button_with_values.html.erb +1 -0
- data/lib/rango/helpers/spec/fixture/app/views/button_specs/disabled_button.html.erb +1 -0
- data/lib/rango/helpers/spec/fixture/app/views/check_box_specs/basic.html.erb +1 -0
- data/lib/rango/helpers/spec/fixture/app/views/check_box_specs/boolean.html.erb +1 -0
- data/lib/rango/helpers/spec/fixture/app/views/check_box_specs/disabled.html.erb +1 -0
- data/lib/rango/helpers/spec/fixture/app/views/check_box_specs/label.html.erb +1 -0
- data/lib/rango/helpers/spec/fixture/app/views/check_box_specs/on_off_is_boolean.html.erb +1 -0
- data/lib/rango/helpers/spec/fixture/app/views/check_box_specs/raise_unless_both_on_and_off.html.erb +2 -0
- data/lib/rango/helpers/spec/fixture/app/views/check_box_specs/raises_error_if_not_boolean.html.erb +1 -0
- data/lib/rango/helpers/spec/fixture/app/views/check_box_specs/raises_error_if_on_off_and_boolean_false.html.erb +1 -0
- data/lib/rango/helpers/spec/fixture/app/views/check_box_specs/simple.html.erb +1 -0
- data/lib/rango/helpers/spec/fixture/app/views/check_box_specs/to_string.html.erb +8 -0
- data/lib/rango/helpers/spec/fixture/app/views/check_box_specs/unchecked.html.erb +2 -0
- data/lib/rango/helpers/spec/fixture/app/views/custom_builder_specs/everything.html.erb +10 -0
- data/lib/rango/helpers/spec/fixture/app/views/delete_button_specs/delete_with_explicit_url.html.erb +1 -0
- data/lib/rango/helpers/spec/fixture/app/views/delete_button_specs/delete_with_extra_params.html.erb +1 -0
- data/lib/rango/helpers/spec/fixture/app/views/delete_button_specs/delete_with_label.html.erb +1 -0
- data/lib/rango/helpers/spec/fixture/app/views/delete_button_specs/simple_delete.html.erb +1 -0
- data/lib/rango/helpers/spec/fixture/app/views/exeptions/client_error.html.erb +37 -0
- data/lib/rango/helpers/spec/fixture/app/views/exeptions/internal_server_error.html.erb +216 -0
- data/lib/rango/helpers/spec/fixture/app/views/exeptions/not_acceptable.html.erb +38 -0
- data/lib/rango/helpers/spec/fixture/app/views/exeptions/not_found.html.erb +40 -0
- data/lib/rango/helpers/spec/fixture/app/views/fields_for_specs/basic.html.erb +3 -0
- data/lib/rango/helpers/spec/fixture/app/views/fields_for_specs/midstream.html.erb +7 -0
- data/lib/rango/helpers/spec/fixture/app/views/fields_for_specs/nil.html.erb +3 -0
- data/lib/rango/helpers/spec/fixture/app/views/fieldset_specs/legend.html.erb +3 -0
- data/lib/rango/helpers/spec/fixture/app/views/file_field_specs/disabled.html.erb +1 -0
- data/lib/rango/helpers/spec/fixture/app/views/file_field_specs/makes_multipart.html.erb +3 -0
- data/lib/rango/helpers/spec/fixture/app/views/file_field_specs/with_label.html.erb +1 -0
- data/lib/rango/helpers/spec/fixture/app/views/file_field_specs/with_values.html.erb +1 -0
- data/lib/rango/helpers/spec/fixture/app/views/foo/bar.html.erb +0 -0
- data/lib/rango/helpers/spec/fixture/app/views/form_for_specs/basic.html.erb +3 -0
- data/lib/rango/helpers/spec/fixture/app/views/form_specs/create_a_form.html.erb +3 -0
- data/lib/rango/helpers/spec/fixture/app/views/form_specs/create_a_multipart_form.html.erb +3 -0
- data/lib/rango/helpers/spec/fixture/app/views/form_specs/fake_delete_if_set.html.erb +3 -0
- data/lib/rango/helpers/spec/fixture/app/views/form_specs/fake_put_if_set.html.erb +3 -0
- data/lib/rango/helpers/spec/fixture/app/views/form_specs/get_if_set.html.erb +3 -0
- data/lib/rango/helpers/spec/fixture/app/views/form_specs/post_by_default.html.erb +3 -0
- data/lib/rango/helpers/spec/fixture/app/views/form_specs/resourceful_form.html.erb +3 -0
- data/lib/rango/helpers/spec/fixture/app/views/hacker/file_field.html.erb +3 -0
- data/lib/rango/helpers/spec/fixture/app/views/hacker/hidden_field.html.erb +3 -0
- data/lib/rango/helpers/spec/fixture/app/views/hacker/option_tag.html.erb +4 -0
- data/lib/rango/helpers/spec/fixture/app/views/hacker/password_field.html.erb +3 -0
- data/lib/rango/helpers/spec/fixture/app/views/hacker/radio_button.html.erb +3 -0
- data/lib/rango/helpers/spec/fixture/app/views/hacker/radio_group.html.erb +3 -0
- data/lib/rango/helpers/spec/fixture/app/views/hacker/text_area.html.erb +3 -0
- data/lib/rango/helpers/spec/fixture/app/views/hacker/text_field.html.erb +3 -0
- data/lib/rango/helpers/spec/fixture/app/views/hidden_field_specs/basic.html.erb +1 -0
- data/lib/rango/helpers/spec/fixture/app/views/hidden_field_specs/disabled.html.erb +1 -0
- data/lib/rango/helpers/spec/fixture/app/views/hidden_field_specs/label.html.erb +1 -0
- data/lib/rango/helpers/spec/fixture/app/views/label_specs/basic.html.erb +1 -0
- data/lib/rango/helpers/spec/fixture/app/views/label_specs/basic_with_attributes.html.erb +1 -0
- data/lib/rango/helpers/spec/fixture/app/views/label_specs/basic_with_class.html.erb +1 -0
- data/lib/rango/helpers/spec/fixture/app/views/layout/application.html.erb +11 -0
- data/lib/rango/helpers/spec/fixture/app/views/numeric_ext_specs/minutes_to_hours.html.erb +1 -0
- data/lib/rango/helpers/spec/fixture/app/views/numeric_ext_specs/to_concurrency_default.html.erb +1 -0
- data/lib/rango/helpers/spec/fixture/app/views/numeric_ext_specs/two_digits.html.erb +1 -0
- data/lib/rango/helpers/spec/fixture/app/views/option_tag_specs/array.html.erb +1 -0
- data/lib/rango/helpers/spec/fixture/app/views/option_tag_specs/clean.html.erb +1 -0
- data/lib/rango/helpers/spec/fixture/app/views/option_tag_specs/collection.html.erb +1 -0
- data/lib/rango/helpers/spec/fixture/app/views/option_tag_specs/multiple_selects.html.erb +1 -0
- data/lib/rango/helpers/spec/fixture/app/views/option_tag_specs/no_extra_attributes.html.erb +1 -0
- data/lib/rango/helpers/spec/fixture/app/views/option_tag_specs/optgroups.html.erb +1 -0
- data/lib/rango/helpers/spec/fixture/app/views/option_tag_specs/selected.html.erb +1 -0
- data/lib/rango/helpers/spec/fixture/app/views/option_tag_specs/with_blank.html.erb +1 -0
- data/lib/rango/helpers/spec/fixture/app/views/option_tag_specs/with_prompt.html.erb +1 -0
- data/lib/rango/helpers/spec/fixture/app/views/password_field_specs/basic.html.erb +1 -0
- data/lib/rango/helpers/spec/fixture/app/views/password_field_specs/disabled.html.erb +1 -0
- data/lib/rango/helpers/spec/fixture/app/views/radio_button_specs/basic.html.erb +1 -0
- data/lib/rango/helpers/spec/fixture/app/views/radio_button_specs/checked.html.erb +1 -0
- data/lib/rango/helpers/spec/fixture/app/views/radio_button_specs/disabled.html.erb +1 -0
- data/lib/rango/helpers/spec/fixture/app/views/radio_button_specs/label.html.erb +1 -0
- data/lib/rango/helpers/spec/fixture/app/views/radio_button_specs/unchecked.html.erb +1 -0
- data/lib/rango/helpers/spec/fixture/app/views/radio_group_specs/attributes.html.erb +1 -0
- data/lib/rango/helpers/spec/fixture/app/views/radio_group_specs/basic.html.erb +1 -0
- data/lib/rango/helpers/spec/fixture/app/views/radio_group_specs/checked.html.erb +1 -0
- data/lib/rango/helpers/spec/fixture/app/views/radio_group_specs/hash.html.erb +1 -0
- data/lib/rango/helpers/spec/fixture/app/views/radio_group_specs/specific_attributes.html.erb +1 -0
- data/lib/rango/helpers/spec/fixture/app/views/relative_date_span_specs/date_span_on_same_day.html.erb +1 -0
- data/lib/rango/helpers/spec/fixture/app/views/relative_date_span_specs/date_span_on_same_day_on_different_year.html.erb +1 -0
- data/lib/rango/helpers/spec/fixture/app/views/relative_date_specs/relative_date_with_year.html.erb +1 -0
- data/lib/rango/helpers/spec/fixture/app/views/relative_date_specs/relative_date_without_year.html.erb +1 -0
- data/lib/rango/helpers/spec/fixture/app/views/relative_date_specs/relative_today.html.erb +1 -0
- data/lib/rango/helpers/spec/fixture/app/views/relative_date_specs/relative_tomorrow.html.erb +1 -0
- data/lib/rango/helpers/spec/fixture/app/views/relative_date_specs/relative_yesterday.html.erb +1 -0
- data/lib/rango/helpers/spec/fixture/app/views/select_specs/basic.html.erb +1 -0
- data/lib/rango/helpers/spec/fixture/app/views/select_specs/blank.html.erb +1 -0
- data/lib/rango/helpers/spec/fixture/app/views/select_specs/multiple.html.erb +1 -0
- data/lib/rango/helpers/spec/fixture/app/views/select_specs/selected.html.erb +1 -0
- data/lib/rango/helpers/spec/fixture/app/views/submit_specs/disabled_submit.html.erb +1 -0
- data/lib/rango/helpers/spec/fixture/app/views/submit_specs/submit_with_label.html.erb +1 -0
- data/lib/rango/helpers/spec/fixture/app/views/submit_specs/submit_with_values.html.erb +1 -0
- data/lib/rango/helpers/spec/fixture/app/views/tag_helper/nested_tags.html.erb +5 -0
- data/lib/rango/helpers/spec/fixture/app/views/tag_helper/tag_with_attributes.html.erb +1 -0
- data/lib/rango/helpers/spec/fixture/app/views/tag_helper/tag_with_content.html.erb +1 -0
- data/lib/rango/helpers/spec/fixture/app/views/tag_helper/tag_with_content_in_the_block.html.erb +3 -0
- data/lib/rango/helpers/spec/fixture/app/views/text_area_specs/basic.html.erb +1 -0
- data/lib/rango/helpers/spec/fixture/app/views/text_area_specs/disabled.html.erb +1 -0
- data/lib/rango/helpers/spec/fixture/app/views/text_area_specs/label.html.erb +1 -0
- data/lib/rango/helpers/spec/fixture/app/views/text_area_specs/nil.html.erb +1 -0
- data/lib/rango/helpers/spec/fixture/app/views/text_field_specs/basic.html.erb +1 -0
- data/lib/rango/helpers/spec/fixture/app/views/text_field_specs/class.html.erb +1 -0
- data/lib/rango/helpers/spec/fixture/app/views/text_field_specs/disabled.html.erb +1 -0
- data/lib/rango/helpers/spec/fixture/app/views/text_field_specs/label.html.erb +1 -0
- data/lib/rango/helpers/spec/fixture/app/views/text_field_specs/symbolized_name.html.erb +1 -0
- data/lib/rango/helpers/spec/fixture/config/environments/development.rb +6 -0
- data/lib/rango/helpers/spec/fixture/config/environments/production.rb +5 -0
- data/lib/rango/helpers/spec/fixture/config/environments/test.rb +6 -0
- data/lib/rango/helpers/spec/fixture/config/init.rb +46 -0
- data/lib/rango/helpers/spec/fixture/config/rack.rb +11 -0
- data/lib/rango/helpers/spec/fixture/config/router.rb +38 -0
- data/lib/rango/helpers/spec/fixture/public/images/merb.jpg +0 -0
- data/lib/rango/helpers/spec/fixture/public/merb.fcgi +4 -0
- data/lib/rango/helpers/spec/fixture/public/stylesheets/master.css +119 -0
- data/lib/rango/helpers/spec/merb_helpers_config_spec.rb +84 -0
- data/lib/rango/helpers/spec/merb_helpers_date_time_spec.rb +270 -0
- data/lib/rango/helpers/spec/merb_helpers_form_spec.rb +1371 -0
- data/lib/rango/helpers/spec/merb_helpers_tag_helper_spec.rb +42 -0
- data/lib/rango/helpers/spec/merb_helpers_text_spec.rb +69 -0
- data/lib/rango/helpers/spec/numeric_extlib_spec.rb +137 -0
- data/lib/rango/helpers/spec/ordinalize_spec.rb +53 -0
- data/lib/rango/helpers/spec/spec_helper.rb +160 -0
- data/lib/rango/helpers/spec/time_dsl_spec.rb +45 -0
- data/lib/rango/helpers/syntax.rb +28 -0
- data/lib/rango/loggers/fireruby.rb +1 -0
- data/lib/rango/loggers/logger.rb +100 -0
- data/lib/rango/mixins/application.rb +25 -0
- data/lib/rango/mixins/configurable.rb +20 -0
- data/lib/rango/mixins/controller.rb +113 -0
- data/lib/rango/mixins/import.rb +89 -0
- data/lib/rango/mixins/strategy.rb +28 -0
- data/lib/rango/mvc/controller.rb +139 -0
- data/lib/rango/mvc/strategies.rb +6 -0
- data/lib/rango/orm/adapters/datamapper/fields.rb +3 -0
- data/lib/rango/orm/adapters/datamapper/setup.rb +16 -0
- data/lib/rango/orm/adapters/datamapper/support.rb +15 -0
- data/lib/rango/orm/adapters/datamapper/tasks.thor +41 -0
- data/lib/rango/orm/adapters/datamapper/types/unicode_string.rb +15 -0
- data/lib/rango/project.rb +28 -0
- data/lib/rango/rack/dispatcher.rb +61 -0
- data/lib/rango/rack/middlewares/emails.rb +7 -0
- data/lib/rango/rack/middlewares/encoding.rb +25 -0
- data/lib/rango/rack/middlewares/static.rb +49 -0
- data/lib/rango/rack/request.rb +166 -0
- data/lib/rango/rango.rb +75 -0
- data/lib/rango/router/adapters/basic.rb +21 -0
- data/lib/rango/router/adapters/rack-router.rb +18 -0
- data/lib/rango/router/dispatcher.rb +29 -0
- data/lib/rango/router/specification.txt +16 -0
- data/lib/rango/settings.rb +87 -0
- data/lib/rango/settings/erubis.rb +13 -0
- data/lib/rango/settings/framework.rb +85 -0
- data/lib/rango/settings/haml.rb +35 -0
- data/lib/rango/support/cucumber/steps/given_steps.rb +5 -0
- data/lib/rango/support/cucumber/steps/then_steps.rb +41 -0
- data/lib/rango/support/cucumber/steps/when_steps.rb +54 -0
- data/lib/rango/tasks/bundle.thor +28 -0
- data/lib/rango/tasks/stats.thor +0 -0
- data/lib/rango/templates/adapter.rb +19 -0
- data/lib/rango/templates/adapters/erb.rb +45 -0
- data/lib/rango/templates/adapters/erubis.rb +60 -0
- data/lib/rango/templates/adapters/haml.rb +17 -0
- data/lib/rango/templates/template.rb +123 -0
- data/rango.gemspec +35 -0
- data/spec/factories.rb +21 -0
- data/spec/rango/auth/core/authenticated_helper_spec.rb +0 -0
- data/spec/rango/auth/core/authentication_spec.rb +0 -0
- data/spec/rango/auth/core/callbacks_spec.rb +0 -0
- data/spec/rango/auth/core/errors_spec.rb +0 -0
- data/spec/rango/auth/core/responses_spec.rb +0 -0
- data/spec/rango/auth/core/session_mixin_spec.rb +0 -0
- data/spec/rango/auth/core/spec/helpers/authentication_helper_spec_spec.rb +0 -0
- data/spec/rango/auth/core/spec/merb-auth-core/activation_fixture_spec.rb +0 -0
- data/spec/rango/auth/core/spec/merb-auth-core/authentication_spec_spec.rb +0 -0
- data/spec/rango/auth/core/spec/merb-auth-core/callbacks_spec_spec.rb +0 -0
- data/spec/rango/auth/core/spec/merb-auth-core/customizations_spec_spec.rb +0 -0
- data/spec/rango/auth/core/spec/merb-auth-core/errors_spec_spec.rb +0 -0
- data/spec/rango/auth/core/spec/merb-auth-core/failed_login_spec_spec.rb +0 -0
- data/spec/rango/auth/core/spec/merb-auth-core/merb-auth-core_spec_spec.rb +0 -0
- data/spec/rango/auth/core/spec/merb-auth-core/router_helper_spec_spec.rb +0 -0
- data/spec/rango/auth/core/spec/merb-auth-core/strategy_spec_spec.rb +0 -0
- data/spec/rango/auth/core/spec/spec_helper_spec.rb +0 -0
- data/spec/rango/auth/core/strategy_spec.rb +0 -0
- data/spec/rango/auth/core_spec.rb +0 -0
- data/spec/rango/auth/more/mixins/redirect_back_spec.rb +0 -0
- data/spec/rango/auth/more/mixins/salted_user/ar_salted_user_spec.rb +0 -0
- data/spec/rango/auth/more/mixins/salted_user/dm_salted_user_spec.rb +0 -0
- data/spec/rango/auth/more/mixins/salted_user/relaxdb_salted_user_spec.rb +0 -0
- data/spec/rango/auth/more/mixins/salted_user/sq_salted_user_spec.rb +0 -0
- data/spec/rango/auth/more/mixins/salted_user_spec.rb +0 -0
- data/spec/rango/auth/more/spec/merb-auth-more_spec_spec.rb +0 -0
- data/spec/rango/auth/more/spec/mixins/redirect_back_spec_spec.rb +0 -0
- data/spec/rango/auth/more/spec/mixins/salted_user_spec_spec.rb +0 -0
- data/spec/rango/auth/more/spec/spec_helper_spec.rb +0 -0
- data/spec/rango/auth/more/strategies/abstract_password_spec.rb +0 -0
- data/spec/rango/auth/more/strategies/basic/basic_auth_spec.rb +0 -0
- data/spec/rango/auth/more/strategies/basic/openid_spec.rb +0 -0
- data/spec/rango/auth/more/strategies/basic/password_form_spec.rb +0 -0
- data/spec/rango/auth/more_spec.rb +0 -0
- data/spec/rango/auth/slice/exceptions_spec.rb +0 -0
- data/spec/rango/auth/slice/merb-auth-slice-password_spec.rb +0 -0
- data/spec/rango/auth/slice/sessions_spec.rb +0 -0
- data/spec/rango/auth/slice/spec_helper_spec.rb +0 -0
- data/spec/rango/auth/slice/xsessions_spec.rb +0 -0
- data/spec/rango/boot_spec.rb +19 -0
- data/spec/rango/bundling/dependency_spec.rb +0 -0
- data/spec/rango/bundling/strategies_spec.rb +0 -0
- data/spec/rango/cli/project_spec.rb +0 -0
- data/spec/rango/contrib/pagination/adapters/dm_spec.rb +0 -0
- data/spec/rango/contrib/pagination/helpers_spec.rb +0 -0
- data/spec/rango/contrib/pagination/page_spec.rb +94 -0
- data/spec/rango/contrib/pagination/strategies_spec.rb +0 -0
- data/spec/rango/contrib/pagination_spec.rb +0 -0
- data/spec/rango/contrib/syndication_spec.rb +0 -0
- data/spec/rango/exceptions_spec.rb +0 -0
- data/spec/rango/ext/attribute_spec.rb +0 -0
- data/spec/rango/ext/colored_string_spec.rb +0 -0
- data/spec/rango/ext/core_ext_spec.rb +0 -0
- data/spec/rango/ext/kernel_spec.rb +0 -0
- data/spec/rango/ext/path_spec.rb +0 -0
- data/spec/rango/ext/string_spec.rb +0 -0
- data/spec/rango/ext/thor_spec.rb +0 -0
- data/spec/rango/ext/time_dsl_spec.rb +0 -0
- data/spec/rango/ext_spec.rb +0 -0
- data/spec/rango/forms/form_spec.rb +0 -0
- data/spec/rango/generators_spec.rb +0 -0
- data/spec/rango/generic_views/static_spec.rb +0 -0
- data/spec/rango/helpers/assets_spec.rb +0 -0
- data/spec/rango/helpers/general_spec.rb +0 -0
- data/spec/rango/helpers/merb-helpers/core_ext/numeric_spec.rb +0 -0
- data/spec/rango/helpers/merb-helpers/core_ext_spec.rb +0 -0
- data/spec/rango/helpers/merb-helpers/date_time_formatting_spec.rb +0 -0
- data/spec/rango/helpers/merb-helpers/date_time_helpers_spec.rb +0 -0
- data/spec/rango/helpers/merb-helpers/form/builder_spec.rb +0 -0
- data/spec/rango/helpers/merb-helpers/form/helpers_spec.rb +0 -0
- data/spec/rango/helpers/merb-helpers/form_helpers_spec.rb +0 -0
- data/spec/rango/helpers/merb-helpers/tag_helpers_spec.rb +0 -0
- data/spec/rango/helpers/merb-helpers/text_helpers_spec.rb +0 -0
- data/spec/rango/helpers/merb-helpers/time_dsl_spec.rb +0 -0
- data/spec/rango/helpers/merb-helpers_spec.rb +0 -0
- data/spec/rango/helpers/spec/core_ext_spec_spec.rb +0 -0
- data/spec/rango/helpers/spec/fixture/app/controllers/application_spec.rb +0 -0
- data/spec/rango/helpers/spec/fixture/app/controllers/bound_check_box_spec.rb +0 -0
- data/spec/rango/helpers/spec/fixture/app/controllers/bound_file_field_spec.rb +0 -0
- data/spec/rango/helpers/spec/fixture/app/controllers/bound_hidden_field_spec.rb +0 -0
- data/spec/rango/helpers/spec/fixture/app/controllers/bound_option_tag_spec.rb +0 -0
- data/spec/rango/helpers/spec/fixture/app/controllers/bound_password_field_spec.rb +0 -0
- data/spec/rango/helpers/spec/fixture/app/controllers/bound_radio_button_spec.rb +0 -0
- data/spec/rango/helpers/spec/fixture/app/controllers/bound_radio_group_spec.rb +0 -0
- data/spec/rango/helpers/spec/fixture/app/controllers/bound_select_spec.rb +0 -0
- data/spec/rango/helpers/spec/fixture/app/controllers/bound_text_area_spec.rb +0 -0
- data/spec/rango/helpers/spec/fixture/app/controllers/bound_text_field_spec.rb +0 -0
- data/spec/rango/helpers/spec/fixture/app/controllers/button_spec.rb +0 -0
- data/spec/rango/helpers/spec/fixture/app/controllers/check_box_spec.rb +0 -0
- data/spec/rango/helpers/spec/fixture/app/controllers/custom_builder_spec.rb +0 -0
- data/spec/rango/helpers/spec/fixture/app/controllers/delete_button_spec.rb +0 -0
- data/spec/rango/helpers/spec/fixture/app/controllers/exceptions_spec.rb +0 -0
- data/spec/rango/helpers/spec/fixture/app/controllers/field_set_spec.rb +0 -0
- data/spec/rango/helpers/spec/fixture/app/controllers/fields_for_spec.rb +0 -0
- data/spec/rango/helpers/spec/fixture/app/controllers/file_field_spec.rb +0 -0
- data/spec/rango/helpers/spec/fixture/app/controllers/foo_spec.rb +0 -0
- data/spec/rango/helpers/spec/fixture/app/controllers/form_for_spec.rb +0 -0
- data/spec/rango/helpers/spec/fixture/app/controllers/form_spec.rb +0 -0
- data/spec/rango/helpers/spec/fixture/app/controllers/hacker_spec.rb +0 -0
- data/spec/rango/helpers/spec/fixture/app/controllers/hidden_field_spec.rb +0 -0
- data/spec/rango/helpers/spec/fixture/app/controllers/label_spec.rb +0 -0
- data/spec/rango/helpers/spec/fixture/app/controllers/numeric_ext_spec.rb +0 -0
- data/spec/rango/helpers/spec/fixture/app/controllers/option_tag_spec.rb +0 -0
- data/spec/rango/helpers/spec/fixture/app/controllers/password_field_spec.rb +0 -0
- data/spec/rango/helpers/spec/fixture/app/controllers/radio_button_spec.rb +0 -0
- data/spec/rango/helpers/spec/fixture/app/controllers/radio_group_spec.rb +0 -0
- data/spec/rango/helpers/spec/fixture/app/controllers/relative_date_span_spec.rb +0 -0
- data/spec/rango/helpers/spec/fixture/app/controllers/relative_date_spec.rb +0 -0
- data/spec/rango/helpers/spec/fixture/app/controllers/select_spec.rb +0 -0
- data/spec/rango/helpers/spec/fixture/app/controllers/specs_controller_spec.rb +0 -0
- data/spec/rango/helpers/spec/fixture/app/controllers/submit_spec.rb +0 -0
- data/spec/rango/helpers/spec/fixture/app/controllers/tag_helper_spec.rb +0 -0
- data/spec/rango/helpers/spec/fixture/app/controllers/text_area_spec.rb +0 -0
- data/spec/rango/helpers/spec/fixture/app/controllers/text_field_spec.rb +0 -0
- data/spec/rango/helpers/spec/fixture/app/helpers/global_helpers_spec.rb +0 -0
- data/spec/rango/helpers/spec/fixture/app/models/fake_dm_model_spec.rb +0 -0
- data/spec/rango/helpers/spec/fixture/app/models/first_generic_fake_model_spec.rb +0 -0
- data/spec/rango/helpers/spec/fixture/app/models/hacker_generic_model_spec.rb +0 -0
- data/spec/rango/helpers/spec/fixture/app/models/second_generic_fake_model_spec.rb +0 -0
- data/spec/rango/helpers/spec/fixture/app/models/third_generic_fake_model_spec.rb +0 -0
- data/spec/rango/helpers/spec/fixture/config/environments/development_spec.rb +0 -0
- data/spec/rango/helpers/spec/fixture/config/environments/production_spec.rb +0 -0
- data/spec/rango/helpers/spec/fixture/config/environments/test_spec.rb +0 -0
- data/spec/rango/helpers/spec/fixture/config/init_spec.rb +0 -0
- data/spec/rango/helpers/spec/fixture/config/rack_spec.rb +0 -0
- data/spec/rango/helpers/spec/fixture/config/router_spec.rb +0 -0
- data/spec/rango/helpers/spec/merb_helpers_config_spec_spec.rb +0 -0
- data/spec/rango/helpers/spec/merb_helpers_date_time_spec_spec.rb +0 -0
- data/spec/rango/helpers/spec/merb_helpers_form_spec_spec.rb +0 -0
- data/spec/rango/helpers/spec/merb_helpers_tag_helper_spec_spec.rb +0 -0
- data/spec/rango/helpers/spec/merb_helpers_text_spec_spec.rb +0 -0
- data/spec/rango/helpers/spec/numeric_extlib_spec_spec.rb +0 -0
- data/spec/rango/helpers/spec/ordinalize_spec_spec.rb +0 -0
- data/spec/rango/helpers/spec/spec_helper_spec.rb +0 -0
- data/spec/rango/helpers/spec/time_dsl_spec_spec.rb +0 -0
- data/spec/rango/helpers/syntax_spec.rb +0 -0
- data/spec/rango/helpers_spec.rb +0 -0
- data/spec/rango/loggers/fireruby_spec.rb +0 -0
- data/spec/rango/loggers/logger_spec.rb +0 -0
- data/spec/rango/mixins/application_spec.rb +0 -0
- data/spec/rango/mixins/controller_spec.rb +0 -0
- data/spec/rango/mixins/import_spec.rb +0 -0
- data/spec/rango/mvc/controller_spec.rb +24 -0
- data/spec/rango/mvc/strategies_spec.rb +0 -0
- data/spec/rango/orm/adapters/dm/fields_spec.rb +0 -0
- data/spec/rango/orm/adapters/dm/setup_spec.rb +0 -0
- data/spec/rango/project_spec.rb +46 -0
- data/spec/rango/rack/dispatcher_spec.rb +0 -0
- data/spec/rango/rack/middlewares/emails_spec.rb +0 -0
- data/spec/rango/rack/middlewares/static_spec.rb +0 -0
- data/spec/rango/rack/request_spec.rb +18 -0
- data/spec/rango/rango_spec.rb +0 -0
- data/spec/rango/router/route_spec.rb +0 -0
- data/spec/rango/router/router_spec.rb +0 -0
- data/spec/rango/router/strategies_spec.rb +0 -0
- data/spec/rango/settings_spec.rb +26 -0
- data/spec/rango/spec/cucumber_spec.rb +0 -0
- data/spec/rango/spec/rspec_spec.rb +0 -0
- data/spec/rango/templates/adapter_spec.rb +0 -0
- data/spec/rango/templates/adapters/erb_spec.rb +0 -0
- data/spec/rango/templates/adapters/erubis_spec.rb +0 -0
- data/spec/rango/templates/adapters/haml_spec.rb +0 -0
- data/spec/rango/templates/template_spec.rb +0 -0
- data/spec/rango_spec.rb +37 -0
- data/spec/spec.opts +5 -0
- data/spec/spec_helper.rb +7 -0
- data/spec/stubs/flat.rb +0 -0
- data/stubs/app/content/init.rb.rbt +6 -0
- data/stubs/app/content/models.rb.rbt +9 -0
- data/stubs/app/content/views.rb.rbt +10 -0
- data/stubs/app/preprocess.rb +13 -0
- data/stubs/bigapp/content/init.rb +0 -0
- data/stubs/bigapp/content/views/application.rb +0 -0
- data/stubs/bigapp/preprocess.rb +5 -0
- data/stubs/features/content/env.rb +36 -0
- data/stubs/flat/content/flat.ru.rbt +19 -0
- data/stubs/flat/preprocess.rb +5 -0
- data/stubs/project/content/TODO +0 -0
- data/stubs/project/content/Thorfile +12 -0
- data/stubs/project/content/config.ru +34 -0
- data/stubs/project/content/init.rb +14 -0
- data/stubs/project/content/settings.rb.rbt +10 -0
- data/stubs/project/content/settings_local.rb.rbt +6 -0
- data/stubs/project/content/templates/base.html.haml.rbt +29 -0
- data/stubs/project/preprocess.rb +5 -0
- data/stubs/pupu/preprocess.rb +5 -0
- data/stubs/stub/content/metadata.yml +2 -0
- data/stubs/stub/content/postprocess.rb +7 -0
- data/stubs/stub/content/preprocess.rb +5 -0
- data/stubs/stub/preprocess.rb +5 -0
- data/support/Rango.tmbundle/Commands/Documentation for current word.tmCommand +22 -0
- data/support/Rango.tmbundle/Commands/Got to import.tmCommand +23 -0
- data/support/Rango.tmbundle/Commands/Rango console.tmCommand +22 -0
- data/support/Rango.tmbundle/Commands/Rango server.tmCommand +22 -0
- data/support/Rango.tmbundle/Commands/Read documentation.tmCommand +22 -0
- data/support/Rango.tmbundle/Snippets/Method with yardoc.tmSnippet +20 -0
- data/support/Rango.tmbundle/Snippets/Project_configure.tmSnippet +18 -0
- data/support/Rango.tmbundle/Snippets/Project_import.tmSnippet +16 -0
- data/support/Rango.tmbundle/Snippets/Project_logger_debug.tmSnippet +16 -0
- data/support/Rango.tmbundle/Snippets/Project_logger_error.tmSnippet +16 -0
- data/support/Rango.tmbundle/Snippets/Project_logger_fatal.tmSnippet +16 -0
- data/support/Rango.tmbundle/Snippets/Project_logger_inspect.tmSnippet +16 -0
- data/support/Rango.tmbundle/Snippets/Project_logger_warn.tmSnippet +16 -0
- data/support/Rango.tmbundle/Snippets/Rango_dependency.tmSnippet +16 -0
- data/support/Rango.tmbundle/Snippets/Rango_import.tmSnippet +16 -0
- data/support/Rango.tmbundle/Snippets/Rango_logger_debug.tmSnippet +16 -0
- data/support/Rango.tmbundle/Snippets/Rango_logger_error.tmSnippet +16 -0
- data/support/Rango.tmbundle/Snippets/Rango_logger_fatal.tmSnippet +16 -0
- data/support/Rango.tmbundle/Snippets/Rango_logger_inspect.tmSnippet +16 -0
- data/support/Rango.tmbundle/Snippets/Rango_logger_warn.tmSnippet +16 -0
- data/support/Rango.tmbundle/Snippets/controller.tmSnippet +28 -0
- data/support/Rango.tmbundle/Snippets/doc.tmSnippet +20 -0
- data/support/Rango.tmbundle/Snippets/match.tmSnippet +16 -0
- data/support/Rango.tmbundle/Snippets/thor task.tmSnippet +19 -0
- data/support/Rango.tmbundle/info.plist +37 -0
- data/support/hooks/commit-msg +13 -0
- data/support/hooks/post-commit +4 -0
- data/support/hooks/pre-commit +4 -0
- data/support/hooks/pre-rebase +169 -0
- data/support/hooks/prepare-commit-msg +36 -0
- data/tasks/hooks.thor +26 -0
- data/tasks/package.thor +49 -0
- data/tasks/release.thor +72 -0
- data/tasks/repair.thor +75 -0
- data/tasks/spec.thor +39 -0
- data/tasks/stats.thor +66 -0
- data/tasks/yardoc.thor +16 -0
- data/templates/errors/404.html.erb +52 -0
- data/templates/errors/406.html.erb +1 -0
- data/templates/errors/500.html.erb +48 -0
- metadata +866 -0
data/tasks/stats.thor
ADDED
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
require "fileutils"
|
|
4
|
+
require_relative "../lib/rango/ext"
|
|
5
|
+
|
|
6
|
+
# TODO: short vs. long formating (just libs, specs etc or them + each file)
|
|
7
|
+
# TODO: proper indentation (1<space>, but 12<space> => bad indentation) => format string
|
|
8
|
+
class Stats < Thor
|
|
9
|
+
self.default_task(:all)
|
|
10
|
+
|
|
11
|
+
def initialize
|
|
12
|
+
@altogether = 0
|
|
13
|
+
end
|
|
14
|
+
|
|
15
|
+
desc "all", "Lines of code altogether"
|
|
16
|
+
def all
|
|
17
|
+
self.run(:libs, :specs, :tasks, :hooks)
|
|
18
|
+
self.altogether(@altogether)
|
|
19
|
+
end
|
|
20
|
+
|
|
21
|
+
desc "libs", "Lines of code in library"
|
|
22
|
+
def libs
|
|
23
|
+
self.count(Dir.glob("lib/rango/**/*.rb") + ["lib/rango.rb"])
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
desc "specs", "Lines of code in specs"
|
|
27
|
+
def specs
|
|
28
|
+
self.count(Dir.glob("spec/**/*_spec.rb"))
|
|
29
|
+
end
|
|
30
|
+
|
|
31
|
+
desc "tasks", "Lines of code in tasks"
|
|
32
|
+
def tasks
|
|
33
|
+
self.count(Dir.glob("tasks/*.thor"))
|
|
34
|
+
end
|
|
35
|
+
|
|
36
|
+
desc "hooks", "Lines of code in support/hooks"
|
|
37
|
+
def hooks
|
|
38
|
+
self.count(Dir.glob("support/hooks/*"))
|
|
39
|
+
end
|
|
40
|
+
|
|
41
|
+
protected
|
|
42
|
+
def count(files)
|
|
43
|
+
altogether = 0
|
|
44
|
+
files.each do |file|
|
|
45
|
+
count = File.readlines(file).count
|
|
46
|
+
unless count == 0
|
|
47
|
+
puts "#{count.to_s.colorize.green} #{file}"
|
|
48
|
+
altogether += count
|
|
49
|
+
end
|
|
50
|
+
end
|
|
51
|
+
self.altogether(altogether)
|
|
52
|
+
@altogether += altogether
|
|
53
|
+
return altogether
|
|
54
|
+
end
|
|
55
|
+
|
|
56
|
+
def run(*tasks)
|
|
57
|
+
tasks.each do |task|
|
|
58
|
+
self.send(task)
|
|
59
|
+
puts
|
|
60
|
+
end
|
|
61
|
+
end
|
|
62
|
+
|
|
63
|
+
def altogether(count)
|
|
64
|
+
puts "=> ".colorize.red.to_s + "#{count}".colorize.green.to_s + " lines of code".colorize.yellow.to_s
|
|
65
|
+
end
|
|
66
|
+
end
|
data/tasks/yardoc.thor
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
class Yardoc < Thor
|
|
4
|
+
desc "generate", "Generate Yardoc documentation for rango."
|
|
5
|
+
def generate
|
|
6
|
+
# template, textile or rdoc or md
|
|
7
|
+
# -t: template [available: default, javadoc]
|
|
8
|
+
# -m: markup style used in documentation [available: textile, markdown, rdoc]
|
|
9
|
+
%x[yardoc -r README.textile lib/rango.rb lib/rango/**/*.rb -t default -o doc/head]
|
|
10
|
+
end
|
|
11
|
+
|
|
12
|
+
desc "clean", "Remove the documentation"
|
|
13
|
+
def clean
|
|
14
|
+
%x[rm -rf doc]
|
|
15
|
+
end
|
|
16
|
+
end
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
<html>
|
|
2
|
+
<head>
|
|
3
|
+
<meta http-equiv="Content-type" content="text/html; charset=utf-8">
|
|
4
|
+
<title>404 Page Not Found</title>
|
|
5
|
+
<style type="text/css" media="screen">
|
|
6
|
+
.normal { color: #fff; }
|
|
7
|
+
.comment { color: #005; font-style: italic; }
|
|
8
|
+
.keyword { color: #A44; font-weight: bold; }
|
|
9
|
+
.method { color: #44f; }
|
|
10
|
+
.class { color: #0c4; }
|
|
11
|
+
.module { color: #050; }
|
|
12
|
+
.punct { color: #668; font-weight: bold; }
|
|
13
|
+
.symbol { color: #ff0; }
|
|
14
|
+
.string { color: #4f4; }
|
|
15
|
+
.char { color: #F07; }
|
|
16
|
+
.ident { color: #fff; }
|
|
17
|
+
.constant { color: #0c4; }
|
|
18
|
+
.regex { color: #B66; background: #FEF; }
|
|
19
|
+
.number { color: #F99; }
|
|
20
|
+
.attribute { color: #fc4; }
|
|
21
|
+
.global { color: #7FB; }
|
|
22
|
+
.expr { color: #227; }
|
|
23
|
+
.escape { color: #277; }
|
|
24
|
+
</style>
|
|
25
|
+
</head>
|
|
26
|
+
<body>
|
|
27
|
+
<h1><span style="color:red">404</span> Page Not Found</h1>
|
|
28
|
+
<p>
|
|
29
|
+
Request path: <%= @path %>
|
|
30
|
+
</p>
|
|
31
|
+
|
|
32
|
+
<!-- TODO: router params plus request params -->
|
|
33
|
+
<% unless @params.nil? %>
|
|
34
|
+
<h2>Params</h2>
|
|
35
|
+
<%= @params.inspect %>
|
|
36
|
+
<% end %>
|
|
37
|
+
|
|
38
|
+
<h2>Routes</h2>
|
|
39
|
+
<% unless @routes.empty? %>
|
|
40
|
+
<ul>
|
|
41
|
+
<% @routes.each do |route| %>
|
|
42
|
+
<li>
|
|
43
|
+
<%= syntax(route.match_pattern.inspect) %>
|
|
44
|
+
<%= syntax(route.match_params.inspect) unless route.match_params.empty? %>
|
|
45
|
+
</li>
|
|
46
|
+
<% end %>
|
|
47
|
+
<% else %>
|
|
48
|
+
Any route is defined. Please edit your <code><%= @router %></code>.
|
|
49
|
+
<% end %>
|
|
50
|
+
</ul>
|
|
51
|
+
</body>
|
|
52
|
+
</html>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<h1>406</h1>
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
<html>
|
|
2
|
+
<head>
|
|
3
|
+
<meta http-equiv="Content-type" content="text/html; charset=utf-8">
|
|
4
|
+
<title>500 Internal Server Error</title>
|
|
5
|
+
<style type="text/css" media="screen">
|
|
6
|
+
pre { background: #111122; padding: 10px; color: #228822; }
|
|
7
|
+
.ruby .normal { color: #fff; }
|
|
8
|
+
.ruby .comment { color: #005; font-style: italic; }
|
|
9
|
+
.ruby .keyword { color: #A44; font-weight: bold; }
|
|
10
|
+
.ruby .method { color: #44f; }
|
|
11
|
+
.ruby .class { color: #0c4; }
|
|
12
|
+
.ruby .module { color: #050; }
|
|
13
|
+
.ruby .punct { color: #668; font-weight: bold; }
|
|
14
|
+
.ruby .symbol { color: #ff0; }
|
|
15
|
+
.ruby .string { color: #4f4; }
|
|
16
|
+
.ruby .char { color: #F07; }
|
|
17
|
+
.ruby .ident { color: #fff; }
|
|
18
|
+
.ruby .constant { color: #0c4; }
|
|
19
|
+
.ruby .regex { color: #B66; background: #FEF; }
|
|
20
|
+
.ruby .number { color: #F99; }
|
|
21
|
+
.ruby .attribute { color: #fc4; }
|
|
22
|
+
.ruby .global { color: #7FB; }
|
|
23
|
+
.ruby .expr { color: #227; }
|
|
24
|
+
.ruby .escape { color: #277; }
|
|
25
|
+
</style>
|
|
26
|
+
</head>
|
|
27
|
+
<body>
|
|
28
|
+
<h1><span style="color:red">500</span> Internal Server Error</h1>
|
|
29
|
+
|
|
30
|
+
<% unless @params.nil? %>
|
|
31
|
+
<h2>Params</h2>
|
|
32
|
+
<%= @params.inspect %>
|
|
33
|
+
<% end %>
|
|
34
|
+
|
|
35
|
+
<h2>Backtraces</h2>
|
|
36
|
+
<% unless @traces.empty? %>
|
|
37
|
+
<ul>
|
|
38
|
+
<li>
|
|
39
|
+
<% @traces.each do |trace| %>
|
|
40
|
+
<%= trace.match_pattern.inspect %>
|
|
41
|
+
<% end %>
|
|
42
|
+
</li>
|
|
43
|
+
<% else %>
|
|
44
|
+
Any backtraces found. Try to disable filtering.
|
|
45
|
+
<% end %>
|
|
46
|
+
</ul>
|
|
47
|
+
</body>
|
|
48
|
+
</html>
|
metadata
ADDED
|
@@ -0,0 +1,866 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: rango
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.0.3
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- "Jakub \xC5\xA0\xC5\xA5astn\xC3\xBD aka Botanicus"
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain:
|
|
11
|
+
date: 2009-06-04 00:00:00 +01:00
|
|
12
|
+
default_executable: rango
|
|
13
|
+
dependencies:
|
|
14
|
+
- !ruby/object:Gem::Dependency
|
|
15
|
+
name: rack
|
|
16
|
+
type: :runtime
|
|
17
|
+
version_requirement:
|
|
18
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
19
|
+
requirements:
|
|
20
|
+
- - ">="
|
|
21
|
+
- !ruby/object:Gem::Version
|
|
22
|
+
version: "0"
|
|
23
|
+
version:
|
|
24
|
+
- !ruby/object:Gem::Dependency
|
|
25
|
+
name: extlib
|
|
26
|
+
type: :runtime
|
|
27
|
+
version_requirement:
|
|
28
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
29
|
+
requirements:
|
|
30
|
+
- - ">="
|
|
31
|
+
- !ruby/object:Gem::Version
|
|
32
|
+
version: "0"
|
|
33
|
+
version:
|
|
34
|
+
description: ""
|
|
35
|
+
email: knava.bestvinensis@gmail.com
|
|
36
|
+
executables:
|
|
37
|
+
- rango
|
|
38
|
+
extensions: []
|
|
39
|
+
|
|
40
|
+
extra_rdoc_files: []
|
|
41
|
+
|
|
42
|
+
files:
|
|
43
|
+
- bin
|
|
44
|
+
- bin/rango
|
|
45
|
+
- CHANGELOG
|
|
46
|
+
- doc
|
|
47
|
+
- doc/head
|
|
48
|
+
- doc/head/all-methods.html
|
|
49
|
+
- doc/head/all-namespaces.html
|
|
50
|
+
- doc/head/app.js
|
|
51
|
+
- doc/head/Array.html
|
|
52
|
+
- doc/head/AttributeMixin.html
|
|
53
|
+
- doc/head/Class.html
|
|
54
|
+
- doc/head/ColoredString.html
|
|
55
|
+
- doc/head/Hash.html
|
|
56
|
+
- doc/head/index.html
|
|
57
|
+
- doc/head/jquery.js
|
|
58
|
+
- doc/head/Kernel.html
|
|
59
|
+
- doc/head/Object.html
|
|
60
|
+
- doc/head/ObjectSpace.html
|
|
61
|
+
- doc/head/Path.html
|
|
62
|
+
- doc/head/Range.html
|
|
63
|
+
- doc/head/Rango
|
|
64
|
+
- doc/head/Rango/ApplicationMixin.html
|
|
65
|
+
- doc/head/Rango/Bundling
|
|
66
|
+
- doc/head/Rango/Bundling/RequireStrategy.html
|
|
67
|
+
- doc/head/Rango/Bundling/Strategy.html
|
|
68
|
+
- doc/head/Rango/Bundling.html
|
|
69
|
+
- doc/head/Rango/CallableStrategy.html
|
|
70
|
+
- doc/head/Rango/Chainable.html
|
|
71
|
+
- doc/head/Rango/Configurable.html
|
|
72
|
+
- doc/head/Rango/Controller.html
|
|
73
|
+
- doc/head/Rango/ControllerMixin.html
|
|
74
|
+
- doc/head/Rango/ControllerStrategy.html
|
|
75
|
+
- doc/head/Rango/DependencyStrategy.html
|
|
76
|
+
- doc/head/Rango/Dispatcher.html
|
|
77
|
+
- doc/head/Rango/Form.html
|
|
78
|
+
- doc/head/Rango/GemDependencyStrategy.html
|
|
79
|
+
- doc/head/Rango/Generator.html
|
|
80
|
+
- doc/head/Rango/GenericViews.html
|
|
81
|
+
- doc/head/Rango/GitDependencyStrategy.html
|
|
82
|
+
- doc/head/Rango/GithubDependencyStrategy.html
|
|
83
|
+
- doc/head/Rango/Handler.html
|
|
84
|
+
- doc/head/Rango/Helpers.html
|
|
85
|
+
- doc/head/Rango/Hookable.html
|
|
86
|
+
- doc/head/Rango/ImportMixin.html
|
|
87
|
+
- doc/head/Rango/Logger.html
|
|
88
|
+
- doc/head/Rango/ModelForm.html
|
|
89
|
+
- doc/head/Rango/Project.html
|
|
90
|
+
- doc/head/Rango/RenderMixin.html
|
|
91
|
+
- doc/head/Rango/Request.html
|
|
92
|
+
- doc/head/Rango/Route.html
|
|
93
|
+
- doc/head/Rango/Router
|
|
94
|
+
- doc/head/Rango/Router/Dispatcher.html
|
|
95
|
+
- doc/head/Rango/Router.html
|
|
96
|
+
- doc/head/Rango/RouterStrategy.html
|
|
97
|
+
- doc/head/Rango/Session.html
|
|
98
|
+
- doc/head/Rango/Settings
|
|
99
|
+
- doc/head/Rango/Settings/Erubis.html
|
|
100
|
+
- doc/head/Rango/Settings/Framework.html
|
|
101
|
+
- doc/head/Rango/Settings/Haml.html
|
|
102
|
+
- doc/head/Rango/Settings.html
|
|
103
|
+
- doc/head/Rango/SimpleTemplate.html
|
|
104
|
+
- doc/head/Rango/StrategyMixin.html
|
|
105
|
+
- doc/head/Rango/Tasks.html
|
|
106
|
+
- doc/head/Rango/Template
|
|
107
|
+
- doc/head/Rango/Template/Adapter.html
|
|
108
|
+
- doc/head/Rango/Template.html
|
|
109
|
+
- doc/head/Rango/Templates
|
|
110
|
+
- doc/head/Rango/Templates/Adapter.html
|
|
111
|
+
- doc/head/Rango/Templates/Template.html
|
|
112
|
+
- doc/head/Rango/Templates/TemplateHelpers.html
|
|
113
|
+
- doc/head/Rango/Templates.html
|
|
114
|
+
- doc/head/Rango.html
|
|
115
|
+
- doc/head/RangoThor.html
|
|
116
|
+
- doc/head/readme.html
|
|
117
|
+
- doc/head/String.html
|
|
118
|
+
- doc/head/style.css
|
|
119
|
+
- doc/head/syntax_highlight.css
|
|
120
|
+
- doc/head/TimeDSL.html
|
|
121
|
+
- doc/versions
|
|
122
|
+
- doc/versions/0.0.1
|
|
123
|
+
- doc/versions/0.0.1/all-methods.html
|
|
124
|
+
- doc/versions/0.0.1/all-namespaces.html
|
|
125
|
+
- doc/versions/0.0.1/app.js
|
|
126
|
+
- doc/versions/0.0.1/index.html
|
|
127
|
+
- doc/versions/0.0.1/jquery.js
|
|
128
|
+
- doc/versions/0.0.1/Rango
|
|
129
|
+
- doc/versions/0.0.1/Rango/CallableStrategy.html
|
|
130
|
+
- doc/versions/0.0.1/Rango/ControllerStrategy.html
|
|
131
|
+
- doc/versions/0.0.1/Rango/Route.html
|
|
132
|
+
- doc/versions/0.0.1/Rango/Router.html
|
|
133
|
+
- doc/versions/0.0.1/Rango/RouterStrategy.html
|
|
134
|
+
- doc/versions/0.0.1/Rango/Template
|
|
135
|
+
- doc/versions/0.0.1/Rango/Template/Adapter.html
|
|
136
|
+
- doc/versions/0.0.1/Rango/Template.html
|
|
137
|
+
- doc/versions/0.0.1/Rango.html
|
|
138
|
+
- doc/versions/0.0.1/readme.html
|
|
139
|
+
- doc/versions/0.0.1/style.css
|
|
140
|
+
- doc/versions/0.0.1/syntax_highlight.css
|
|
141
|
+
- lib
|
|
142
|
+
- lib/rango
|
|
143
|
+
- lib/rango/boot.rb
|
|
144
|
+
- lib/rango/bundling
|
|
145
|
+
- lib/rango/bundling/dependency.rb
|
|
146
|
+
- lib/rango/bundling/strategies
|
|
147
|
+
- lib/rango/bundling/strategies/copy.rb
|
|
148
|
+
- lib/rango/bundling/strategies/gem.rb
|
|
149
|
+
- lib/rango/bundling/strategies/git.rb
|
|
150
|
+
- lib/rango/bundling/strategies/hg.rb
|
|
151
|
+
- lib/rango/bundling/strategy.rb
|
|
152
|
+
- lib/rango/cli
|
|
153
|
+
- lib/rango/cli/generator.rb
|
|
154
|
+
- lib/rango/cli/project.rb
|
|
155
|
+
- lib/rango/cli/simple_template.rb
|
|
156
|
+
- lib/rango/contrib
|
|
157
|
+
- lib/rango/contrib/pagination
|
|
158
|
+
- lib/rango/contrib/pagination/_pagination.html.haml
|
|
159
|
+
- lib/rango/contrib/pagination/adapters
|
|
160
|
+
- lib/rango/contrib/pagination/adapters/datamapper.rb
|
|
161
|
+
- lib/rango/contrib/pagination/helpers.rb
|
|
162
|
+
- lib/rango/contrib/pagination/page.rb
|
|
163
|
+
- lib/rango/contrib/pagination/README.textile
|
|
164
|
+
- lib/rango/contrib/pagination/strategies.rb
|
|
165
|
+
- lib/rango/contrib/pagination/TODO
|
|
166
|
+
- lib/rango/contrib/pagination.rb
|
|
167
|
+
- lib/rango/contrib/syndication.rb
|
|
168
|
+
- lib/rango/exceptions.rb
|
|
169
|
+
- lib/rango/ext
|
|
170
|
+
- lib/rango/ext/attribute.rb
|
|
171
|
+
- lib/rango/ext/class.rb
|
|
172
|
+
- lib/rango/ext/colored_string.rb
|
|
173
|
+
- lib/rango/ext/core_ext.rb
|
|
174
|
+
- lib/rango/ext/hash.rb
|
|
175
|
+
- lib/rango/ext/kernel.rb
|
|
176
|
+
- lib/rango/ext/object_space.rb
|
|
177
|
+
- lib/rango/ext/path.rb
|
|
178
|
+
- lib/rango/ext/random.rb
|
|
179
|
+
- lib/rango/ext/string.rb
|
|
180
|
+
- lib/rango/ext/thor.rb
|
|
181
|
+
- lib/rango/ext/time_dsl.rb
|
|
182
|
+
- lib/rango/ext/try.rb
|
|
183
|
+
- lib/rango/ext.rb
|
|
184
|
+
- lib/rango/forms
|
|
185
|
+
- lib/rango/forms/form.rb
|
|
186
|
+
- lib/rango/generic_views
|
|
187
|
+
- lib/rango/generic_views/static.rb
|
|
188
|
+
- lib/rango/helpers
|
|
189
|
+
- lib/rango/helpers/assets.rb
|
|
190
|
+
- lib/rango/helpers/general.rb
|
|
191
|
+
- lib/rango/helpers/merb-helpers
|
|
192
|
+
- lib/rango/helpers/merb-helpers/core_ext
|
|
193
|
+
- lib/rango/helpers/merb-helpers/core_ext/numeric.rb
|
|
194
|
+
- lib/rango/helpers/merb-helpers/core_ext.rb
|
|
195
|
+
- lib/rango/helpers/merb-helpers/date_time_formatting.rb
|
|
196
|
+
- lib/rango/helpers/merb-helpers/date_time_helpers.rb
|
|
197
|
+
- lib/rango/helpers/merb-helpers/form
|
|
198
|
+
- lib/rango/helpers/merb-helpers/form/builder.rb
|
|
199
|
+
- lib/rango/helpers/merb-helpers/form/helpers.rb
|
|
200
|
+
- lib/rango/helpers/merb-helpers/form_helpers.rb
|
|
201
|
+
- lib/rango/helpers/merb-helpers/tag_helpers.rb
|
|
202
|
+
- lib/rango/helpers/merb-helpers/text_helpers.rb
|
|
203
|
+
- lib/rango/helpers/merb-helpers/time_dsl.rb
|
|
204
|
+
- lib/rango/helpers/merb-helpers.rb
|
|
205
|
+
- lib/rango/helpers/README
|
|
206
|
+
- lib/rango/helpers/spec
|
|
207
|
+
- lib/rango/helpers/spec/core_ext_spec.rb
|
|
208
|
+
- lib/rango/helpers/spec/fixture
|
|
209
|
+
- lib/rango/helpers/spec/fixture/app
|
|
210
|
+
- lib/rango/helpers/spec/fixture/app/controllers
|
|
211
|
+
- lib/rango/helpers/spec/fixture/app/controllers/application.rb
|
|
212
|
+
- lib/rango/helpers/spec/fixture/app/controllers/bound_check_box.rb
|
|
213
|
+
- lib/rango/helpers/spec/fixture/app/controllers/bound_file_field.rb
|
|
214
|
+
- lib/rango/helpers/spec/fixture/app/controllers/bound_hidden_field.rb
|
|
215
|
+
- lib/rango/helpers/spec/fixture/app/controllers/bound_option_tag.rb
|
|
216
|
+
- lib/rango/helpers/spec/fixture/app/controllers/bound_password_field.rb
|
|
217
|
+
- lib/rango/helpers/spec/fixture/app/controllers/bound_radio_button.rb
|
|
218
|
+
- lib/rango/helpers/spec/fixture/app/controllers/bound_radio_group.rb
|
|
219
|
+
- lib/rango/helpers/spec/fixture/app/controllers/bound_select.rb
|
|
220
|
+
- lib/rango/helpers/spec/fixture/app/controllers/bound_text_area.rb
|
|
221
|
+
- lib/rango/helpers/spec/fixture/app/controllers/bound_text_field.rb
|
|
222
|
+
- lib/rango/helpers/spec/fixture/app/controllers/button.rb
|
|
223
|
+
- lib/rango/helpers/spec/fixture/app/controllers/check_box.rb
|
|
224
|
+
- lib/rango/helpers/spec/fixture/app/controllers/custom_builder.rb
|
|
225
|
+
- lib/rango/helpers/spec/fixture/app/controllers/delete_button.rb
|
|
226
|
+
- lib/rango/helpers/spec/fixture/app/controllers/exceptions.rb
|
|
227
|
+
- lib/rango/helpers/spec/fixture/app/controllers/field_set.rb
|
|
228
|
+
- lib/rango/helpers/spec/fixture/app/controllers/fields_for.rb
|
|
229
|
+
- lib/rango/helpers/spec/fixture/app/controllers/file_field.rb
|
|
230
|
+
- lib/rango/helpers/spec/fixture/app/controllers/foo.rb
|
|
231
|
+
- lib/rango/helpers/spec/fixture/app/controllers/form.rb
|
|
232
|
+
- lib/rango/helpers/spec/fixture/app/controllers/form_for.rb
|
|
233
|
+
- lib/rango/helpers/spec/fixture/app/controllers/hacker.rb
|
|
234
|
+
- lib/rango/helpers/spec/fixture/app/controllers/hidden_field.rb
|
|
235
|
+
- lib/rango/helpers/spec/fixture/app/controllers/label.rb
|
|
236
|
+
- lib/rango/helpers/spec/fixture/app/controllers/numeric_ext.rb
|
|
237
|
+
- lib/rango/helpers/spec/fixture/app/controllers/option_tag.rb
|
|
238
|
+
- lib/rango/helpers/spec/fixture/app/controllers/password_field.rb
|
|
239
|
+
- lib/rango/helpers/spec/fixture/app/controllers/radio_button.rb
|
|
240
|
+
- lib/rango/helpers/spec/fixture/app/controllers/radio_group.rb
|
|
241
|
+
- lib/rango/helpers/spec/fixture/app/controllers/relative_date.rb
|
|
242
|
+
- lib/rango/helpers/spec/fixture/app/controllers/relative_date_span.rb
|
|
243
|
+
- lib/rango/helpers/spec/fixture/app/controllers/select.rb
|
|
244
|
+
- lib/rango/helpers/spec/fixture/app/controllers/specs_controller.rb
|
|
245
|
+
- lib/rango/helpers/spec/fixture/app/controllers/submit.rb
|
|
246
|
+
- lib/rango/helpers/spec/fixture/app/controllers/tag_helper.rb
|
|
247
|
+
- lib/rango/helpers/spec/fixture/app/controllers/text_area.rb
|
|
248
|
+
- lib/rango/helpers/spec/fixture/app/controllers/text_field.rb
|
|
249
|
+
- lib/rango/helpers/spec/fixture/app/helpers
|
|
250
|
+
- lib/rango/helpers/spec/fixture/app/helpers/global_helpers.rb
|
|
251
|
+
- lib/rango/helpers/spec/fixture/app/models
|
|
252
|
+
- lib/rango/helpers/spec/fixture/app/models/fake_dm_model.rb
|
|
253
|
+
- lib/rango/helpers/spec/fixture/app/models/first_generic_fake_model.rb
|
|
254
|
+
- lib/rango/helpers/spec/fixture/app/models/hacker_generic_model.rb
|
|
255
|
+
- lib/rango/helpers/spec/fixture/app/models/second_generic_fake_model.rb
|
|
256
|
+
- lib/rango/helpers/spec/fixture/app/models/third_generic_fake_model.rb
|
|
257
|
+
- lib/rango/helpers/spec/fixture/app/views
|
|
258
|
+
- lib/rango/helpers/spec/fixture/app/views/bound_check_box_specs
|
|
259
|
+
- lib/rango/helpers/spec/fixture/app/views/bound_check_box_specs/basic.html.erb
|
|
260
|
+
- lib/rango/helpers/spec/fixture/app/views/bound_check_box_specs/basic_unchecked.html.erb
|
|
261
|
+
- lib/rango/helpers/spec/fixture/app/views/bound_check_box_specs/checked.html.erb
|
|
262
|
+
- lib/rango/helpers/spec/fixture/app/views/bound_check_box_specs/errors.html.erb
|
|
263
|
+
- lib/rango/helpers/spec/fixture/app/views/bound_check_box_specs/label.html.erb
|
|
264
|
+
- lib/rango/helpers/spec/fixture/app/views/bound_check_box_specs/on_and_off.html.erb
|
|
265
|
+
- lib/rango/helpers/spec/fixture/app/views/bound_check_box_specs/raise_value_error.html.erb
|
|
266
|
+
- lib/rango/helpers/spec/fixture/app/views/bound_file_field_specs
|
|
267
|
+
- lib/rango/helpers/spec/fixture/app/views/bound_file_field_specs/additional_attributes.html.erb
|
|
268
|
+
- lib/rango/helpers/spec/fixture/app/views/bound_file_field_specs/takes_string.html.erb
|
|
269
|
+
- lib/rango/helpers/spec/fixture/app/views/bound_file_field_specs/with_label.html.erb
|
|
270
|
+
- lib/rango/helpers/spec/fixture/app/views/bound_hidden_field_specs
|
|
271
|
+
- lib/rango/helpers/spec/fixture/app/views/bound_hidden_field_specs/basic.html.erb
|
|
272
|
+
- lib/rango/helpers/spec/fixture/app/views/bound_hidden_field_specs/errors.html.erb
|
|
273
|
+
- lib/rango/helpers/spec/fixture/app/views/bound_hidden_field_specs/hidden_error.html.erb
|
|
274
|
+
- lib/rango/helpers/spec/fixture/app/views/bound_hidden_field_specs/label.html.erb
|
|
275
|
+
- lib/rango/helpers/spec/fixture/app/views/bound_option_tag_specs
|
|
276
|
+
- lib/rango/helpers/spec/fixture/app/views/bound_option_tag_specs/grouped.html.erb
|
|
277
|
+
- lib/rango/helpers/spec/fixture/app/views/bound_option_tag_specs/nested.html.erb
|
|
278
|
+
- lib/rango/helpers/spec/fixture/app/views/bound_option_tag_specs/text_and_value.html.erb
|
|
279
|
+
- lib/rango/helpers/spec/fixture/app/views/bound_password_field_specs
|
|
280
|
+
- lib/rango/helpers/spec/fixture/app/views/bound_password_field_specs/attributes.html.erb
|
|
281
|
+
- lib/rango/helpers/spec/fixture/app/views/bound_password_field_specs/basic.html.erb
|
|
282
|
+
- lib/rango/helpers/spec/fixture/app/views/bound_password_field_specs/label.html.erb
|
|
283
|
+
- lib/rango/helpers/spec/fixture/app/views/bound_radio_button_specs
|
|
284
|
+
- lib/rango/helpers/spec/fixture/app/views/bound_radio_button_specs/basic.html.erb
|
|
285
|
+
- lib/rango/helpers/spec/fixture/app/views/bound_radio_group_specs
|
|
286
|
+
- lib/rango/helpers/spec/fixture/app/views/bound_radio_group_specs/basic.html.erb
|
|
287
|
+
- lib/rango/helpers/spec/fixture/app/views/bound_radio_group_specs/hashes.html.erb
|
|
288
|
+
- lib/rango/helpers/spec/fixture/app/views/bound_radio_group_specs/mixed.html.erb
|
|
289
|
+
- lib/rango/helpers/spec/fixture/app/views/bound_radio_group_specs/override_id.html.erb
|
|
290
|
+
- lib/rango/helpers/spec/fixture/app/views/bound_select_specs
|
|
291
|
+
- lib/rango/helpers/spec/fixture/app/views/bound_select_specs/basic.html.erb
|
|
292
|
+
- lib/rango/helpers/spec/fixture/app/views/bound_select_specs/blank.html.erb
|
|
293
|
+
- lib/rango/helpers/spec/fixture/app/views/bound_select_specs/label.html.erb
|
|
294
|
+
- lib/rango/helpers/spec/fixture/app/views/bound_select_specs/multiple.html.erb
|
|
295
|
+
- lib/rango/helpers/spec/fixture/app/views/bound_select_specs/prompt.html.erb
|
|
296
|
+
- lib/rango/helpers/spec/fixture/app/views/bound_select_specs/with_options.html.erb
|
|
297
|
+
- lib/rango/helpers/spec/fixture/app/views/bound_select_specs/with_options_with_blank.html.erb
|
|
298
|
+
- lib/rango/helpers/spec/fixture/app/views/bound_text_area_specs
|
|
299
|
+
- lib/rango/helpers/spec/fixture/app/views/bound_text_area_specs/basic.html.erb
|
|
300
|
+
- lib/rango/helpers/spec/fixture/app/views/bound_text_area_specs/label.html.erb
|
|
301
|
+
- lib/rango/helpers/spec/fixture/app/views/bound_text_field_specs
|
|
302
|
+
- lib/rango/helpers/spec/fixture/app/views/bound_text_field_specs/basic.html.erb
|
|
303
|
+
- lib/rango/helpers/spec/fixture/app/views/button_specs
|
|
304
|
+
- lib/rango/helpers/spec/fixture/app/views/button_specs/button_with_label.html.erb
|
|
305
|
+
- lib/rango/helpers/spec/fixture/app/views/button_specs/button_with_values.html.erb
|
|
306
|
+
- lib/rango/helpers/spec/fixture/app/views/button_specs/disabled_button.html.erb
|
|
307
|
+
- lib/rango/helpers/spec/fixture/app/views/check_box_specs
|
|
308
|
+
- lib/rango/helpers/spec/fixture/app/views/check_box_specs/basic.html.erb
|
|
309
|
+
- lib/rango/helpers/spec/fixture/app/views/check_box_specs/boolean.html.erb
|
|
310
|
+
- lib/rango/helpers/spec/fixture/app/views/check_box_specs/disabled.html.erb
|
|
311
|
+
- lib/rango/helpers/spec/fixture/app/views/check_box_specs/label.html.erb
|
|
312
|
+
- lib/rango/helpers/spec/fixture/app/views/check_box_specs/on_off_is_boolean.html.erb
|
|
313
|
+
- lib/rango/helpers/spec/fixture/app/views/check_box_specs/raise_unless_both_on_and_off.html.erb
|
|
314
|
+
- lib/rango/helpers/spec/fixture/app/views/check_box_specs/raises_error_if_not_boolean.html.erb
|
|
315
|
+
- lib/rango/helpers/spec/fixture/app/views/check_box_specs/raises_error_if_on_off_and_boolean_false.html.erb
|
|
316
|
+
- lib/rango/helpers/spec/fixture/app/views/check_box_specs/simple.html.erb
|
|
317
|
+
- lib/rango/helpers/spec/fixture/app/views/check_box_specs/to_string.html.erb
|
|
318
|
+
- lib/rango/helpers/spec/fixture/app/views/check_box_specs/unchecked.html.erb
|
|
319
|
+
- lib/rango/helpers/spec/fixture/app/views/custom_builder_specs
|
|
320
|
+
- lib/rango/helpers/spec/fixture/app/views/custom_builder_specs/everything.html.erb
|
|
321
|
+
- lib/rango/helpers/spec/fixture/app/views/delete_button_specs
|
|
322
|
+
- lib/rango/helpers/spec/fixture/app/views/delete_button_specs/delete_with_explicit_url.html.erb
|
|
323
|
+
- lib/rango/helpers/spec/fixture/app/views/delete_button_specs/delete_with_extra_params.html.erb
|
|
324
|
+
- lib/rango/helpers/spec/fixture/app/views/delete_button_specs/delete_with_label.html.erb
|
|
325
|
+
- lib/rango/helpers/spec/fixture/app/views/delete_button_specs/simple_delete.html.erb
|
|
326
|
+
- lib/rango/helpers/spec/fixture/app/views/exeptions
|
|
327
|
+
- lib/rango/helpers/spec/fixture/app/views/exeptions/client_error.html.erb
|
|
328
|
+
- lib/rango/helpers/spec/fixture/app/views/exeptions/internal_server_error.html.erb
|
|
329
|
+
- lib/rango/helpers/spec/fixture/app/views/exeptions/not_acceptable.html.erb
|
|
330
|
+
- lib/rango/helpers/spec/fixture/app/views/exeptions/not_found.html.erb
|
|
331
|
+
- lib/rango/helpers/spec/fixture/app/views/fields_for_specs
|
|
332
|
+
- lib/rango/helpers/spec/fixture/app/views/fields_for_specs/basic.html.erb
|
|
333
|
+
- lib/rango/helpers/spec/fixture/app/views/fields_for_specs/midstream.html.erb
|
|
334
|
+
- lib/rango/helpers/spec/fixture/app/views/fields_for_specs/nil.html.erb
|
|
335
|
+
- lib/rango/helpers/spec/fixture/app/views/fieldset_specs
|
|
336
|
+
- lib/rango/helpers/spec/fixture/app/views/fieldset_specs/legend.html.erb
|
|
337
|
+
- lib/rango/helpers/spec/fixture/app/views/file_field_specs
|
|
338
|
+
- lib/rango/helpers/spec/fixture/app/views/file_field_specs/disabled.html.erb
|
|
339
|
+
- lib/rango/helpers/spec/fixture/app/views/file_field_specs/makes_multipart.html.erb
|
|
340
|
+
- lib/rango/helpers/spec/fixture/app/views/file_field_specs/with_label.html.erb
|
|
341
|
+
- lib/rango/helpers/spec/fixture/app/views/file_field_specs/with_values.html.erb
|
|
342
|
+
- lib/rango/helpers/spec/fixture/app/views/foo
|
|
343
|
+
- lib/rango/helpers/spec/fixture/app/views/foo/bar.html.erb
|
|
344
|
+
- lib/rango/helpers/spec/fixture/app/views/form_for_specs
|
|
345
|
+
- lib/rango/helpers/spec/fixture/app/views/form_for_specs/basic.html.erb
|
|
346
|
+
- lib/rango/helpers/spec/fixture/app/views/form_specs
|
|
347
|
+
- lib/rango/helpers/spec/fixture/app/views/form_specs/create_a_form.html.erb
|
|
348
|
+
- lib/rango/helpers/spec/fixture/app/views/form_specs/create_a_multipart_form.html.erb
|
|
349
|
+
- lib/rango/helpers/spec/fixture/app/views/form_specs/fake_delete_if_set.html.erb
|
|
350
|
+
- lib/rango/helpers/spec/fixture/app/views/form_specs/fake_put_if_set.html.erb
|
|
351
|
+
- lib/rango/helpers/spec/fixture/app/views/form_specs/get_if_set.html.erb
|
|
352
|
+
- lib/rango/helpers/spec/fixture/app/views/form_specs/post_by_default.html.erb
|
|
353
|
+
- lib/rango/helpers/spec/fixture/app/views/form_specs/resourceful_form.html.erb
|
|
354
|
+
- lib/rango/helpers/spec/fixture/app/views/hacker
|
|
355
|
+
- lib/rango/helpers/spec/fixture/app/views/hacker/file_field.html.erb
|
|
356
|
+
- lib/rango/helpers/spec/fixture/app/views/hacker/hidden_field.html.erb
|
|
357
|
+
- lib/rango/helpers/spec/fixture/app/views/hacker/option_tag.html.erb
|
|
358
|
+
- lib/rango/helpers/spec/fixture/app/views/hacker/password_field.html.erb
|
|
359
|
+
- lib/rango/helpers/spec/fixture/app/views/hacker/radio_button.html.erb
|
|
360
|
+
- lib/rango/helpers/spec/fixture/app/views/hacker/radio_group.html.erb
|
|
361
|
+
- lib/rango/helpers/spec/fixture/app/views/hacker/text_area.html.erb
|
|
362
|
+
- lib/rango/helpers/spec/fixture/app/views/hacker/text_field.html.erb
|
|
363
|
+
- lib/rango/helpers/spec/fixture/app/views/hidden_field_specs
|
|
364
|
+
- lib/rango/helpers/spec/fixture/app/views/hidden_field_specs/basic.html.erb
|
|
365
|
+
- lib/rango/helpers/spec/fixture/app/views/hidden_field_specs/disabled.html.erb
|
|
366
|
+
- lib/rango/helpers/spec/fixture/app/views/hidden_field_specs/label.html.erb
|
|
367
|
+
- lib/rango/helpers/spec/fixture/app/views/label_specs
|
|
368
|
+
- lib/rango/helpers/spec/fixture/app/views/label_specs/basic.html.erb
|
|
369
|
+
- lib/rango/helpers/spec/fixture/app/views/label_specs/basic_with_attributes.html.erb
|
|
370
|
+
- lib/rango/helpers/spec/fixture/app/views/label_specs/basic_with_class.html.erb
|
|
371
|
+
- lib/rango/helpers/spec/fixture/app/views/layout
|
|
372
|
+
- lib/rango/helpers/spec/fixture/app/views/layout/application.html.erb
|
|
373
|
+
- lib/rango/helpers/spec/fixture/app/views/numeric_ext_specs
|
|
374
|
+
- lib/rango/helpers/spec/fixture/app/views/numeric_ext_specs/minutes_to_hours.html.erb
|
|
375
|
+
- lib/rango/helpers/spec/fixture/app/views/numeric_ext_specs/to_concurrency_default.html.erb
|
|
376
|
+
- lib/rango/helpers/spec/fixture/app/views/numeric_ext_specs/two_digits.html.erb
|
|
377
|
+
- lib/rango/helpers/spec/fixture/app/views/option_tag_specs
|
|
378
|
+
- lib/rango/helpers/spec/fixture/app/views/option_tag_specs/array.html.erb
|
|
379
|
+
- lib/rango/helpers/spec/fixture/app/views/option_tag_specs/clean.html.erb
|
|
380
|
+
- lib/rango/helpers/spec/fixture/app/views/option_tag_specs/collection.html.erb
|
|
381
|
+
- lib/rango/helpers/spec/fixture/app/views/option_tag_specs/multiple_selects.html.erb
|
|
382
|
+
- lib/rango/helpers/spec/fixture/app/views/option_tag_specs/no_extra_attributes.html.erb
|
|
383
|
+
- lib/rango/helpers/spec/fixture/app/views/option_tag_specs/optgroups.html.erb
|
|
384
|
+
- lib/rango/helpers/spec/fixture/app/views/option_tag_specs/selected.html.erb
|
|
385
|
+
- lib/rango/helpers/spec/fixture/app/views/option_tag_specs/with_blank.html.erb
|
|
386
|
+
- lib/rango/helpers/spec/fixture/app/views/option_tag_specs/with_prompt.html.erb
|
|
387
|
+
- lib/rango/helpers/spec/fixture/app/views/password_field_specs
|
|
388
|
+
- lib/rango/helpers/spec/fixture/app/views/password_field_specs/basic.html.erb
|
|
389
|
+
- lib/rango/helpers/spec/fixture/app/views/password_field_specs/disabled.html.erb
|
|
390
|
+
- lib/rango/helpers/spec/fixture/app/views/radio_button_specs
|
|
391
|
+
- lib/rango/helpers/spec/fixture/app/views/radio_button_specs/basic.html.erb
|
|
392
|
+
- lib/rango/helpers/spec/fixture/app/views/radio_button_specs/checked.html.erb
|
|
393
|
+
- lib/rango/helpers/spec/fixture/app/views/radio_button_specs/disabled.html.erb
|
|
394
|
+
- lib/rango/helpers/spec/fixture/app/views/radio_button_specs/label.html.erb
|
|
395
|
+
- lib/rango/helpers/spec/fixture/app/views/radio_button_specs/unchecked.html.erb
|
|
396
|
+
- lib/rango/helpers/spec/fixture/app/views/radio_group_specs
|
|
397
|
+
- lib/rango/helpers/spec/fixture/app/views/radio_group_specs/attributes.html.erb
|
|
398
|
+
- lib/rango/helpers/spec/fixture/app/views/radio_group_specs/basic.html.erb
|
|
399
|
+
- lib/rango/helpers/spec/fixture/app/views/radio_group_specs/checked.html.erb
|
|
400
|
+
- lib/rango/helpers/spec/fixture/app/views/radio_group_specs/hash.html.erb
|
|
401
|
+
- lib/rango/helpers/spec/fixture/app/views/radio_group_specs/specific_attributes.html.erb
|
|
402
|
+
- lib/rango/helpers/spec/fixture/app/views/relative_date_span_specs
|
|
403
|
+
- lib/rango/helpers/spec/fixture/app/views/relative_date_span_specs/date_span_on_same_day.html.erb
|
|
404
|
+
- lib/rango/helpers/spec/fixture/app/views/relative_date_span_specs/date_span_on_same_day_on_different_year.html.erb
|
|
405
|
+
- lib/rango/helpers/spec/fixture/app/views/relative_date_specs
|
|
406
|
+
- lib/rango/helpers/spec/fixture/app/views/relative_date_specs/relative_date_with_year.html.erb
|
|
407
|
+
- lib/rango/helpers/spec/fixture/app/views/relative_date_specs/relative_date_without_year.html.erb
|
|
408
|
+
- lib/rango/helpers/spec/fixture/app/views/relative_date_specs/relative_today.html.erb
|
|
409
|
+
- lib/rango/helpers/spec/fixture/app/views/relative_date_specs/relative_tomorrow.html.erb
|
|
410
|
+
- lib/rango/helpers/spec/fixture/app/views/relative_date_specs/relative_yesterday.html.erb
|
|
411
|
+
- lib/rango/helpers/spec/fixture/app/views/select_specs
|
|
412
|
+
- lib/rango/helpers/spec/fixture/app/views/select_specs/basic.html.erb
|
|
413
|
+
- lib/rango/helpers/spec/fixture/app/views/select_specs/blank.html.erb
|
|
414
|
+
- lib/rango/helpers/spec/fixture/app/views/select_specs/multiple.html.erb
|
|
415
|
+
- lib/rango/helpers/spec/fixture/app/views/select_specs/selected.html.erb
|
|
416
|
+
- lib/rango/helpers/spec/fixture/app/views/submit_specs
|
|
417
|
+
- lib/rango/helpers/spec/fixture/app/views/submit_specs/disabled_submit.html.erb
|
|
418
|
+
- lib/rango/helpers/spec/fixture/app/views/submit_specs/submit_with_label.html.erb
|
|
419
|
+
- lib/rango/helpers/spec/fixture/app/views/submit_specs/submit_with_values.html.erb
|
|
420
|
+
- lib/rango/helpers/spec/fixture/app/views/tag_helper
|
|
421
|
+
- lib/rango/helpers/spec/fixture/app/views/tag_helper/nested_tags.html.erb
|
|
422
|
+
- lib/rango/helpers/spec/fixture/app/views/tag_helper/tag_with_attributes.html.erb
|
|
423
|
+
- lib/rango/helpers/spec/fixture/app/views/tag_helper/tag_with_content.html.erb
|
|
424
|
+
- lib/rango/helpers/spec/fixture/app/views/tag_helper/tag_with_content_in_the_block.html.erb
|
|
425
|
+
- lib/rango/helpers/spec/fixture/app/views/text_area_specs
|
|
426
|
+
- lib/rango/helpers/spec/fixture/app/views/text_area_specs/basic.html.erb
|
|
427
|
+
- lib/rango/helpers/spec/fixture/app/views/text_area_specs/disabled.html.erb
|
|
428
|
+
- lib/rango/helpers/spec/fixture/app/views/text_area_specs/label.html.erb
|
|
429
|
+
- lib/rango/helpers/spec/fixture/app/views/text_area_specs/nil.html.erb
|
|
430
|
+
- lib/rango/helpers/spec/fixture/app/views/text_field_specs
|
|
431
|
+
- lib/rango/helpers/spec/fixture/app/views/text_field_specs/basic.html.erb
|
|
432
|
+
- lib/rango/helpers/spec/fixture/app/views/text_field_specs/class.html.erb
|
|
433
|
+
- lib/rango/helpers/spec/fixture/app/views/text_field_specs/disabled.html.erb
|
|
434
|
+
- lib/rango/helpers/spec/fixture/app/views/text_field_specs/label.html.erb
|
|
435
|
+
- lib/rango/helpers/spec/fixture/app/views/text_field_specs/symbolized_name.html.erb
|
|
436
|
+
- lib/rango/helpers/spec/fixture/config
|
|
437
|
+
- lib/rango/helpers/spec/fixture/config/environments
|
|
438
|
+
- lib/rango/helpers/spec/fixture/config/environments/development.rb
|
|
439
|
+
- lib/rango/helpers/spec/fixture/config/environments/production.rb
|
|
440
|
+
- lib/rango/helpers/spec/fixture/config/environments/test.rb
|
|
441
|
+
- lib/rango/helpers/spec/fixture/config/init.rb
|
|
442
|
+
- lib/rango/helpers/spec/fixture/config/rack.rb
|
|
443
|
+
- lib/rango/helpers/spec/fixture/config/router.rb
|
|
444
|
+
- lib/rango/helpers/spec/fixture/public
|
|
445
|
+
- lib/rango/helpers/spec/fixture/public/images
|
|
446
|
+
- lib/rango/helpers/spec/fixture/public/images/merb.jpg
|
|
447
|
+
- lib/rango/helpers/spec/fixture/public/merb.fcgi
|
|
448
|
+
- lib/rango/helpers/spec/fixture/public/stylesheets
|
|
449
|
+
- lib/rango/helpers/spec/fixture/public/stylesheets/master.css
|
|
450
|
+
- lib/rango/helpers/spec/merb_helpers_config_spec.rb
|
|
451
|
+
- lib/rango/helpers/spec/merb_helpers_date_time_spec.rb
|
|
452
|
+
- lib/rango/helpers/spec/merb_helpers_form_spec.rb
|
|
453
|
+
- lib/rango/helpers/spec/merb_helpers_tag_helper_spec.rb
|
|
454
|
+
- lib/rango/helpers/spec/merb_helpers_text_spec.rb
|
|
455
|
+
- lib/rango/helpers/spec/numeric_extlib_spec.rb
|
|
456
|
+
- lib/rango/helpers/spec/ordinalize_spec.rb
|
|
457
|
+
- lib/rango/helpers/spec/spec_helper.rb
|
|
458
|
+
- lib/rango/helpers/spec/time_dsl_spec.rb
|
|
459
|
+
- lib/rango/helpers/syntax.rb
|
|
460
|
+
- lib/rango/helpers.rb
|
|
461
|
+
- lib/rango/loggers
|
|
462
|
+
- lib/rango/loggers/fireruby.rb
|
|
463
|
+
- lib/rango/loggers/logger.rb
|
|
464
|
+
- lib/rango/mixins
|
|
465
|
+
- lib/rango/mixins/application.rb
|
|
466
|
+
- lib/rango/mixins/configurable.rb
|
|
467
|
+
- lib/rango/mixins/controller.rb
|
|
468
|
+
- lib/rango/mixins/import.rb
|
|
469
|
+
- lib/rango/mixins/strategy.rb
|
|
470
|
+
- lib/rango/mvc
|
|
471
|
+
- lib/rango/mvc/controller.rb
|
|
472
|
+
- lib/rango/mvc/strategies.rb
|
|
473
|
+
- lib/rango/orm
|
|
474
|
+
- lib/rango/orm/adapters
|
|
475
|
+
- lib/rango/orm/adapters/datamapper
|
|
476
|
+
- lib/rango/orm/adapters/datamapper/fields.rb
|
|
477
|
+
- lib/rango/orm/adapters/datamapper/setup.rb
|
|
478
|
+
- lib/rango/orm/adapters/datamapper/support.rb
|
|
479
|
+
- lib/rango/orm/adapters/datamapper/tasks.thor
|
|
480
|
+
- lib/rango/orm/adapters/datamapper/types
|
|
481
|
+
- lib/rango/orm/adapters/datamapper/types/unicode_string.rb
|
|
482
|
+
- lib/rango/project.rb
|
|
483
|
+
- lib/rango/rack
|
|
484
|
+
- lib/rango/rack/dispatcher.rb
|
|
485
|
+
- lib/rango/rack/middlewares
|
|
486
|
+
- lib/rango/rack/middlewares/emails.rb
|
|
487
|
+
- lib/rango/rack/middlewares/encoding.rb
|
|
488
|
+
- lib/rango/rack/middlewares/static.rb
|
|
489
|
+
- lib/rango/rack/request.rb
|
|
490
|
+
- lib/rango/rango.rb
|
|
491
|
+
- lib/rango/router
|
|
492
|
+
- lib/rango/router/adapters
|
|
493
|
+
- lib/rango/router/adapters/basic.rb
|
|
494
|
+
- lib/rango/router/adapters/rack-router.rb
|
|
495
|
+
- lib/rango/router/dispatcher.rb
|
|
496
|
+
- lib/rango/router/specification.txt
|
|
497
|
+
- lib/rango/settings
|
|
498
|
+
- lib/rango/settings/erubis.rb
|
|
499
|
+
- lib/rango/settings/framework.rb
|
|
500
|
+
- lib/rango/settings/haml.rb
|
|
501
|
+
- lib/rango/settings.rb
|
|
502
|
+
- lib/rango/spec
|
|
503
|
+
- lib/rango/support
|
|
504
|
+
- lib/rango/support/cucumber
|
|
505
|
+
- lib/rango/support/cucumber/helpers
|
|
506
|
+
- lib/rango/support/cucumber/steps
|
|
507
|
+
- lib/rango/support/cucumber/steps/given_steps.rb
|
|
508
|
+
- lib/rango/support/cucumber/steps/then_steps.rb
|
|
509
|
+
- lib/rango/support/cucumber/steps/when_steps.rb
|
|
510
|
+
- lib/rango/support/cucumber/world
|
|
511
|
+
- lib/rango/support/spec
|
|
512
|
+
- lib/rango/support/spec/matchers
|
|
513
|
+
- lib/rango/tasks
|
|
514
|
+
- lib/rango/tasks/bundle.thor
|
|
515
|
+
- lib/rango/tasks/stats.thor
|
|
516
|
+
- lib/rango/templates
|
|
517
|
+
- lib/rango/templates/adapter.rb
|
|
518
|
+
- lib/rango/templates/adapters
|
|
519
|
+
- lib/rango/templates/adapters/erb.rb
|
|
520
|
+
- lib/rango/templates/adapters/erubis.rb
|
|
521
|
+
- lib/rango/templates/adapters/haml.rb
|
|
522
|
+
- lib/rango/templates/template.rb
|
|
523
|
+
- lib/rango.rb
|
|
524
|
+
- LICENSE
|
|
525
|
+
- pkg
|
|
526
|
+
- rango.gemspec
|
|
527
|
+
- README.textile
|
|
528
|
+
- spec
|
|
529
|
+
- spec/factories.rb
|
|
530
|
+
- spec/rango
|
|
531
|
+
- spec/rango/auth
|
|
532
|
+
- spec/rango/auth/core
|
|
533
|
+
- spec/rango/auth/core/authenticated_helper_spec.rb
|
|
534
|
+
- spec/rango/auth/core/authentication_spec.rb
|
|
535
|
+
- spec/rango/auth/core/callbacks_spec.rb
|
|
536
|
+
- spec/rango/auth/core/errors_spec.rb
|
|
537
|
+
- spec/rango/auth/core/responses_spec.rb
|
|
538
|
+
- spec/rango/auth/core/session_mixin_spec.rb
|
|
539
|
+
- spec/rango/auth/core/spec
|
|
540
|
+
- spec/rango/auth/core/spec/helpers
|
|
541
|
+
- spec/rango/auth/core/spec/helpers/authentication_helper_spec_spec.rb
|
|
542
|
+
- spec/rango/auth/core/spec/merb-auth-core
|
|
543
|
+
- spec/rango/auth/core/spec/merb-auth-core/activation_fixture_spec.rb
|
|
544
|
+
- spec/rango/auth/core/spec/merb-auth-core/authentication_spec_spec.rb
|
|
545
|
+
- spec/rango/auth/core/spec/merb-auth-core/callbacks_spec_spec.rb
|
|
546
|
+
- spec/rango/auth/core/spec/merb-auth-core/customizations_spec_spec.rb
|
|
547
|
+
- spec/rango/auth/core/spec/merb-auth-core/errors_spec_spec.rb
|
|
548
|
+
- spec/rango/auth/core/spec/merb-auth-core/failed_login_spec_spec.rb
|
|
549
|
+
- spec/rango/auth/core/spec/merb-auth-core/merb-auth-core_spec_spec.rb
|
|
550
|
+
- spec/rango/auth/core/spec/merb-auth-core/router_helper_spec_spec.rb
|
|
551
|
+
- spec/rango/auth/core/spec/merb-auth-core/strategy_spec_spec.rb
|
|
552
|
+
- spec/rango/auth/core/spec/spec_helper_spec.rb
|
|
553
|
+
- spec/rango/auth/core/strategy_spec.rb
|
|
554
|
+
- spec/rango/auth/core_spec.rb
|
|
555
|
+
- spec/rango/auth/more
|
|
556
|
+
- spec/rango/auth/more/mixins
|
|
557
|
+
- spec/rango/auth/more/mixins/redirect_back_spec.rb
|
|
558
|
+
- spec/rango/auth/more/mixins/salted_user
|
|
559
|
+
- spec/rango/auth/more/mixins/salted_user/ar_salted_user_spec.rb
|
|
560
|
+
- spec/rango/auth/more/mixins/salted_user/dm_salted_user_spec.rb
|
|
561
|
+
- spec/rango/auth/more/mixins/salted_user/relaxdb_salted_user_spec.rb
|
|
562
|
+
- spec/rango/auth/more/mixins/salted_user/sq_salted_user_spec.rb
|
|
563
|
+
- spec/rango/auth/more/mixins/salted_user_spec.rb
|
|
564
|
+
- spec/rango/auth/more/spec
|
|
565
|
+
- spec/rango/auth/more/spec/merb-auth-more_spec_spec.rb
|
|
566
|
+
- spec/rango/auth/more/spec/mixins
|
|
567
|
+
- spec/rango/auth/more/spec/mixins/redirect_back_spec_spec.rb
|
|
568
|
+
- spec/rango/auth/more/spec/mixins/salted_user_spec_spec.rb
|
|
569
|
+
- spec/rango/auth/more/spec/spec_helper_spec.rb
|
|
570
|
+
- spec/rango/auth/more/strategies
|
|
571
|
+
- spec/rango/auth/more/strategies/abstract_password_spec.rb
|
|
572
|
+
- spec/rango/auth/more/strategies/basic
|
|
573
|
+
- spec/rango/auth/more/strategies/basic/basic_auth_spec.rb
|
|
574
|
+
- spec/rango/auth/more/strategies/basic/openid_spec.rb
|
|
575
|
+
- spec/rango/auth/more/strategies/basic/password_form_spec.rb
|
|
576
|
+
- spec/rango/auth/more_spec.rb
|
|
577
|
+
- spec/rango/auth/slice
|
|
578
|
+
- spec/rango/auth/slice/exceptions_spec.rb
|
|
579
|
+
- spec/rango/auth/slice/merb-auth-slice-password_spec.rb
|
|
580
|
+
- spec/rango/auth/slice/sessions_spec.rb
|
|
581
|
+
- spec/rango/auth/slice/spec_helper_spec.rb
|
|
582
|
+
- spec/rango/auth/slice/xsessions_spec.rb
|
|
583
|
+
- spec/rango/boot_spec.rb
|
|
584
|
+
- spec/rango/bundling
|
|
585
|
+
- spec/rango/bundling/dependency_spec.rb
|
|
586
|
+
- spec/rango/bundling/strategies_spec.rb
|
|
587
|
+
- spec/rango/cli
|
|
588
|
+
- spec/rango/cli/project_spec.rb
|
|
589
|
+
- spec/rango/contrib
|
|
590
|
+
- spec/rango/contrib/pagination
|
|
591
|
+
- spec/rango/contrib/pagination/adapters
|
|
592
|
+
- spec/rango/contrib/pagination/adapters/dm_spec.rb
|
|
593
|
+
- spec/rango/contrib/pagination/helpers_spec.rb
|
|
594
|
+
- spec/rango/contrib/pagination/page_spec.rb
|
|
595
|
+
- spec/rango/contrib/pagination/strategies_spec.rb
|
|
596
|
+
- spec/rango/contrib/pagination_spec.rb
|
|
597
|
+
- spec/rango/contrib/syndication_spec.rb
|
|
598
|
+
- spec/rango/exceptions_spec.rb
|
|
599
|
+
- spec/rango/ext
|
|
600
|
+
- spec/rango/ext/attribute_spec.rb
|
|
601
|
+
- spec/rango/ext/colored_string_spec.rb
|
|
602
|
+
- spec/rango/ext/core_ext_spec.rb
|
|
603
|
+
- spec/rango/ext/kernel_spec.rb
|
|
604
|
+
- spec/rango/ext/path_spec.rb
|
|
605
|
+
- spec/rango/ext/string_spec.rb
|
|
606
|
+
- spec/rango/ext/thor_spec.rb
|
|
607
|
+
- spec/rango/ext/time_dsl_spec.rb
|
|
608
|
+
- spec/rango/ext_spec.rb
|
|
609
|
+
- spec/rango/forms
|
|
610
|
+
- spec/rango/forms/form_spec.rb
|
|
611
|
+
- spec/rango/generators_spec.rb
|
|
612
|
+
- spec/rango/generic_views
|
|
613
|
+
- spec/rango/generic_views/static_spec.rb
|
|
614
|
+
- spec/rango/helpers
|
|
615
|
+
- spec/rango/helpers/assets_spec.rb
|
|
616
|
+
- spec/rango/helpers/general_spec.rb
|
|
617
|
+
- spec/rango/helpers/merb-helpers
|
|
618
|
+
- spec/rango/helpers/merb-helpers/core_ext
|
|
619
|
+
- spec/rango/helpers/merb-helpers/core_ext/numeric_spec.rb
|
|
620
|
+
- spec/rango/helpers/merb-helpers/core_ext_spec.rb
|
|
621
|
+
- spec/rango/helpers/merb-helpers/date_time_formatting_spec.rb
|
|
622
|
+
- spec/rango/helpers/merb-helpers/date_time_helpers_spec.rb
|
|
623
|
+
- spec/rango/helpers/merb-helpers/form
|
|
624
|
+
- spec/rango/helpers/merb-helpers/form/builder_spec.rb
|
|
625
|
+
- spec/rango/helpers/merb-helpers/form/helpers_spec.rb
|
|
626
|
+
- spec/rango/helpers/merb-helpers/form_helpers_spec.rb
|
|
627
|
+
- spec/rango/helpers/merb-helpers/tag_helpers_spec.rb
|
|
628
|
+
- spec/rango/helpers/merb-helpers/text_helpers_spec.rb
|
|
629
|
+
- spec/rango/helpers/merb-helpers/time_dsl_spec.rb
|
|
630
|
+
- spec/rango/helpers/merb-helpers_spec.rb
|
|
631
|
+
- spec/rango/helpers/spec
|
|
632
|
+
- spec/rango/helpers/spec/core_ext_spec_spec.rb
|
|
633
|
+
- spec/rango/helpers/spec/fixture
|
|
634
|
+
- spec/rango/helpers/spec/fixture/app
|
|
635
|
+
- spec/rango/helpers/spec/fixture/app/controllers
|
|
636
|
+
- spec/rango/helpers/spec/fixture/app/controllers/application_spec.rb
|
|
637
|
+
- spec/rango/helpers/spec/fixture/app/controllers/bound_check_box_spec.rb
|
|
638
|
+
- spec/rango/helpers/spec/fixture/app/controllers/bound_file_field_spec.rb
|
|
639
|
+
- spec/rango/helpers/spec/fixture/app/controllers/bound_hidden_field_spec.rb
|
|
640
|
+
- spec/rango/helpers/spec/fixture/app/controllers/bound_option_tag_spec.rb
|
|
641
|
+
- spec/rango/helpers/spec/fixture/app/controllers/bound_password_field_spec.rb
|
|
642
|
+
- spec/rango/helpers/spec/fixture/app/controllers/bound_radio_button_spec.rb
|
|
643
|
+
- spec/rango/helpers/spec/fixture/app/controllers/bound_radio_group_spec.rb
|
|
644
|
+
- spec/rango/helpers/spec/fixture/app/controllers/bound_select_spec.rb
|
|
645
|
+
- spec/rango/helpers/spec/fixture/app/controllers/bound_text_area_spec.rb
|
|
646
|
+
- spec/rango/helpers/spec/fixture/app/controllers/bound_text_field_spec.rb
|
|
647
|
+
- spec/rango/helpers/spec/fixture/app/controllers/button_spec.rb
|
|
648
|
+
- spec/rango/helpers/spec/fixture/app/controllers/check_box_spec.rb
|
|
649
|
+
- spec/rango/helpers/spec/fixture/app/controllers/custom_builder_spec.rb
|
|
650
|
+
- spec/rango/helpers/spec/fixture/app/controllers/delete_button_spec.rb
|
|
651
|
+
- spec/rango/helpers/spec/fixture/app/controllers/exceptions_spec.rb
|
|
652
|
+
- spec/rango/helpers/spec/fixture/app/controllers/field_set_spec.rb
|
|
653
|
+
- spec/rango/helpers/spec/fixture/app/controllers/fields_for_spec.rb
|
|
654
|
+
- spec/rango/helpers/spec/fixture/app/controllers/file_field_spec.rb
|
|
655
|
+
- spec/rango/helpers/spec/fixture/app/controllers/foo_spec.rb
|
|
656
|
+
- spec/rango/helpers/spec/fixture/app/controllers/form_for_spec.rb
|
|
657
|
+
- spec/rango/helpers/spec/fixture/app/controllers/form_spec.rb
|
|
658
|
+
- spec/rango/helpers/spec/fixture/app/controllers/hacker_spec.rb
|
|
659
|
+
- spec/rango/helpers/spec/fixture/app/controllers/hidden_field_spec.rb
|
|
660
|
+
- spec/rango/helpers/spec/fixture/app/controllers/label_spec.rb
|
|
661
|
+
- spec/rango/helpers/spec/fixture/app/controllers/numeric_ext_spec.rb
|
|
662
|
+
- spec/rango/helpers/spec/fixture/app/controllers/option_tag_spec.rb
|
|
663
|
+
- spec/rango/helpers/spec/fixture/app/controllers/password_field_spec.rb
|
|
664
|
+
- spec/rango/helpers/spec/fixture/app/controllers/radio_button_spec.rb
|
|
665
|
+
- spec/rango/helpers/spec/fixture/app/controllers/radio_group_spec.rb
|
|
666
|
+
- spec/rango/helpers/spec/fixture/app/controllers/relative_date_span_spec.rb
|
|
667
|
+
- spec/rango/helpers/spec/fixture/app/controllers/relative_date_spec.rb
|
|
668
|
+
- spec/rango/helpers/spec/fixture/app/controllers/select_spec.rb
|
|
669
|
+
- spec/rango/helpers/spec/fixture/app/controllers/specs_controller_spec.rb
|
|
670
|
+
- spec/rango/helpers/spec/fixture/app/controllers/submit_spec.rb
|
|
671
|
+
- spec/rango/helpers/spec/fixture/app/controllers/tag_helper_spec.rb
|
|
672
|
+
- spec/rango/helpers/spec/fixture/app/controllers/text_area_spec.rb
|
|
673
|
+
- spec/rango/helpers/spec/fixture/app/controllers/text_field_spec.rb
|
|
674
|
+
- spec/rango/helpers/spec/fixture/app/helpers
|
|
675
|
+
- spec/rango/helpers/spec/fixture/app/helpers/global_helpers_spec.rb
|
|
676
|
+
- spec/rango/helpers/spec/fixture/app/models
|
|
677
|
+
- spec/rango/helpers/spec/fixture/app/models/fake_dm_model_spec.rb
|
|
678
|
+
- spec/rango/helpers/spec/fixture/app/models/first_generic_fake_model_spec.rb
|
|
679
|
+
- spec/rango/helpers/spec/fixture/app/models/hacker_generic_model_spec.rb
|
|
680
|
+
- spec/rango/helpers/spec/fixture/app/models/second_generic_fake_model_spec.rb
|
|
681
|
+
- spec/rango/helpers/spec/fixture/app/models/third_generic_fake_model_spec.rb
|
|
682
|
+
- spec/rango/helpers/spec/fixture/config
|
|
683
|
+
- spec/rango/helpers/spec/fixture/config/environments
|
|
684
|
+
- spec/rango/helpers/spec/fixture/config/environments/development_spec.rb
|
|
685
|
+
- spec/rango/helpers/spec/fixture/config/environments/production_spec.rb
|
|
686
|
+
- spec/rango/helpers/spec/fixture/config/environments/test_spec.rb
|
|
687
|
+
- spec/rango/helpers/spec/fixture/config/init_spec.rb
|
|
688
|
+
- spec/rango/helpers/spec/fixture/config/rack_spec.rb
|
|
689
|
+
- spec/rango/helpers/spec/fixture/config/router_spec.rb
|
|
690
|
+
- spec/rango/helpers/spec/merb_helpers_config_spec_spec.rb
|
|
691
|
+
- spec/rango/helpers/spec/merb_helpers_date_time_spec_spec.rb
|
|
692
|
+
- spec/rango/helpers/spec/merb_helpers_form_spec_spec.rb
|
|
693
|
+
- spec/rango/helpers/spec/merb_helpers_tag_helper_spec_spec.rb
|
|
694
|
+
- spec/rango/helpers/spec/merb_helpers_text_spec_spec.rb
|
|
695
|
+
- spec/rango/helpers/spec/numeric_extlib_spec_spec.rb
|
|
696
|
+
- spec/rango/helpers/spec/ordinalize_spec_spec.rb
|
|
697
|
+
- spec/rango/helpers/spec/spec_helper_spec.rb
|
|
698
|
+
- spec/rango/helpers/spec/time_dsl_spec_spec.rb
|
|
699
|
+
- spec/rango/helpers/syntax_spec.rb
|
|
700
|
+
- spec/rango/helpers_spec.rb
|
|
701
|
+
- spec/rango/loggers
|
|
702
|
+
- spec/rango/loggers/fireruby_spec.rb
|
|
703
|
+
- spec/rango/loggers/logger_spec.rb
|
|
704
|
+
- spec/rango/mixins
|
|
705
|
+
- spec/rango/mixins/application_spec.rb
|
|
706
|
+
- spec/rango/mixins/controller_spec.rb
|
|
707
|
+
- spec/rango/mixins/import_spec.rb
|
|
708
|
+
- spec/rango/mvc
|
|
709
|
+
- spec/rango/mvc/controller_spec.rb
|
|
710
|
+
- spec/rango/mvc/strategies_spec.rb
|
|
711
|
+
- spec/rango/orm
|
|
712
|
+
- spec/rango/orm/adapters
|
|
713
|
+
- spec/rango/orm/adapters/datamapper
|
|
714
|
+
- spec/rango/orm/adapters/dm
|
|
715
|
+
- spec/rango/orm/adapters/dm/fields_spec.rb
|
|
716
|
+
- spec/rango/orm/adapters/dm/setup_spec.rb
|
|
717
|
+
- spec/rango/project_spec.rb
|
|
718
|
+
- spec/rango/rack
|
|
719
|
+
- spec/rango/rack/dispatcher_spec.rb
|
|
720
|
+
- spec/rango/rack/middlewares
|
|
721
|
+
- spec/rango/rack/middlewares/emails_spec.rb
|
|
722
|
+
- spec/rango/rack/middlewares/static_spec.rb
|
|
723
|
+
- spec/rango/rack/request_spec.rb
|
|
724
|
+
- spec/rango/rango_spec.rb
|
|
725
|
+
- spec/rango/router
|
|
726
|
+
- spec/rango/router/route_spec.rb
|
|
727
|
+
- spec/rango/router/router_spec.rb
|
|
728
|
+
- spec/rango/router/strategies_spec.rb
|
|
729
|
+
- spec/rango/settings_spec.rb
|
|
730
|
+
- spec/rango/spec
|
|
731
|
+
- spec/rango/spec/cucumber_spec.rb
|
|
732
|
+
- spec/rango/spec/rspec_spec.rb
|
|
733
|
+
- spec/rango/templates
|
|
734
|
+
- spec/rango/templates/adapter_spec.rb
|
|
735
|
+
- spec/rango/templates/adapters
|
|
736
|
+
- spec/rango/templates/adapters/erb_spec.rb
|
|
737
|
+
- spec/rango/templates/adapters/erubis_spec.rb
|
|
738
|
+
- spec/rango/templates/adapters/haml_spec.rb
|
|
739
|
+
- spec/rango/templates/template_spec.rb
|
|
740
|
+
- spec/rango_spec.rb
|
|
741
|
+
- spec/spec.opts
|
|
742
|
+
- spec/spec_helper.rb
|
|
743
|
+
- spec/stubs
|
|
744
|
+
- spec/stubs/flat.rb
|
|
745
|
+
- spec/stubs/project
|
|
746
|
+
- stubs
|
|
747
|
+
- stubs/app
|
|
748
|
+
- stubs/app/content
|
|
749
|
+
- stubs/app/content/init.rb.rbt
|
|
750
|
+
- stubs/app/content/models.rb.rbt
|
|
751
|
+
- stubs/app/content/views.rb.rbt
|
|
752
|
+
- stubs/app/preprocess.rb
|
|
753
|
+
- stubs/bigapp
|
|
754
|
+
- stubs/bigapp/content
|
|
755
|
+
- stubs/bigapp/content/init.rb
|
|
756
|
+
- stubs/bigapp/content/models
|
|
757
|
+
- stubs/bigapp/content/views
|
|
758
|
+
- stubs/bigapp/content/views/application.rb
|
|
759
|
+
- stubs/bigapp/preprocess.rb
|
|
760
|
+
- stubs/features
|
|
761
|
+
- stubs/features/content
|
|
762
|
+
- stubs/features/content/env.rb
|
|
763
|
+
- stubs/features/content/shared
|
|
764
|
+
- stubs/flat
|
|
765
|
+
- stubs/flat/content
|
|
766
|
+
- stubs/flat/content/flat.ru.rbt
|
|
767
|
+
- stubs/flat/preprocess.rb
|
|
768
|
+
- stubs/project
|
|
769
|
+
- stubs/project/content
|
|
770
|
+
- stubs/project/content/config.ru
|
|
771
|
+
- stubs/project/content/init.rb
|
|
772
|
+
- stubs/project/content/media
|
|
773
|
+
- stubs/project/content/settings.rb.rbt
|
|
774
|
+
- stubs/project/content/settings_local.rb.rbt
|
|
775
|
+
- stubs/project/content/templates
|
|
776
|
+
- stubs/project/content/templates/base.html.haml.rbt
|
|
777
|
+
- stubs/project/content/Thorfile
|
|
778
|
+
- stubs/project/content/TODO
|
|
779
|
+
- stubs/project/preprocess.rb
|
|
780
|
+
- stubs/pupu
|
|
781
|
+
- stubs/pupu/content
|
|
782
|
+
- stubs/pupu/preprocess.rb
|
|
783
|
+
- stubs/stub
|
|
784
|
+
- stubs/stub/content
|
|
785
|
+
- stubs/stub/content/content
|
|
786
|
+
- stubs/stub/content/metadata.yml
|
|
787
|
+
- stubs/stub/content/postprocess.rb
|
|
788
|
+
- stubs/stub/content/preprocess.rb
|
|
789
|
+
- stubs/stub/preprocess.rb
|
|
790
|
+
- support
|
|
791
|
+
- support/hooks
|
|
792
|
+
- support/hooks/commit-msg
|
|
793
|
+
- support/hooks/post-commit
|
|
794
|
+
- support/hooks/pre-commit
|
|
795
|
+
- support/hooks/pre-rebase
|
|
796
|
+
- support/hooks/prepare-commit-msg
|
|
797
|
+
- support/Rango.tmbundle
|
|
798
|
+
- support/Rango.tmbundle/Commands
|
|
799
|
+
- support/Rango.tmbundle/Commands/Documentation for current word.tmCommand
|
|
800
|
+
- support/Rango.tmbundle/Commands/Got to import.tmCommand
|
|
801
|
+
- support/Rango.tmbundle/Commands/Rango console.tmCommand
|
|
802
|
+
- support/Rango.tmbundle/Commands/Rango server.tmCommand
|
|
803
|
+
- support/Rango.tmbundle/Commands/Read documentation.tmCommand
|
|
804
|
+
- support/Rango.tmbundle/info.plist
|
|
805
|
+
- support/Rango.tmbundle/Snippets
|
|
806
|
+
- support/Rango.tmbundle/Snippets/controller.tmSnippet
|
|
807
|
+
- support/Rango.tmbundle/Snippets/doc.tmSnippet
|
|
808
|
+
- support/Rango.tmbundle/Snippets/match.tmSnippet
|
|
809
|
+
- support/Rango.tmbundle/Snippets/Method with yardoc.tmSnippet
|
|
810
|
+
- support/Rango.tmbundle/Snippets/Project_configure.tmSnippet
|
|
811
|
+
- support/Rango.tmbundle/Snippets/Project_import.tmSnippet
|
|
812
|
+
- support/Rango.tmbundle/Snippets/Project_logger_debug.tmSnippet
|
|
813
|
+
- support/Rango.tmbundle/Snippets/Project_logger_error.tmSnippet
|
|
814
|
+
- support/Rango.tmbundle/Snippets/Project_logger_fatal.tmSnippet
|
|
815
|
+
- support/Rango.tmbundle/Snippets/Project_logger_inspect.tmSnippet
|
|
816
|
+
- support/Rango.tmbundle/Snippets/Project_logger_warn.tmSnippet
|
|
817
|
+
- support/Rango.tmbundle/Snippets/Rango_dependency.tmSnippet
|
|
818
|
+
- support/Rango.tmbundle/Snippets/Rango_import.tmSnippet
|
|
819
|
+
- support/Rango.tmbundle/Snippets/Rango_logger_debug.tmSnippet
|
|
820
|
+
- support/Rango.tmbundle/Snippets/Rango_logger_error.tmSnippet
|
|
821
|
+
- support/Rango.tmbundle/Snippets/Rango_logger_fatal.tmSnippet
|
|
822
|
+
- support/Rango.tmbundle/Snippets/Rango_logger_inspect.tmSnippet
|
|
823
|
+
- support/Rango.tmbundle/Snippets/Rango_logger_warn.tmSnippet
|
|
824
|
+
- support/Rango.tmbundle/Snippets/thor task.tmSnippet
|
|
825
|
+
- tasks
|
|
826
|
+
- tasks/hooks.thor
|
|
827
|
+
- tasks/package.thor
|
|
828
|
+
- tasks/release.thor
|
|
829
|
+
- tasks/repair.thor
|
|
830
|
+
- tasks/spec.thor
|
|
831
|
+
- tasks/stats.thor
|
|
832
|
+
- tasks/yardoc.thor
|
|
833
|
+
- templates
|
|
834
|
+
- templates/errors
|
|
835
|
+
- templates/errors/404.html.erb
|
|
836
|
+
- templates/errors/406.html.erb
|
|
837
|
+
- templates/errors/500.html.erb
|
|
838
|
+
- templates/generic
|
|
839
|
+
has_rdoc: false
|
|
840
|
+
homepage: http://github.com/botanicus/rango
|
|
841
|
+
post_install_message:
|
|
842
|
+
rdoc_options: []
|
|
843
|
+
|
|
844
|
+
require_paths:
|
|
845
|
+
- lib
|
|
846
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
847
|
+
requirements:
|
|
848
|
+
- - ">="
|
|
849
|
+
- !ruby/object:Gem::Version
|
|
850
|
+
version: 1.9.1
|
|
851
|
+
version:
|
|
852
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
853
|
+
requirements:
|
|
854
|
+
- - ">="
|
|
855
|
+
- !ruby/object:Gem::Version
|
|
856
|
+
version: "0"
|
|
857
|
+
version:
|
|
858
|
+
requirements: []
|
|
859
|
+
|
|
860
|
+
rubyforge_project: rango
|
|
861
|
+
rubygems_version: 1.3.1
|
|
862
|
+
signing_key:
|
|
863
|
+
specification_version: 2
|
|
864
|
+
summary: Rango is ultralightweight, ultracustomizable, ultracool web framework deeply inspired by Django.
|
|
865
|
+
test_files: []
|
|
866
|
+
|