radiant-rc 0.9.0
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG +489 -0
- data/CONTRIBUTORS +194 -0
- data/INSTALL +40 -0
- data/LICENSE +21 -0
- data/README +64 -0
- data/Rakefile +11 -0
- data/app/controllers/admin/export_controller.rb +5 -0
- data/app/controllers/admin/extensions_controller.rb +11 -0
- data/app/controllers/admin/layouts_controller.rb +13 -0
- data/app/controllers/admin/page_parts_controller.rb +9 -0
- data/app/controllers/admin/pages_controller.rb +55 -0
- data/app/controllers/admin/preferences_controller.rb +45 -0
- data/app/controllers/admin/references_controller.rb +7 -0
- data/app/controllers/admin/resource_controller.rb +173 -0
- data/app/controllers/admin/snippets_controller.rb +13 -0
- data/app/controllers/admin/users_controller.rb +25 -0
- data/app/controllers/admin/welcome_controller.rb +43 -0
- data/app/controllers/application_controller.rb +74 -0
- data/app/controllers/site_controller.rb +61 -0
- data/app/helpers/admin/abstract_model_helper.rb +2 -0
- data/app/helpers/admin/export_helper.rb +2 -0
- data/app/helpers/admin/extensions_helper.rb +2 -0
- data/app/helpers/admin/layouts_helper.rb +2 -0
- data/app/helpers/admin/node_helper.rb +87 -0
- data/app/helpers/admin/pages_helper.rb +112 -0
- data/app/helpers/admin/preferences_helper.rb +2 -0
- data/app/helpers/admin/references_helper.rb +42 -0
- data/app/helpers/admin/regions_helper.rb +28 -0
- data/app/helpers/admin/snippets_helper.rb +2 -0
- data/app/helpers/admin/users_helper.rb +8 -0
- data/app/helpers/admin/welcome_helper.rb +2 -0
- data/app/helpers/application_helper.rb +174 -0
- data/app/helpers/site_helper.rb +2 -0
- data/app/models/env_dump_page.rb +17 -0
- data/app/models/file_not_found_page.rb +28 -0
- data/app/models/layout.rb +16 -0
- data/app/models/page.rb +297 -0
- data/app/models/page_context.rb +46 -0
- data/app/models/page_part.rb +21 -0
- data/app/models/radiant/config.rb +100 -0
- data/app/models/radiant/exporter.rb +11 -0
- data/app/models/snippet.rb +19 -0
- data/app/models/standard_tags.rb +1057 -0
- data/app/models/status.rb +31 -0
- data/app/models/text_filter.rb +25 -0
- data/app/models/user.rb +97 -0
- data/app/models/user_action_observer.rb +13 -0
- data/app/views/admin/extensions/index.html.haml +41 -0
- data/app/views/admin/layouts/_form.html.haml +36 -0
- data/app/views/admin/layouts/edit.html.haml +9 -0
- data/app/views/admin/layouts/index.html.haml +35 -0
- data/app/views/admin/layouts/new.html.haml +7 -0
- data/app/views/admin/layouts/remove.html.haml +16 -0
- data/app/views/admin/page_parts/_page_part.html.haml +17 -0
- data/app/views/admin/pages/_fields.html.haml +56 -0
- data/app/views/admin/pages/_meta_row.html.haml +6 -0
- data/app/views/admin/pages/_node.html.haml +25 -0
- data/app/views/admin/pages/_popups.html.haml +14 -0
- data/app/views/admin/pages/children.html.haml +2 -0
- data/app/views/admin/pages/edit.html.haml +14 -0
- data/app/views/admin/pages/index.html.haml +26 -0
- data/app/views/admin/pages/new.html.haml +12 -0
- data/app/views/admin/pages/remove.html.haml +21 -0
- data/app/views/admin/preferences/edit.html.haml +36 -0
- data/app/views/admin/references/_tag_reference.haml +3 -0
- data/app/views/admin/references/filters.haml +6 -0
- data/app/views/admin/references/tags.haml +24 -0
- data/app/views/admin/snippets/_form.html.haml +28 -0
- data/app/views/admin/snippets/edit.html.haml +9 -0
- data/app/views/admin/snippets/index.html.haml +33 -0
- data/app/views/admin/snippets/new.html.haml +7 -0
- data/app/views/admin/snippets/remove.html.haml +19 -0
- data/app/views/admin/users/_form.html.haml +45 -0
- data/app/views/admin/users/_password_fields.html.haml +16 -0
- data/app/views/admin/users/edit.html.haml +9 -0
- data/app/views/admin/users/index.html.haml +37 -0
- data/app/views/admin/users/new.html.haml +7 -0
- data/app/views/admin/users/remove.html.haml +18 -0
- data/app/views/admin/welcome/login.html.haml +24 -0
- data/app/views/layouts/application.html.haml +53 -0
- data/app/views/site/not_found.html.haml +3 -0
- data/bin/radiant +53 -0
- data/config/boot.rb +162 -0
- data/config/database.db2.yml +20 -0
- data/config/database.mysql.yml +25 -0
- data/config/database.postgresql.yml +25 -0
- data/config/database.sqlserver.yml +20 -0
- data/config/environment.rb +81 -0
- data/config/environments/development.rb +17 -0
- data/config/environments/production.rb +19 -0
- data/config/environments/test.rb +35 -0
- data/config/routes.rb +44 -0
- data/db/migrate/001_create_radiant_tables.rb +75 -0
- data/db/migrate/002_insert_initial_data.rb +12 -0
- data/db/migrate/003_rename_behavior_column.rb +9 -0
- data/db/migrate/004_rename_filter_column.rb +11 -0
- data/db/migrate/005_add_virtual_column_to_page.rb +9 -0
- data/db/migrate/006_integer_columns_to_boolean.rb +36 -0
- data/db/migrate/007_remove_virtual_column_from_page.rb +9 -0
- data/db/migrate/008_add_virtual_column_to_page_again.rb +9 -0
- data/db/migrate/009_add_content_type_field_to_layout.rb +9 -0
- data/db/migrate/010_merge_behaviors_and_pages.rb +57 -0
- data/db/migrate/011_rename_type_column_on_page_to_class_name.rb +9 -0
- data/db/migrate/012_create_extension_meta.rb +13 -0
- data/db/migrate/013_add_notes_field_to_user.rb +9 -0
- data/db/migrate/014_rename_config_default_parts_key.rb +17 -0
- data/db/migrate/015_add_optimistic_locking.rb +15 -0
- data/db/migrate/016_add_sessions.rb +16 -0
- data/db/migrate/017_rename_created_by_updated_by_columns.rb +15 -0
- data/db/migrate/018_add_description_and_keywords_to_pages.rb +11 -0
- data/db/migrate/019_add_salt_to_users.rb +11 -0
- data/db/migrate/020_add_session_info_to_users.rb +11 -0
- data/db/migrate/021_remove_session_expire_from_users.rb +9 -0
- data/db/migrate/20081203140407_add_indexes.rb +19 -0
- data/db/migrate/20090929164633_rename_developer_role_to_designer.rb +9 -0
- data/db/schema.rb +112 -0
- data/db/templates/empty.yml +2 -0
- data/db/templates/roasters.yml +1210 -0
- data/db/templates/simple-blog.yml +197 -0
- data/db/templates/styled-blog.yml +472 -0
- data/features/admin/content_negotiation.feature +24 -0
- data/features/admin/layouts_management.feature +10 -0
- data/features/admin/pages_management.feature +72 -0
- data/features/admin/snippets_management.feature +56 -0
- data/features/admin/user_permissions.feature +157 -0
- data/features/admin/user_preferences.feature +18 -0
- data/features/admin/users_management.feature +62 -0
- data/features/page_serving.feature +42 -0
- data/features/step_definitions/admin/admin_steps.rb +31 -0
- data/features/step_definitions/admin/content_negotiation_steps.rb +37 -0
- data/features/step_definitions/admin/pages_management_steps.rb +14 -0
- data/features/step_definitions/admin/users_management_steps.rb +15 -0
- data/features/step_definitions/page_serving_steps.rb +65 -0
- data/features/step_definitions/webrat_steps.rb +125 -0
- data/features/support/env.rb +24 -0
- data/features/support/paths.rb +21 -0
- data/lib/annotatable.rb +68 -0
- data/lib/autotest/discover.rb +3 -0
- data/lib/autotest/radiant_rails_rspec.rb +111 -0
- data/lib/generators/extension/USAGE +30 -0
- data/lib/generators/extension/extension_generator.rb +65 -0
- data/lib/generators/extension/templates/README +3 -0
- data/lib/generators/extension/templates/RSpecRakefile +123 -0
- data/lib/generators/extension/templates/Rakefile +25 -0
- data/lib/generators/extension/templates/cucumber.yml +1 -0
- data/lib/generators/extension/templates/cucumber_env.rb +16 -0
- data/lib/generators/extension/templates/cucumber_paths.rb +14 -0
- data/lib/generators/extension/templates/extension.rb +18 -0
- data/lib/generators/extension/templates/functional_test.rb +15 -0
- data/lib/generators/extension/templates/migration.rb +9 -0
- data/lib/generators/extension/templates/spec.opts +6 -0
- data/lib/generators/extension/templates/spec_helper.rb +36 -0
- data/lib/generators/extension/templates/tasks.rake +28 -0
- data/lib/generators/extension/templates/test_helper.rb +26 -0
- data/lib/generators/extension_controller/USAGE +36 -0
- data/lib/generators/extension_controller/extension_controller_generator.rb +84 -0
- data/lib/generators/extension_controller/templates/controller.rb +10 -0
- data/lib/generators/extension_controller/templates/controller_spec.rb +23 -0
- data/lib/generators/extension_controller/templates/functional_test.rb +11 -0
- data/lib/generators/extension_controller/templates/helper.rb +2 -0
- data/lib/generators/extension_controller/templates/helper_spec.rb +11 -0
- data/lib/generators/extension_controller/templates/helper_test.rb +4 -0
- data/lib/generators/extension_controller/templates/view.html.erb +2 -0
- data/lib/generators/extension_controller/templates/view_spec.rb +12 -0
- data/lib/generators/extension_mailer/USAGE +17 -0
- data/lib/generators/extension_mailer/extension_mailer_generator.rb +68 -0
- data/lib/generators/extension_mailer/templates/fixture.erb +3 -0
- data/lib/generators/extension_mailer/templates/mailer.rb +15 -0
- data/lib/generators/extension_mailer/templates/unit_test.rb +21 -0
- data/lib/generators/extension_mailer/templates/view.erb +3 -0
- data/lib/generators/extension_migration/USAGE +34 -0
- data/lib/generators/extension_migration/extension_migration_generator.rb +25 -0
- data/lib/generators/extension_migration/templates/migration.rb +11 -0
- data/lib/generators/extension_model/USAGE +35 -0
- data/lib/generators/extension_model/extension_model_generator.rb +68 -0
- data/lib/generators/extension_model/templates/fixtures.yml +19 -0
- data/lib/generators/extension_model/templates/migration.rb +16 -0
- data/lib/generators/extension_model/templates/model.rb +2 -0
- data/lib/generators/extension_model/templates/model_spec.rb +11 -0
- data/lib/generators/extension_model/templates/unit_test.rb +8 -0
- data/lib/generators/generator_base_extension.rb +16 -0
- data/lib/generators/instance/instance_generator.rb +117 -0
- data/lib/generators/instance/templates/databases/db2.yml +40 -0
- data/lib/generators/instance/templates/databases/mysql.yml +47 -0
- data/lib/generators/instance/templates/databases/postgresql.yml +44 -0
- data/lib/generators/instance/templates/databases/sqlite3.yml +16 -0
- data/lib/generators/instance/templates/databases/sqlserver.yml +20 -0
- data/lib/generators/instance/templates/instance_boot.rb +161 -0
- data/lib/generators/instance/templates/instance_environment.rb +81 -0
- data/lib/generators/instance/templates/instance_generate +18 -0
- data/lib/generators/instance/templates/instance_rakefile +3 -0
- data/lib/generators/instance/templates/instance_routes.rb +1 -0
- data/lib/inheritable_class_attributes.rb +65 -0
- data/lib/local_time.rb +6 -0
- data/lib/login_system.rb +128 -0
- data/lib/method_observer.rb +50 -0
- data/lib/plugins/active_record_extensions/init.rb +1 -0
- data/lib/plugins/active_record_extensions/lib/active_record_extensions.rb +47 -0
- data/lib/plugins/extension_patches/init.rb +1 -0
- data/lib/plugins/extension_patches/lib/routing_extension.rb +31 -0
- data/lib/plugins/object_extensions/init.rb +1 -0
- data/lib/plugins/object_extensions/lib/object_extensions.rb +5 -0
- data/lib/plugins/response_cache_timeout/init.rb +3 -0
- data/lib/plugins/string_extensions/init.rb +1 -0
- data/lib/plugins/string_extensions/lib/string_extensions.rb +23 -0
- data/lib/plugins/symbol_extensions/init.rb +1 -0
- data/lib/plugins/symbol_extensions/lib/symbol_extensions.rb +5 -0
- data/lib/radiant.rb +18 -0
- data/lib/radiant/admin_ui.rb +230 -0
- data/lib/radiant/admin_ui/region_partials.rb +18 -0
- data/lib/radiant/admin_ui/region_set.rb +35 -0
- data/lib/radiant/cache.rb +98 -0
- data/lib/radiant/extension.rb +100 -0
- data/lib/radiant/extension/script.rb +347 -0
- data/lib/radiant/extension_loader.rb +153 -0
- data/lib/radiant/extension_migrator.rb +86 -0
- data/lib/radiant/initializer.rb +244 -0
- data/lib/radiant/legacy_routes.rb +72 -0
- data/lib/radiant/resource_responses.rb +115 -0
- data/lib/radiant/setup.rb +212 -0
- data/lib/radiant/taggable.rb +91 -0
- data/lib/simpleton.rb +21 -0
- data/lib/task_support.rb +33 -0
- data/lib/tasks/cucumber.rake +21 -0
- data/lib/tasks/database.rake +31 -0
- data/lib/tasks/environments.rake +11 -0
- data/lib/tasks/extensions.rake +86 -0
- data/lib/tasks/framework.rake +171 -0
- data/lib/tasks/instance.rake +23 -0
- data/lib/tasks/prototype.rake +34 -0
- data/lib/tasks/radiant_config.rake +18 -0
- data/lib/tasks/release.rake +121 -0
- data/lib/tasks/rspec.rake +221 -0
- data/lib/tasks/undefine.rake +28 -0
- data/log/.keep +0 -0
- data/public/.htaccess +40 -0
- data/public/404.html +8 -0
- data/public/500.html +8 -0
- data/public/dispatch.cgi +10 -0
- data/public/dispatch.fcgi +24 -0
- data/public/dispatch.rb +10 -0
- data/public/favicon.ico +0 -0
- data/public/images/admin/add_child.png +0 -0
- data/public/images/admin/add_tab.png +0 -0
- data/public/images/admin/avatar_32x32.png +0 -0
- data/public/images/admin/brown_bottom_line.gif +0 -0
- data/public/images/admin/buttons_background.png +0 -0
- data/public/images/admin/collapse.png +0 -0
- data/public/images/admin/draft_page.png +0 -0
- data/public/images/admin/expand.png +0 -0
- data/public/images/admin/layout.png +0 -0
- data/public/images/admin/login_shadow.png +0 -0
- data/public/images/admin/metadata_toggle.png +0 -0
- data/public/images/admin/minus.png +0 -0
- data/public/images/admin/minus_grey.png +0 -0
- data/public/images/admin/navigation_background.gif +0 -0
- data/public/images/admin/navigation_secondary_background.png +0 -0
- data/public/images/admin/navigation_secondary_separator.gif +0 -0
- data/public/images/admin/navigation_shadow.png +0 -0
- data/public/images/admin/navigation_tabs.png +0 -0
- data/public/images/admin/new_homepage.png +0 -0
- data/public/images/admin/new_layout.png +0 -0
- data/public/images/admin/new_snippet.png +0 -0
- data/public/images/admin/new_user.png +0 -0
- data/public/images/admin/page.png +0 -0
- data/public/images/admin/plus.png +0 -0
- data/public/images/admin/plus_grey.png +0 -0
- data/public/images/admin/popup_border_background.png +0 -0
- data/public/images/admin/popup_border_bottom_left.png +0 -0
- data/public/images/admin/popup_border_bottom_right.png +0 -0
- data/public/images/admin/popup_border_top_left.png +0 -0
- data/public/images/admin/popup_border_top_right.png +0 -0
- data/public/images/admin/remove.png +0 -0
- data/public/images/admin/remove_disabled.png +0 -0
- data/public/images/admin/snippet.png +0 -0
- data/public/images/admin/spacer.gif +0 -0
- data/public/images/admin/spinner.gif +0 -0
- data/public/images/admin/status_background.png +0 -0
- data/public/images/admin/status_bottom_left.png +0 -0
- data/public/images/admin/status_bottom_right.png +0 -0
- data/public/images/admin/status_spinner.gif +0 -0
- data/public/images/admin/status_top_left.png +0 -0
- data/public/images/admin/status_top_right.png +0 -0
- data/public/images/admin/tab_close.png +0 -0
- data/public/images/admin/vertical_tan_gradient.png +0 -0
- data/public/images/admin/view_site.png +0 -0
- data/public/images/admin/virtual_page.png +0 -0
- data/public/javascripts/admin/application.js +52 -0
- data/public/javascripts/admin/codearea.js +165 -0
- data/public/javascripts/admin/controls.js +965 -0
- data/public/javascripts/admin/cookie.js +80 -0
- data/public/javascripts/admin/dragdrop.js +974 -0
- data/public/javascripts/admin/effects.js +1122 -0
- data/public/javascripts/admin/lowpro.js +339 -0
- data/public/javascripts/admin/pngfix.js +39 -0
- data/public/javascripts/admin/popup.js +216 -0
- data/public/javascripts/admin/prototype.js +4184 -0
- data/public/javascripts/admin/ruledtable.js +13 -0
- data/public/javascripts/admin/shortcuts.js +27 -0
- data/public/javascripts/admin/sitemap.js +150 -0
- data/public/javascripts/admin/status.js +198 -0
- data/public/javascripts/admin/tabcontrol.js +141 -0
- data/public/javascripts/admin/utility.js +52 -0
- data/public/robots.txt +1 -0
- data/public/stylesheets/admin/main.css +907 -0
- data/public/stylesheets/sass/admin/_avatars.sass +4 -0
- data/public/stylesheets/sass/admin/_base.sass +61 -0
- data/public/stylesheets/sass/admin/_content.sass +215 -0
- data/public/stylesheets/sass/admin/_footer.sass +12 -0
- data/public/stylesheets/sass/admin/_forms.sass +269 -0
- data/public/stylesheets/sass/admin/_header.sass +117 -0
- data/public/stylesheets/sass/admin/_layout.sass +10 -0
- data/public/stylesheets/sass/admin/_messages.sass +10 -0
- data/public/stylesheets/sass/admin/_popup.sass +116 -0
- data/public/stylesheets/sass/admin/_reset.sass +36 -0
- data/public/stylesheets/sass/admin/_status.sass +8 -0
- data/public/stylesheets/sass/admin/_tabcontrol.sass +74 -0
- data/public/stylesheets/sass/admin/main.sass +14 -0
- data/public/stylesheets/sass/admin/styles.sass +13 -0
- data/script/about +3 -0
- data/script/autospec +5 -0
- data/script/breakpointer +3 -0
- data/script/console +3 -0
- data/script/cucumber +8 -0
- data/script/dbconsole +3 -0
- data/script/destroy +3 -0
- data/script/extension +5 -0
- data/script/generate +4 -0
- data/script/performance/benchmarker +3 -0
- data/script/performance/profiler +3 -0
- data/script/performance/request +3 -0
- data/script/plugin +3 -0
- data/script/process/inspector +3 -0
- data/script/process/reaper +3 -0
- data/script/process/spawner +3 -0
- data/script/process/spinner +3 -0
- data/script/runner +3 -0
- data/script/server +3 -0
- data/script/spec +5 -0
- data/script/spec_server +116 -0
- data/script/version +5 -0
- data/spec/controllers/admin/export_controller_spec.rb +16 -0
- data/spec/controllers/admin/extensions_controller_spec.rb +36 -0
- data/spec/controllers/admin/layouts_controller_spec.rb +102 -0
- data/spec/controllers/admin/pages_controller_spec.rb +241 -0
- data/spec/controllers/admin/preferences_controller_spec.rb +43 -0
- data/spec/controllers/admin/references_controller_spec.rb +15 -0
- data/spec/controllers/admin/snippets_controller_spec.rb +110 -0
- data/spec/controllers/admin/users_controller_spec.rb +92 -0
- data/spec/controllers/admin/welcome_controller_spec.rb +98 -0
- data/spec/controllers/application_controller_spec.rb +88 -0
- data/spec/controllers/site_controller_spec.rb +135 -0
- data/spec/datasets/config_dataset.rb +11 -0
- data/spec/datasets/file_not_found_dataset.rb +22 -0
- data/spec/datasets/home_page_dataset.rb +64 -0
- data/spec/datasets/layouts_dataset.rb +58 -0
- data/spec/datasets/markup_pages_dataset.rb +13 -0
- data/spec/datasets/pages_dataset.rb +61 -0
- data/spec/datasets/pages_with_layouts_dataset.rb +10 -0
- data/spec/datasets/snippets_dataset.rb +38 -0
- data/spec/datasets/users_and_pages_dataset.rb +9 -0
- data/spec/datasets/users_dataset.rb +43 -0
- data/spec/fixtures/example_extension/README +3 -0
- data/spec/fixtures/example_extension/Rakefile +120 -0
- data/spec/fixtures/example_extension/example_extension.rb +21 -0
- data/spec/fixtures/example_extension/lib/tasks/example_extension_tasks.rake +28 -0
- data/spec/fixtures/example_extension/spec/spec.opts +6 -0
- data/spec/fixtures/example_extension/spec/spec_helper.rb +36 -0
- data/spec/fixtures/radiant_config.yml +10 -0
- data/spec/fixtures/sample.txt +1 -0
- data/spec/generators/extension_controller_generator_spec.rb +85 -0
- data/spec/generators/extension_generator_spec.rb +184 -0
- data/spec/generators/extension_generators_spec_helper.rb +139 -0
- data/spec/generators/extension_mailer_generator_spec.rb +60 -0
- data/spec/generators/extension_migration_generator_spec.rb +21 -0
- data/spec/generators/extension_model_generator_spec.rb +61 -0
- data/spec/helpers/admin/abstract_model_helper_spec.rb +4 -0
- data/spec/helpers/admin/export_helper_spec.rb +4 -0
- data/spec/helpers/admin/extensions_helper_spec.rb +4 -0
- data/spec/helpers/admin/layouts_helper_spec.rb +4 -0
- data/spec/helpers/admin/node_helper_spec.rb +105 -0
- data/spec/helpers/admin/pages_helper_spec.rb +63 -0
- data/spec/helpers/admin/preferences_helper_spec.rb +11 -0
- data/spec/helpers/admin/references_helper_spec.rb +115 -0
- data/spec/helpers/admin/regions_helper_spec.rb +47 -0
- data/spec/helpers/admin/snippets_helper_spec.rb +4 -0
- data/spec/helpers/admin/users_helper_spec.rb +11 -0
- data/spec/helpers/admin/welcome_helper_spec.rb +4 -0
- data/spec/helpers/application_helper_spec.rb +164 -0
- data/spec/helpers/site_helper_spec.rb +4 -0
- data/spec/lib/annotatable_spec.rb +86 -0
- data/spec/lib/autotest_spec.rb +81 -0
- data/spec/lib/core_ext/string_ext_spec.rb +11 -0
- data/spec/lib/inheritable_class_attributes_spec.rb +90 -0
- data/spec/lib/login_system_spec.rb +195 -0
- data/spec/lib/method_observer_spec.rb +48 -0
- data/spec/lib/radiant/admin_ui/nav_tabs_spec.rb +167 -0
- data/spec/lib/radiant/admin_ui/region_partials_spec.rb +35 -0
- data/spec/lib/radiant/admin_ui/region_set_spec.rb +61 -0
- data/spec/lib/radiant/admin_ui_spec.rb +120 -0
- data/spec/lib/radiant/extension/script_spec.rb +456 -0
- data/spec/lib/radiant/extension_loader_spec.rb +218 -0
- data/spec/lib/radiant/extension_migrator_spec.rb +46 -0
- data/spec/lib/radiant/extension_spec.rb +101 -0
- data/spec/lib/radiant/initializer_spec.rb +131 -0
- data/spec/lib/radiant/legacy_routes_spec.rb +14 -0
- data/spec/lib/radiant/resource_responses_spec.rb +207 -0
- data/spec/lib/radiant/taggable_spec.rb +186 -0
- data/spec/lib/radiant_spec.rb +26 -0
- data/spec/lib/simpleton_spec.rb +45 -0
- data/spec/lib/task_support_spec.rb +42 -0
- data/spec/matchers/autotest_matchers.rb +47 -0
- data/spec/matchers/generator_matchers.rb +237 -0
- data/spec/matchers/login_system_matcher.rb +79 -0
- data/spec/matchers/render_form_errors_matcher.rb +62 -0
- data/spec/matchers/render_matcher.rb +120 -0
- data/spec/models/env_dump_page_spec.rb +18 -0
- data/spec/models/file_not_found_page_spec.rb +31 -0
- data/spec/models/layout_spec.rb +29 -0
- data/spec/models/page_context_spec.rb +66 -0
- data/spec/models/page_part_spec.rb +67 -0
- data/spec/models/page_spec.rb +609 -0
- data/spec/models/radiant/config_spec.rb +114 -0
- data/spec/models/radiant/exporter_spec.rb +25 -0
- data/spec/models/snippet_spec.rb +41 -0
- data/spec/models/standard_tags_spec.rb +1027 -0
- data/spec/models/status_spec.rb +53 -0
- data/spec/models/text_filter_spec.rb +40 -0
- data/spec/models/user_action_observer_spec.rb +34 -0
- data/spec/models/user_spec.rb +203 -0
- data/spec/rcov.opts +2 -0
- data/spec/spec.opts +4 -0
- data/spec/spec_helper.rb +74 -0
- data/test/fixtures/extensions/01_basic/app/controllers/basic_extension_controller.rb +7 -0
- data/test/fixtures/extensions/01_basic/app/metal/basic_metal.rb +9 -0
- data/test/fixtures/extensions/01_basic/app/models/basic_extension_mailer.rb +4 -0
- data/test/fixtures/extensions/01_basic/app/models/basic_extension_model.rb +2 -0
- data/test/fixtures/extensions/01_basic/app/views/basic_extension/index.html.erb +1 -0
- data/test/fixtures/extensions/01_basic/app/views/basic_extension/override.html.erb +1 -0
- data/test/fixtures/extensions/01_basic/app/views/basic_extension_mailer/message.text.html.erb +1 -0
- data/test/fixtures/extensions/01_basic/basic_extension.rb +14 -0
- data/test/fixtures/extensions/01_basic/db/migrate/200812131420_create_initial_schema.rb +10 -0
- data/test/fixtures/extensions/01_basic/db/migrate/200812131421_modify_initial_schema.rb +10 -0
- data/test/fixtures/extensions/01_basic/lib/new_module.rb +2 -0
- data/test/fixtures/extensions/01_basic/vendor/plugins/multiple/init.rb +1 -0
- data/test/fixtures/extensions/01_basic/vendor/plugins/multiple/lib/multiple.rb +2 -0
- data/test/fixtures/extensions/01_basic/vendor/plugins/plugin_normal/init.rb +1 -0
- data/test/fixtures/extensions/01_basic/vendor/plugins/plugin_normal/lib/normal_plugin.rb +2 -0
- data/test/fixtures/extensions/02_overriding/app/metal/basic_metal.rb +9 -0
- data/test/fixtures/extensions/02_overriding/app/views/basic_extension/override.html.erb +1 -0
- data/test/fixtures/extensions/02_overriding/overriding_extension.rb +8 -0
- data/test/fixtures/extensions/02_overriding/vendor/plugins/multiple/init.rb +1 -0
- data/test/fixtures/extensions/02_overriding/vendor/plugins/multiple/lib/multiple.rb +2 -0
- data/test/fixtures/extensions/03_upgrading/db/migrate/01_first.rb +7 -0
- data/test/fixtures/extensions/03_upgrading/db/migrate/02_second.rb +7 -0
- data/test/fixtures/extensions/03_upgrading/db/migrate/03_pending.rb +7 -0
- data/test/fixtures/extensions/03_upgrading/db/migrate/04_dont_run.rb +7 -0
- data/test/fixtures/extensions/03_upgrading/upgrading_extension.rb +2 -0
- data/test/fixtures/extensions/load_order_blue/load_order_blue_extension.rb +8 -0
- data/test/fixtures/extensions/load_order_green/load_order_green_extension.rb +8 -0
- data/test/fixtures/extensions/load_order_red/load_order_red_extension.rb +8 -0
- data/test/fixtures/extensions/special_characters/db/migrate/001_create_initial_schema.rb +10 -0
- data/test/fixtures/extensions/special_characters/special_characters_extension.rb +3 -0
- data/test/helpers/page_test_helper.rb +79 -0
- data/test/helpers/render_test_helper.rb +60 -0
- data/test/helpers/user_test_helper.rb +35 -0
- data/test/helpers/validation_test_helper.rb +42 -0
- data/test/test_helper.rb +64 -0
- data/vendor/extensions/archive/README +29 -0
- data/vendor/extensions/archive/Rakefile +120 -0
- data/vendor/extensions/archive/app/models/archive_day_index_page.rb +28 -0
- data/vendor/extensions/archive/app/models/archive_finder.rb +55 -0
- data/vendor/extensions/archive/app/models/archive_month_index_page.rb +28 -0
- data/vendor/extensions/archive/app/models/archive_page.rb +36 -0
- data/vendor/extensions/archive/app/models/archive_year_index_page.rb +28 -0
- data/vendor/extensions/archive/archive_extension.rb +19 -0
- data/vendor/extensions/archive/lib/archive_index_tags_and_methods.rb +57 -0
- data/vendor/extensions/archive/lib/tasks/archive_extension_tasks.rake +28 -0
- data/vendor/extensions/archive/spec/datasets/archive_dataset.rb +51 -0
- data/vendor/extensions/archive/spec/models/archive_day_index_page_spec.rb +20 -0
- data/vendor/extensions/archive/spec/models/archive_month_index_page_spec.rb +20 -0
- data/vendor/extensions/archive/spec/models/archive_page_spec.rb +33 -0
- data/vendor/extensions/archive/spec/models/archive_year_index_page_spec.rb +20 -0
- data/vendor/extensions/archive/spec/spec.opts +6 -0
- data/vendor/extensions/archive/spec/spec_helper.rb +36 -0
- data/vendor/extensions/archive/test/fixtures/pages.yml +397 -0
- data/vendor/extensions/archive/test/functional/archive_extension_test.rb +16 -0
- data/vendor/extensions/archive/test/helpers/archive_index_test_helper.rb +37 -0
- data/vendor/extensions/archive/test/test_helper.rb +26 -0
- data/vendor/extensions/archive/test/unit/archive_day_index_page_test.rb +22 -0
- data/vendor/extensions/archive/test/unit/archive_month_index_page_test.rb +22 -0
- data/vendor/extensions/archive/test/unit/archive_page_test.rb +40 -0
- data/vendor/extensions/archive/test/unit/archive_year_index_page_test.rb +22 -0
- data/vendor/extensions/markdown_filter/README +1 -0
- data/vendor/extensions/markdown_filter/Rakefile +120 -0
- data/vendor/extensions/markdown_filter/lib/markdown_filter.rb +10 -0
- data/vendor/extensions/markdown_filter/lib/markdown_tags.rb +33 -0
- data/vendor/extensions/markdown_filter/lib/smarty_pants_filter.rb +7 -0
- data/vendor/extensions/markdown_filter/lib/tasks/markdown_filter_extension_tasks.rake +28 -0
- data/vendor/extensions/markdown_filter/markdown.html +123 -0
- data/vendor/extensions/markdown_filter/markdown_filter_extension.rb +27 -0
- data/vendor/extensions/markdown_filter/smartypants.html +47 -0
- data/vendor/extensions/markdown_filter/spec/models/markdown_filter_spec.rb +22 -0
- data/vendor/extensions/markdown_filter/spec/models/smarty_pants_filter_spec.rb +19 -0
- data/vendor/extensions/markdown_filter/spec/spec.opts +6 -0
- data/vendor/extensions/markdown_filter/spec/spec_helper.rb +36 -0
- data/vendor/extensions/markdown_filter/test/test_helper.rb +19 -0
- data/vendor/extensions/markdown_filter/test/unit/markdown_filter_test.rb +18 -0
- data/vendor/extensions/markdown_filter/test/unit/smarty_pants_filter_test.rb +14 -0
- data/vendor/extensions/markdown_filter/vendor/bluecloth/CHANGES +366 -0
- data/vendor/extensions/markdown_filter/vendor/bluecloth/LICENSE +340 -0
- data/vendor/extensions/markdown_filter/vendor/bluecloth/README +99 -0
- data/vendor/extensions/markdown_filter/vendor/bluecloth/bin/bluecloth +83 -0
- data/vendor/extensions/markdown_filter/vendor/bluecloth/install.rb +150 -0
- data/vendor/extensions/markdown_filter/vendor/bluecloth/lib/bluecloth.rb +1144 -0
- data/vendor/extensions/markdown_filter/vendor/bluecloth/test.rb +117 -0
- data/vendor/extensions/markdown_filter/vendor/bluecloth/tests/00_Class.tests.rb +71 -0
- data/vendor/extensions/markdown_filter/vendor/bluecloth/tests/05_Markdown.tests.rb +1527 -0
- data/vendor/extensions/markdown_filter/vendor/bluecloth/tests/10_Bug.tests.rb +57 -0
- data/vendor/extensions/markdown_filter/vendor/bluecloth/tests/15_Contrib.tests.rb +132 -0
- data/vendor/extensions/markdown_filter/vendor/bluecloth/tests/bctestcase.rb +274 -0
- data/vendor/extensions/markdown_filter/vendor/bluecloth/tests/data/antsugar.txt +34 -0
- data/vendor/extensions/markdown_filter/vendor/bluecloth/tests/data/ml-announce.txt +17 -0
- data/vendor/extensions/markdown_filter/vendor/bluecloth/tests/data/re-overflow.txt +67 -0
- data/vendor/extensions/markdown_filter/vendor/bluecloth/tests/data/re-overflow2.txt +281 -0
- data/vendor/extensions/markdown_filter/vendor/bluecloth/utils.rb +553 -0
- data/vendor/extensions/markdown_filter/vendor/rubypants/README +114 -0
- data/vendor/extensions/markdown_filter/vendor/rubypants/Rakefile +84 -0
- data/vendor/extensions/markdown_filter/vendor/rubypants/install.rb +9 -0
- data/vendor/extensions/markdown_filter/vendor/rubypants/rubypants.rb +490 -0
- data/vendor/extensions/markdown_filter/vendor/rubypants/test_rubypants.rb +162 -0
- data/vendor/extensions/textile_filter/README +1 -0
- data/vendor/extensions/textile_filter/Rakefile +120 -0
- data/vendor/extensions/textile_filter/lib/tasks/textile_filter_extension_tasks.rake +0 -0
- data/vendor/extensions/textile_filter/lib/textile_filter.rb +6 -0
- data/vendor/extensions/textile_filter/lib/textile_tags.rb +24 -0
- data/vendor/extensions/textile_filter/spec/models/textile_filter_spec.rb +19 -0
- data/vendor/extensions/textile_filter/spec/spec.opts +6 -0
- data/vendor/extensions/textile_filter/spec/spec_helper.rb +36 -0
- data/vendor/extensions/textile_filter/test/test_helper.rb +19 -0
- data/vendor/extensions/textile_filter/test/unit/textile_filter_test.rb +13 -0
- data/vendor/extensions/textile_filter/textile.html +115 -0
- data/vendor/extensions/textile_filter/textile_filter_extension.rb +10 -0
- data/vendor/highline/CHANGELOG +222 -0
- data/vendor/highline/INSTALL +35 -0
- data/vendor/highline/LICENSE +7 -0
- data/vendor/highline/README +63 -0
- data/vendor/highline/Rakefile +82 -0
- data/vendor/highline/TODO +6 -0
- data/vendor/highline/examples/ansi_colors.rb +38 -0
- data/vendor/highline/examples/asking_for_arrays.rb +18 -0
- data/vendor/highline/examples/basic_usage.rb +75 -0
- data/vendor/highline/examples/color_scheme.rb +32 -0
- data/vendor/highline/examples/limit.rb +12 -0
- data/vendor/highline/examples/menus.rb +65 -0
- data/vendor/highline/examples/overwrite.rb +19 -0
- data/vendor/highline/examples/page_and_wrap.rb +322 -0
- data/vendor/highline/examples/password.rb +7 -0
- data/vendor/highline/examples/trapping_eof.rb +22 -0
- data/vendor/highline/examples/using_readline.rb +17 -0
- data/vendor/highline/lib/highline.rb +758 -0
- data/vendor/highline/lib/highline/color_scheme.rb +120 -0
- data/vendor/highline/lib/highline/compatibility.rb +17 -0
- data/vendor/highline/lib/highline/import.rb +43 -0
- data/vendor/highline/lib/highline/menu.rb +395 -0
- data/vendor/highline/lib/highline/question.rb +463 -0
- data/vendor/highline/lib/highline/system_extensions.rb +193 -0
- data/vendor/highline/setup.rb +1360 -0
- data/vendor/highline/test/tc_color_scheme.rb +56 -0
- data/vendor/highline/test/tc_highline.rb +823 -0
- data/vendor/highline/test/tc_import.rb +54 -0
- data/vendor/highline/test/tc_menu.rb +429 -0
- data/vendor/highline/test/ts_all.rb +15 -0
- data/vendor/plugins/acts_as_tree/README +26 -0
- data/vendor/plugins/acts_as_tree/Rakefile +22 -0
- data/vendor/plugins/acts_as_tree/init.rb +1 -0
- data/vendor/plugins/acts_as_tree/lib/active_record/acts/tree.rb +96 -0
- data/vendor/plugins/acts_as_tree/test/abstract_unit.rb +0 -0
- data/vendor/plugins/acts_as_tree/test/acts_as_tree_test.rb +219 -0
- data/vendor/plugins/acts_as_tree/test/database.yml +0 -0
- data/vendor/plugins/acts_as_tree/test/fixtures/mixin.rb +0 -0
- data/vendor/plugins/acts_as_tree/test/fixtures/mixins.yml +0 -0
- data/vendor/plugins/acts_as_tree/test/schema.rb +0 -0
- data/vendor/plugins/haml/FAQ +138 -0
- data/vendor/plugins/haml/MIT-LICENSE +20 -0
- data/vendor/plugins/haml/README.rdoc +319 -0
- data/vendor/plugins/haml/REVISION +1 -0
- data/vendor/plugins/haml/Rakefile +184 -0
- data/vendor/plugins/haml/VERSION +1 -0
- data/vendor/plugins/haml/bin/css2sass +7 -0
- data/vendor/plugins/haml/bin/haml +9 -0
- data/vendor/plugins/haml/bin/html2haml +7 -0
- data/vendor/plugins/haml/bin/sass +8 -0
- data/vendor/plugins/haml/extra/haml-mode.el +331 -0
- data/vendor/plugins/haml/extra/sass-mode.el +89 -0
- data/vendor/plugins/haml/init.rb +8 -0
- data/vendor/plugins/haml/lib/haml.rb +1018 -0
- data/vendor/plugins/haml/lib/haml/buffer.rb +240 -0
- data/vendor/plugins/haml/lib/haml/engine.rb +265 -0
- data/vendor/plugins/haml/lib/haml/error.rb +22 -0
- data/vendor/plugins/haml/lib/haml/exec.rb +374 -0
- data/vendor/plugins/haml/lib/haml/filters.rb +276 -0
- data/vendor/plugins/haml/lib/haml/helpers.rb +465 -0
- data/vendor/plugins/haml/lib/haml/helpers/action_view_extensions.rb +45 -0
- data/vendor/plugins/haml/lib/haml/helpers/action_view_mods.rb +181 -0
- data/vendor/plugins/haml/lib/haml/html.rb +222 -0
- data/vendor/plugins/haml/lib/haml/precompiler.rb +811 -0
- data/vendor/plugins/haml/lib/haml/template.rb +51 -0
- data/vendor/plugins/haml/lib/haml/template/patch.rb +58 -0
- data/vendor/plugins/haml/lib/haml/template/plugin.rb +72 -0
- data/vendor/plugins/haml/lib/haml/util.rb +23 -0
- data/vendor/plugins/haml/lib/haml/version.rb +47 -0
- data/vendor/plugins/haml/lib/sass.rb +873 -0
- data/vendor/plugins/haml/lib/sass/constant.rb +216 -0
- data/vendor/plugins/haml/lib/sass/constant/color.rb +101 -0
- data/vendor/plugins/haml/lib/sass/constant/literal.rb +54 -0
- data/vendor/plugins/haml/lib/sass/constant/nil.rb +9 -0
- data/vendor/plugins/haml/lib/sass/constant/number.rb +87 -0
- data/vendor/plugins/haml/lib/sass/constant/operation.rb +30 -0
- data/vendor/plugins/haml/lib/sass/constant/string.rb +22 -0
- data/vendor/plugins/haml/lib/sass/css.rb +394 -0
- data/vendor/plugins/haml/lib/sass/engine.rb +466 -0
- data/vendor/plugins/haml/lib/sass/error.rb +35 -0
- data/vendor/plugins/haml/lib/sass/plugin.rb +169 -0
- data/vendor/plugins/haml/lib/sass/plugin/merb.rb +56 -0
- data/vendor/plugins/haml/lib/sass/plugin/rails.rb +24 -0
- data/vendor/plugins/haml/lib/sass/tree/attr_node.rb +57 -0
- data/vendor/plugins/haml/lib/sass/tree/comment_node.rb +20 -0
- data/vendor/plugins/haml/lib/sass/tree/directive_node.rb +46 -0
- data/vendor/plugins/haml/lib/sass/tree/node.rb +46 -0
- data/vendor/plugins/haml/lib/sass/tree/rule_node.rb +93 -0
- data/vendor/plugins/haml/lib/sass/tree/value_node.rb +20 -0
- data/vendor/plugins/haml/rails/init.rb +1 -0
- data/vendor/plugins/haml/test/benchmark.rb +99 -0
- data/vendor/plugins/haml/test/haml/engine_test.rb +657 -0
- data/vendor/plugins/haml/test/haml/helper_test.rb +224 -0
- data/vendor/plugins/haml/test/haml/html2haml_test.rb +92 -0
- data/vendor/plugins/haml/test/haml/markaby/standard.mab +52 -0
- data/vendor/plugins/haml/test/haml/mocks/article.rb +6 -0
- data/vendor/plugins/haml/test/haml/results/content_for_layout.xhtml +15 -0
- data/vendor/plugins/haml/test/haml/results/eval_suppressed.xhtml +9 -0
- data/vendor/plugins/haml/test/haml/results/filters.xhtml +60 -0
- data/vendor/plugins/haml/test/haml/results/helpers.xhtml +93 -0
- data/vendor/plugins/haml/test/haml/results/helpful.xhtml +10 -0
- data/vendor/plugins/haml/test/haml/results/just_stuff.xhtml +68 -0
- data/vendor/plugins/haml/test/haml/results/list.xhtml +12 -0
- data/vendor/plugins/haml/test/haml/results/nuke_inner_whitespace.xhtml +40 -0
- data/vendor/plugins/haml/test/haml/results/nuke_outer_whitespace.xhtml +148 -0
- data/vendor/plugins/haml/test/haml/results/original_engine.xhtml +20 -0
- data/vendor/plugins/haml/test/haml/results/partial_layout.xhtml +5 -0
- data/vendor/plugins/haml/test/haml/results/partials.xhtml +21 -0
- data/vendor/plugins/haml/test/haml/results/render_layout.xhtml +3 -0
- data/vendor/plugins/haml/test/haml/results/silent_script.xhtml +74 -0
- data/vendor/plugins/haml/test/haml/results/standard.xhtml +42 -0
- data/vendor/plugins/haml/test/haml/results/tag_parsing.xhtml +23 -0
- data/vendor/plugins/haml/test/haml/results/very_basic.xhtml +5 -0
- data/vendor/plugins/haml/test/haml/results/whitespace_handling.xhtml +89 -0
- data/vendor/plugins/haml/test/haml/rhtml/_av_partial_1.rhtml +12 -0
- data/vendor/plugins/haml/test/haml/rhtml/_av_partial_2.rhtml +8 -0
- data/vendor/plugins/haml/test/haml/rhtml/action_view.rhtml +62 -0
- data/vendor/plugins/haml/test/haml/rhtml/standard.rhtml +54 -0
- data/vendor/plugins/haml/test/haml/template_test.rb +204 -0
- data/vendor/plugins/haml/test/haml/templates/_av_partial_1.haml +9 -0
- data/vendor/plugins/haml/test/haml/templates/_av_partial_1_ugly.haml +9 -0
- data/vendor/plugins/haml/test/haml/templates/_av_partial_2.haml +5 -0
- data/vendor/plugins/haml/test/haml/templates/_av_partial_2_ugly.haml +5 -0
- data/vendor/plugins/haml/test/haml/templates/_layout.erb +3 -0
- data/vendor/plugins/haml/test/haml/templates/_layout_for_partial.haml +3 -0
- data/vendor/plugins/haml/test/haml/templates/_partial.haml +8 -0
- data/vendor/plugins/haml/test/haml/templates/_text_area.haml +3 -0
- data/vendor/plugins/haml/test/haml/templates/action_view.haml +47 -0
- data/vendor/plugins/haml/test/haml/templates/action_view_ugly.haml +47 -0
- data/vendor/plugins/haml/test/haml/templates/breakage.haml +8 -0
- data/vendor/plugins/haml/test/haml/templates/content_for_layout.haml +10 -0
- data/vendor/plugins/haml/test/haml/templates/eval_suppressed.haml +11 -0
- data/vendor/plugins/haml/test/haml/templates/filters.haml +66 -0
- data/vendor/plugins/haml/test/haml/templates/helpers.haml +95 -0
- data/vendor/plugins/haml/test/haml/templates/helpful.haml +11 -0
- data/vendor/plugins/haml/test/haml/templates/just_stuff.haml +83 -0
- data/vendor/plugins/haml/test/haml/templates/list.haml +12 -0
- data/vendor/plugins/haml/test/haml/templates/nuke_inner_whitespace.haml +32 -0
- data/vendor/plugins/haml/test/haml/templates/nuke_outer_whitespace.haml +144 -0
- data/vendor/plugins/haml/test/haml/templates/original_engine.haml +17 -0
- data/vendor/plugins/haml/test/haml/templates/partial_layout.haml +3 -0
- data/vendor/plugins/haml/test/haml/templates/partialize.haml +1 -0
- data/vendor/plugins/haml/test/haml/templates/partials.haml +12 -0
- data/vendor/plugins/haml/test/haml/templates/render_layout.haml +2 -0
- data/vendor/plugins/haml/test/haml/templates/silent_script.haml +40 -0
- data/vendor/plugins/haml/test/haml/templates/standard.haml +42 -0
- data/vendor/plugins/haml/test/haml/templates/standard_ugly.haml +42 -0
- data/vendor/plugins/haml/test/haml/templates/tag_parsing.haml +21 -0
- data/vendor/plugins/haml/test/haml/templates/very_basic.haml +4 -0
- data/vendor/plugins/haml/test/haml/templates/whitespace_handling.haml +87 -0
- data/vendor/plugins/haml/test/linked_rails.rb +12 -0
- data/vendor/plugins/haml/test/sass/css2sass_test.rb +193 -0
- data/vendor/plugins/haml/test/sass/engine_test.rb +294 -0
- data/vendor/plugins/haml/test/sass/plugin_test.rb +161 -0
- data/vendor/plugins/haml/test/sass/results/alt.css +4 -0
- data/vendor/plugins/haml/test/sass/results/basic.css +9 -0
- data/vendor/plugins/haml/test/sass/results/compact.css +5 -0
- data/vendor/plugins/haml/test/sass/results/complex.css +87 -0
- data/vendor/plugins/haml/test/sass/results/compressed.css +1 -0
- data/vendor/plugins/haml/test/sass/results/constants.css +16 -0
- data/vendor/plugins/haml/test/sass/results/expanded.css +19 -0
- data/vendor/plugins/haml/test/sass/results/import.css +29 -0
- data/vendor/plugins/haml/test/sass/results/mixins.css +95 -0
- data/vendor/plugins/haml/test/sass/results/multiline.css +24 -0
- data/vendor/plugins/haml/test/sass/results/nested.css +22 -0
- data/vendor/plugins/haml/test/sass/results/parent_ref.css +13 -0
- data/vendor/plugins/haml/test/sass/results/subdir/nested_subdir/nested_subdir.css +1 -0
- data/vendor/plugins/haml/test/sass/results/subdir/subdir.css +1 -0
- data/vendor/plugins/haml/test/sass/templates/_partial.sass +2 -0
- data/vendor/plugins/haml/test/sass/templates/alt.sass +16 -0
- data/vendor/plugins/haml/test/sass/templates/basic.sass +23 -0
- data/vendor/plugins/haml/test/sass/templates/bork.sass +2 -0
- data/vendor/plugins/haml/test/sass/templates/bork2.sass +2 -0
- data/vendor/plugins/haml/test/sass/templates/compact.sass +17 -0
- data/vendor/plugins/haml/test/sass/templates/complex.sass +310 -0
- data/vendor/plugins/haml/test/sass/templates/compressed.sass +15 -0
- data/vendor/plugins/haml/test/sass/templates/constants.sass +100 -0
- data/vendor/plugins/haml/test/sass/templates/expanded.sass +17 -0
- data/vendor/plugins/haml/test/sass/templates/import.sass +11 -0
- data/vendor/plugins/haml/test/sass/templates/importee.sass +14 -0
- data/vendor/plugins/haml/test/sass/templates/mixins.sass +76 -0
- data/vendor/plugins/haml/test/sass/templates/multiline.sass +20 -0
- data/vendor/plugins/haml/test/sass/templates/nested.sass +25 -0
- data/vendor/plugins/haml/test/sass/templates/parent_ref.sass +25 -0
- data/vendor/plugins/haml/test/sass/templates/subdir/nested_subdir/nested_subdir.sass +3 -0
- data/vendor/plugins/haml/test/sass/templates/subdir/subdir.sass +6 -0
- data/vendor/plugins/haml/test/test_helper.rb +13 -0
- data/vendor/rack-cache/CHANGES +128 -0
- data/vendor/rack-cache/COPYING +18 -0
- data/vendor/rack-cache/README +110 -0
- data/vendor/rack-cache/Rakefile +137 -0
- data/vendor/rack-cache/TODO +31 -0
- data/vendor/rack-cache/doc/configuration.markdown +86 -0
- data/vendor/rack-cache/doc/faq.markdown +141 -0
- data/vendor/rack-cache/doc/index.markdown +118 -0
- data/vendor/rack-cache/doc/layout.html.erb +34 -0
- data/vendor/rack-cache/doc/license.markdown +24 -0
- data/vendor/rack-cache/doc/rack-cache.css +362 -0
- data/vendor/rack-cache/doc/server.ru +34 -0
- data/vendor/rack-cache/doc/storage.markdown +162 -0
- data/vendor/rack-cache/example/sinatra/app.rb +25 -0
- data/vendor/rack-cache/example/sinatra/views/index.erb +44 -0
- data/vendor/rack-cache/lib/rack/cache.rb +45 -0
- data/vendor/rack-cache/lib/rack/cache/cachecontrol.rb +193 -0
- data/vendor/rack-cache/lib/rack/cache/context.rb +233 -0
- data/vendor/rack-cache/lib/rack/cache/entitystore.rb +253 -0
- data/vendor/rack-cache/lib/rack/cache/key.rb +52 -0
- data/vendor/rack-cache/lib/rack/cache/metastore.rb +328 -0
- data/vendor/rack-cache/lib/rack/cache/options.rb +150 -0
- data/vendor/rack-cache/lib/rack/cache/request.rb +33 -0
- data/vendor/rack-cache/lib/rack/cache/response.rb +267 -0
- data/vendor/rack-cache/lib/rack/cache/storage.rb +49 -0
- data/vendor/rack-cache/rack-cache.gemspec +69 -0
- data/vendor/rack-cache/test/cache_test.rb +38 -0
- data/vendor/rack-cache/test/cachecontrol_test.rb +139 -0
- data/vendor/rack-cache/test/context_test.rb +727 -0
- data/vendor/rack-cache/test/entitystore_test.rb +189 -0
- data/vendor/rack-cache/test/key_test.rb +50 -0
- data/vendor/rack-cache/test/metastore_test.rb +263 -0
- data/vendor/rack-cache/test/options_test.rb +78 -0
- data/vendor/rack-cache/test/pony.jpg +0 -0
- data/vendor/rack-cache/test/request_test.rb +19 -0
- data/vendor/rack-cache/test/response_test.rb +178 -0
- data/vendor/rack-cache/test/spec_setup.rb +202 -0
- data/vendor/rack-cache/test/storage_test.rb +94 -0
- data/vendor/radius/CHANGELOG +33 -0
- data/vendor/radius/Manifest.txt +21 -0
- data/vendor/radius/QUICKSTART.rdoc +322 -0
- data/vendor/radius/README.rdoc +118 -0
- data/vendor/radius/Rakefile +31 -0
- data/vendor/radius/lib/radius.rb +10 -0
- data/vendor/radius/lib/radius/context.rb +139 -0
- data/vendor/radius/lib/radius/delegating_open_struct.rb +31 -0
- data/vendor/radius/lib/radius/error.rb +43 -0
- data/vendor/radius/lib/radius/parse_tag.rb +24 -0
- data/vendor/radius/lib/radius/parser.rb +65 -0
- data/vendor/radius/lib/radius/parser/scan.rb +1247 -0
- data/vendor/radius/lib/radius/parser/scan.rl +123 -0
- data/vendor/radius/lib/radius/tag_binding.rb +71 -0
- data/vendor/radius/lib/radius/tag_definitions.rb +78 -0
- data/vendor/radius/lib/radius/utility.rb +30 -0
- data/vendor/radius/lib/radius/version.rb +14 -0
- data/vendor/radius/radius.gemspec +38 -0
- data/vendor/radius/tasks/scan.rake +27 -0
- data/vendor/radius/test/context_test.rb +61 -0
- data/vendor/radius/test/parser_test.rb +290 -0
- data/vendor/radius/test/quickstart_test.rb +153 -0
- data/vendor/radius/test/test_helper.rb +28 -0
- data/vendor/rails/actionmailer/CHANGELOG +366 -0
- data/vendor/rails/actionmailer/MIT-LICENSE +21 -0
- data/vendor/rails/actionmailer/README +149 -0
- data/vendor/rails/actionmailer/Rakefile +99 -0
- data/vendor/rails/actionmailer/install.rb +30 -0
- data/vendor/rails/actionmailer/lib/action_mailer.rb +62 -0
- data/vendor/rails/actionmailer/lib/action_mailer/adv_attr_accessor.rb +30 -0
- data/vendor/rails/actionmailer/lib/action_mailer/base.rb +706 -0
- data/vendor/rails/actionmailer/lib/action_mailer/helpers.rb +113 -0
- data/vendor/rails/actionmailer/lib/action_mailer/mail_helper.rb +17 -0
- data/vendor/rails/actionmailer/lib/action_mailer/part.rb +107 -0
- data/vendor/rails/actionmailer/lib/action_mailer/part_container.rb +55 -0
- data/vendor/rails/actionmailer/lib/action_mailer/quoting.rb +61 -0
- data/vendor/rails/actionmailer/lib/action_mailer/test_case.rb +64 -0
- data/vendor/rails/actionmailer/lib/action_mailer/test_helper.rb +68 -0
- data/vendor/rails/actionmailer/lib/action_mailer/utils.rb +7 -0
- data/vendor/rails/actionmailer/lib/action_mailer/vendor/text-format-0.6.3/text/format.rb +1466 -0
- data/vendor/rails/actionmailer/lib/action_mailer/vendor/text_format.rb +10 -0
- data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail.rb +5 -0
- data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/address.rb +426 -0
- data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/attachments.rb +46 -0
- data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/base64.rb +46 -0
- data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/compat.rb +41 -0
- data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/config.rb +67 -0
- data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/core_extensions.rb +63 -0
- data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/encode.rb +581 -0
- data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/header.rb +960 -0
- data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/index.rb +9 -0
- data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/interface.rb +1130 -0
- data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/loader.rb +3 -0
- data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/mail.rb +578 -0
- data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/mailbox.rb +495 -0
- data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/main.rb +6 -0
- data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/mbox.rb +3 -0
- data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/net.rb +248 -0
- data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/obsolete.rb +132 -0
- data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/parser.rb +1476 -0
- data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/port.rb +379 -0
- data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/quoting.rb +118 -0
- data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/require_arch.rb +58 -0
- data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/scanner.rb +49 -0
- data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/scanner_r.rb +261 -0
- data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/stringio.rb +280 -0
- data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/utils.rb +337 -0
- data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/version.rb +39 -0
- data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail.rb +17 -0
- data/vendor/rails/actionmailer/lib/action_mailer/version.rb +9 -0
- data/vendor/rails/actionmailer/lib/actionmailer.rb +1 -0
- data/vendor/rails/actionmailer/test/abstract_unit.rb +62 -0
- data/vendor/rails/actionmailer/test/asset_host_test.rb +54 -0
- data/vendor/rails/actionmailer/test/delivery_method_test.rb +51 -0
- data/vendor/rails/actionmailer/test/fixtures/asset_host_mailer/email_with_asset.html.erb +1 -0
- data/vendor/rails/actionmailer/test/fixtures/auto_layout_mailer/hello.html.erb +1 -0
- data/vendor/rails/actionmailer/test/fixtures/auto_layout_mailer/multipart.text.html.erb +1 -0
- data/vendor/rails/actionmailer/test/fixtures/auto_layout_mailer/multipart.text.plain.erb +1 -0
- data/vendor/rails/actionmailer/test/fixtures/explicit_layout_mailer/logout.html.erb +1 -0
- data/vendor/rails/actionmailer/test/fixtures/explicit_layout_mailer/signup.html.erb +1 -0
- data/vendor/rails/actionmailer/test/fixtures/first_mailer/share.erb +1 -0
- data/vendor/rails/actionmailer/test/fixtures/helper_mailer/use_example_helper.erb +1 -0
- data/vendor/rails/actionmailer/test/fixtures/helper_mailer/use_helper.erb +1 -0
- data/vendor/rails/actionmailer/test/fixtures/helper_mailer/use_helper_method.erb +1 -0
- data/vendor/rails/actionmailer/test/fixtures/helper_mailer/use_mail_helper.erb +5 -0
- data/vendor/rails/actionmailer/test/fixtures/helpers/example_helper.rb +5 -0
- data/vendor/rails/actionmailer/test/fixtures/layouts/auto_layout_mailer.html.erb +1 -0
- data/vendor/rails/actionmailer/test/fixtures/layouts/auto_layout_mailer.text.erb +1 -0
- data/vendor/rails/actionmailer/test/fixtures/layouts/spam.html.erb +1 -0
- data/vendor/rails/actionmailer/test/fixtures/path.with.dots/funky_path_mailer/multipart_with_template_path_with_dots.erb +1 -0
- data/vendor/rails/actionmailer/test/fixtures/raw_email +14 -0
- data/vendor/rails/actionmailer/test/fixtures/raw_email10 +20 -0
- data/vendor/rails/actionmailer/test/fixtures/raw_email12 +32 -0
- data/vendor/rails/actionmailer/test/fixtures/raw_email13 +29 -0
- data/vendor/rails/actionmailer/test/fixtures/raw_email2 +114 -0
- data/vendor/rails/actionmailer/test/fixtures/raw_email3 +70 -0
- data/vendor/rails/actionmailer/test/fixtures/raw_email4 +59 -0
- data/vendor/rails/actionmailer/test/fixtures/raw_email5 +19 -0
- data/vendor/rails/actionmailer/test/fixtures/raw_email6 +20 -0
- data/vendor/rails/actionmailer/test/fixtures/raw_email7 +66 -0
- data/vendor/rails/actionmailer/test/fixtures/raw_email8 +47 -0
- data/vendor/rails/actionmailer/test/fixtures/raw_email9 +28 -0
- data/vendor/rails/actionmailer/test/fixtures/raw_email_quoted_with_0d0a +14 -0
- data/vendor/rails/actionmailer/test/fixtures/raw_email_with_invalid_characters_in_content_type +104 -0
- data/vendor/rails/actionmailer/test/fixtures/raw_email_with_nested_attachment +100 -0
- data/vendor/rails/actionmailer/test/fixtures/raw_email_with_partially_quoted_subject +14 -0
- data/vendor/rails/actionmailer/test/fixtures/second_mailer/share.erb +1 -0
- data/vendor/rails/actionmailer/test/fixtures/templates/signed_up.erb +3 -0
- data/vendor/rails/actionmailer/test/fixtures/test_mailer/_subtemplate.text.plain.erb +1 -0
- data/vendor/rails/actionmailer/test/fixtures/test_mailer/body_ivar.erb +2 -0
- data/vendor/rails/actionmailer/test/fixtures/test_mailer/custom_templating_extension.text.html.haml +6 -0
- data/vendor/rails/actionmailer/test/fixtures/test_mailer/custom_templating_extension.text.plain.haml +6 -0
- data/vendor/rails/actionmailer/test/fixtures/test_mailer/implicitly_multipart_example.ignored.erb +1 -0
- data/vendor/rails/actionmailer/test/fixtures/test_mailer/implicitly_multipart_example.text.html.erb +10 -0
- data/vendor/rails/actionmailer/test/fixtures/test_mailer/implicitly_multipart_example.text.plain.erb +2 -0
- data/vendor/rails/actionmailer/test/fixtures/test_mailer/implicitly_multipart_example.text.yaml.erb +1 -0
- data/vendor/rails/actionmailer/test/fixtures/test_mailer/included_subtemplate.text.plain.erb +1 -0
- data/vendor/rails/actionmailer/test/fixtures/test_mailer/rxml_template.builder +2 -0
- data/vendor/rails/actionmailer/test/fixtures/test_mailer/rxml_template.rxml +2 -0
- data/vendor/rails/actionmailer/test/fixtures/test_mailer/signed_up.html.erb +3 -0
- data/vendor/rails/actionmailer/test/fixtures/test_mailer/signed_up_with_url.erb +5 -0
- data/vendor/rails/actionmailer/test/mail_helper_test.rb +95 -0
- data/vendor/rails/actionmailer/test/mail_layout_test.rb +123 -0
- data/vendor/rails/actionmailer/test/mail_render_test.rb +116 -0
- data/vendor/rails/actionmailer/test/mail_service_test.rb +1079 -0
- data/vendor/rails/actionmailer/test/quoting_test.rb +99 -0
- data/vendor/rails/actionmailer/test/test_helper_test.rb +129 -0
- data/vendor/rails/actionmailer/test/tmail_test.rb +22 -0
- data/vendor/rails/actionmailer/test/url_test.rb +76 -0
- data/vendor/rails/actionpack/CHANGELOG +5172 -0
- data/vendor/rails/actionpack/MIT-LICENSE +21 -0
- data/vendor/rails/actionpack/README +409 -0
- data/vendor/rails/actionpack/RUNNING_UNIT_TESTS +24 -0
- data/vendor/rails/actionpack/Rakefile +160 -0
- data/vendor/rails/actionpack/install.rb +30 -0
- data/vendor/rails/actionpack/lib/action_controller.rb +111 -0
- data/vendor/rails/actionpack/lib/action_controller/assertions/dom_assertions.rb +39 -0
- data/vendor/rails/actionpack/lib/action_controller/assertions/model_assertions.rb +21 -0
- data/vendor/rails/actionpack/lib/action_controller/assertions/response_assertions.rb +160 -0
- data/vendor/rails/actionpack/lib/action_controller/assertions/routing_assertions.rb +146 -0
- data/vendor/rails/actionpack/lib/action_controller/assertions/selector_assertions.rb +632 -0
- data/vendor/rails/actionpack/lib/action_controller/assertions/tag_assertions.rb +127 -0
- data/vendor/rails/actionpack/lib/action_controller/base.rb +1423 -0
- data/vendor/rails/actionpack/lib/action_controller/benchmarking.rb +107 -0
- data/vendor/rails/actionpack/lib/action_controller/caching.rb +70 -0
- data/vendor/rails/actionpack/lib/action_controller/caching/actions.rb +177 -0
- data/vendor/rails/actionpack/lib/action_controller/caching/fragments.rb +120 -0
- data/vendor/rails/actionpack/lib/action_controller/caching/pages.rb +152 -0
- data/vendor/rails/actionpack/lib/action_controller/caching/sweeper.rb +45 -0
- data/vendor/rails/actionpack/lib/action_controller/caching/sweeping.rb +55 -0
- data/vendor/rails/actionpack/lib/action_controller/cgi_ext.rb +15 -0
- data/vendor/rails/actionpack/lib/action_controller/cgi_ext/cookie.rb +112 -0
- data/vendor/rails/actionpack/lib/action_controller/cgi_ext/query_extension.rb +22 -0
- data/vendor/rails/actionpack/lib/action_controller/cgi_ext/stdinput.rb +24 -0
- data/vendor/rails/actionpack/lib/action_controller/cgi_process.rb +77 -0
- data/vendor/rails/actionpack/lib/action_controller/cookies.rb +94 -0
- data/vendor/rails/actionpack/lib/action_controller/dispatcher.rb +133 -0
- data/vendor/rails/actionpack/lib/action_controller/failsafe.rb +86 -0
- data/vendor/rails/actionpack/lib/action_controller/filters.rb +680 -0
- data/vendor/rails/actionpack/lib/action_controller/flash.rb +171 -0
- data/vendor/rails/actionpack/lib/action_controller/headers.rb +33 -0
- data/vendor/rails/actionpack/lib/action_controller/helpers.rb +225 -0
- data/vendor/rails/actionpack/lib/action_controller/http_authentication.rb +308 -0
- data/vendor/rails/actionpack/lib/action_controller/integration.rb +680 -0
- data/vendor/rails/actionpack/lib/action_controller/layout.rb +281 -0
- data/vendor/rails/actionpack/lib/action_controller/middleware_stack.rb +119 -0
- data/vendor/rails/actionpack/lib/action_controller/middlewares.rb +12 -0
- data/vendor/rails/actionpack/lib/action_controller/mime_responds.rb +193 -0
- data/vendor/rails/actionpack/lib/action_controller/mime_type.rb +212 -0
- data/vendor/rails/actionpack/lib/action_controller/mime_types.rb +21 -0
- data/vendor/rails/actionpack/lib/action_controller/params_parser.rb +77 -0
- data/vendor/rails/actionpack/lib/action_controller/performance_test.rb +15 -0
- data/vendor/rails/actionpack/lib/action_controller/polymorphic_routes.rb +204 -0
- data/vendor/rails/actionpack/lib/action_controller/record_identifier.rb +104 -0
- data/vendor/rails/actionpack/lib/action_controller/reloader.rb +54 -0
- data/vendor/rails/actionpack/lib/action_controller/request.rb +493 -0
- data/vendor/rails/actionpack/lib/action_controller/request_forgery_protection.rb +109 -0
- data/vendor/rails/actionpack/lib/action_controller/rescue.rb +183 -0
- data/vendor/rails/actionpack/lib/action_controller/resources.rb +682 -0
- data/vendor/rails/actionpack/lib/action_controller/response.rb +238 -0
- data/vendor/rails/actionpack/lib/action_controller/routing.rb +388 -0
- data/vendor/rails/actionpack/lib/action_controller/routing/builder.rb +197 -0
- data/vendor/rails/actionpack/lib/action_controller/routing/optimisations.rb +130 -0
- data/vendor/rails/actionpack/lib/action_controller/routing/recognition_optimisation.rb +167 -0
- data/vendor/rails/actionpack/lib/action_controller/routing/route.rb +265 -0
- data/vendor/rails/actionpack/lib/action_controller/routing/route_set.rb +502 -0
- data/vendor/rails/actionpack/lib/action_controller/routing/routing_ext.rb +49 -0
- data/vendor/rails/actionpack/lib/action_controller/routing/segments.rb +343 -0
- data/vendor/rails/actionpack/lib/action_controller/session/abstract_store.rb +181 -0
- data/vendor/rails/actionpack/lib/action_controller/session/cookie_store.rb +221 -0
- data/vendor/rails/actionpack/lib/action_controller/session/mem_cache_store.rb +51 -0
- data/vendor/rails/actionpack/lib/action_controller/session_management.rb +54 -0
- data/vendor/rails/actionpack/lib/action_controller/status_codes.rb +88 -0
- data/vendor/rails/actionpack/lib/action_controller/streaming.rb +181 -0
- data/vendor/rails/actionpack/lib/action_controller/templates/rescues/_request_and_response.erb +24 -0
- data/vendor/rails/actionpack/lib/action_controller/templates/rescues/_trace.erb +26 -0
- data/vendor/rails/actionpack/lib/action_controller/templates/rescues/diagnostics.erb +11 -0
- data/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb +29 -0
- data/vendor/rails/actionpack/lib/action_controller/templates/rescues/missing_template.erb +2 -0
- data/vendor/rails/actionpack/lib/action_controller/templates/rescues/routing_error.erb +10 -0
- data/vendor/rails/actionpack/lib/action_controller/templates/rescues/template_error.erb +21 -0
- data/vendor/rails/actionpack/lib/action_controller/templates/rescues/unknown_action.erb +2 -0
- data/vendor/rails/actionpack/lib/action_controller/test_case.rb +204 -0
- data/vendor/rails/actionpack/lib/action_controller/test_process.rb +580 -0
- data/vendor/rails/actionpack/lib/action_controller/translation.rb +13 -0
- data/vendor/rails/actionpack/lib/action_controller/uploaded_file.rb +44 -0
- data/vendor/rails/actionpack/lib/action_controller/url_rewriter.rb +216 -0
- data/vendor/rails/actionpack/lib/action_controller/vendor/html-scanner.rb +16 -0
- data/vendor/rails/actionpack/lib/action_controller/vendor/html-scanner/html/document.rb +68 -0
- data/vendor/rails/actionpack/lib/action_controller/vendor/html-scanner/html/node.rb +537 -0
- data/vendor/rails/actionpack/lib/action_controller/vendor/html-scanner/html/sanitizer.rb +173 -0
- data/vendor/rails/actionpack/lib/action_controller/vendor/html-scanner/html/selector.rb +828 -0
- data/vendor/rails/actionpack/lib/action_controller/vendor/html-scanner/html/tokenizer.rb +105 -0
- data/vendor/rails/actionpack/lib/action_controller/vendor/html-scanner/html/version.rb +11 -0
- data/vendor/rails/actionpack/lib/action_controller/verification.rb +130 -0
- data/vendor/rails/actionpack/lib/action_pack.rb +24 -0
- data/vendor/rails/actionpack/lib/action_pack/version.rb +9 -0
- data/vendor/rails/actionpack/lib/action_view.rb +58 -0
- data/vendor/rails/actionpack/lib/action_view/base.rb +357 -0
- data/vendor/rails/actionpack/lib/action_view/erb/util.rb +38 -0
- data/vendor/rails/actionpack/lib/action_view/helpers.rb +57 -0
- data/vendor/rails/actionpack/lib/action_view/helpers/active_record_helper.rb +305 -0
- data/vendor/rails/actionpack/lib/action_view/helpers/asset_tag_helper.rb +694 -0
- data/vendor/rails/actionpack/lib/action_view/helpers/atom_feed_helper.rb +198 -0
- data/vendor/rails/actionpack/lib/action_view/helpers/benchmark_helper.rb +54 -0
- data/vendor/rails/actionpack/lib/action_view/helpers/cache_helper.rb +39 -0
- data/vendor/rails/actionpack/lib/action_view/helpers/capture_helper.rb +136 -0
- data/vendor/rails/actionpack/lib/action_view/helpers/date_helper.rb +976 -0
- data/vendor/rails/actionpack/lib/action_view/helpers/debug_helper.rb +38 -0
- data/vendor/rails/actionpack/lib/action_view/helpers/form_helper.rb +1053 -0
- data/vendor/rails/actionpack/lib/action_view/helpers/form_options_helper.rb +600 -0
- data/vendor/rails/actionpack/lib/action_view/helpers/form_tag_helper.rb +487 -0
- data/vendor/rails/actionpack/lib/action_view/helpers/javascript_helper.rb +208 -0
- data/vendor/rails/actionpack/lib/action_view/helpers/number_helper.rb +303 -0
- data/vendor/rails/actionpack/lib/action_view/helpers/prototype_helper.rb +1305 -0
- data/vendor/rails/actionpack/lib/action_view/helpers/record_identification_helper.rb +20 -0
- data/vendor/rails/actionpack/lib/action_view/helpers/record_tag_helper.rb +58 -0
- data/vendor/rails/actionpack/lib/action_view/helpers/sanitize_helper.rb +251 -0
- data/vendor/rails/actionpack/lib/action_view/helpers/scriptaculous_helper.rb +226 -0
- data/vendor/rails/actionpack/lib/action_view/helpers/tag_helper.rb +150 -0
- data/vendor/rails/actionpack/lib/action_view/helpers/text_helper.rb +587 -0
- data/vendor/rails/actionpack/lib/action_view/helpers/translation_helper.rb +39 -0
- data/vendor/rails/actionpack/lib/action_view/helpers/url_helper.rb +638 -0
- data/vendor/rails/actionpack/lib/action_view/inline_template.rb +19 -0
- data/vendor/rails/actionpack/lib/action_view/locale/en.yml +114 -0
- data/vendor/rails/actionpack/lib/action_view/partials.rb +240 -0
- data/vendor/rails/actionpack/lib/action_view/paths.rb +69 -0
- data/vendor/rails/actionpack/lib/action_view/reloadable_template.rb +117 -0
- data/vendor/rails/actionpack/lib/action_view/renderable.rb +95 -0
- data/vendor/rails/actionpack/lib/action_view/renderable_partial.rb +47 -0
- data/vendor/rails/actionpack/lib/action_view/template.rb +246 -0
- data/vendor/rails/actionpack/lib/action_view/template_error.rb +99 -0
- data/vendor/rails/actionpack/lib/action_view/template_handler.rb +34 -0
- data/vendor/rails/actionpack/lib/action_view/template_handlers.rb +48 -0
- data/vendor/rails/actionpack/lib/action_view/template_handlers/builder.rb +17 -0
- data/vendor/rails/actionpack/lib/action_view/template_handlers/erb.rb +22 -0
- data/vendor/rails/actionpack/lib/action_view/template_handlers/rjs.rb +13 -0
- data/vendor/rails/actionpack/lib/action_view/test_case.rb +87 -0
- data/vendor/rails/actionpack/lib/actionpack.rb +1 -0
- data/vendor/rails/actionpack/test/abstract_unit.rb +61 -0
- data/vendor/rails/actionpack/test/active_record_unit.rb +104 -0
- data/vendor/rails/actionpack/test/activerecord/active_record_store_test.rb +174 -0
- data/vendor/rails/actionpack/test/activerecord/render_partial_with_record_identification_test.rb +188 -0
- data/vendor/rails/actionpack/test/adv_attr_test.rb +20 -0
- data/vendor/rails/actionpack/test/controller/action_pack_assertions_test.rb +543 -0
- data/vendor/rails/actionpack/test/controller/addresses_render_test.rb +37 -0
- data/vendor/rails/actionpack/test/controller/assert_select_test.rb +734 -0
- data/vendor/rails/actionpack/test/controller/base_test.rb +217 -0
- data/vendor/rails/actionpack/test/controller/benchmark_test.rb +32 -0
- data/vendor/rails/actionpack/test/controller/caching_test.rb +729 -0
- data/vendor/rails/actionpack/test/controller/capture_test.rb +66 -0
- data/vendor/rails/actionpack/test/controller/content_type_test.rb +168 -0
- data/vendor/rails/actionpack/test/controller/controller_fixtures/app/controllers/admin/user_controller.rb +0 -0
- data/vendor/rails/actionpack/test/controller/controller_fixtures/app/controllers/user_controller.rb +0 -0
- data/vendor/rails/actionpack/test/controller/controller_fixtures/vendor/plugins/bad_plugin/lib/plugin_controller.rb +0 -0
- data/vendor/rails/actionpack/test/controller/cookie_test.rb +127 -0
- data/vendor/rails/actionpack/test/controller/deprecation/deprecated_base_methods_test.rb +32 -0
- data/vendor/rails/actionpack/test/controller/dispatcher_test.rb +144 -0
- data/vendor/rails/actionpack/test/controller/failsafe_test.rb +60 -0
- data/vendor/rails/actionpack/test/controller/fake_controllers.rb +33 -0
- data/vendor/rails/actionpack/test/controller/fake_models.rb +19 -0
- data/vendor/rails/actionpack/test/controller/filter_params_test.rb +51 -0
- data/vendor/rails/actionpack/test/controller/filters_test.rb +885 -0
- data/vendor/rails/actionpack/test/controller/flash_test.rb +147 -0
- data/vendor/rails/actionpack/test/controller/header_test.rb +14 -0
- data/vendor/rails/actionpack/test/controller/helper_test.rb +224 -0
- data/vendor/rails/actionpack/test/controller/html-scanner/cdata_node_test.rb +15 -0
- data/vendor/rails/actionpack/test/controller/html-scanner/document_test.rb +148 -0
- data/vendor/rails/actionpack/test/controller/html-scanner/node_test.rb +89 -0
- data/vendor/rails/actionpack/test/controller/html-scanner/sanitizer_test.rb +273 -0
- data/vendor/rails/actionpack/test/controller/html-scanner/tag_node_test.rb +238 -0
- data/vendor/rails/actionpack/test/controller/html-scanner/text_node_test.rb +50 -0
- data/vendor/rails/actionpack/test/controller/html-scanner/tokenizer_test.rb +131 -0
- data/vendor/rails/actionpack/test/controller/http_basic_authentication_test.rb +113 -0
- data/vendor/rails/actionpack/test/controller/http_digest_authentication_test.rb +232 -0
- data/vendor/rails/actionpack/test/controller/integration_test.rb +445 -0
- data/vendor/rails/actionpack/test/controller/layout_test.rb +204 -0
- data/vendor/rails/actionpack/test/controller/logging_test.rb +46 -0
- data/vendor/rails/actionpack/test/controller/middleware_stack_test.rb +90 -0
- data/vendor/rails/actionpack/test/controller/mime_responds_test.rb +536 -0
- data/vendor/rails/actionpack/test/controller/mime_type_test.rb +93 -0
- data/vendor/rails/actionpack/test/controller/polymorphic_routes_test.rb +293 -0
- data/vendor/rails/actionpack/test/controller/rack_test.rb +311 -0
- data/vendor/rails/actionpack/test/controller/record_identifier_test.rb +139 -0
- data/vendor/rails/actionpack/test/controller/redirect_test.rb +285 -0
- data/vendor/rails/actionpack/test/controller/reloader_test.rb +124 -0
- data/vendor/rails/actionpack/test/controller/render_test.rb +1762 -0
- data/vendor/rails/actionpack/test/controller/request/json_params_parsing_test.rb +65 -0
- data/vendor/rails/actionpack/test/controller/request/multipart_params_parsing_test.rb +162 -0
- data/vendor/rails/actionpack/test/controller/request/query_string_parsing_test.rb +120 -0
- data/vendor/rails/actionpack/test/controller/request/test_request_test.rb +35 -0
- data/vendor/rails/actionpack/test/controller/request/url_encoded_params_parsing_test.rb +146 -0
- data/vendor/rails/actionpack/test/controller/request/xml_params_parsing_test.rb +103 -0
- data/vendor/rails/actionpack/test/controller/request_forgery_protection_test.rb +247 -0
- data/vendor/rails/actionpack/test/controller/request_test.rb +395 -0
- data/vendor/rails/actionpack/test/controller/rescue_test.rb +536 -0
- data/vendor/rails/actionpack/test/controller/resources_test.rb +1393 -0
- data/vendor/rails/actionpack/test/controller/routing_test.rb +2583 -0
- data/vendor/rails/actionpack/test/controller/selector_test.rb +628 -0
- data/vendor/rails/actionpack/test/controller/send_file_test.rb +171 -0
- data/vendor/rails/actionpack/test/controller/session/cookie_store_test.rb +216 -0
- data/vendor/rails/actionpack/test/controller/session/mem_cache_store_test.rb +127 -0
- data/vendor/rails/actionpack/test/controller/session/test_session_test.rb +58 -0
- data/vendor/rails/actionpack/test/controller/test_test.rb +700 -0
- data/vendor/rails/actionpack/test/controller/translation_test.rb +26 -0
- data/vendor/rails/actionpack/test/controller/url_rewriter_test.rb +385 -0
- data/vendor/rails/actionpack/test/controller/verification_test.rb +270 -0
- data/vendor/rails/actionpack/test/controller/view_paths_test.rb +141 -0
- data/vendor/rails/actionpack/test/controller/webservice_test.rb +260 -0
- data/vendor/rails/actionpack/test/fixtures/_top_level_partial.html.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/_top_level_partial_only.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/addresses/list.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/alternate_helpers/foo_helper.rb +3 -0
- data/vendor/rails/actionpack/test/fixtures/bad_customers/_bad_customer.html.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/companies.yml +24 -0
- data/vendor/rails/actionpack/test/fixtures/company.rb +10 -0
- data/vendor/rails/actionpack/test/fixtures/content_type/render_default_content_types_for_respond_to.rhtml +1 -0
- data/vendor/rails/actionpack/test/fixtures/content_type/render_default_for_rhtml.rhtml +1 -0
- data/vendor/rails/actionpack/test/fixtures/content_type/render_default_for_rjs.rjs +1 -0
- data/vendor/rails/actionpack/test/fixtures/content_type/render_default_for_rxml.rxml +1 -0
- data/vendor/rails/actionpack/test/fixtures/customers/_customer.html.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/db_definitions/sqlite.sql +49 -0
- data/vendor/rails/actionpack/test/fixtures/developer.rb +9 -0
- data/vendor/rails/actionpack/test/fixtures/developers.yml +21 -0
- data/vendor/rails/actionpack/test/fixtures/developers/_developer.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/developers_projects.yml +13 -0
- data/vendor/rails/actionpack/test/fixtures/failsafe/500.html +1 -0
- data/vendor/rails/actionpack/test/fixtures/fun/games/_game.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/fun/games/hello_world.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/fun/serious/games/_game.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/functional_caching/_partial.erb +3 -0
- data/vendor/rails/actionpack/test/fixtures/functional_caching/formatted_fragment_cached.html.erb +3 -0
- data/vendor/rails/actionpack/test/fixtures/functional_caching/formatted_fragment_cached.js.rjs +6 -0
- data/vendor/rails/actionpack/test/fixtures/functional_caching/formatted_fragment_cached.xml.builder +5 -0
- data/vendor/rails/actionpack/test/fixtures/functional_caching/fragment_cached.html.erb +2 -0
- data/vendor/rails/actionpack/test/fixtures/functional_caching/html_fragment_cached_with_partial.html.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/functional_caching/inline_fragment_cached.html.erb +2 -0
- data/vendor/rails/actionpack/test/fixtures/functional_caching/js_fragment_cached_with_partial.js.rjs +1 -0
- data/vendor/rails/actionpack/test/fixtures/good_customers/_good_customer.html.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/helpers/abc_helper.rb +5 -0
- data/vendor/rails/actionpack/test/fixtures/helpers/fun/games_helper.rb +3 -0
- data/vendor/rails/actionpack/test/fixtures/helpers/fun/pdf_helper.rb +3 -0
- data/vendor/rails/actionpack/test/fixtures/layout_tests/alt/hello.rhtml +1 -0
- data/vendor/rails/actionpack/test/fixtures/layout_tests/alt/layouts/alt.rhtml +0 -0
- data/vendor/rails/actionpack/test/fixtures/layout_tests/layouts/controller_name_space/nested.rhtml +1 -0
- data/vendor/rails/actionpack/test/fixtures/layout_tests/layouts/item.rhtml +1 -0
- data/vendor/rails/actionpack/test/fixtures/layout_tests/layouts/layout_test.rhtml +1 -0
- data/vendor/rails/actionpack/test/fixtures/layout_tests/layouts/multiple_extensions.html.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/layout_tests/layouts/third_party_template_library.mab +1 -0
- data/vendor/rails/actionpack/test/fixtures/layout_tests/views/hello.rhtml +1 -0
- data/vendor/rails/actionpack/test/fixtures/layouts/_column.html.erb +2 -0
- data/vendor/rails/actionpack/test/fixtures/layouts/block_with_layout.erb +3 -0
- data/vendor/rails/actionpack/test/fixtures/layouts/builder.builder +3 -0
- data/vendor/rails/actionpack/test/fixtures/layouts/default_html.html.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/layouts/partial_with_layout.erb +3 -0
- data/vendor/rails/actionpack/test/fixtures/layouts/standard.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/layouts/talk_from_action.erb +2 -0
- data/vendor/rails/actionpack/test/fixtures/layouts/xhr.html.erb +2 -0
- data/vendor/rails/actionpack/test/fixtures/layouts/yield.erb +2 -0
- data/vendor/rails/actionpack/test/fixtures/mascot.rb +3 -0
- data/vendor/rails/actionpack/test/fixtures/mascots.yml +4 -0
- data/vendor/rails/actionpack/test/fixtures/mascots/_mascot.html.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/multipart/binary_file +0 -0
- data/vendor/rails/actionpack/test/fixtures/multipart/boundary_problem_file +10 -0
- data/vendor/rails/actionpack/test/fixtures/multipart/bracketed_param +5 -0
- data/vendor/rails/actionpack/test/fixtures/multipart/empty +10 -0
- data/vendor/rails/actionpack/test/fixtures/multipart/hello.txt +1 -0
- data/vendor/rails/actionpack/test/fixtures/multipart/large_text_file +10 -0
- data/vendor/rails/actionpack/test/fixtures/multipart/mixed_files +0 -0
- data/vendor/rails/actionpack/test/fixtures/multipart/mona_lisa.jpg +0 -0
- data/vendor/rails/actionpack/test/fixtures/multipart/none +9 -0
- data/vendor/rails/actionpack/test/fixtures/multipart/single_parameter +5 -0
- data/vendor/rails/actionpack/test/fixtures/multipart/text_file +10 -0
- data/vendor/rails/actionpack/test/fixtures/override/test/hello_world.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/override2/layouts/test/sub.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/post_test/layouts/post.html.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/post_test/layouts/super_post.iphone.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/post_test/post/index.html.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/post_test/post/index.iphone.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/post_test/super_post/index.html.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/post_test/super_post/index.iphone.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/project.rb +3 -0
- data/vendor/rails/actionpack/test/fixtures/projects.yml +7 -0
- data/vendor/rails/actionpack/test/fixtures/projects/_project.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/public/404.html +1 -0
- data/vendor/rails/actionpack/test/fixtures/public/500.da.html +1 -0
- data/vendor/rails/actionpack/test/fixtures/public/500.html +1 -0
- data/vendor/rails/actionpack/test/fixtures/public/absolute/test.css +23 -0
- data/vendor/rails/actionpack/test/fixtures/public/absolute/test.js +63 -0
- data/vendor/rails/actionpack/test/fixtures/public/images/rails.png +0 -0
- data/vendor/rails/actionpack/test/fixtures/public/javascripts/application.js +1 -0
- data/vendor/rails/actionpack/test/fixtures/public/javascripts/bank.js +1 -0
- data/vendor/rails/actionpack/test/fixtures/public/javascripts/controls.js +1 -0
- data/vendor/rails/actionpack/test/fixtures/public/javascripts/dragdrop.js +1 -0
- data/vendor/rails/actionpack/test/fixtures/public/javascripts/effects.js +1 -0
- data/vendor/rails/actionpack/test/fixtures/public/javascripts/prototype.js +1 -0
- data/vendor/rails/actionpack/test/fixtures/public/javascripts/robber.js +1 -0
- data/vendor/rails/actionpack/test/fixtures/public/javascripts/subdir/subdir.js +1 -0
- data/vendor/rails/actionpack/test/fixtures/public/javascripts/version.1.0.js +1 -0
- data/vendor/rails/actionpack/test/fixtures/public/stylesheets/bank.css +1 -0
- data/vendor/rails/actionpack/test/fixtures/public/stylesheets/robber.css +1 -0
- data/vendor/rails/actionpack/test/fixtures/public/stylesheets/subdir/subdir.css +1 -0
- data/vendor/rails/actionpack/test/fixtures/public/stylesheets/version.1.0.css +1 -0
- data/vendor/rails/actionpack/test/fixtures/quiz/questions/_question.html.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/replies.yml +15 -0
- data/vendor/rails/actionpack/test/fixtures/replies/_reply.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/reply.rb +7 -0
- data/vendor/rails/actionpack/test/fixtures/respond_to/all_types_with_layout.html.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/respond_to/all_types_with_layout.js.rjs +1 -0
- data/vendor/rails/actionpack/test/fixtures/respond_to/custom_constant_handling_without_block.mobile.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/respond_to/iphone_with_html_response_type.html.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/respond_to/iphone_with_html_response_type.iphone.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/respond_to/layouts/missing.html.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/respond_to/layouts/standard.html.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/respond_to/layouts/standard.iphone.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/respond_to/using_defaults.html.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/respond_to/using_defaults.js.rjs +1 -0
- data/vendor/rails/actionpack/test/fixtures/respond_to/using_defaults.xml.builder +1 -0
- data/vendor/rails/actionpack/test/fixtures/respond_to/using_defaults_with_type_list.html.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/respond_to/using_defaults_with_type_list.js.rjs +1 -0
- data/vendor/rails/actionpack/test/fixtures/respond_to/using_defaults_with_type_list.xml.builder +1 -0
- data/vendor/rails/actionpack/test/fixtures/scope/test/modgreet.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/shared.html.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/symlink_parent/symlinked_layout.erb +5 -0
- data/vendor/rails/actionpack/test/fixtures/test/_counter.html.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/test/_customer.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/test/_customer_counter.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/test/_customer_greeting.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/test/_customer_with_var.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/test/_form.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/test/_hash_greeting.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/test/_hash_object.erb +2 -0
- data/vendor/rails/actionpack/test/fixtures/test/_hello.builder +1 -0
- data/vendor/rails/actionpack/test/fixtures/test/_labelling_form.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/test/_layout_for_block_with_args.html.erb +3 -0
- data/vendor/rails/actionpack/test/fixtures/test/_layout_for_partial.html.erb +3 -0
- data/vendor/rails/actionpack/test/fixtures/test/_local_inspector.html.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/test/_one.html.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/test/_partial.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/test/_partial.html.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/test/_partial.js.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/test/_partial_for_use_in_layout.html.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/test/_partial_only.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/test/_partial_with_only_html_version.html.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/test/_person.erb +2 -0
- data/vendor/rails/actionpack/test/fixtures/test/_raise.html.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/test/_two.html.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/test/action_talk_to_layout.erb +2 -0
- data/vendor/rails/actionpack/test/fixtures/test/calling_partial_with_layout.html.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/test/capturing.erb +4 -0
- data/vendor/rails/actionpack/test/fixtures/test/content_for.erb +2 -0
- data/vendor/rails/actionpack/test/fixtures/test/content_for_concatenated.erb +3 -0
- data/vendor/rails/actionpack/test/fixtures/test/content_for_with_parameter.erb +2 -0
- data/vendor/rails/actionpack/test/fixtures/test/delete_with_js.rjs +2 -0
- data/vendor/rails/actionpack/test/fixtures/test/dont_pick_me +1 -0
- data/vendor/rails/actionpack/test/fixtures/test/dot.directory/render_file_with_ivar.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/test/enum_rjs_test.rjs +6 -0
- data/vendor/rails/actionpack/test/fixtures/test/formatted_html_erb.html.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/test/formatted_xml_erb.builder +1 -0
- data/vendor/rails/actionpack/test/fixtures/test/formatted_xml_erb.html.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/test/formatted_xml_erb.xml.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/test/greeting.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/test/greeting.js.rjs +1 -0
- data/vendor/rails/actionpack/test/fixtures/test/hello.builder +4 -0
- data/vendor/rails/actionpack/test/fixtures/test/hello_world.da.html.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/test/hello_world.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/test/hello_world.pt-BR.html.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/test/hello_world_container.builder +3 -0
- data/vendor/rails/actionpack/test/fixtures/test/hello_world_from_rxml.builder +4 -0
- data/vendor/rails/actionpack/test/fixtures/test/hello_world_with_layout_false.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/test/hello_xml_world.builder +11 -0
- data/vendor/rails/actionpack/test/fixtures/test/hyphen-ated.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/test/implicit_content_type.atom.builder +2 -0
- data/vendor/rails/actionpack/test/fixtures/test/list.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/test/nested_layout.erb +3 -0
- data/vendor/rails/actionpack/test/fixtures/test/non_erb_block_content_for.builder +4 -0
- data/vendor/rails/actionpack/test/fixtures/test/potential_conflicts.erb +4 -0
- data/vendor/rails/actionpack/test/fixtures/test/render_explicit_html_template.js.rjs +1 -0
- data/vendor/rails/actionpack/test/fixtures/test/render_file_from_template.html.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/test/render_file_with_ivar.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/test/render_file_with_locals.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/test/render_implicit_html_template.js.rjs +1 -0
- data/vendor/rails/actionpack/test/fixtures/test/render_implicit_html_template_from_xhr_request.da.html.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/test/render_implicit_html_template_from_xhr_request.html.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/test/render_implicit_js_template_without_layout.js.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/test/render_to_string_test.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/test/sub_template_raise.html.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/test/template.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/test/update_element_with_capture.erb +9 -0
- data/vendor/rails/actionpack/test/fixtures/test/using_layout_around_block.html.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/test/using_layout_around_block_with_args.html.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/test/utf8.html.erb +2 -0
- data/vendor/rails/actionpack/test/fixtures/topic.rb +3 -0
- data/vendor/rails/actionpack/test/fixtures/topics.yml +22 -0
- data/vendor/rails/actionpack/test/fixtures/topics/_topic.html.erb +1 -0
- data/vendor/rails/actionpack/test/template/active_record_helper_i18n_test.rb +44 -0
- data/vendor/rails/actionpack/test/template/active_record_helper_test.rb +302 -0
- data/vendor/rails/actionpack/test/template/asset_tag_helper_test.rb +759 -0
- data/vendor/rails/actionpack/test/template/atom_feed_helper_test.rb +315 -0
- data/vendor/rails/actionpack/test/template/benchmark_helper_test.rb +86 -0
- data/vendor/rails/actionpack/test/template/compiled_templates_test.rb +203 -0
- data/vendor/rails/actionpack/test/template/date_helper_i18n_test.rb +120 -0
- data/vendor/rails/actionpack/test/template/date_helper_test.rb +2469 -0
- data/vendor/rails/actionpack/test/template/erb_util_test.rb +24 -0
- data/vendor/rails/actionpack/test/template/form_helper_test.rb +1313 -0
- data/vendor/rails/actionpack/test/template/form_options_helper_i18n_test.rb +27 -0
- data/vendor/rails/actionpack/test/template/form_options_helper_test.rb +807 -0
- data/vendor/rails/actionpack/test/template/form_tag_helper_test.rb +344 -0
- data/vendor/rails/actionpack/test/template/javascript_helper_test.rb +106 -0
- data/vendor/rails/actionpack/test/template/number_helper_i18n_test.rb +69 -0
- data/vendor/rails/actionpack/test/template/number_helper_test.rb +128 -0
- data/vendor/rails/actionpack/test/template/prototype_helper_test.rb +639 -0
- data/vendor/rails/actionpack/test/template/record_tag_helper_test.rb +58 -0
- data/vendor/rails/actionpack/test/template/render_test.rb +290 -0
- data/vendor/rails/actionpack/test/template/sanitize_helper_test.rb +48 -0
- data/vendor/rails/actionpack/test/template/scriptaculous_helper_test.rb +90 -0
- data/vendor/rails/actionpack/test/template/tag_helper_test.rb +97 -0
- data/vendor/rails/actionpack/test/template/template_test.rb +32 -0
- data/vendor/rails/actionpack/test/template/test_test.rb +54 -0
- data/vendor/rails/actionpack/test/template/text_helper_test.rb +543 -0
- data/vendor/rails/actionpack/test/template/translation_helper_test.rb +32 -0
- data/vendor/rails/actionpack/test/template/url_helper_test.rb +622 -0
- data/vendor/rails/actionpack/test/testing_sandbox.rb +15 -0
- data/vendor/rails/actionpack/test/view/test_case_test.rb +8 -0
- data/vendor/rails/activerecord/CHANGELOG +5850 -0
- data/vendor/rails/activerecord/README +351 -0
- data/vendor/rails/activerecord/RUNNING_UNIT_TESTS +36 -0
- data/vendor/rails/activerecord/Rakefile +270 -0
- data/vendor/rails/activerecord/examples/associations.png +0 -0
- data/vendor/rails/activerecord/examples/performance.rb +162 -0
- data/vendor/rails/activerecord/install.rb +30 -0
- data/vendor/rails/activerecord/lib/active_record.rb +84 -0
- data/vendor/rails/activerecord/lib/active_record/aggregations.rb +261 -0
- data/vendor/rails/activerecord/lib/active_record/association_preload.rb +389 -0
- data/vendor/rails/activerecord/lib/active_record/associations.rb +2238 -0
- data/vendor/rails/activerecord/lib/active_record/associations/association_collection.rb +475 -0
- data/vendor/rails/activerecord/lib/active_record/associations/association_proxy.rb +279 -0
- data/vendor/rails/activerecord/lib/active_record/associations/belongs_to_association.rb +76 -0
- data/vendor/rails/activerecord/lib/active_record/associations/belongs_to_polymorphic_association.rb +53 -0
- data/vendor/rails/activerecord/lib/active_record/associations/has_and_belongs_to_many_association.rb +143 -0
- data/vendor/rails/activerecord/lib/active_record/associations/has_many_association.rb +122 -0
- data/vendor/rails/activerecord/lib/active_record/associations/has_many_through_association.rb +266 -0
- data/vendor/rails/activerecord/lib/active_record/associations/has_one_association.rb +124 -0
- data/vendor/rails/activerecord/lib/active_record/associations/has_one_through_association.rb +37 -0
- data/vendor/rails/activerecord/lib/active_record/attribute_methods.rb +388 -0
- data/vendor/rails/activerecord/lib/active_record/autosave_association.rb +355 -0
- data/vendor/rails/activerecord/lib/active_record/base.rb +3158 -0
- data/vendor/rails/activerecord/lib/active_record/batches.rb +81 -0
- data/vendor/rails/activerecord/lib/active_record/calculations.rb +311 -0
- data/vendor/rails/activerecord/lib/active_record/callbacks.rb +360 -0
- data/vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/connection_pool.rb +371 -0
- data/vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/connection_specification.rb +139 -0
- data/vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/database_statements.rb +289 -0
- data/vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb +94 -0
- data/vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/quoting.rb +69 -0
- data/vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/schema_definitions.rb +722 -0
- data/vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/schema_statements.rb +434 -0
- data/vendor/rails/activerecord/lib/active_record/connection_adapters/abstract_adapter.rb +241 -0
- data/vendor/rails/activerecord/lib/active_record/connection_adapters/mysql_adapter.rb +626 -0
- data/vendor/rails/activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb +1113 -0
- data/vendor/rails/activerecord/lib/active_record/connection_adapters/sqlite3_adapter.rb +34 -0
- data/vendor/rails/activerecord/lib/active_record/connection_adapters/sqlite_adapter.rb +453 -0
- data/vendor/rails/activerecord/lib/active_record/dirty.rb +183 -0
- data/vendor/rails/activerecord/lib/active_record/dynamic_finder_match.rb +41 -0
- data/vendor/rails/activerecord/lib/active_record/dynamic_scope_match.rb +25 -0
- data/vendor/rails/activerecord/lib/active_record/fixtures.rb +996 -0
- data/vendor/rails/activerecord/lib/active_record/i18n_interpolation_deprecation.rb +26 -0
- data/vendor/rails/activerecord/lib/active_record/locale/en.yml +58 -0
- data/vendor/rails/activerecord/lib/active_record/locking/optimistic.rb +181 -0
- data/vendor/rails/activerecord/lib/active_record/locking/pessimistic.rb +77 -0
- data/vendor/rails/activerecord/lib/active_record/migration.rb +566 -0
- data/vendor/rails/activerecord/lib/active_record/named_scope.rb +192 -0
- data/vendor/rails/activerecord/lib/active_record/nested_attributes.rb +329 -0
- data/vendor/rails/activerecord/lib/active_record/observer.rb +197 -0
- data/vendor/rails/activerecord/lib/active_record/query_cache.rb +33 -0
- data/vendor/rails/activerecord/lib/active_record/reflection.rb +320 -0
- data/vendor/rails/activerecord/lib/active_record/schema.rb +51 -0
- data/vendor/rails/activerecord/lib/active_record/schema_dumper.rb +182 -0
- data/vendor/rails/activerecord/lib/active_record/serialization.rb +101 -0
- data/vendor/rails/activerecord/lib/active_record/serializers/json_serializer.rb +91 -0
- data/vendor/rails/activerecord/lib/active_record/serializers/xml_serializer.rb +357 -0
- data/vendor/rails/activerecord/lib/active_record/session_store.rb +326 -0
- data/vendor/rails/activerecord/lib/active_record/test_case.rb +66 -0
- data/vendor/rails/activerecord/lib/active_record/timestamp.rb +71 -0
- data/vendor/rails/activerecord/lib/active_record/transactions.rb +235 -0
- data/vendor/rails/activerecord/lib/active_record/validations.rb +1135 -0
- data/vendor/rails/activerecord/lib/active_record/version.rb +9 -0
- data/vendor/rails/activerecord/lib/activerecord.rb +1 -0
- data/vendor/rails/activerecord/test/assets/example.log +1 -0
- data/vendor/rails/activerecord/test/assets/flowers.jpg +0 -0
- data/vendor/rails/activerecord/test/cases/aaa_create_tables_test.rb +24 -0
- data/vendor/rails/activerecord/test/cases/active_schema_test_mysql.rb +100 -0
- data/vendor/rails/activerecord/test/cases/active_schema_test_postgresql.rb +24 -0
- data/vendor/rails/activerecord/test/cases/adapter_test.rb +145 -0
- data/vendor/rails/activerecord/test/cases/aggregations_test.rb +167 -0
- data/vendor/rails/activerecord/test/cases/ar_schema_test.rb +32 -0
- data/vendor/rails/activerecord/test/cases/associations/belongs_to_associations_test.rb +425 -0
- data/vendor/rails/activerecord/test/cases/associations/callbacks_test.rb +161 -0
- data/vendor/rails/activerecord/test/cases/associations/cascaded_eager_loading_test.rb +131 -0
- data/vendor/rails/activerecord/test/cases/associations/eager_load_includes_full_sti_class_test.rb +36 -0
- data/vendor/rails/activerecord/test/cases/associations/eager_load_nested_include_test.rb +130 -0
- data/vendor/rails/activerecord/test/cases/associations/eager_singularization_test.rb +145 -0
- data/vendor/rails/activerecord/test/cases/associations/eager_test.rb +834 -0
- data/vendor/rails/activerecord/test/cases/associations/extension_test.rb +62 -0
- data/vendor/rails/activerecord/test/cases/associations/habtm_join_table_test.rb +56 -0
- data/vendor/rails/activerecord/test/cases/associations/has_and_belongs_to_many_associations_test.rb +822 -0
- data/vendor/rails/activerecord/test/cases/associations/has_many_associations_test.rb +1122 -0
- data/vendor/rails/activerecord/test/cases/associations/has_many_through_associations_test.rb +324 -0
- data/vendor/rails/activerecord/test/cases/associations/has_one_associations_test.rb +309 -0
- data/vendor/rails/activerecord/test/cases/associations/has_one_through_associations_test.rb +209 -0
- data/vendor/rails/activerecord/test/cases/associations/inner_join_association_test.rb +93 -0
- data/vendor/rails/activerecord/test/cases/associations/join_model_test.rb +712 -0
- data/vendor/rails/activerecord/test/cases/associations_test.rb +262 -0
- data/vendor/rails/activerecord/test/cases/attribute_methods_test.rb +305 -0
- data/vendor/rails/activerecord/test/cases/autosave_association_test.rb +923 -0
- data/vendor/rails/activerecord/test/cases/base_test.rb +2152 -0
- data/vendor/rails/activerecord/test/cases/batches_test.rb +61 -0
- data/vendor/rails/activerecord/test/cases/binary_test.rb +30 -0
- data/vendor/rails/activerecord/test/cases/calculations_test.rb +348 -0
- data/vendor/rails/activerecord/test/cases/callbacks_observers_test.rb +38 -0
- data/vendor/rails/activerecord/test/cases/callbacks_test.rb +438 -0
- data/vendor/rails/activerecord/test/cases/class_inheritable_attributes_test.rb +32 -0
- data/vendor/rails/activerecord/test/cases/column_alias_test.rb +17 -0
- data/vendor/rails/activerecord/test/cases/column_definition_test.rb +70 -0
- data/vendor/rails/activerecord/test/cases/connection_pool_test.rb +25 -0
- data/vendor/rails/activerecord/test/cases/connection_test_firebird.rb +8 -0
- data/vendor/rails/activerecord/test/cases/connection_test_mysql.rb +56 -0
- data/vendor/rails/activerecord/test/cases/copy_table_test_sqlite.rb +80 -0
- data/vendor/rails/activerecord/test/cases/database_statements_test.rb +12 -0
- data/vendor/rails/activerecord/test/cases/datatype_test_postgresql.rb +204 -0
- data/vendor/rails/activerecord/test/cases/date_time_test.rb +37 -0
- data/vendor/rails/activerecord/test/cases/default_test_firebird.rb +16 -0
- data/vendor/rails/activerecord/test/cases/defaults_test.rb +111 -0
- data/vendor/rails/activerecord/test/cases/deprecated_finder_test.rb +30 -0
- data/vendor/rails/activerecord/test/cases/dirty_test.rb +316 -0
- data/vendor/rails/activerecord/test/cases/finder_respond_to_test.rb +76 -0
- data/vendor/rails/activerecord/test/cases/finder_test.rb +1054 -0
- data/vendor/rails/activerecord/test/cases/fixtures_test.rb +656 -0
- data/vendor/rails/activerecord/test/cases/helper.rb +68 -0
- data/vendor/rails/activerecord/test/cases/i18n_test.rb +46 -0
- data/vendor/rails/activerecord/test/cases/inheritance_test.rb +262 -0
- data/vendor/rails/activerecord/test/cases/invalid_date_test.rb +24 -0
- data/vendor/rails/activerecord/test/cases/json_serialization_test.rb +205 -0
- data/vendor/rails/activerecord/test/cases/lifecycle_test.rb +193 -0
- data/vendor/rails/activerecord/test/cases/locking_test.rb +322 -0
- data/vendor/rails/activerecord/test/cases/method_scoping_test.rb +704 -0
- data/vendor/rails/activerecord/test/cases/migration_test.rb +1523 -0
- data/vendor/rails/activerecord/test/cases/migration_test_firebird.rb +124 -0
- data/vendor/rails/activerecord/test/cases/mixin_test.rb +96 -0
- data/vendor/rails/activerecord/test/cases/modules_test.rb +81 -0
- data/vendor/rails/activerecord/test/cases/multiple_db_test.rb +85 -0
- data/vendor/rails/activerecord/test/cases/named_scope_test.rb +361 -0
- data/vendor/rails/activerecord/test/cases/nested_attributes_test.rb +509 -0
- data/vendor/rails/activerecord/test/cases/pk_test.rb +119 -0
- data/vendor/rails/activerecord/test/cases/pooled_connections_test.rb +103 -0
- data/vendor/rails/activerecord/test/cases/query_cache_test.rb +123 -0
- data/vendor/rails/activerecord/test/cases/readonly_test.rb +107 -0
- data/vendor/rails/activerecord/test/cases/reflection_test.rb +194 -0
- data/vendor/rails/activerecord/test/cases/reload_models_test.rb +22 -0
- data/vendor/rails/activerecord/test/cases/repair_helper.rb +50 -0
- data/vendor/rails/activerecord/test/cases/reserved_word_test_mysql.rb +176 -0
- data/vendor/rails/activerecord/test/cases/sanitize_test.rb +25 -0
- data/vendor/rails/activerecord/test/cases/schema_authorization_test_postgresql.rb +75 -0
- data/vendor/rails/activerecord/test/cases/schema_dumper_test.rb +211 -0
- data/vendor/rails/activerecord/test/cases/schema_test_postgresql.rb +178 -0
- data/vendor/rails/activerecord/test/cases/serialization_test.rb +47 -0
- data/vendor/rails/activerecord/test/cases/synonym_test_oracle.rb +17 -0
- data/vendor/rails/activerecord/test/cases/timestamp_test.rb +75 -0
- data/vendor/rails/activerecord/test/cases/transactions_test.rb +522 -0
- data/vendor/rails/activerecord/test/cases/unconnected_test.rb +32 -0
- data/vendor/rails/activerecord/test/cases/validations_i18n_test.rb +947 -0
- data/vendor/rails/activerecord/test/cases/validations_test.rb +1612 -0
- data/vendor/rails/activerecord/test/cases/xml_serialization_test.rb +240 -0
- data/vendor/rails/activerecord/test/config.rb +5 -0
- data/vendor/rails/activerecord/test/connections/jdbc_jdbcderby/connection.rb +18 -0
- data/vendor/rails/activerecord/test/connections/jdbc_jdbch2/connection.rb +18 -0
- data/vendor/rails/activerecord/test/connections/jdbc_jdbchsqldb/connection.rb +18 -0
- data/vendor/rails/activerecord/test/connections/jdbc_jdbcmysql/connection.rb +26 -0
- data/vendor/rails/activerecord/test/connections/jdbc_jdbcpostgresql/connection.rb +26 -0
- data/vendor/rails/activerecord/test/connections/jdbc_jdbcsqlite3/connection.rb +25 -0
- data/vendor/rails/activerecord/test/connections/native_db2/connection.rb +25 -0
- data/vendor/rails/activerecord/test/connections/native_firebird/connection.rb +26 -0
- data/vendor/rails/activerecord/test/connections/native_frontbase/connection.rb +27 -0
- data/vendor/rails/activerecord/test/connections/native_mysql/connection.rb +25 -0
- data/vendor/rails/activerecord/test/connections/native_openbase/connection.rb +21 -0
- data/vendor/rails/activerecord/test/connections/native_oracle/connection.rb +27 -0
- data/vendor/rails/activerecord/test/connections/native_postgresql/connection.rb +21 -0
- data/vendor/rails/activerecord/test/connections/native_sqlite/connection.rb +25 -0
- data/vendor/rails/activerecord/test/connections/native_sqlite3/connection.rb +25 -0
- data/vendor/rails/activerecord/test/connections/native_sqlite3/in_memory_connection.rb +18 -0
- data/vendor/rails/activerecord/test/connections/native_sybase/connection.rb +23 -0
- data/vendor/rails/activerecord/test/fixtures/accounts.yml +28 -0
- data/vendor/rails/activerecord/test/fixtures/all/developers.yml +0 -0
- data/vendor/rails/activerecord/test/fixtures/all/people.csv +0 -0
- data/vendor/rails/activerecord/test/fixtures/all/tasks.yml +0 -0
- data/vendor/rails/activerecord/test/fixtures/author_addresses.yml +5 -0
- data/vendor/rails/activerecord/test/fixtures/author_favorites.yml +4 -0
- data/vendor/rails/activerecord/test/fixtures/authors.yml +9 -0
- data/vendor/rails/activerecord/test/fixtures/binaries.yml +132 -0
- data/vendor/rails/activerecord/test/fixtures/books.yml +7 -0
- data/vendor/rails/activerecord/test/fixtures/categories.yml +14 -0
- data/vendor/rails/activerecord/test/fixtures/categories/special_categories.yml +9 -0
- data/vendor/rails/activerecord/test/fixtures/categories/subsubdir/arbitrary_filename.yml +4 -0
- data/vendor/rails/activerecord/test/fixtures/categories_ordered.yml +7 -0
- data/vendor/rails/activerecord/test/fixtures/categories_posts.yml +23 -0
- data/vendor/rails/activerecord/test/fixtures/categorizations.yml +17 -0
- data/vendor/rails/activerecord/test/fixtures/clubs.yml +6 -0
- data/vendor/rails/activerecord/test/fixtures/comments.yml +59 -0
- data/vendor/rails/activerecord/test/fixtures/companies.yml +56 -0
- data/vendor/rails/activerecord/test/fixtures/computers.yml +4 -0
- data/vendor/rails/activerecord/test/fixtures/courses.yml +7 -0
- data/vendor/rails/activerecord/test/fixtures/customers.yml +26 -0
- data/vendor/rails/activerecord/test/fixtures/developers.yml +21 -0
- data/vendor/rails/activerecord/test/fixtures/developers_projects.yml +17 -0
- data/vendor/rails/activerecord/test/fixtures/edges.yml +6 -0
- data/vendor/rails/activerecord/test/fixtures/entrants.yml +14 -0
- data/vendor/rails/activerecord/test/fixtures/fixture_database.sqlite +0 -0
- data/vendor/rails/activerecord/test/fixtures/fixture_database.sqlite3 +0 -0
- data/vendor/rails/activerecord/test/fixtures/fixture_database_2.sqlite +0 -0
- data/vendor/rails/activerecord/test/fixtures/fixture_database_2.sqlite3 +0 -0
- data/vendor/rails/activerecord/test/fixtures/fk_test_has_fk.yml +3 -0
- data/vendor/rails/activerecord/test/fixtures/fk_test_has_pk.yml +2 -0
- data/vendor/rails/activerecord/test/fixtures/funny_jokes.yml +10 -0
- data/vendor/rails/activerecord/test/fixtures/items.yml +4 -0
- data/vendor/rails/activerecord/test/fixtures/jobs.yml +7 -0
- data/vendor/rails/activerecord/test/fixtures/legacy_things.yml +3 -0
- data/vendor/rails/activerecord/test/fixtures/mateys.yml +4 -0
- data/vendor/rails/activerecord/test/fixtures/member_types.yml +6 -0
- data/vendor/rails/activerecord/test/fixtures/members.yml +6 -0
- data/vendor/rails/activerecord/test/fixtures/memberships.yml +20 -0
- data/vendor/rails/activerecord/test/fixtures/minimalistics.yml +2 -0
- data/vendor/rails/activerecord/test/fixtures/mixed_case_monkeys.yml +6 -0
- data/vendor/rails/activerecord/test/fixtures/mixins.yml +29 -0
- data/vendor/rails/activerecord/test/fixtures/movies.yml +7 -0
- data/vendor/rails/activerecord/test/fixtures/naked/csv/accounts.csv +1 -0
- data/vendor/rails/activerecord/test/fixtures/naked/yml/accounts.yml +1 -0
- data/vendor/rails/activerecord/test/fixtures/naked/yml/companies.yml +1 -0
- data/vendor/rails/activerecord/test/fixtures/naked/yml/courses.yml +1 -0
- data/vendor/rails/activerecord/test/fixtures/organizations.yml +5 -0
- data/vendor/rails/activerecord/test/fixtures/owners.yml +7 -0
- data/vendor/rails/activerecord/test/fixtures/parrots.yml +27 -0
- data/vendor/rails/activerecord/test/fixtures/parrots_pirates.yml +7 -0
- data/vendor/rails/activerecord/test/fixtures/people.yml +15 -0
- data/vendor/rails/activerecord/test/fixtures/pets.yml +14 -0
- data/vendor/rails/activerecord/test/fixtures/pirates.yml +9 -0
- data/vendor/rails/activerecord/test/fixtures/posts.yml +52 -0
- data/vendor/rails/activerecord/test/fixtures/price_estimates.yml +7 -0
- data/vendor/rails/activerecord/test/fixtures/projects.yml +7 -0
- data/vendor/rails/activerecord/test/fixtures/readers.yml +9 -0
- data/vendor/rails/activerecord/test/fixtures/references.yml +17 -0
- data/vendor/rails/activerecord/test/fixtures/reserved_words/distinct.yml +5 -0
- data/vendor/rails/activerecord/test/fixtures/reserved_words/distincts_selects.yml +11 -0
- data/vendor/rails/activerecord/test/fixtures/reserved_words/group.yml +14 -0
- data/vendor/rails/activerecord/test/fixtures/reserved_words/select.yml +8 -0
- data/vendor/rails/activerecord/test/fixtures/reserved_words/values.yml +7 -0
- data/vendor/rails/activerecord/test/fixtures/ships.yml +5 -0
- data/vendor/rails/activerecord/test/fixtures/sponsors.yml +9 -0
- data/vendor/rails/activerecord/test/fixtures/subscribers.yml +7 -0
- data/vendor/rails/activerecord/test/fixtures/subscriptions.yml +12 -0
- data/vendor/rails/activerecord/test/fixtures/taggings.yml +28 -0
- data/vendor/rails/activerecord/test/fixtures/tags.yml +7 -0
- data/vendor/rails/activerecord/test/fixtures/tasks.yml +7 -0
- data/vendor/rails/activerecord/test/fixtures/topics.yml +42 -0
- data/vendor/rails/activerecord/test/fixtures/toys.yml +4 -0
- data/vendor/rails/activerecord/test/fixtures/treasures.yml +10 -0
- data/vendor/rails/activerecord/test/fixtures/vertices.yml +4 -0
- data/vendor/rails/activerecord/test/fixtures/warehouse-things.yml +3 -0
- data/vendor/rails/activerecord/test/migrations/broken/100_migration_that_raises_exception.rb +10 -0
- data/vendor/rails/activerecord/test/migrations/decimal/1_give_me_big_numbers.rb +15 -0
- data/vendor/rails/activerecord/test/migrations/duplicate/1_people_have_last_names.rb +9 -0
- data/vendor/rails/activerecord/test/migrations/duplicate/2_we_need_reminders.rb +12 -0
- data/vendor/rails/activerecord/test/migrations/duplicate/3_foo.rb +7 -0
- data/vendor/rails/activerecord/test/migrations/duplicate/3_innocent_jointable.rb +12 -0
- data/vendor/rails/activerecord/test/migrations/duplicate_names/20080507052938_chunky.rb +7 -0
- data/vendor/rails/activerecord/test/migrations/duplicate_names/20080507053028_chunky.rb +7 -0
- data/vendor/rails/activerecord/test/migrations/interleaved/pass_1/3_innocent_jointable.rb +12 -0
- data/vendor/rails/activerecord/test/migrations/interleaved/pass_2/1_people_have_last_names.rb +9 -0
- data/vendor/rails/activerecord/test/migrations/interleaved/pass_2/3_innocent_jointable.rb +12 -0
- data/vendor/rails/activerecord/test/migrations/interleaved/pass_3/1_people_have_last_names.rb +9 -0
- data/vendor/rails/activerecord/test/migrations/interleaved/pass_3/2_i_raise_on_down.rb +8 -0
- data/vendor/rails/activerecord/test/migrations/interleaved/pass_3/3_innocent_jointable.rb +12 -0
- data/vendor/rails/activerecord/test/migrations/missing/1000_people_have_middle_names.rb +9 -0
- data/vendor/rails/activerecord/test/migrations/missing/1_people_have_last_names.rb +9 -0
- data/vendor/rails/activerecord/test/migrations/missing/3_we_need_reminders.rb +12 -0
- data/vendor/rails/activerecord/test/migrations/missing/4_innocent_jointable.rb +12 -0
- data/vendor/rails/activerecord/test/migrations/valid/1_people_have_last_names.rb +9 -0
- data/vendor/rails/activerecord/test/migrations/valid/2_we_need_reminders.rb +12 -0
- data/vendor/rails/activerecord/test/migrations/valid/3_innocent_jointable.rb +12 -0
- data/vendor/rails/activerecord/test/models/author.rb +146 -0
- data/vendor/rails/activerecord/test/models/auto_id.rb +4 -0
- data/vendor/rails/activerecord/test/models/binary.rb +2 -0
- data/vendor/rails/activerecord/test/models/bird.rb +3 -0
- data/vendor/rails/activerecord/test/models/book.rb +4 -0
- data/vendor/rails/activerecord/test/models/categorization.rb +5 -0
- data/vendor/rails/activerecord/test/models/category.rb +34 -0
- data/vendor/rails/activerecord/test/models/citation.rb +6 -0
- data/vendor/rails/activerecord/test/models/club.rb +13 -0
- data/vendor/rails/activerecord/test/models/column_name.rb +3 -0
- data/vendor/rails/activerecord/test/models/comment.rb +29 -0
- data/vendor/rails/activerecord/test/models/company.rb +161 -0
- data/vendor/rails/activerecord/test/models/company_in_module.rb +61 -0
- data/vendor/rails/activerecord/test/models/computer.rb +3 -0
- data/vendor/rails/activerecord/test/models/contact.rb +16 -0
- data/vendor/rails/activerecord/test/models/contract.rb +5 -0
- data/vendor/rails/activerecord/test/models/course.rb +3 -0
- data/vendor/rails/activerecord/test/models/customer.rb +73 -0
- data/vendor/rails/activerecord/test/models/default.rb +2 -0
- data/vendor/rails/activerecord/test/models/developer.rb +101 -0
- data/vendor/rails/activerecord/test/models/edge.rb +5 -0
- data/vendor/rails/activerecord/test/models/entrant.rb +3 -0
- data/vendor/rails/activerecord/test/models/essay.rb +3 -0
- data/vendor/rails/activerecord/test/models/event.rb +3 -0
- data/vendor/rails/activerecord/test/models/guid.rb +2 -0
- data/vendor/rails/activerecord/test/models/item.rb +7 -0
- data/vendor/rails/activerecord/test/models/job.rb +5 -0
- data/vendor/rails/activerecord/test/models/joke.rb +3 -0
- data/vendor/rails/activerecord/test/models/keyboard.rb +3 -0
- data/vendor/rails/activerecord/test/models/legacy_thing.rb +3 -0
- data/vendor/rails/activerecord/test/models/matey.rb +4 -0
- data/vendor/rails/activerecord/test/models/member.rb +12 -0
- data/vendor/rails/activerecord/test/models/member_detail.rb +5 -0
- data/vendor/rails/activerecord/test/models/member_type.rb +3 -0
- data/vendor/rails/activerecord/test/models/membership.rb +9 -0
- data/vendor/rails/activerecord/test/models/minimalistic.rb +2 -0
- data/vendor/rails/activerecord/test/models/mixed_case_monkey.rb +3 -0
- data/vendor/rails/activerecord/test/models/movie.rb +5 -0
- data/vendor/rails/activerecord/test/models/order.rb +4 -0
- data/vendor/rails/activerecord/test/models/organization.rb +6 -0
- data/vendor/rails/activerecord/test/models/owner.rb +5 -0
- data/vendor/rails/activerecord/test/models/parrot.rb +16 -0
- data/vendor/rails/activerecord/test/models/person.rb +16 -0
- data/vendor/rails/activerecord/test/models/pet.rb +5 -0
- data/vendor/rails/activerecord/test/models/pirate.rb +63 -0
- data/vendor/rails/activerecord/test/models/post.rb +100 -0
- data/vendor/rails/activerecord/test/models/price_estimate.rb +3 -0
- data/vendor/rails/activerecord/test/models/project.rb +30 -0
- data/vendor/rails/activerecord/test/models/reader.rb +4 -0
- data/vendor/rails/activerecord/test/models/reference.rb +4 -0
- data/vendor/rails/activerecord/test/models/reply.rb +46 -0
- data/vendor/rails/activerecord/test/models/ship.rb +10 -0
- data/vendor/rails/activerecord/test/models/ship_part.rb +5 -0
- data/vendor/rails/activerecord/test/models/sponsor.rb +4 -0
- data/vendor/rails/activerecord/test/models/subject.rb +4 -0
- data/vendor/rails/activerecord/test/models/subscriber.rb +8 -0
- data/vendor/rails/activerecord/test/models/subscription.rb +4 -0
- data/vendor/rails/activerecord/test/models/tag.rb +7 -0
- data/vendor/rails/activerecord/test/models/tagging.rb +10 -0
- data/vendor/rails/activerecord/test/models/task.rb +3 -0
- data/vendor/rails/activerecord/test/models/topic.rb +80 -0
- data/vendor/rails/activerecord/test/models/toy.rb +6 -0
- data/vendor/rails/activerecord/test/models/treasure.rb +6 -0
- data/vendor/rails/activerecord/test/models/vertex.rb +9 -0
- data/vendor/rails/activerecord/test/models/warehouse_thing.rb +5 -0
- data/vendor/rails/activerecord/test/schema/mysql_specific_schema.rb +12 -0
- data/vendor/rails/activerecord/test/schema/postgresql_specific_schema.rb +114 -0
- data/vendor/rails/activerecord/test/schema/schema.rb +492 -0
- data/vendor/rails/activerecord/test/schema/schema2.rb +6 -0
- data/vendor/rails/activerecord/test/schema/sqlite_specific_schema.rb +25 -0
- data/vendor/rails/activeresource/CHANGELOG +283 -0
- data/vendor/rails/activeresource/README +165 -0
- data/vendor/rails/activeresource/Rakefile +139 -0
- data/vendor/rails/activeresource/lib/active_resource.rb +44 -0
- data/vendor/rails/activeresource/lib/active_resource/base.rb +1157 -0
- data/vendor/rails/activeresource/lib/active_resource/connection.rb +283 -0
- data/vendor/rails/activeresource/lib/active_resource/custom_methods.rb +120 -0
- data/vendor/rails/activeresource/lib/active_resource/exceptions.rb +66 -0
- data/vendor/rails/activeresource/lib/active_resource/formats.rb +14 -0
- data/vendor/rails/activeresource/lib/active_resource/formats/json_format.rb +23 -0
- data/vendor/rails/activeresource/lib/active_resource/formats/xml_format.rb +34 -0
- data/vendor/rails/activeresource/lib/active_resource/http_mock.rb +207 -0
- data/vendor/rails/activeresource/lib/active_resource/validations.rb +290 -0
- data/vendor/rails/activeresource/lib/active_resource/version.rb +9 -0
- data/vendor/rails/activeresource/lib/activeresource.rb +1 -0
- data/vendor/rails/activeresource/test/abstract_unit.rb +21 -0
- data/vendor/rails/activeresource/test/authorization_test.rb +122 -0
- data/vendor/rails/activeresource/test/base/custom_methods_test.rb +100 -0
- data/vendor/rails/activeresource/test/base/equality_test.rb +52 -0
- data/vendor/rails/activeresource/test/base/load_test.rb +161 -0
- data/vendor/rails/activeresource/test/base_errors_test.rb +85 -0
- data/vendor/rails/activeresource/test/base_test.rb +1038 -0
- data/vendor/rails/activeresource/test/connection_test.rb +238 -0
- data/vendor/rails/activeresource/test/debug.log +7974 -0
- data/vendor/rails/activeresource/test/fixtures/beast.rb +14 -0
- data/vendor/rails/activeresource/test/fixtures/customer.rb +3 -0
- data/vendor/rails/activeresource/test/fixtures/person.rb +3 -0
- data/vendor/rails/activeresource/test/fixtures/proxy.rb +4 -0
- data/vendor/rails/activeresource/test/fixtures/street_address.rb +4 -0
- data/vendor/rails/activeresource/test/format_test.rb +112 -0
- data/vendor/rails/activeresource/test/setter_trap.rb +26 -0
- data/vendor/rails/activesupport/CHANGELOG +1322 -0
- data/vendor/rails/activesupport/README +43 -0
- data/vendor/rails/activesupport/lib/active_support.rb +59 -0
- data/vendor/rails/activesupport/lib/active_support/all.rb +8 -0
- data/vendor/rails/activesupport/lib/active_support/backtrace_cleaner.rb +72 -0
- data/vendor/rails/activesupport/lib/active_support/base64.rb +33 -0
- data/vendor/rails/activesupport/lib/active_support/basic_object.rb +24 -0
- data/vendor/rails/activesupport/lib/active_support/buffered_logger.rb +127 -0
- data/vendor/rails/activesupport/lib/active_support/cache.rb +241 -0
- data/vendor/rails/activesupport/lib/active_support/cache/compressed_mem_cache_store.rb +20 -0
- data/vendor/rails/activesupport/lib/active_support/cache/drb_store.rb +14 -0
- data/vendor/rails/activesupport/lib/active_support/cache/file_store.rb +72 -0
- data/vendor/rails/activesupport/lib/active_support/cache/mem_cache_store.rb +138 -0
- data/vendor/rails/activesupport/lib/active_support/cache/memory_store.rb +52 -0
- data/vendor/rails/activesupport/lib/active_support/cache/strategy/local_cache.rb +104 -0
- data/vendor/rails/activesupport/lib/active_support/cache/synchronized_memory_store.rb +47 -0
- data/vendor/rails/activesupport/lib/active_support/callbacks.rb +279 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext.rb +4 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/array.rb +15 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/array/access.rb +53 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/array/conversions.rb +197 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/array/extract_options.rb +20 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/array/grouping.rb +106 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/array/random_access.rb +12 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/array/wrapper.rb +24 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/base64.rb +4 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/base64/encoding.rb +16 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/benchmark.rb +19 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/bigdecimal.rb +6 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/bigdecimal/conversions.rb +37 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/blank.rb +58 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/cgi.rb +5 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/cgi/escape_skipping_slashes.rb +23 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/class.rb +4 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/class/attribute_accessors.rb +54 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/class/delegating_attributes.rb +47 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/class/inheritable_attributes.rb +140 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/class/removal.rb +50 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/date.rb +10 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/date/behavior.rb +42 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/date/calculations.rb +231 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/date/conversions.rb +107 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/date_time.rb +12 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/date_time/calculations.rb +126 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/date_time/conversions.rb +96 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/duplicable.rb +43 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/enumerable.rb +114 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/exception.rb +45 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/file.rb +5 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/file/atomic.rb +46 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/float.rb +7 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/float/rounding.rb +24 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/float/time.rb +27 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/hash.rb +14 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/hash/conversions.rb +247 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/hash/deep_merge.rb +23 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/hash/diff.rb +19 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/hash/except.rb +25 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/hash/indifferent_access.rb +143 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/hash/keys.rb +52 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/hash/reverse_merge.rb +35 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/hash/slice.rb +40 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/integer.rb +9 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/integer/even_odd.rb +29 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/integer/inflections.rb +20 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/integer/time.rb +45 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/kernel.rb +5 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/kernel/agnostics.rb +11 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/kernel/daemonizing.rb +7 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/kernel/debugger.rb +15 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/kernel/reporting.rb +59 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/kernel/requires.rb +24 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/load_error.rb +38 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/logger.rb +145 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/module.rb +23 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/module/aliasing.rb +74 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/module/attr_accessor_with_default.rb +31 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/module/attr_internal.rb +32 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/module/attribute_accessors.rb +60 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/module/delegation.rb +135 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/module/inclusion.rb +30 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/module/introspection.rb +90 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/module/loading.rb +23 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/module/model_naming.rb +25 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/module/synchronization.rb +39 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/name_error.rb +17 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/numeric.rb +9 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/numeric/bytes.rb +50 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/numeric/conversions.rb +19 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/numeric/time.rb +81 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/object.rb +5 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/object/conversions.rb +15 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/object/extending.rb +80 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/object/instance_variables.rb +74 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/object/metaclass.rb +13 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/object/misc.rb +90 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/pathname.rb +7 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/pathname/clean_within.rb +14 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/proc.rb +12 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/process.rb +1 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/process/daemon.rb +25 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/range.rb +11 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/range/blockless_step.rb +32 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/range/conversions.rb +27 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/range/include_range.rb +30 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/range/overlaps.rb +15 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/rexml.rb +41 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/string.rb +23 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/string/access.rb +106 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/string/behavior.rb +13 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/string/bytesize.rb +5 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/string/conversions.rb +28 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/string/filters.rb +26 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/string/inflections.rb +167 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/string/iterators.rb +23 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/string/multibyte.rb +81 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/string/starts_ends_with.rb +35 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/string/xchar.rb +11 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/symbol.rb +14 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/time.rb +42 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/time/behavior.rb +13 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/time/calculations.rb +303 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/time/conversions.rb +90 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/time/zones.rb +86 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/try.rb +36 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/uri.rb +16 -0
- data/vendor/rails/activesupport/lib/active_support/dependencies.rb +625 -0
- data/vendor/rails/activesupport/lib/active_support/deprecation.rb +196 -0
- data/vendor/rails/activesupport/lib/active_support/duration.rb +100 -0
- data/vendor/rails/activesupport/lib/active_support/gzip.rb +25 -0
- data/vendor/rails/activesupport/lib/active_support/inflections.rb +56 -0
- data/vendor/rails/activesupport/lib/active_support/inflector.rb +406 -0
- data/vendor/rails/activesupport/lib/active_support/json.rb +2 -0
- data/vendor/rails/activesupport/lib/active_support/json/backends/jsongem.rb +38 -0
- data/vendor/rails/activesupport/lib/active_support/json/backends/yaml.rb +88 -0
- data/vendor/rails/activesupport/lib/active_support/json/decoding.rb +33 -0
- data/vendor/rails/activesupport/lib/active_support/json/encoders/date.rb +22 -0
- data/vendor/rails/activesupport/lib/active_support/json/encoders/date_time.rb +22 -0
- data/vendor/rails/activesupport/lib/active_support/json/encoders/enumerable.rb +17 -0
- data/vendor/rails/activesupport/lib/active_support/json/encoders/false_class.rb +7 -0
- data/vendor/rails/activesupport/lib/active_support/json/encoders/hash.rb +56 -0
- data/vendor/rails/activesupport/lib/active_support/json/encoders/nil_class.rb +7 -0
- data/vendor/rails/activesupport/lib/active_support/json/encoders/numeric.rb +21 -0
- data/vendor/rails/activesupport/lib/active_support/json/encoders/object.rb +10 -0
- data/vendor/rails/activesupport/lib/active_support/json/encoders/regexp.rb +9 -0
- data/vendor/rails/activesupport/lib/active_support/json/encoders/string.rb +9 -0
- data/vendor/rails/activesupport/lib/active_support/json/encoders/symbol.rb +5 -0
- data/vendor/rails/activesupport/lib/active_support/json/encoders/time.rb +22 -0
- data/vendor/rails/activesupport/lib/active_support/json/encoders/true_class.rb +7 -0
- data/vendor/rails/activesupport/lib/active_support/json/encoding.rb +102 -0
- data/vendor/rails/activesupport/lib/active_support/json/variable.rb +10 -0
- data/vendor/rails/activesupport/lib/active_support/locale/en.yml +33 -0
- data/vendor/rails/activesupport/lib/active_support/memoizable.rb +100 -0
- data/vendor/rails/activesupport/lib/active_support/message_encryptor.rb +70 -0
- data/vendor/rails/activesupport/lib/active_support/message_verifier.rb +59 -0
- data/vendor/rails/activesupport/lib/active_support/multibyte.rb +57 -0
- data/vendor/rails/activesupport/lib/active_support/multibyte/chars.rb +707 -0
- data/vendor/rails/activesupport/lib/active_support/multibyte/exceptions.rb +8 -0
- data/vendor/rails/activesupport/lib/active_support/multibyte/unicode_database.rb +71 -0
- data/vendor/rails/activesupport/lib/active_support/multibyte/utils.rb +61 -0
- data/vendor/rails/activesupport/lib/active_support/option_merger.rb +23 -0
- data/vendor/rails/activesupport/lib/active_support/ordered_hash.rb +134 -0
- data/vendor/rails/activesupport/lib/active_support/ordered_options.rb +19 -0
- data/vendor/rails/activesupport/lib/active_support/rescuable.rb +108 -0
- data/vendor/rails/activesupport/lib/active_support/secure_random.rb +199 -0
- data/vendor/rails/activesupport/lib/active_support/string_inquirer.rb +21 -0
- data/vendor/rails/activesupport/lib/active_support/test_case.rb +40 -0
- data/vendor/rails/activesupport/lib/active_support/testing/assertions.rb +65 -0
- data/vendor/rails/activesupport/lib/active_support/testing/declarative.rb +21 -0
- data/vendor/rails/activesupport/lib/active_support/testing/default.rb +9 -0
- data/vendor/rails/activesupport/lib/active_support/testing/deprecation.rb +57 -0
- data/vendor/rails/activesupport/lib/active_support/testing/performance.rb +452 -0
- data/vendor/rails/activesupport/lib/active_support/testing/setup_and_teardown.rb +91 -0
- data/vendor/rails/activesupport/lib/active_support/time_with_zone.rb +335 -0
- data/vendor/rails/activesupport/lib/active_support/values/time_zone.rb +404 -0
- data/vendor/rails/activesupport/lib/active_support/values/unicode_tables.dat +0 -0
- data/vendor/rails/activesupport/lib/active_support/vendor.rb +28 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/builder-2.1.2/blankslate.rb +113 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/builder-2.1.2/builder.rb +13 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/builder-2.1.2/builder/blankslate.rb +20 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/builder-2.1.2/builder/css.rb +250 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/builder-2.1.2/builder/xchar.rb +115 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/builder-2.1.2/builder/xmlbase.rb +139 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/builder-2.1.2/builder/xmlevents.rb +63 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/builder-2.1.2/builder/xmlmarkup.rb +328 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.1.3/MIT-LICENSE +20 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.1.3/README.textile +20 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.1.3/Rakefile +5 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.1.3/i18n.gemspec +27 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.1.3/lib/i18n.rb +199 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.1.3/lib/i18n/backend/simple.rb +214 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.1.3/lib/i18n/exceptions.rb +53 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.1.3/test/all.rb +5 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.1.3/test/i18n_exceptions_test.rb +99 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.1.3/test/i18n_test.rb +124 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.1.3/test/locale/en.rb +1 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.1.3/test/locale/en.yml +3 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.1.3/test/simple_backend_test.rb +567 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/memcache-client-1.7.4/memcache.rb +1107 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo.rb +33 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/data_timezone.rb +47 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/data_timezone_info.rb +228 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Africa/Algiers.rb +55 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Africa/Cairo.rb +219 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Africa/Casablanca.rb +40 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Africa/Harare.rb +18 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Africa/Johannesburg.rb +25 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Africa/Monrovia.rb +22 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Africa/Nairobi.rb +23 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Argentina/Buenos_Aires.rb +166 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Argentina/San_Juan.rb +86 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Bogota.rb +23 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Caracas.rb +23 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Chicago.rb +283 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Chihuahua.rb +136 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Denver.rb +204 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Godthab.rb +161 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Guatemala.rb +27 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Halifax.rb +274 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Indiana/Indianapolis.rb +149 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Juneau.rb +194 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/La_Paz.rb +22 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Lima.rb +35 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Los_Angeles.rb +232 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Mazatlan.rb +139 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Mexico_City.rb +144 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Monterrey.rb +131 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/New_York.rb +282 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Phoenix.rb +30 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Regina.rb +74 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Santiago.rb +205 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Sao_Paulo.rb +171 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/St_Johns.rb +288 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Tijuana.rb +196 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Almaty.rb +67 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Baghdad.rb +73 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Baku.rb +161 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Bangkok.rb +20 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Chongqing.rb +33 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Colombo.rb +30 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Dhaka.rb +27 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Hong_Kong.rb +87 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Irkutsk.rb +165 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Jakarta.rb +30 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Jerusalem.rb +163 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Kabul.rb +20 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Kamchatka.rb +163 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Karachi.rb +30 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Katmandu.rb +20 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Kolkata.rb +25 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Krasnoyarsk.rb +163 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Kuala_Lumpur.rb +31 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Kuwait.rb +18 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Magadan.rb +163 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Muscat.rb +18 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Novosibirsk.rb +164 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Rangoon.rb +24 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Riyadh.rb +18 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Seoul.rb +34 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Shanghai.rb +35 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Singapore.rb +33 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Taipei.rb +59 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Tashkent.rb +47 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Tbilisi.rb +78 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Tehran.rb +121 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Tokyo.rb +30 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Ulaanbaatar.rb +65 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Urumqi.rb +33 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Vladivostok.rb +164 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Yakutsk.rb +163 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Yekaterinburg.rb +165 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Yerevan.rb +165 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Atlantic/Azores.rb +270 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Atlantic/Cape_Verde.rb +23 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Atlantic/South_Georgia.rb +18 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Australia/Adelaide.rb +187 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Australia/Brisbane.rb +35 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Australia/Darwin.rb +29 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Australia/Hobart.rb +193 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Australia/Melbourne.rb +185 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Australia/Perth.rb +37 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Australia/Sydney.rb +185 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Etc/UTC.rb +16 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Amsterdam.rb +228 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Athens.rb +185 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Belgrade.rb +163 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Berlin.rb +188 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Bratislava.rb +13 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Brussels.rb +232 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Bucharest.rb +181 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Budapest.rb +197 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Copenhagen.rb +179 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Dublin.rb +276 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Helsinki.rb +163 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Istanbul.rb +218 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Kiev.rb +168 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Lisbon.rb +268 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Ljubljana.rb +13 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/London.rb +288 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Madrid.rb +211 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Minsk.rb +170 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Moscow.rb +181 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Paris.rb +232 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Prague.rb +187 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Riga.rb +176 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Rome.rb +215 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Sarajevo.rb +13 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Skopje.rb +13 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Sofia.rb +173 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Stockholm.rb +165 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Tallinn.rb +172 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Vienna.rb +183 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Vilnius.rb +170 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Warsaw.rb +212 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Zagreb.rb +13 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Auckland.rb +202 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Fiji.rb +23 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Guam.rb +22 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Honolulu.rb +28 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Majuro.rb +20 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Midway.rb +25 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Noumea.rb +25 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Pago_Pago.rb +26 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Port_Moresby.rb +20 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Tongatapu.rb +27 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/info_timezone.rb +52 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/linked_timezone.rb +51 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/linked_timezone_info.rb +44 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/offset_rationals.rb +98 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/ruby_core_support.rb +56 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/time_or_datetime.rb +292 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/timezone.rb +508 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/timezone_definition.rb +56 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/timezone_info.rb +40 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/timezone_offset_info.rb +94 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/timezone_period.rb +198 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/timezone_transition_info.rb +129 -0
- data/vendor/rails/activesupport/lib/active_support/version.rb +9 -0
- data/vendor/rails/activesupport/lib/active_support/whiny_nil.rb +58 -0
- data/vendor/rails/activesupport/lib/active_support/xml_mini.rb +31 -0
- data/vendor/rails/activesupport/lib/active_support/xml_mini/jdom.rb +162 -0
- data/vendor/rails/activesupport/lib/active_support/xml_mini/libxml.rb +133 -0
- data/vendor/rails/activesupport/lib/active_support/xml_mini/nokogiri.rb +77 -0
- data/vendor/rails/activesupport/lib/active_support/xml_mini/rexml.rb +108 -0
- data/vendor/rails/activesupport/lib/activesupport.rb +1 -0
- data/vendor/rails/railties/CHANGELOG +2166 -0
- data/vendor/rails/railties/MIT-LICENSE +20 -0
- data/vendor/rails/railties/README +243 -0
- data/vendor/rails/railties/Rakefile +368 -0
- data/vendor/rails/railties/bin/about +4 -0
- data/vendor/rails/railties/bin/console +3 -0
- data/vendor/rails/railties/bin/dbconsole +3 -0
- data/vendor/rails/railties/bin/destroy +3 -0
- data/vendor/rails/railties/bin/generate +3 -0
- data/vendor/rails/railties/bin/performance/benchmarker +3 -0
- data/vendor/rails/railties/bin/performance/profiler +3 -0
- data/vendor/rails/railties/bin/plugin +3 -0
- data/vendor/rails/railties/bin/rails +20 -0
- data/vendor/rails/railties/bin/runner +3 -0
- data/vendor/rails/railties/bin/server +3 -0
- data/vendor/rails/railties/builtin/rails_info/rails/info.rb +131 -0
- data/vendor/rails/railties/builtin/rails_info/rails/info_controller.rb +9 -0
- data/vendor/rails/railties/builtin/rails_info/rails/info_helper.rb +2 -0
- data/vendor/rails/railties/builtin/rails_info/rails_info_controller.rb +2 -0
- data/vendor/rails/railties/configs/databases/frontbase.yml +28 -0
- data/vendor/rails/railties/configs/databases/ibm_db.yml +62 -0
- data/vendor/rails/railties/configs/databases/mysql.yml +60 -0
- data/vendor/rails/railties/configs/databases/oracle.yml +39 -0
- data/vendor/rails/railties/configs/databases/postgresql.yml +51 -0
- data/vendor/rails/railties/configs/databases/sqlite2.yml +19 -0
- data/vendor/rails/railties/configs/databases/sqlite3.yml +22 -0
- data/vendor/rails/railties/configs/empty.log +0 -0
- data/vendor/rails/railties/configs/initializers/backtrace_silencers.rb +7 -0
- data/vendor/rails/railties/configs/initializers/inflections.rb +10 -0
- data/vendor/rails/railties/configs/initializers/mime_types.rb +5 -0
- data/vendor/rails/railties/configs/initializers/new_rails_defaults.rb +21 -0
- data/vendor/rails/railties/configs/initializers/session_store.rb +15 -0
- data/vendor/rails/railties/configs/locales/en.yml +5 -0
- data/vendor/rails/railties/configs/routes.rb +43 -0
- data/vendor/rails/railties/configs/seeds.rb +7 -0
- data/vendor/rails/railties/dispatches/config.ru +7 -0
- data/vendor/rails/railties/dispatches/dispatch.fcgi +24 -0
- data/vendor/rails/railties/dispatches/dispatch.rb +10 -0
- data/vendor/rails/railties/dispatches/gateway.cgi +97 -0
- data/vendor/rails/railties/doc/README_FOR_APP +2 -0
- data/vendor/rails/railties/environments/boot.rb +110 -0
- data/vendor/rails/railties/environments/development.rb +17 -0
- data/vendor/rails/railties/environments/environment.rb +41 -0
- data/vendor/rails/railties/environments/production.rb +28 -0
- data/vendor/rails/railties/environments/test.rb +28 -0
- data/vendor/rails/railties/fresh_rakefile +10 -0
- data/vendor/rails/railties/guides/files/javascripts/code_highlighter.js +188 -0
- data/vendor/rails/railties/guides/files/javascripts/guides.js +8 -0
- data/vendor/rails/railties/guides/files/javascripts/highlighters.js +90 -0
- data/vendor/rails/railties/guides/files/stylesheets/main.css +441 -0
- data/vendor/rails/railties/guides/files/stylesheets/print.css +52 -0
- data/vendor/rails/railties/guides/files/stylesheets/reset.css +43 -0
- data/vendor/rails/railties/guides/files/stylesheets/style.css +13 -0
- data/vendor/rails/railties/guides/files/stylesheets/syntax.css +31 -0
- data/vendor/rails/railties/guides/images/belongs_to.png +0 -0
- data/vendor/rails/railties/guides/images/book_icon.gif +0 -0
- data/vendor/rails/railties/guides/images/bullet.gif +0 -0
- data/vendor/rails/railties/guides/images/chapters_icon.gif +0 -0
- data/vendor/rails/railties/guides/images/check_bullet.gif +0 -0
- data/vendor/rails/railties/guides/images/credits_pic_blank.gif +0 -0
- data/vendor/rails/railties/guides/images/csrf.png +0 -0
- data/vendor/rails/railties/guides/images/customized_error_messages.png +0 -0
- data/vendor/rails/railties/guides/images/error_messages.png +0 -0
- data/vendor/rails/railties/guides/images/feature_tile.gif +0 -0
- data/vendor/rails/railties/guides/images/footer_tile.gif +0 -0
- data/vendor/rails/railties/guides/images/fxn.jpg +0 -0
- data/vendor/rails/railties/guides/images/grey_bullet.gif +0 -0
- data/vendor/rails/railties/guides/images/habtm.png +0 -0
- data/vendor/rails/railties/guides/images/has_many.png +0 -0
- data/vendor/rails/railties/guides/images/has_many_through.png +0 -0
- data/vendor/rails/railties/guides/images/has_one.png +0 -0
- data/vendor/rails/railties/guides/images/has_one_through.png +0 -0
- data/vendor/rails/railties/guides/images/header_backdrop.png +0 -0
- data/vendor/rails/railties/guides/images/header_tile.gif +0 -0
- data/vendor/rails/railties/guides/images/i18n/demo_localized_pirate.png +0 -0
- data/vendor/rails/railties/guides/images/i18n/demo_translated_en.png +0 -0
- data/vendor/rails/railties/guides/images/i18n/demo_translated_pirate.png +0 -0
- data/vendor/rails/railties/guides/images/i18n/demo_translation_missing.png +0 -0
- data/vendor/rails/railties/guides/images/i18n/demo_untranslated.png +0 -0
- data/vendor/rails/railties/guides/images/icons/README +5 -0
- data/vendor/rails/railties/guides/images/icons/callouts/1.png +0 -0
- data/vendor/rails/railties/guides/images/icons/callouts/10.png +0 -0
- data/vendor/rails/railties/guides/images/icons/callouts/11.png +0 -0
- data/vendor/rails/railties/guides/images/icons/callouts/12.png +0 -0
- data/vendor/rails/railties/guides/images/icons/callouts/13.png +0 -0
- data/vendor/rails/railties/guides/images/icons/callouts/14.png +0 -0
- data/vendor/rails/railties/guides/images/icons/callouts/15.png +0 -0
- data/vendor/rails/railties/guides/images/icons/callouts/2.png +0 -0
- data/vendor/rails/railties/guides/images/icons/callouts/3.png +0 -0
- data/vendor/rails/railties/guides/images/icons/callouts/4.png +0 -0
- data/vendor/rails/railties/guides/images/icons/callouts/5.png +0 -0
- data/vendor/rails/railties/guides/images/icons/callouts/6.png +0 -0
- data/vendor/rails/railties/guides/images/icons/callouts/7.png +0 -0
- data/vendor/rails/railties/guides/images/icons/callouts/8.png +0 -0
- data/vendor/rails/railties/guides/images/icons/callouts/9.png +0 -0
- data/vendor/rails/railties/guides/images/icons/caution.png +0 -0
- data/vendor/rails/railties/guides/images/icons/example.png +0 -0
- data/vendor/rails/railties/guides/images/icons/home.png +0 -0
- data/vendor/rails/railties/guides/images/icons/important.png +0 -0
- data/vendor/rails/railties/guides/images/icons/next.png +0 -0
- data/vendor/rails/railties/guides/images/icons/note.png +0 -0
- data/vendor/rails/railties/guides/images/icons/prev.png +0 -0
- data/vendor/rails/railties/guides/images/icons/tip.png +0 -0
- data/vendor/rails/railties/guides/images/icons/up.png +0 -0
- data/vendor/rails/railties/guides/images/icons/warning.png +0 -0
- data/vendor/rails/railties/guides/images/nav_arrow.gif +0 -0
- data/vendor/rails/railties/guides/images/polymorphic.png +0 -0
- data/vendor/rails/railties/guides/images/posts_index.png +0 -0
- data/vendor/rails/railties/guides/images/rails_guides_logo.gif +0 -0
- data/vendor/rails/railties/guides/images/rails_logo_remix.gif +0 -0
- data/vendor/rails/railties/guides/images/rails_welcome.png +0 -0
- data/vendor/rails/railties/guides/images/session_fixation.png +0 -0
- data/vendor/rails/railties/guides/images/tab_grey.gif +0 -0
- data/vendor/rails/railties/guides/images/tab_info.gif +0 -0
- data/vendor/rails/railties/guides/images/tab_note.gif +0 -0
- data/vendor/rails/railties/guides/images/tab_red.gif +0 -0
- data/vendor/rails/railties/guides/images/tab_yellow.gif +0 -0
- data/vendor/rails/railties/guides/images/tab_yellow.png +0 -0
- data/vendor/rails/railties/guides/images/validation_error_messages.png +0 -0
- data/vendor/rails/railties/guides/rails_guides.rb +42 -0
- data/vendor/rails/railties/guides/rails_guides/generator.rb +138 -0
- data/vendor/rails/railties/guides/rails_guides/helpers.rb +34 -0
- data/vendor/rails/railties/guides/rails_guides/indexer.rb +55 -0
- data/vendor/rails/railties/guides/rails_guides/textile_extensions.rb +41 -0
- data/vendor/rails/railties/guides/source/2_2_release_notes.textile +422 -0
- data/vendor/rails/railties/guides/source/2_3_release_notes.textile +610 -0
- data/vendor/rails/railties/guides/source/action_controller_overview.textile +776 -0
- data/vendor/rails/railties/guides/source/action_mailer_basics.textile +424 -0
- data/vendor/rails/railties/guides/source/active_record_basics.textile +135 -0
- data/vendor/rails/railties/guides/source/active_record_querying.textile +969 -0
- data/vendor/rails/railties/guides/source/activerecord_validations_callbacks.textile +1086 -0
- data/vendor/rails/railties/guides/source/association_basics.textile +1781 -0
- data/vendor/rails/railties/guides/source/caching_with_rails.textile +524 -0
- data/vendor/rails/railties/guides/source/command_line.textile +589 -0
- data/vendor/rails/railties/guides/source/configuring.textile +234 -0
- data/vendor/rails/railties/guides/source/contribute.textile +71 -0
- data/vendor/rails/railties/guides/source/contributing_to_rails.textile +239 -0
- data/vendor/rails/railties/guides/source/credits.erb.textile +52 -0
- data/vendor/rails/railties/guides/source/debugging_rails_applications.textile +709 -0
- data/vendor/rails/railties/guides/source/form_helpers.textile +766 -0
- data/vendor/rails/railties/guides/source/getting_started.textile +1297 -0
- data/vendor/rails/railties/guides/source/i18n.textile +912 -0
- data/vendor/rails/railties/guides/source/index.erb.textile +124 -0
- data/vendor/rails/railties/guides/source/layout.html.erb +103 -0
- data/vendor/rails/railties/guides/source/layouts_and_rendering.textile +979 -0
- data/vendor/rails/railties/guides/source/migrations.textile +591 -0
- data/vendor/rails/railties/guides/source/nested_model_forms.textile +222 -0
- data/vendor/rails/railties/guides/source/performance_testing.textile +531 -0
- data/vendor/rails/railties/guides/source/plugins.textile +1512 -0
- data/vendor/rails/railties/guides/source/rails_on_rack.textile +309 -0
- data/vendor/rails/railties/guides/source/routing.textile +903 -0
- data/vendor/rails/railties/guides/source/security.textile +986 -0
- data/vendor/rails/railties/guides/source/testing.textile +951 -0
- data/vendor/rails/railties/helpers/application_controller.rb +10 -0
- data/vendor/rails/railties/helpers/application_helper.rb +3 -0
- data/vendor/rails/railties/helpers/performance_test.rb +9 -0
- data/vendor/rails/railties/helpers/test_helper.rb +38 -0
- data/vendor/rails/railties/html/404.html +30 -0
- data/vendor/rails/railties/html/422.html +30 -0
- data/vendor/rails/railties/html/500.html +30 -0
- data/vendor/rails/railties/html/favicon.ico +0 -0
- data/vendor/rails/railties/html/images/rails.png +0 -0
- data/vendor/rails/railties/html/index.html +275 -0
- data/vendor/rails/railties/html/javascripts/application.js +2 -0
- data/vendor/rails/railties/html/javascripts/controls.js +963 -0
- data/vendor/rails/railties/html/javascripts/dragdrop.js +973 -0
- data/vendor/rails/railties/html/javascripts/effects.js +1128 -0
- data/vendor/rails/railties/html/javascripts/prototype.js +4320 -0
- data/vendor/rails/railties/html/robots.txt +5 -0
- data/vendor/rails/railties/lib/code_statistics.rb +107 -0
- data/vendor/rails/railties/lib/commands.rb +17 -0
- data/vendor/rails/railties/lib/commands/about.rb +3 -0
- data/vendor/rails/railties/lib/commands/console.rb +45 -0
- data/vendor/rails/railties/lib/commands/dbconsole.rb +87 -0
- data/vendor/rails/railties/lib/commands/destroy.rb +6 -0
- data/vendor/rails/railties/lib/commands/generate.rb +6 -0
- data/vendor/rails/railties/lib/commands/ncgi/listener +86 -0
- data/vendor/rails/railties/lib/commands/ncgi/tracker +69 -0
- data/vendor/rails/railties/lib/commands/performance/benchmarker.rb +24 -0
- data/vendor/rails/railties/lib/commands/performance/profiler.rb +50 -0
- data/vendor/rails/railties/lib/commands/plugin.rb +968 -0
- data/vendor/rails/railties/lib/commands/runner.rb +54 -0
- data/vendor/rails/railties/lib/commands/server.rb +114 -0
- data/vendor/rails/railties/lib/commands/update.rb +4 -0
- data/vendor/rails/railties/lib/console_app.rb +30 -0
- data/vendor/rails/railties/lib/console_sandbox.rb +6 -0
- data/vendor/rails/railties/lib/console_with_helpers.rb +5 -0
- data/vendor/rails/railties/lib/dispatcher.rb +24 -0
- data/vendor/rails/railties/lib/fcgi_handler.rb +239 -0
- data/vendor/rails/railties/lib/initializer.rb +1128 -0
- data/vendor/rails/railties/lib/performance_test_help.rb +5 -0
- data/vendor/rails/railties/lib/rails/backtrace_cleaner.rb +54 -0
- data/vendor/rails/railties/lib/rails/gem_builder.rb +21 -0
- data/vendor/rails/railties/lib/rails/gem_dependency.rb +311 -0
- data/vendor/rails/railties/lib/rails/plugin.rb +179 -0
- data/vendor/rails/railties/lib/rails/plugin/loader.rb +198 -0
- data/vendor/rails/railties/lib/rails/plugin/locator.rb +100 -0
- data/vendor/rails/railties/lib/rails/rack.rb +8 -0
- data/vendor/rails/railties/lib/rails/rack/debugger.rb +21 -0
- data/vendor/rails/railties/lib/rails/rack/log_tailer.rb +35 -0
- data/vendor/rails/railties/lib/rails/rack/metal.rb +51 -0
- data/vendor/rails/railties/lib/rails/rack/static.rb +46 -0
- data/vendor/rails/railties/lib/rails/vendor_gem_source_index.rb +140 -0
- data/vendor/rails/railties/lib/rails/version.rb +9 -0
- data/vendor/rails/railties/lib/rails_generator.rb +43 -0
- data/vendor/rails/railties/lib/rails_generator/base.rb +266 -0
- data/vendor/rails/railties/lib/rails_generator/commands.rb +621 -0
- data/vendor/rails/railties/lib/rails_generator/generated_attribute.rb +46 -0
- data/vendor/rails/railties/lib/rails_generator/generators/applications/app/USAGE +9 -0
- data/vendor/rails/railties/lib/rails_generator/generators/applications/app/app_generator.rb +263 -0
- data/vendor/rails/railties/lib/rails_generator/generators/applications/app/scm/scm.rb +8 -0
- data/vendor/rails/railties/lib/rails_generator/generators/applications/app/scm/svn.rb +7 -0
- data/vendor/rails/railties/lib/rails_generator/generators/applications/app/template_runner.rb +401 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/controller/USAGE +30 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/controller/controller_generator.rb +43 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/controller/templates/controller.rb +7 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/controller/templates/functional_test.rb +8 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/controller/templates/helper.rb +2 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/controller/templates/helper_test.rb +4 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/controller/templates/view.html.erb +2 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/helper/USAGE +24 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/helper/helper_generator.rb +25 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/helper/templates/helper.rb +2 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/helper/templates/helper_test.rb +4 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/integration_test/USAGE +8 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/integration_test/integration_test_generator.rb +16 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/integration_test/templates/integration_test.rb +10 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/mailer/USAGE +16 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/mailer/mailer_generator.rb +30 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/mailer/templates/fixture.erb +3 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/mailer/templates/fixture.rhtml +0 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/mailer/templates/mailer.rb +15 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/mailer/templates/unit_test.rb +20 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/mailer/templates/view.erb +3 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/mailer/templates/view.rhtml +0 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/metal/USAGE +8 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/metal/metal_generator.rb +8 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/metal/templates/metal.rb +12 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/migration/USAGE +29 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/migration/migration_generator.rb +20 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/migration/templates/migration.rb +11 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/model/USAGE +27 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/model/model_generator.rb +52 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/model/templates/fixtures.yml +19 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/model/templates/migration.rb +16 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/model/templates/model.rb +5 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/model/templates/unit_test.rb +8 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/observer/USAGE +13 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/observer/observer_generator.rb +16 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/observer/templates/observer.rb +2 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/observer/templates/unit_test.rb +8 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/performance_test/USAGE +8 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/performance_test/performance_test_generator.rb +16 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/performance_test/templates/performance_test.rb +9 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/plugin/USAGE +25 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/plugin/plugin_generator.rb +39 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/MIT-LICENSE +20 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/README +13 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/Rakefile +23 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/USAGE +8 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/generator.rb +8 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/init.rb +1 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/install.rb +1 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/plugin.rb +1 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/tasks.rake +4 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/test_helper.rb +3 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/uninstall.rb +1 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/unit_test.rb +8 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/resource/USAGE +23 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/resource/resource_generator.rb +76 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/resource/templates/controller.rb +2 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/resource/templates/functional_test.rb +8 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/resource/templates/helper.rb +2 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/resource/templates/helper_test.rb +4 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/USAGE +29 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/scaffold_generator.rb +103 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/templates/controller.rb +85 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/templates/functional_test.rb +45 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/templates/helper.rb +2 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/templates/helper_test.rb +4 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/templates/layout.html.erb +17 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/templates/style.css +54 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/templates/view_edit.html.erb +18 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/templates/view_index.html.erb +24 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/templates/view_new.html.erb +17 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/templates/view_show.html.erb +10 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/session_migration/USAGE +10 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/session_migration/session_migration_generator.rb +18 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/session_migration/templates/migration.rb +16 -0
- data/vendor/rails/railties/lib/rails_generator/lookup.rb +249 -0
- data/vendor/rails/railties/lib/rails_generator/manifest.rb +53 -0
- data/vendor/rails/railties/lib/rails_generator/options.rb +150 -0
- data/vendor/rails/railties/lib/rails_generator/scripts.rb +89 -0
- data/vendor/rails/railties/lib/rails_generator/scripts/destroy.rb +29 -0
- data/vendor/rails/railties/lib/rails_generator/scripts/generate.rb +7 -0
- data/vendor/rails/railties/lib/rails_generator/scripts/update.rb +12 -0
- data/vendor/rails/railties/lib/rails_generator/secret_key_generator.rb +24 -0
- data/vendor/rails/railties/lib/rails_generator/simple_logger.rb +46 -0
- data/vendor/rails/railties/lib/rails_generator/spec.rb +44 -0
- data/vendor/rails/railties/lib/railties_path.rb +1 -0
- data/vendor/rails/railties/lib/ruby_version_check.rb +17 -0
- data/vendor/rails/railties/lib/rubyprof_ext.rb +35 -0
- data/vendor/rails/railties/lib/source_annotation_extractor.rb +102 -0
- data/vendor/rails/railties/lib/tasks/annotations.rake +20 -0
- data/vendor/rails/railties/lib/tasks/databases.rake +436 -0
- data/vendor/rails/railties/lib/tasks/documentation.rake +88 -0
- data/vendor/rails/railties/lib/tasks/framework.rake +143 -0
- data/vendor/rails/railties/lib/tasks/gems.rake +78 -0
- data/vendor/rails/railties/lib/tasks/log.rake +9 -0
- data/vendor/rails/railties/lib/tasks/middleware.rake +7 -0
- data/vendor/rails/railties/lib/tasks/misc.rake +63 -0
- data/vendor/rails/railties/lib/tasks/rails.rb +8 -0
- data/vendor/rails/railties/lib/tasks/routes.rake +18 -0
- data/vendor/rails/railties/lib/tasks/statistics.rake +17 -0
- data/vendor/rails/railties/lib/tasks/testing.rake +139 -0
- data/vendor/rails/railties/lib/test_help.rb +38 -0
- data/vendor/rails/railties/lib/webrick_server.rb +156 -0
- data/vendor/redcloth/Rakefile +196 -0
- data/vendor/redcloth/bin/redcloth +3 -0
- data/vendor/redcloth/doc/CHANGELOG +160 -0
- data/vendor/redcloth/doc/COPYING +25 -0
- data/vendor/redcloth/doc/README +106 -0
- data/vendor/redcloth/doc/REFERENCE +216 -0
- data/vendor/redcloth/doc/make.rb +359 -0
- data/vendor/redcloth/lib/rctodb.rb +1107 -0
- data/vendor/redcloth/lib/redcloth.rb +1130 -0
- data/vendor/redcloth/run-tests.rb +28 -0
- data/vendor/redcloth/setup.rb +1376 -0
- data/vendor/redcloth/tests/code.yml +105 -0
- data/vendor/redcloth/tests/images.yml +171 -0
- data/vendor/redcloth/tests/instiki.yml +39 -0
- data/vendor/redcloth/tests/links.yml +155 -0
- data/vendor/redcloth/tests/lists.yml +77 -0
- data/vendor/redcloth/tests/markdown.yml +218 -0
- data/vendor/redcloth/tests/poignant.yml +64 -0
- data/vendor/redcloth/tests/table.yml +198 -0
- data/vendor/redcloth/tests/textism.yml +406 -0
- metadata +2474 -0
@@ -0,0 +1,389 @@
|
|
1
|
+
module ActiveRecord
|
2
|
+
# See ActiveRecord::AssociationPreload::ClassMethods for documentation.
|
3
|
+
module AssociationPreload #:nodoc:
|
4
|
+
def self.included(base)
|
5
|
+
base.extend(ClassMethods)
|
6
|
+
end
|
7
|
+
|
8
|
+
# Implements the details of eager loading of ActiveRecord associations.
|
9
|
+
# Application developers should not use this module directly.
|
10
|
+
#
|
11
|
+
# ActiveRecord::Base is extended with this module. The source code in
|
12
|
+
# ActiveRecord::Base references methods defined in this module.
|
13
|
+
#
|
14
|
+
# Note that 'eager loading' and 'preloading' are actually the same thing.
|
15
|
+
# However, there are two different eager loading strategies.
|
16
|
+
#
|
17
|
+
# The first one is by using table joins. This was only strategy available
|
18
|
+
# prior to Rails 2.1. Suppose that you have an Author model with columns
|
19
|
+
# 'name' and 'age', and a Book model with columns 'name' and 'sales'. Using
|
20
|
+
# this strategy, ActiveRecord would try to retrieve all data for an author
|
21
|
+
# and all of its books via a single query:
|
22
|
+
#
|
23
|
+
# SELECT * FROM authors
|
24
|
+
# LEFT OUTER JOIN books ON authors.id = books.id
|
25
|
+
# WHERE authors.name = 'Ken Akamatsu'
|
26
|
+
#
|
27
|
+
# However, this could result in many rows that contain redundant data. After
|
28
|
+
# having received the first row, we already have enough data to instantiate
|
29
|
+
# the Author object. In all subsequent rows, only the data for the joined
|
30
|
+
# 'books' table is useful; the joined 'authors' data is just redundant, and
|
31
|
+
# processing this redundant data takes memory and CPU time. The problem
|
32
|
+
# quickly becomes worse and worse as the level of eager loading increases
|
33
|
+
# (i.e. if ActiveRecord is to eager load the associations' assocations as
|
34
|
+
# well).
|
35
|
+
#
|
36
|
+
# The second strategy is to use multiple database queries, one for each
|
37
|
+
# level of association. Since Rails 2.1, this is the default strategy. In
|
38
|
+
# situations where a table join is necessary (e.g. when the +:conditions+
|
39
|
+
# option references an association's column), it will fallback to the table
|
40
|
+
# join strategy.
|
41
|
+
#
|
42
|
+
# See also ActiveRecord::Associations::ClassMethods, which explains eager
|
43
|
+
# loading in a more high-level (application developer-friendly) manner.
|
44
|
+
module ClassMethods
|
45
|
+
protected
|
46
|
+
|
47
|
+
# Eager loads the named associations for the given ActiveRecord record(s).
|
48
|
+
#
|
49
|
+
# In this description, 'association name' shall refer to the name passed
|
50
|
+
# to an association creation method. For example, a model that specifies
|
51
|
+
# <tt>belongs_to :author</tt>, <tt>has_many :buyers</tt> has association
|
52
|
+
# names +:author+ and +:buyers+.
|
53
|
+
#
|
54
|
+
# == Parameters
|
55
|
+
# +records+ is an array of ActiveRecord::Base. This array needs not be flat,
|
56
|
+
# i.e. +records+ itself may also contain arrays of records. In any case,
|
57
|
+
# +preload_associations+ will preload the associations all records by
|
58
|
+
# flattening +records+.
|
59
|
+
#
|
60
|
+
# +associations+ specifies one or more associations that you want to
|
61
|
+
# preload. It may be:
|
62
|
+
# - a Symbol or a String which specifies a single association name. For
|
63
|
+
# example, specifiying +:books+ allows this method to preload all books
|
64
|
+
# for an Author.
|
65
|
+
# - an Array which specifies multiple association names. This array
|
66
|
+
# is processed recursively. For example, specifying <tt>[:avatar, :books]</tt>
|
67
|
+
# allows this method to preload an author's avatar as well as all of his
|
68
|
+
# books.
|
69
|
+
# - a Hash which specifies multiple association names, as well as
|
70
|
+
# association names for the to-be-preloaded association objects. For
|
71
|
+
# example, specifying <tt>{ :author => :avatar }</tt> will preload a
|
72
|
+
# book's author, as well as that author's avatar.
|
73
|
+
#
|
74
|
+
# +:associations+ has the same format as the +:include+ option for
|
75
|
+
# <tt>ActiveRecord::Base.find</tt>. So +associations+ could look like this:
|
76
|
+
#
|
77
|
+
# :books
|
78
|
+
# [ :books, :author ]
|
79
|
+
# { :author => :avatar }
|
80
|
+
# [ :books, { :author => :avatar } ]
|
81
|
+
#
|
82
|
+
# +preload_options+ contains options that will be passed to ActiveRecord#find
|
83
|
+
# (which is called under the hood for preloading records). But it is passed
|
84
|
+
# only one level deep in the +associations+ argument, i.e. it's not passed
|
85
|
+
# to the child associations when +associations+ is a Hash.
|
86
|
+
def preload_associations(records, associations, preload_options={})
|
87
|
+
records = [records].flatten.compact.uniq
|
88
|
+
return if records.empty?
|
89
|
+
case associations
|
90
|
+
when Array then associations.each {|association| preload_associations(records, association, preload_options)}
|
91
|
+
when Symbol, String then preload_one_association(records, associations.to_sym, preload_options)
|
92
|
+
when Hash then
|
93
|
+
associations.each do |parent, child|
|
94
|
+
raise "parent must be an association name" unless parent.is_a?(String) || parent.is_a?(Symbol)
|
95
|
+
preload_associations(records, parent, preload_options)
|
96
|
+
reflection = reflections[parent]
|
97
|
+
parents = records.map {|record| record.send(reflection.name)}.flatten.compact
|
98
|
+
unless parents.empty?
|
99
|
+
parents.first.class.preload_associations(parents, child)
|
100
|
+
end
|
101
|
+
end
|
102
|
+
end
|
103
|
+
end
|
104
|
+
|
105
|
+
private
|
106
|
+
|
107
|
+
# Preloads a specific named association for the given records. This is
|
108
|
+
# called by +preload_associations+ as its base case.
|
109
|
+
def preload_one_association(records, association, preload_options={})
|
110
|
+
class_to_reflection = {}
|
111
|
+
# Not all records have the same class, so group then preload
|
112
|
+
# group on the reflection itself so that if various subclass share the same association then we do not split them
|
113
|
+
# unnecessarily
|
114
|
+
records.group_by {|record| class_to_reflection[record.class] ||= record.class.reflections[association]}.each do |reflection, records|
|
115
|
+
raise ConfigurationError, "Association named '#{ association }' was not found; perhaps you misspelled it?" unless reflection
|
116
|
+
|
117
|
+
# 'reflection.macro' can return 'belongs_to', 'has_many', etc. Thus,
|
118
|
+
# the following could call 'preload_belongs_to_association',
|
119
|
+
# 'preload_has_many_association', etc.
|
120
|
+
send("preload_#{reflection.macro}_association", records, reflection, preload_options)
|
121
|
+
end
|
122
|
+
end
|
123
|
+
|
124
|
+
def add_preloaded_records_to_collection(parent_records, reflection_name, associated_record)
|
125
|
+
parent_records.each do |parent_record|
|
126
|
+
association_proxy = parent_record.send(reflection_name)
|
127
|
+
association_proxy.loaded
|
128
|
+
association_proxy.target.push(*[associated_record].flatten)
|
129
|
+
end
|
130
|
+
end
|
131
|
+
|
132
|
+
def add_preloaded_record_to_collection(parent_records, reflection_name, associated_record)
|
133
|
+
parent_records.each do |parent_record|
|
134
|
+
parent_record.send("set_#{reflection_name}_target", associated_record)
|
135
|
+
end
|
136
|
+
end
|
137
|
+
|
138
|
+
def set_association_collection_records(id_to_record_map, reflection_name, associated_records, key)
|
139
|
+
associated_records.each do |associated_record|
|
140
|
+
mapped_records = id_to_record_map[associated_record[key].to_s]
|
141
|
+
add_preloaded_records_to_collection(mapped_records, reflection_name, associated_record)
|
142
|
+
end
|
143
|
+
end
|
144
|
+
|
145
|
+
def set_association_single_records(id_to_record_map, reflection_name, associated_records, key)
|
146
|
+
seen_keys = {}
|
147
|
+
associated_records.each do |associated_record|
|
148
|
+
#this is a has_one or belongs_to: there should only be one record.
|
149
|
+
#Unfortunately we can't (in portable way) ask the database for 'all records where foo_id in (x,y,z), but please
|
150
|
+
# only one row per distinct foo_id' so this where we enforce that
|
151
|
+
next if seen_keys[associated_record[key].to_s]
|
152
|
+
seen_keys[associated_record[key].to_s] = true
|
153
|
+
mapped_records = id_to_record_map[associated_record[key].to_s]
|
154
|
+
mapped_records.each do |mapped_record|
|
155
|
+
mapped_record.send("set_#{reflection_name}_target", associated_record)
|
156
|
+
end
|
157
|
+
end
|
158
|
+
end
|
159
|
+
|
160
|
+
# Given a collection of ActiveRecord objects, constructs a Hash which maps
|
161
|
+
# the objects' IDs to the relevant objects. Returns a 2-tuple
|
162
|
+
# <tt>(id_to_record_map, ids)</tt> where +id_to_record_map+ is the Hash,
|
163
|
+
# and +ids+ is an Array of record IDs.
|
164
|
+
def construct_id_map(records, primary_key=nil)
|
165
|
+
id_to_record_map = {}
|
166
|
+
ids = []
|
167
|
+
records.each do |record|
|
168
|
+
primary_key ||= record.class.primary_key
|
169
|
+
ids << record[primary_key]
|
170
|
+
mapped_records = (id_to_record_map[ids.last.to_s] ||= [])
|
171
|
+
mapped_records << record
|
172
|
+
end
|
173
|
+
ids.uniq!
|
174
|
+
return id_to_record_map, ids
|
175
|
+
end
|
176
|
+
|
177
|
+
def preload_has_and_belongs_to_many_association(records, reflection, preload_options={})
|
178
|
+
table_name = reflection.klass.quoted_table_name
|
179
|
+
id_to_record_map, ids = construct_id_map(records)
|
180
|
+
records.each {|record| record.send(reflection.name).loaded}
|
181
|
+
options = reflection.options
|
182
|
+
|
183
|
+
conditions = "t0.#{reflection.primary_key_name} #{in_or_equals_for_ids(ids)}"
|
184
|
+
conditions << append_conditions(reflection, preload_options)
|
185
|
+
|
186
|
+
associated_records = reflection.klass.with_exclusive_scope do
|
187
|
+
reflection.klass.find(:all, :conditions => [conditions, ids],
|
188
|
+
:include => options[:include],
|
189
|
+
:joins => "INNER JOIN #{connection.quote_table_name options[:join_table]} t0 ON #{reflection.klass.quoted_table_name}.#{reflection.klass.primary_key} = t0.#{reflection.association_foreign_key}",
|
190
|
+
:select => "#{options[:select] || table_name+'.*'}, t0.#{reflection.primary_key_name} as the_parent_record_id",
|
191
|
+
:order => options[:order])
|
192
|
+
end
|
193
|
+
set_association_collection_records(id_to_record_map, reflection.name, associated_records, 'the_parent_record_id')
|
194
|
+
end
|
195
|
+
|
196
|
+
def preload_has_one_association(records, reflection, preload_options={})
|
197
|
+
return if records.first.send("loaded_#{reflection.name}?")
|
198
|
+
id_to_record_map, ids = construct_id_map(records, reflection.options[:primary_key])
|
199
|
+
options = reflection.options
|
200
|
+
records.each {|record| record.send("set_#{reflection.name}_target", nil)}
|
201
|
+
if options[:through]
|
202
|
+
through_records = preload_through_records(records, reflection, options[:through])
|
203
|
+
through_reflection = reflections[options[:through]]
|
204
|
+
through_primary_key = through_reflection.primary_key_name
|
205
|
+
unless through_records.empty?
|
206
|
+
source = reflection.source_reflection.name
|
207
|
+
through_records.first.class.preload_associations(through_records, source)
|
208
|
+
if through_reflection.macro == :belongs_to
|
209
|
+
rev_id_to_record_map, rev_ids = construct_id_map(records, through_primary_key)
|
210
|
+
rev_primary_key = through_reflection.klass.primary_key
|
211
|
+
through_records.each do |through_record|
|
212
|
+
add_preloaded_record_to_collection(rev_id_to_record_map[through_record[rev_primary_key].to_s],
|
213
|
+
reflection.name, through_record.send(source))
|
214
|
+
end
|
215
|
+
else
|
216
|
+
through_records.each do |through_record|
|
217
|
+
add_preloaded_record_to_collection(id_to_record_map[through_record[through_primary_key].to_s],
|
218
|
+
reflection.name, through_record.send(source))
|
219
|
+
end
|
220
|
+
end
|
221
|
+
end
|
222
|
+
else
|
223
|
+
set_association_single_records(id_to_record_map, reflection.name, find_associated_records(ids, reflection, preload_options), reflection.primary_key_name)
|
224
|
+
end
|
225
|
+
end
|
226
|
+
|
227
|
+
def preload_has_many_association(records, reflection, preload_options={})
|
228
|
+
return if records.first.send(reflection.name).loaded?
|
229
|
+
options = reflection.options
|
230
|
+
|
231
|
+
primary_key_name = reflection.through_reflection_primary_key_name
|
232
|
+
id_to_record_map, ids = construct_id_map(records, primary_key_name || reflection.options[:primary_key])
|
233
|
+
records.each {|record| record.send(reflection.name).loaded}
|
234
|
+
|
235
|
+
if options[:through]
|
236
|
+
through_records = preload_through_records(records, reflection, options[:through])
|
237
|
+
through_reflection = reflections[options[:through]]
|
238
|
+
unless through_records.empty?
|
239
|
+
source = reflection.source_reflection.name
|
240
|
+
through_records.first.class.preload_associations(through_records, source, options)
|
241
|
+
through_records.each do |through_record|
|
242
|
+
through_record_id = through_record[reflection.through_reflection_primary_key].to_s
|
243
|
+
add_preloaded_records_to_collection(id_to_record_map[through_record_id], reflection.name, through_record.send(source))
|
244
|
+
end
|
245
|
+
end
|
246
|
+
|
247
|
+
else
|
248
|
+
set_association_collection_records(id_to_record_map, reflection.name, find_associated_records(ids, reflection, preload_options),
|
249
|
+
reflection.primary_key_name)
|
250
|
+
end
|
251
|
+
end
|
252
|
+
|
253
|
+
def preload_through_records(records, reflection, through_association)
|
254
|
+
through_reflection = reflections[through_association]
|
255
|
+
through_primary_key = through_reflection.primary_key_name
|
256
|
+
|
257
|
+
if reflection.options[:source_type]
|
258
|
+
interface = reflection.source_reflection.options[:foreign_type]
|
259
|
+
preload_options = {:conditions => ["#{connection.quote_column_name interface} = ?", reflection.options[:source_type]]}
|
260
|
+
|
261
|
+
records.compact!
|
262
|
+
records.first.class.preload_associations(records, through_association, preload_options)
|
263
|
+
|
264
|
+
# Dont cache the association - we would only be caching a subset
|
265
|
+
through_records = []
|
266
|
+
records.each do |record|
|
267
|
+
proxy = record.send(through_association)
|
268
|
+
|
269
|
+
if proxy.respond_to?(:target)
|
270
|
+
through_records << proxy.target
|
271
|
+
proxy.reset
|
272
|
+
else # this is a has_one :through reflection
|
273
|
+
through_records << proxy if proxy
|
274
|
+
end
|
275
|
+
end
|
276
|
+
through_records.flatten!
|
277
|
+
else
|
278
|
+
records.first.class.preload_associations(records, through_association)
|
279
|
+
through_records = records.map {|record| record.send(through_association)}.flatten
|
280
|
+
end
|
281
|
+
through_records.compact!
|
282
|
+
through_records
|
283
|
+
end
|
284
|
+
|
285
|
+
def preload_belongs_to_association(records, reflection, preload_options={})
|
286
|
+
return if records.first.send("loaded_#{reflection.name}?")
|
287
|
+
options = reflection.options
|
288
|
+
primary_key_name = reflection.primary_key_name
|
289
|
+
|
290
|
+
if options[:polymorphic]
|
291
|
+
polymorph_type = options[:foreign_type]
|
292
|
+
klasses_and_ids = {}
|
293
|
+
|
294
|
+
# Construct a mapping from klass to a list of ids to load and a mapping of those ids back to their parent_records
|
295
|
+
records.each do |record|
|
296
|
+
if klass = record.send(polymorph_type)
|
297
|
+
klass_id = record.send(primary_key_name)
|
298
|
+
if klass_id
|
299
|
+
id_map = klasses_and_ids[klass] ||= {}
|
300
|
+
id_list_for_klass_id = (id_map[klass_id.to_s] ||= [])
|
301
|
+
id_list_for_klass_id << record
|
302
|
+
end
|
303
|
+
end
|
304
|
+
end
|
305
|
+
klasses_and_ids = klasses_and_ids.to_a
|
306
|
+
else
|
307
|
+
id_map = {}
|
308
|
+
records.each do |record|
|
309
|
+
key = record.send(primary_key_name)
|
310
|
+
if key
|
311
|
+
mapped_records = (id_map[key.to_s] ||= [])
|
312
|
+
mapped_records << record
|
313
|
+
end
|
314
|
+
end
|
315
|
+
klasses_and_ids = [[reflection.klass.name, id_map]]
|
316
|
+
end
|
317
|
+
|
318
|
+
klasses_and_ids.each do |klass_and_id|
|
319
|
+
klass_name, id_map = *klass_and_id
|
320
|
+
next if id_map.empty?
|
321
|
+
klass = klass_name.constantize
|
322
|
+
|
323
|
+
table_name = klass.quoted_table_name
|
324
|
+
primary_key = klass.primary_key
|
325
|
+
column_type = klass.columns.detect{|c| c.name == primary_key}.type
|
326
|
+
ids = id_map.keys.map do |id|
|
327
|
+
if column_type == :integer
|
328
|
+
id.to_i
|
329
|
+
elsif column_type == :float
|
330
|
+
id.to_f
|
331
|
+
else
|
332
|
+
id
|
333
|
+
end
|
334
|
+
end
|
335
|
+
conditions = "#{table_name}.#{connection.quote_column_name(primary_key)} #{in_or_equals_for_ids(ids)}"
|
336
|
+
conditions << append_conditions(reflection, preload_options)
|
337
|
+
associated_records = klass.with_exclusive_scope do
|
338
|
+
klass.find(:all, :conditions => [conditions, ids],
|
339
|
+
:include => options[:include],
|
340
|
+
:select => options[:select],
|
341
|
+
:joins => options[:joins],
|
342
|
+
:order => options[:order])
|
343
|
+
end
|
344
|
+
set_association_single_records(id_map, reflection.name, associated_records, primary_key)
|
345
|
+
end
|
346
|
+
end
|
347
|
+
|
348
|
+
def find_associated_records(ids, reflection, preload_options)
|
349
|
+
options = reflection.options
|
350
|
+
table_name = reflection.klass.quoted_table_name
|
351
|
+
|
352
|
+
if interface = reflection.options[:as]
|
353
|
+
conditions = "#{reflection.klass.quoted_table_name}.#{connection.quote_column_name "#{interface}_id"} #{in_or_equals_for_ids(ids)} and #{reflection.klass.quoted_table_name}.#{connection.quote_column_name "#{interface}_type"} = '#{self.base_class.sti_name}'"
|
354
|
+
else
|
355
|
+
foreign_key = reflection.primary_key_name
|
356
|
+
conditions = "#{reflection.klass.quoted_table_name}.#{foreign_key} #{in_or_equals_for_ids(ids)}"
|
357
|
+
end
|
358
|
+
|
359
|
+
conditions << append_conditions(reflection, preload_options)
|
360
|
+
|
361
|
+
reflection.klass.with_exclusive_scope do
|
362
|
+
reflection.klass.find(:all,
|
363
|
+
:select => (preload_options[:select] || options[:select] || "#{table_name}.*"),
|
364
|
+
:include => preload_options[:include] || options[:include],
|
365
|
+
:conditions => [conditions, ids],
|
366
|
+
:joins => options[:joins],
|
367
|
+
:group => preload_options[:group] || options[:group],
|
368
|
+
:order => preload_options[:order] || options[:order])
|
369
|
+
end
|
370
|
+
end
|
371
|
+
|
372
|
+
|
373
|
+
def interpolate_sql_for_preload(sql)
|
374
|
+
instance_eval("%@#{sql.gsub('@', '\@')}@")
|
375
|
+
end
|
376
|
+
|
377
|
+
def append_conditions(reflection, preload_options)
|
378
|
+
sql = ""
|
379
|
+
sql << " AND (#{interpolate_sql_for_preload(reflection.sanitized_conditions)})" if reflection.sanitized_conditions
|
380
|
+
sql << " AND (#{sanitize_sql preload_options[:conditions]})" if preload_options[:conditions]
|
381
|
+
sql
|
382
|
+
end
|
383
|
+
|
384
|
+
def in_or_equals_for_ids(ids)
|
385
|
+
ids.size > 1 ? "IN (?)" : "= ?"
|
386
|
+
end
|
387
|
+
end
|
388
|
+
end
|
389
|
+
end
|
@@ -0,0 +1,2238 @@
|
|
1
|
+
module ActiveRecord
|
2
|
+
class HasManyThroughAssociationNotFoundError < ActiveRecordError #:nodoc:
|
3
|
+
def initialize(owner_class_name, reflection)
|
4
|
+
super("Could not find the association #{reflection.options[:through].inspect} in model #{owner_class_name}")
|
5
|
+
end
|
6
|
+
end
|
7
|
+
|
8
|
+
class HasManyThroughAssociationPolymorphicError < ActiveRecordError #:nodoc:
|
9
|
+
def initialize(owner_class_name, reflection, source_reflection)
|
10
|
+
super("Cannot have a has_many :through association '#{owner_class_name}##{reflection.name}' on the polymorphic object '#{source_reflection.class_name}##{source_reflection.name}'.")
|
11
|
+
end
|
12
|
+
end
|
13
|
+
|
14
|
+
class HasManyThroughAssociationPointlessSourceTypeError < ActiveRecordError #:nodoc:
|
15
|
+
def initialize(owner_class_name, reflection, source_reflection)
|
16
|
+
super("Cannot have a has_many :through association '#{owner_class_name}##{reflection.name}' with a :source_type option if the '#{reflection.through_reflection.class_name}##{source_reflection.name}' is not polymorphic. Try removing :source_type on your association.")
|
17
|
+
end
|
18
|
+
end
|
19
|
+
|
20
|
+
class HasManyThroughSourceAssociationNotFoundError < ActiveRecordError #:nodoc:
|
21
|
+
def initialize(reflection)
|
22
|
+
through_reflection = reflection.through_reflection
|
23
|
+
source_reflection_names = reflection.source_reflection_names
|
24
|
+
source_associations = reflection.through_reflection.klass.reflect_on_all_associations.collect { |a| a.name.inspect }
|
25
|
+
super("Could not find the source association(s) #{source_reflection_names.collect(&:inspect).to_sentence(:two_words_connector => ' or ', :last_word_connector => ', or ', :locale => :en)} in model #{through_reflection.klass}. Try 'has_many #{reflection.name.inspect}, :through => #{through_reflection.name.inspect}, :source => <name>'. Is it one of #{source_associations.to_sentence(:two_words_connector => ' or ', :last_word_connector => ', or ', :locale => :en)}?")
|
26
|
+
end
|
27
|
+
end
|
28
|
+
|
29
|
+
class HasManyThroughSourceAssociationMacroError < ActiveRecordError #:nodoc:
|
30
|
+
def initialize(reflection)
|
31
|
+
through_reflection = reflection.through_reflection
|
32
|
+
source_reflection = reflection.source_reflection
|
33
|
+
super("Invalid source reflection macro :#{source_reflection.macro}#{" :through" if source_reflection.options[:through]} for has_many #{reflection.name.inspect}, :through => #{through_reflection.name.inspect}. Use :source to specify the source reflection.")
|
34
|
+
end
|
35
|
+
end
|
36
|
+
|
37
|
+
class HasManyThroughCantAssociateThroughHasOneOrManyReflection < ActiveRecordError #:nodoc:
|
38
|
+
def initialize(owner, reflection)
|
39
|
+
super("Cannot modify association '#{owner.class.name}##{reflection.name}' because the source reflection class '#{reflection.source_reflection.class_name}' is associated to '#{reflection.through_reflection.class_name}' via :#{reflection.source_reflection.macro}.")
|
40
|
+
end
|
41
|
+
end
|
42
|
+
HasManyThroughCantAssociateThroughHasManyReflection = ActiveSupport::Deprecation::DeprecatedConstantProxy.new('ActiveRecord::HasManyThroughCantAssociateThroughHasManyReflection', 'ActiveRecord::HasManyThroughCantAssociateThroughHasOneOrManyReflection')
|
43
|
+
|
44
|
+
class HasManyThroughCantAssociateNewRecords < ActiveRecordError #:nodoc:
|
45
|
+
def initialize(owner, reflection)
|
46
|
+
super("Cannot associate new records through '#{owner.class.name}##{reflection.name}' on '#{reflection.source_reflection.class_name rescue nil}##{reflection.source_reflection.name rescue nil}'. Both records must have an id in order to create the has_many :through record associating them.")
|
47
|
+
end
|
48
|
+
end
|
49
|
+
|
50
|
+
class HasManyThroughCantDissociateNewRecords < ActiveRecordError #:nodoc:
|
51
|
+
def initialize(owner, reflection)
|
52
|
+
super("Cannot dissociate new records through '#{owner.class.name}##{reflection.name}' on '#{reflection.source_reflection.class_name rescue nil}##{reflection.source_reflection.name rescue nil}'. Both records must have an id in order to delete the has_many :through record associating them.")
|
53
|
+
end
|
54
|
+
end
|
55
|
+
|
56
|
+
class HasAndBelongsToManyAssociationForeignKeyNeeded < ActiveRecordError #:nodoc:
|
57
|
+
def initialize(reflection)
|
58
|
+
super("Cannot create self referential has_and_belongs_to_many association on '#{reflection.class_name rescue nil}##{reflection.name rescue nil}'. :association_foreign_key cannot be the same as the :foreign_key.")
|
59
|
+
end
|
60
|
+
end
|
61
|
+
|
62
|
+
class EagerLoadPolymorphicError < ActiveRecordError #:nodoc:
|
63
|
+
def initialize(reflection)
|
64
|
+
super("Can not eagerly load the polymorphic association #{reflection.name.inspect}")
|
65
|
+
end
|
66
|
+
end
|
67
|
+
|
68
|
+
class ReadOnlyAssociation < ActiveRecordError #:nodoc:
|
69
|
+
def initialize(reflection)
|
70
|
+
super("Can not add to a has_many :through association. Try adding to #{reflection.through_reflection.name.inspect}.")
|
71
|
+
end
|
72
|
+
end
|
73
|
+
|
74
|
+
# See ActiveRecord::Associations::ClassMethods for documentation.
|
75
|
+
module Associations # :nodoc:
|
76
|
+
# These classes will be loaded when associations are created.
|
77
|
+
# So there is no need to eager load them.
|
78
|
+
autoload :AssociationCollection, 'active_record/associations/association_collection'
|
79
|
+
autoload :AssociationProxy, 'active_record/associations/association_proxy'
|
80
|
+
autoload :BelongsToAssociation, 'active_record/associations/belongs_to_association'
|
81
|
+
autoload :BelongsToPolymorphicAssociation, 'active_record/associations/belongs_to_polymorphic_association'
|
82
|
+
autoload :HasAndBelongsToManyAssociation, 'active_record/associations/has_and_belongs_to_many_association'
|
83
|
+
autoload :HasManyAssociation, 'active_record/associations/has_many_association'
|
84
|
+
autoload :HasManyThroughAssociation, 'active_record/associations/has_many_through_association'
|
85
|
+
autoload :HasOneAssociation, 'active_record/associations/has_one_association'
|
86
|
+
autoload :HasOneThroughAssociation, 'active_record/associations/has_one_through_association'
|
87
|
+
|
88
|
+
def self.included(base)
|
89
|
+
base.extend(ClassMethods)
|
90
|
+
end
|
91
|
+
|
92
|
+
# Clears out the association cache
|
93
|
+
def clear_association_cache #:nodoc:
|
94
|
+
self.class.reflect_on_all_associations.to_a.each do |assoc|
|
95
|
+
instance_variable_set "@#{assoc.name}", nil
|
96
|
+
end unless self.new_record?
|
97
|
+
end
|
98
|
+
|
99
|
+
private
|
100
|
+
# Gets the specified association instance if it responds to :loaded?, nil otherwise.
|
101
|
+
def association_instance_get(name)
|
102
|
+
association = instance_variable_get("@#{name}")
|
103
|
+
association if association.respond_to?(:loaded?)
|
104
|
+
end
|
105
|
+
|
106
|
+
# Set the specified association instance.
|
107
|
+
def association_instance_set(name, association)
|
108
|
+
instance_variable_set("@#{name}", association)
|
109
|
+
end
|
110
|
+
|
111
|
+
# Associations are a set of macro-like class methods for tying objects together through foreign keys. They express relationships like
|
112
|
+
# "Project has one Project Manager" or "Project belongs to a Portfolio". Each macro adds a number of methods to the class which are
|
113
|
+
# specialized according to the collection or association symbol and the options hash. It works much the same way as Ruby's own <tt>attr*</tt>
|
114
|
+
# methods. Example:
|
115
|
+
#
|
116
|
+
# class Project < ActiveRecord::Base
|
117
|
+
# belongs_to :portfolio
|
118
|
+
# has_one :project_manager
|
119
|
+
# has_many :milestones
|
120
|
+
# has_and_belongs_to_many :categories
|
121
|
+
# end
|
122
|
+
#
|
123
|
+
# The project class now has the following methods (and more) to ease the traversal and manipulation of its relationships:
|
124
|
+
# * <tt>Project#portfolio, Project#portfolio=(portfolio), Project#portfolio.nil?</tt>
|
125
|
+
# * <tt>Project#project_manager, Project#project_manager=(project_manager), Project#project_manager.nil?,</tt>
|
126
|
+
# * <tt>Project#milestones.empty?, Project#milestones.size, Project#milestones, Project#milestones<<(milestone),</tt>
|
127
|
+
# <tt>Project#milestones.delete(milestone), Project#milestones.find(milestone_id), Project#milestones.find(:all, options),</tt>
|
128
|
+
# <tt>Project#milestones.build, Project#milestones.create</tt>
|
129
|
+
# * <tt>Project#categories.empty?, Project#categories.size, Project#categories, Project#categories<<(category1),</tt>
|
130
|
+
# <tt>Project#categories.delete(category1)</tt>
|
131
|
+
#
|
132
|
+
# === A word of warning
|
133
|
+
#
|
134
|
+
# Don't create associations that have the same name as instance methods of ActiveRecord::Base. Since the association
|
135
|
+
# adds a method with that name to its model, it will override the inherited method and break things.
|
136
|
+
# For instance, +attributes+ and +connection+ would be bad choices for association names.
|
137
|
+
#
|
138
|
+
# == Auto-generated methods
|
139
|
+
#
|
140
|
+
# === Singular associations (one-to-one)
|
141
|
+
# | | belongs_to |
|
142
|
+
# generated methods | belongs_to | :polymorphic | has_one
|
143
|
+
# ----------------------------------+------------+--------------+---------
|
144
|
+
# other | X | X | X
|
145
|
+
# other=(other) | X | X | X
|
146
|
+
# build_other(attributes={}) | X | | X
|
147
|
+
# create_other(attributes={}) | X | | X
|
148
|
+
# other.create!(attributes={}) | | | X
|
149
|
+
#
|
150
|
+
# ===Collection associations (one-to-many / many-to-many)
|
151
|
+
# | | | has_many
|
152
|
+
# generated methods | habtm | has_many | :through
|
153
|
+
# ----------------------------------+-------+----------+----------
|
154
|
+
# others | X | X | X
|
155
|
+
# others=(other,other,...) | X | X | X
|
156
|
+
# other_ids | X | X | X
|
157
|
+
# other_ids=(id,id,...) | X | X | X
|
158
|
+
# others<< | X | X | X
|
159
|
+
# others.push | X | X | X
|
160
|
+
# others.concat | X | X | X
|
161
|
+
# others.build(attributes={}) | X | X | X
|
162
|
+
# others.create(attributes={}) | X | X | X
|
163
|
+
# others.create!(attributes={}) | X | X | X
|
164
|
+
# others.size | X | X | X
|
165
|
+
# others.length | X | X | X
|
166
|
+
# others.count | X | X | X
|
167
|
+
# others.sum(args*,&block) | X | X | X
|
168
|
+
# others.empty? | X | X | X
|
169
|
+
# others.clear | X | X | X
|
170
|
+
# others.delete(other,other,...) | X | X | X
|
171
|
+
# others.delete_all | X | X |
|
172
|
+
# others.destroy_all | X | X | X
|
173
|
+
# others.find(*args) | X | X | X
|
174
|
+
# others.find_first | X | |
|
175
|
+
# others.exists? | X | X | X
|
176
|
+
# others.uniq | X | X | X
|
177
|
+
# others.reset | X | X | X
|
178
|
+
#
|
179
|
+
# == Cardinality and associations
|
180
|
+
#
|
181
|
+
# Active Record associations can be used to describe one-to-one, one-to-many and many-to-many
|
182
|
+
# relationships between models. Each model uses an association to describe its role in
|
183
|
+
# the relation. The +belongs_to+ association is always used in the model that has
|
184
|
+
# the foreign key.
|
185
|
+
#
|
186
|
+
# === One-to-one
|
187
|
+
#
|
188
|
+
# Use +has_one+ in the base, and +belongs_to+ in the associated model.
|
189
|
+
#
|
190
|
+
# class Employee < ActiveRecord::Base
|
191
|
+
# has_one :office
|
192
|
+
# end
|
193
|
+
# class Office < ActiveRecord::Base
|
194
|
+
# belongs_to :employee # foreign key - employee_id
|
195
|
+
# end
|
196
|
+
#
|
197
|
+
# === One-to-many
|
198
|
+
#
|
199
|
+
# Use +has_many+ in the base, and +belongs_to+ in the associated model.
|
200
|
+
#
|
201
|
+
# class Manager < ActiveRecord::Base
|
202
|
+
# has_many :employees
|
203
|
+
# end
|
204
|
+
# class Employee < ActiveRecord::Base
|
205
|
+
# belongs_to :manager # foreign key - manager_id
|
206
|
+
# end
|
207
|
+
#
|
208
|
+
# === Many-to-many
|
209
|
+
#
|
210
|
+
# There are two ways to build a many-to-many relationship.
|
211
|
+
#
|
212
|
+
# The first way uses a +has_many+ association with the <tt>:through</tt> option and a join model, so
|
213
|
+
# there are two stages of associations.
|
214
|
+
#
|
215
|
+
# class Assignment < ActiveRecord::Base
|
216
|
+
# belongs_to :programmer # foreign key - programmer_id
|
217
|
+
# belongs_to :project # foreign key - project_id
|
218
|
+
# end
|
219
|
+
# class Programmer < ActiveRecord::Base
|
220
|
+
# has_many :assignments
|
221
|
+
# has_many :projects, :through => :assignments
|
222
|
+
# end
|
223
|
+
# class Project < ActiveRecord::Base
|
224
|
+
# has_many :assignments
|
225
|
+
# has_many :programmers, :through => :assignments
|
226
|
+
# end
|
227
|
+
#
|
228
|
+
# For the second way, use +has_and_belongs_to_many+ in both models. This requires a join table
|
229
|
+
# that has no corresponding model or primary key.
|
230
|
+
#
|
231
|
+
# class Programmer < ActiveRecord::Base
|
232
|
+
# has_and_belongs_to_many :projects # foreign keys in the join table
|
233
|
+
# end
|
234
|
+
# class Project < ActiveRecord::Base
|
235
|
+
# has_and_belongs_to_many :programmers # foreign keys in the join table
|
236
|
+
# end
|
237
|
+
#
|
238
|
+
# Choosing which way to build a many-to-many relationship is not always simple.
|
239
|
+
# If you need to work with the relationship model as its own entity,
|
240
|
+
# use <tt>has_many :through</tt>. Use +has_and_belongs_to_many+ when working with legacy schemas or when
|
241
|
+
# you never work directly with the relationship itself.
|
242
|
+
#
|
243
|
+
# == Is it a +belongs_to+ or +has_one+ association?
|
244
|
+
#
|
245
|
+
# Both express a 1-1 relationship. The difference is mostly where to place the foreign key, which goes on the table for the class
|
246
|
+
# declaring the +belongs_to+ relationship. Example:
|
247
|
+
#
|
248
|
+
# class User < ActiveRecord::Base
|
249
|
+
# # I reference an account.
|
250
|
+
# belongs_to :account
|
251
|
+
# end
|
252
|
+
#
|
253
|
+
# class Account < ActiveRecord::Base
|
254
|
+
# # One user references me.
|
255
|
+
# has_one :user
|
256
|
+
# end
|
257
|
+
#
|
258
|
+
# The tables for these classes could look something like:
|
259
|
+
#
|
260
|
+
# CREATE TABLE users (
|
261
|
+
# id int(11) NOT NULL auto_increment,
|
262
|
+
# account_id int(11) default NULL,
|
263
|
+
# name varchar default NULL,
|
264
|
+
# PRIMARY KEY (id)
|
265
|
+
# )
|
266
|
+
#
|
267
|
+
# CREATE TABLE accounts (
|
268
|
+
# id int(11) NOT NULL auto_increment,
|
269
|
+
# name varchar default NULL,
|
270
|
+
# PRIMARY KEY (id)
|
271
|
+
# )
|
272
|
+
#
|
273
|
+
# == Unsaved objects and associations
|
274
|
+
#
|
275
|
+
# You can manipulate objects and associations before they are saved to the database, but there is some special behavior you should be
|
276
|
+
# aware of, mostly involving the saving of associated objects.
|
277
|
+
#
|
278
|
+
# Unless you enable the :autosave option on a <tt>has_one</tt>, <tt>belongs_to</tt>,
|
279
|
+
# <tt>has_many</tt>, or <tt>has_and_belongs_to_many</tt> association,
|
280
|
+
# in which case the members are always saved.
|
281
|
+
#
|
282
|
+
# === One-to-one associations
|
283
|
+
#
|
284
|
+
# * Assigning an object to a +has_one+ association automatically saves that object and the object being replaced (if there is one), in
|
285
|
+
# order to update their primary keys - except if the parent object is unsaved (<tt>new_record? == true</tt>).
|
286
|
+
# * If either of these saves fail (due to one of the objects being invalid) the assignment statement returns +false+ and the assignment
|
287
|
+
# is cancelled.
|
288
|
+
# * If you wish to assign an object to a +has_one+ association without saving it, use the <tt>association.build</tt> method (documented below).
|
289
|
+
# * Assigning an object to a +belongs_to+ association does not save the object, since the foreign key field belongs on the parent. It
|
290
|
+
# does not save the parent either.
|
291
|
+
#
|
292
|
+
# === Collections
|
293
|
+
#
|
294
|
+
# * Adding an object to a collection (+has_many+ or +has_and_belongs_to_many+) automatically saves that object, except if the parent object
|
295
|
+
# (the owner of the collection) is not yet stored in the database.
|
296
|
+
# * If saving any of the objects being added to a collection (via <tt>push</tt> or similar) fails, then <tt>push</tt> returns +false+.
|
297
|
+
# * You can add an object to a collection without automatically saving it by using the <tt>collection.build</tt> method (documented below).
|
298
|
+
# * All unsaved (<tt>new_record? == true</tt>) members of the collection are automatically saved when the parent is saved.
|
299
|
+
#
|
300
|
+
# === Association callbacks
|
301
|
+
#
|
302
|
+
# Similar to the normal callbacks that hook into the lifecycle of an Active Record object, you can also define callbacks that get
|
303
|
+
# triggered when you add an object to or remove an object from an association collection. Example:
|
304
|
+
#
|
305
|
+
# class Project
|
306
|
+
# has_and_belongs_to_many :developers, :after_add => :evaluate_velocity
|
307
|
+
#
|
308
|
+
# def evaluate_velocity(developer)
|
309
|
+
# ...
|
310
|
+
# end
|
311
|
+
# end
|
312
|
+
#
|
313
|
+
# It's possible to stack callbacks by passing them as an array. Example:
|
314
|
+
#
|
315
|
+
# class Project
|
316
|
+
# has_and_belongs_to_many :developers, :after_add => [:evaluate_velocity, Proc.new { |p, d| p.shipping_date = Time.now}]
|
317
|
+
# end
|
318
|
+
#
|
319
|
+
# Possible callbacks are: +before_add+, +after_add+, +before_remove+ and +after_remove+.
|
320
|
+
#
|
321
|
+
# Should any of the +before_add+ callbacks throw an exception, the object does not get added to the collection. Same with
|
322
|
+
# the +before_remove+ callbacks; if an exception is thrown the object doesn't get removed.
|
323
|
+
#
|
324
|
+
# === Association extensions
|
325
|
+
#
|
326
|
+
# The proxy objects that control the access to associations can be extended through anonymous modules. This is especially
|
327
|
+
# beneficial for adding new finders, creators, and other factory-type methods that are only used as part of this association.
|
328
|
+
# Example:
|
329
|
+
#
|
330
|
+
# class Account < ActiveRecord::Base
|
331
|
+
# has_many :people do
|
332
|
+
# def find_or_create_by_name(name)
|
333
|
+
# first_name, last_name = name.split(" ", 2)
|
334
|
+
# find_or_create_by_first_name_and_last_name(first_name, last_name)
|
335
|
+
# end
|
336
|
+
# end
|
337
|
+
# end
|
338
|
+
#
|
339
|
+
# person = Account.find(:first).people.find_or_create_by_name("David Heinemeier Hansson")
|
340
|
+
# person.first_name # => "David"
|
341
|
+
# person.last_name # => "Heinemeier Hansson"
|
342
|
+
#
|
343
|
+
# If you need to share the same extensions between many associations, you can use a named extension module. Example:
|
344
|
+
#
|
345
|
+
# module FindOrCreateByNameExtension
|
346
|
+
# def find_or_create_by_name(name)
|
347
|
+
# first_name, last_name = name.split(" ", 2)
|
348
|
+
# find_or_create_by_first_name_and_last_name(first_name, last_name)
|
349
|
+
# end
|
350
|
+
# end
|
351
|
+
#
|
352
|
+
# class Account < ActiveRecord::Base
|
353
|
+
# has_many :people, :extend => FindOrCreateByNameExtension
|
354
|
+
# end
|
355
|
+
#
|
356
|
+
# class Company < ActiveRecord::Base
|
357
|
+
# has_many :people, :extend => FindOrCreateByNameExtension
|
358
|
+
# end
|
359
|
+
#
|
360
|
+
# If you need to use multiple named extension modules, you can specify an array of modules with the <tt>:extend</tt> option.
|
361
|
+
# In the case of name conflicts between methods in the modules, methods in modules later in the array supercede
|
362
|
+
# those earlier in the array. Example:
|
363
|
+
#
|
364
|
+
# class Account < ActiveRecord::Base
|
365
|
+
# has_many :people, :extend => [FindOrCreateByNameExtension, FindRecentExtension]
|
366
|
+
# end
|
367
|
+
#
|
368
|
+
# Some extensions can only be made to work with knowledge of the association proxy's internals.
|
369
|
+
# Extensions can access relevant state using accessors on the association proxy:
|
370
|
+
#
|
371
|
+
# * +proxy_owner+ - Returns the object the association is part of.
|
372
|
+
# * +proxy_reflection+ - Returns the reflection object that describes the association.
|
373
|
+
# * +proxy_target+ - Returns the associated object for +belongs_to+ and +has_one+, or the collection of associated objects for +has_many+ and +has_and_belongs_to_many+.
|
374
|
+
#
|
375
|
+
# === Association Join Models
|
376
|
+
#
|
377
|
+
# Has Many associations can be configured with the <tt>:through</tt> option to use an explicit join model to retrieve the data. This
|
378
|
+
# operates similarly to a +has_and_belongs_to_many+ association. The advantage is that you're able to add validations,
|
379
|
+
# callbacks, and extra attributes on the join model. Consider the following schema:
|
380
|
+
#
|
381
|
+
# class Author < ActiveRecord::Base
|
382
|
+
# has_many :authorships
|
383
|
+
# has_many :books, :through => :authorships
|
384
|
+
# end
|
385
|
+
#
|
386
|
+
# class Authorship < ActiveRecord::Base
|
387
|
+
# belongs_to :author
|
388
|
+
# belongs_to :book
|
389
|
+
# end
|
390
|
+
#
|
391
|
+
# @author = Author.find :first
|
392
|
+
# @author.authorships.collect { |a| a.book } # selects all books that the author's authorships belong to.
|
393
|
+
# @author.books # selects all books by using the Authorship join model
|
394
|
+
#
|
395
|
+
# You can also go through a +has_many+ association on the join model:
|
396
|
+
#
|
397
|
+
# class Firm < ActiveRecord::Base
|
398
|
+
# has_many :clients
|
399
|
+
# has_many :invoices, :through => :clients
|
400
|
+
# end
|
401
|
+
#
|
402
|
+
# class Client < ActiveRecord::Base
|
403
|
+
# belongs_to :firm
|
404
|
+
# has_many :invoices
|
405
|
+
# end
|
406
|
+
#
|
407
|
+
# class Invoice < ActiveRecord::Base
|
408
|
+
# belongs_to :client
|
409
|
+
# end
|
410
|
+
#
|
411
|
+
# @firm = Firm.find :first
|
412
|
+
# @firm.clients.collect { |c| c.invoices }.flatten # select all invoices for all clients of the firm
|
413
|
+
# @firm.invoices # selects all invoices by going through the Client join model.
|
414
|
+
#
|
415
|
+
# Similarly you can go through a +has_one+ association on the join model:
|
416
|
+
#
|
417
|
+
# class Group < ActiveRecord::Base
|
418
|
+
# has_many :users
|
419
|
+
# has_many :avatars, :through => :users
|
420
|
+
# end
|
421
|
+
#
|
422
|
+
# class User < ActiveRecord::Base
|
423
|
+
# belongs_to :group
|
424
|
+
# has_one :avatar
|
425
|
+
# end
|
426
|
+
#
|
427
|
+
# class Avatar < ActiveRecord::Base
|
428
|
+
# belongs_to :user
|
429
|
+
# end
|
430
|
+
#
|
431
|
+
# @group = Group.first
|
432
|
+
# @group.users.collect { |u| u.avatar }.flatten # select all avatars for all users in the group
|
433
|
+
# @group.avatars # selects all avatars by going through the User join model.
|
434
|
+
#
|
435
|
+
# An important caveat with going through +has_one+ or +has_many+ associations on the join model is that these associations are
|
436
|
+
# *read-only*. For example, the following would not work following the previous example:
|
437
|
+
#
|
438
|
+
# @group.avatars << Avatar.new # this would work if User belonged_to Avatar rather than the other way around.
|
439
|
+
# @group.avatars.delete(@group.avatars.last) # so would this
|
440
|
+
#
|
441
|
+
# === Polymorphic Associations
|
442
|
+
#
|
443
|
+
# Polymorphic associations on models are not restricted on what types of models they can be associated with. Rather, they
|
444
|
+
# specify an interface that a +has_many+ association must adhere to.
|
445
|
+
#
|
446
|
+
# class Asset < ActiveRecord::Base
|
447
|
+
# belongs_to :attachable, :polymorphic => true
|
448
|
+
# end
|
449
|
+
#
|
450
|
+
# class Post < ActiveRecord::Base
|
451
|
+
# has_many :assets, :as => :attachable # The :as option specifies the polymorphic interface to use.
|
452
|
+
# end
|
453
|
+
#
|
454
|
+
# @asset.attachable = @post
|
455
|
+
#
|
456
|
+
# This works by using a type column in addition to a foreign key to specify the associated record. In the Asset example, you'd need
|
457
|
+
# an +attachable_id+ integer column and an +attachable_type+ string column.
|
458
|
+
#
|
459
|
+
# Using polymorphic associations in combination with single table inheritance (STI) is a little tricky. In order
|
460
|
+
# for the associations to work as expected, ensure that you store the base model for the STI models in the
|
461
|
+
# type column of the polymorphic association. To continue with the asset example above, suppose there are guest posts
|
462
|
+
# and member posts that use the posts table for STI. In this case, there must be a +type+ column in the posts table.
|
463
|
+
#
|
464
|
+
# class Asset < ActiveRecord::Base
|
465
|
+
# belongs_to :attachable, :polymorphic => true
|
466
|
+
#
|
467
|
+
# def attachable_type=(sType)
|
468
|
+
# super(sType.to_s.classify.constantize.base_class.to_s)
|
469
|
+
# end
|
470
|
+
# end
|
471
|
+
#
|
472
|
+
# class Post < ActiveRecord::Base
|
473
|
+
# # because we store "Post" in attachable_type now :dependent => :destroy will work
|
474
|
+
# has_many :assets, :as => :attachable, :dependent => :destroy
|
475
|
+
# end
|
476
|
+
#
|
477
|
+
# class GuestPost < Post
|
478
|
+
# end
|
479
|
+
#
|
480
|
+
# class MemberPost < Post
|
481
|
+
# end
|
482
|
+
#
|
483
|
+
# == Caching
|
484
|
+
#
|
485
|
+
# All of the methods are built on a simple caching principle that will keep the result of the last query around unless specifically
|
486
|
+
# instructed not to. The cache is even shared across methods to make it even cheaper to use the macro-added methods without
|
487
|
+
# worrying too much about performance at the first go. Example:
|
488
|
+
#
|
489
|
+
# project.milestones # fetches milestones from the database
|
490
|
+
# project.milestones.size # uses the milestone cache
|
491
|
+
# project.milestones.empty? # uses the milestone cache
|
492
|
+
# project.milestones(true).size # fetches milestones from the database
|
493
|
+
# project.milestones # uses the milestone cache
|
494
|
+
#
|
495
|
+
# == Eager loading of associations
|
496
|
+
#
|
497
|
+
# Eager loading is a way to find objects of a certain class and a number of named associations. This is
|
498
|
+
# one of the easiest ways of to prevent the dreaded 1+N problem in which fetching 100 posts that each need to display their author
|
499
|
+
# triggers 101 database queries. Through the use of eager loading, the 101 queries can be reduced to 2. Example:
|
500
|
+
#
|
501
|
+
# class Post < ActiveRecord::Base
|
502
|
+
# belongs_to :author
|
503
|
+
# has_many :comments
|
504
|
+
# end
|
505
|
+
#
|
506
|
+
# Consider the following loop using the class above:
|
507
|
+
#
|
508
|
+
# for post in Post.all
|
509
|
+
# puts "Post: " + post.title
|
510
|
+
# puts "Written by: " + post.author.name
|
511
|
+
# puts "Last comment on: " + post.comments.first.created_on
|
512
|
+
# end
|
513
|
+
#
|
514
|
+
# To iterate over these one hundred posts, we'll generate 201 database queries. Let's first just optimize it for retrieving the author:
|
515
|
+
#
|
516
|
+
# for post in Post.find(:all, :include => :author)
|
517
|
+
#
|
518
|
+
# This references the name of the +belongs_to+ association that also used the <tt>:author</tt> symbol. After loading the posts, find
|
519
|
+
# will collect the +author_id+ from each one and load all the referenced authors with one query. Doing so will cut down the number of queries from 201 to 102.
|
520
|
+
#
|
521
|
+
# We can improve upon the situation further by referencing both associations in the finder with:
|
522
|
+
#
|
523
|
+
# for post in Post.find(:all, :include => [ :author, :comments ])
|
524
|
+
#
|
525
|
+
# This will load all comments with a single query. This reduces the total number of queries to 3. More generally the number of queries
|
526
|
+
# will be 1 plus the number of associations named (except if some of the associations are polymorphic +belongs_to+ - see below).
|
527
|
+
#
|
528
|
+
# To include a deep hierarchy of associations, use a hash:
|
529
|
+
#
|
530
|
+
# for post in Post.find(:all, :include => [ :author, { :comments => { :author => :gravatar } } ])
|
531
|
+
#
|
532
|
+
# That'll grab not only all the comments but all their authors and gravatar pictures. You can mix and match
|
533
|
+
# symbols, arrays and hashes in any combination to describe the associations you want to load.
|
534
|
+
#
|
535
|
+
# All of this power shouldn't fool you into thinking that you can pull out huge amounts of data with no performance penalty just because you've reduced
|
536
|
+
# the number of queries. The database still needs to send all the data to Active Record and it still needs to be processed. So it's no
|
537
|
+
# catch-all for performance problems, but it's a great way to cut down on the number of queries in a situation as the one described above.
|
538
|
+
#
|
539
|
+
# Since only one table is loaded at a time, conditions or orders cannot reference tables other than the main one. If this is the case
|
540
|
+
# Active Record falls back to the previously used LEFT OUTER JOIN based strategy. For example
|
541
|
+
#
|
542
|
+
# Post.find(:all, :include => [ :author, :comments ], :conditions => ['comments.approved = ?', true])
|
543
|
+
#
|
544
|
+
# will result in a single SQL query with joins along the lines of: <tt>LEFT OUTER JOIN comments ON comments.post_id = posts.id</tt> and
|
545
|
+
# <tt>LEFT OUTER JOIN authors ON authors.id = posts.author_id</tt>. Note that using conditions like this can have unintended consequences.
|
546
|
+
# In the above example posts with no approved comments are not returned at all, because the conditions apply to the SQL statement as a whole
|
547
|
+
# and not just to the association. You must disambiguate column references for this fallback to happen, for example
|
548
|
+
# <tt>:order => "author.name DESC"</tt> will work but <tt>:order => "name DESC"</tt> will not.
|
549
|
+
#
|
550
|
+
# If you do want eagerload only some members of an association it is usually more natural to <tt>:include</tt> an association
|
551
|
+
# which has conditions defined on it:
|
552
|
+
#
|
553
|
+
# class Post < ActiveRecord::Base
|
554
|
+
# has_many :approved_comments, :class_name => 'Comment', :conditions => ['approved = ?', true]
|
555
|
+
# end
|
556
|
+
#
|
557
|
+
# Post.find(:all, :include => :approved_comments)
|
558
|
+
#
|
559
|
+
# will load posts and eager load the +approved_comments+ association, which contains only those comments that have been approved.
|
560
|
+
#
|
561
|
+
# If you eager load an association with a specified <tt>:limit</tt> option, it will be ignored, returning all the associated objects:
|
562
|
+
#
|
563
|
+
# class Picture < ActiveRecord::Base
|
564
|
+
# has_many :most_recent_comments, :class_name => 'Comment', :order => 'id DESC', :limit => 10
|
565
|
+
# end
|
566
|
+
#
|
567
|
+
# Picture.find(:first, :include => :most_recent_comments).most_recent_comments # => returns all associated comments.
|
568
|
+
#
|
569
|
+
# When eager loaded, conditions are interpolated in the context of the model class, not the model instance. Conditions are lazily interpolated
|
570
|
+
# before the actual model exists.
|
571
|
+
#
|
572
|
+
# Eager loading is supported with polymorphic associations.
|
573
|
+
#
|
574
|
+
# class Address < ActiveRecord::Base
|
575
|
+
# belongs_to :addressable, :polymorphic => true
|
576
|
+
# end
|
577
|
+
#
|
578
|
+
# A call that tries to eager load the addressable model
|
579
|
+
#
|
580
|
+
# Address.find(:all, :include => :addressable)
|
581
|
+
#
|
582
|
+
# will execute one query to load the addresses and load the addressables with one query per addressable type.
|
583
|
+
# For example if all the addressables are either of class Person or Company then a total of 3 queries will be executed. The list of
|
584
|
+
# addressable types to load is determined on the back of the addresses loaded. This is not supported if Active Record has to fallback
|
585
|
+
# to the previous implementation of eager loading and will raise ActiveRecord::EagerLoadPolymorphicError. The reason is that the parent
|
586
|
+
# model's type is a column value so its corresponding table name cannot be put in the +FROM+/+JOIN+ clauses of that query.
|
587
|
+
#
|
588
|
+
# == Table Aliasing
|
589
|
+
#
|
590
|
+
# Active Record uses table aliasing in the case that a table is referenced multiple times in a join. If a table is referenced only once,
|
591
|
+
# the standard table name is used. The second time, the table is aliased as <tt>#{reflection_name}_#{parent_table_name}</tt>. Indexes are appended
|
592
|
+
# for any more successive uses of the table name.
|
593
|
+
#
|
594
|
+
# Post.find :all, :joins => :comments
|
595
|
+
# # => SELECT ... FROM posts INNER JOIN comments ON ...
|
596
|
+
# Post.find :all, :joins => :special_comments # STI
|
597
|
+
# # => SELECT ... FROM posts INNER JOIN comments ON ... AND comments.type = 'SpecialComment'
|
598
|
+
# Post.find :all, :joins => [:comments, :special_comments] # special_comments is the reflection name, posts is the parent table name
|
599
|
+
# # => SELECT ... FROM posts INNER JOIN comments ON ... INNER JOIN comments special_comments_posts
|
600
|
+
#
|
601
|
+
# Acts as tree example:
|
602
|
+
#
|
603
|
+
# TreeMixin.find :all, :joins => :children
|
604
|
+
# # => SELECT ... FROM mixins INNER JOIN mixins childrens_mixins ...
|
605
|
+
# TreeMixin.find :all, :joins => {:children => :parent}
|
606
|
+
# # => SELECT ... FROM mixins INNER JOIN mixins childrens_mixins ...
|
607
|
+
# INNER JOIN parents_mixins ...
|
608
|
+
# TreeMixin.find :all, :joins => {:children => {:parent => :children}}
|
609
|
+
# # => SELECT ... FROM mixins INNER JOIN mixins childrens_mixins ...
|
610
|
+
# INNER JOIN parents_mixins ...
|
611
|
+
# INNER JOIN mixins childrens_mixins_2
|
612
|
+
#
|
613
|
+
# Has and Belongs to Many join tables use the same idea, but add a <tt>_join</tt> suffix:
|
614
|
+
#
|
615
|
+
# Post.find :all, :joins => :categories
|
616
|
+
# # => SELECT ... FROM posts INNER JOIN categories_posts ... INNER JOIN categories ...
|
617
|
+
# Post.find :all, :joins => {:categories => :posts}
|
618
|
+
# # => SELECT ... FROM posts INNER JOIN categories_posts ... INNER JOIN categories ...
|
619
|
+
# INNER JOIN categories_posts posts_categories_join INNER JOIN posts posts_categories
|
620
|
+
# Post.find :all, :joins => {:categories => {:posts => :categories}}
|
621
|
+
# # => SELECT ... FROM posts INNER JOIN categories_posts ... INNER JOIN categories ...
|
622
|
+
# INNER JOIN categories_posts posts_categories_join INNER JOIN posts posts_categories
|
623
|
+
# INNER JOIN categories_posts categories_posts_join INNER JOIN categories categories_posts_2
|
624
|
+
#
|
625
|
+
# If you wish to specify your own custom joins using a <tt>:joins</tt> option, those table names will take precedence over the eager associations:
|
626
|
+
#
|
627
|
+
# Post.find :all, :joins => :comments, :joins => "inner join comments ..."
|
628
|
+
# # => SELECT ... FROM posts INNER JOIN comments_posts ON ... INNER JOIN comments ...
|
629
|
+
# Post.find :all, :joins => [:comments, :special_comments], :joins => "inner join comments ..."
|
630
|
+
# # => SELECT ... FROM posts INNER JOIN comments comments_posts ON ...
|
631
|
+
# INNER JOIN comments special_comments_posts ...
|
632
|
+
# INNER JOIN comments ...
|
633
|
+
#
|
634
|
+
# Table aliases are automatically truncated according to the maximum length of table identifiers according to the specific database.
|
635
|
+
#
|
636
|
+
# == Modules
|
637
|
+
#
|
638
|
+
# By default, associations will look for objects within the current module scope. Consider:
|
639
|
+
#
|
640
|
+
# module MyApplication
|
641
|
+
# module Business
|
642
|
+
# class Firm < ActiveRecord::Base
|
643
|
+
# has_many :clients
|
644
|
+
# end
|
645
|
+
#
|
646
|
+
# class Client < ActiveRecord::Base; end
|
647
|
+
# end
|
648
|
+
# end
|
649
|
+
#
|
650
|
+
# When <tt>Firm#clients</tt> is called, it will in turn call <tt>MyApplication::Business::Client.find_all_by_firm_id(firm.id)</tt>.
|
651
|
+
# If you want to associate with a class in another module scope, this can be done by specifying the complete class name.
|
652
|
+
# Example:
|
653
|
+
#
|
654
|
+
# module MyApplication
|
655
|
+
# module Business
|
656
|
+
# class Firm < ActiveRecord::Base; end
|
657
|
+
# end
|
658
|
+
#
|
659
|
+
# module Billing
|
660
|
+
# class Account < ActiveRecord::Base
|
661
|
+
# belongs_to :firm, :class_name => "MyApplication::Business::Firm"
|
662
|
+
# end
|
663
|
+
# end
|
664
|
+
# end
|
665
|
+
#
|
666
|
+
# == Type safety with <tt>ActiveRecord::AssociationTypeMismatch</tt>
|
667
|
+
#
|
668
|
+
# If you attempt to assign an object to an association that doesn't match the inferred or specified <tt>:class_name</tt>, you'll
|
669
|
+
# get an <tt>ActiveRecord::AssociationTypeMismatch</tt>.
|
670
|
+
#
|
671
|
+
# == Options
|
672
|
+
#
|
673
|
+
# All of the association macros can be specialized through options. This makes cases more complex than the simple and guessable ones
|
674
|
+
# possible.
|
675
|
+
module ClassMethods
|
676
|
+
# Specifies a one-to-many association. The following methods for retrieval and query of
|
677
|
+
# collections of associated objects will be added:
|
678
|
+
#
|
679
|
+
# [collection(force_reload = false)]
|
680
|
+
# Returns an array of all the associated objects.
|
681
|
+
# An empty array is returned if none are found.
|
682
|
+
# [collection<<(object, ...)]
|
683
|
+
# Adds one or more objects to the collection by setting their foreign keys to the collection's primary key.
|
684
|
+
# [collection.delete(object, ...)]
|
685
|
+
# Removes one or more objects from the collection by setting their foreign keys to +NULL+.
|
686
|
+
# Objects will be in addition destroyed if they're associated with <tt>:dependent => :destroy</tt>,
|
687
|
+
# and deleted if they're associated with <tt>:dependent => :delete_all</tt>.
|
688
|
+
# [collection=objects]
|
689
|
+
# Replaces the collections content by deleting and adding objects as appropriate.
|
690
|
+
# [collection_singular_ids]
|
691
|
+
# Returns an array of the associated objects' ids
|
692
|
+
# [collection_singular_ids=ids]
|
693
|
+
# Replace the collection with the objects identified by the primary keys in +ids+
|
694
|
+
# [collection.clear]
|
695
|
+
# Removes every object from the collection. This destroys the associated objects if they
|
696
|
+
# are associated with <tt>:dependent => :destroy</tt>, deletes them directly from the
|
697
|
+
# database if <tt>:dependent => :delete_all</tt>, otherwise sets their foreign keys to +NULL+.
|
698
|
+
# [collection.empty?]
|
699
|
+
# Returns +true+ if there are no associated objects.
|
700
|
+
# [collection.size]
|
701
|
+
# Returns the number of associated objects.
|
702
|
+
# [collection.find(...)]
|
703
|
+
# Finds an associated object according to the same rules as ActiveRecord::Base.find.
|
704
|
+
# [collection.exists?(...)]
|
705
|
+
# Checks whether an associated object with the given conditions exists.
|
706
|
+
# Uses the same rules as ActiveRecord::Base.exists?.
|
707
|
+
# [collection.build(attributes = {}, ...)]
|
708
|
+
# Returns one or more new objects of the collection type that have been instantiated
|
709
|
+
# with +attributes+ and linked to this object through a foreign key, but have not yet
|
710
|
+
# been saved. <b>Note:</b> This only works if an associated object already exists, not if
|
711
|
+
# it's +nil+!
|
712
|
+
# [collection.create(attributes = {})]
|
713
|
+
# Returns a new object of the collection type that has been instantiated
|
714
|
+
# with +attributes+, linked to this object through a foreign key, and that has already
|
715
|
+
# been saved (if it passed the validation). <b>Note:</b> This only works if an associated
|
716
|
+
# object already exists, not if it's +nil+!
|
717
|
+
#
|
718
|
+
# (*Note*: +collection+ is replaced with the symbol passed as the first argument, so
|
719
|
+
# <tt>has_many :clients</tt> would add among others <tt>clients.empty?</tt>.)
|
720
|
+
#
|
721
|
+
# === Example
|
722
|
+
#
|
723
|
+
# Example: A Firm class declares <tt>has_many :clients</tt>, which will add:
|
724
|
+
# * <tt>Firm#clients</tt> (similar to <tt>Clients.find :all, :conditions => ["firm_id = ?", id]</tt>)
|
725
|
+
# * <tt>Firm#clients<<</tt>
|
726
|
+
# * <tt>Firm#clients.delete</tt>
|
727
|
+
# * <tt>Firm#clients=</tt>
|
728
|
+
# * <tt>Firm#client_ids</tt>
|
729
|
+
# * <tt>Firm#client_ids=</tt>
|
730
|
+
# * <tt>Firm#clients.clear</tt>
|
731
|
+
# * <tt>Firm#clients.empty?</tt> (similar to <tt>firm.clients.size == 0</tt>)
|
732
|
+
# * <tt>Firm#clients.size</tt> (similar to <tt>Client.count "firm_id = #{id}"</tt>)
|
733
|
+
# * <tt>Firm#clients.find</tt> (similar to <tt>Client.find(id, :conditions => "firm_id = #{id}")</tt>)
|
734
|
+
# * <tt>Firm#clients.exists?(:name => 'ACME')</tt> (similar to <tt>Client.exists?(:name => 'ACME', :firm_id => firm.id)</tt>)
|
735
|
+
# * <tt>Firm#clients.build</tt> (similar to <tt>Client.new("firm_id" => id)</tt>)
|
736
|
+
# * <tt>Firm#clients.create</tt> (similar to <tt>c = Client.new("firm_id" => id); c.save; c</tt>)
|
737
|
+
# The declaration can also include an options hash to specialize the behavior of the association.
|
738
|
+
#
|
739
|
+
# === Supported options
|
740
|
+
# [:class_name]
|
741
|
+
# Specify the class name of the association. Use it only if that name can't be inferred
|
742
|
+
# from the association name. So <tt>has_many :products</tt> will by default be linked to the Product class, but
|
743
|
+
# if the real class name is SpecialProduct, you'll have to specify it with this option.
|
744
|
+
# [:conditions]
|
745
|
+
# Specify the conditions that the associated objects must meet in order to be included as a +WHERE+
|
746
|
+
# SQL fragment, such as <tt>price > 5 AND name LIKE 'B%'</tt>. Record creations from the association are scoped if a hash
|
747
|
+
# is used. <tt>has_many :posts, :conditions => {:published => true}</tt> will create published posts with <tt>@blog.posts.create</tt>
|
748
|
+
# or <tt>@blog.posts.build</tt>.
|
749
|
+
# [:order]
|
750
|
+
# Specify the order in which the associated objects are returned as an <tt>ORDER BY</tt> SQL fragment,
|
751
|
+
# such as <tt>last_name, first_name DESC</tt>.
|
752
|
+
# [:foreign_key]
|
753
|
+
# Specify the foreign key used for the association. By default this is guessed to be the name
|
754
|
+
# of this class in lower-case and "_id" suffixed. So a Person class that makes a +has_many+ association will use "person_id"
|
755
|
+
# as the default <tt>:foreign_key</tt>.
|
756
|
+
# [:primary_key]
|
757
|
+
# Specify the method that returns the primary key used for the association. By default this is +id+.
|
758
|
+
# [:dependent]
|
759
|
+
# If set to <tt>:destroy</tt> all the associated objects are destroyed
|
760
|
+
# alongside this object by calling their +destroy+ method. If set to <tt>:delete_all</tt> all associated
|
761
|
+
# objects are deleted *without* calling their +destroy+ method. If set to <tt>:nullify</tt> all associated
|
762
|
+
# objects' foreign keys are set to +NULL+ *without* calling their +save+ callbacks. *Warning:* This option is ignored when also using
|
763
|
+
# the <tt>:through</tt> option.
|
764
|
+
# [:finder_sql]
|
765
|
+
# Specify a complete SQL statement to fetch the association. This is a good way to go for complex
|
766
|
+
# associations that depend on multiple tables. Note: When this option is used, +find_in_collection+ is _not_ added.
|
767
|
+
# [:counter_sql]
|
768
|
+
# Specify a complete SQL statement to fetch the size of the association. If <tt>:finder_sql</tt> is
|
769
|
+
# specified but not <tt>:counter_sql</tt>, <tt>:counter_sql</tt> will be generated by replacing <tt>SELECT ... FROM</tt> with <tt>SELECT COUNT(*) FROM</tt>.
|
770
|
+
# [:extend]
|
771
|
+
# Specify a named module for extending the proxy. See "Association extensions".
|
772
|
+
# [:include]
|
773
|
+
# Specify second-order associations that should be eager loaded when the collection is loaded.
|
774
|
+
# [:group]
|
775
|
+
# An attribute name by which the result should be grouped. Uses the <tt>GROUP BY</tt> SQL-clause.
|
776
|
+
# [:having]
|
777
|
+
# Combined with +:group+ this can be used to filter the records that a <tt>GROUP BY</tt> returns. Uses the <tt>HAVING</tt> SQL-clause.
|
778
|
+
# [:limit]
|
779
|
+
# An integer determining the limit on the number of rows that should be returned.
|
780
|
+
# [:offset]
|
781
|
+
# An integer determining the offset from where the rows should be fetched. So at 5, it would skip the first 4 rows.
|
782
|
+
# [:select]
|
783
|
+
# By default, this is <tt>*</tt> as in <tt>SELECT * FROM</tt>, but can be changed if you, for example, want to do a join
|
784
|
+
# but not include the joined columns. Do not forget to include the primary and foreign keys, otherwise it will raise an error.
|
785
|
+
# [:as]
|
786
|
+
# Specifies a polymorphic interface (See <tt>belongs_to</tt>).
|
787
|
+
# [:through]
|
788
|
+
# Specifies a Join Model through which to perform the query. Options for <tt>:class_name</tt> and <tt>:foreign_key</tt>
|
789
|
+
# are ignored, as the association uses the source reflection. You can only use a <tt>:through</tt> query through a <tt>belongs_to</tt>
|
790
|
+
# <tt>has_one</tt> or <tt>has_many</tt> association on the join model.
|
791
|
+
# [:source]
|
792
|
+
# Specifies the source association name used by <tt>has_many :through</tt> queries. Only use it if the name cannot be
|
793
|
+
# inferred from the association. <tt>has_many :subscribers, :through => :subscriptions</tt> will look for either <tt>:subscribers</tt> or
|
794
|
+
# <tt>:subscriber</tt> on Subscription, unless a <tt>:source</tt> is given.
|
795
|
+
# [:source_type]
|
796
|
+
# Specifies type of the source association used by <tt>has_many :through</tt> queries where the source
|
797
|
+
# association is a polymorphic +belongs_to+.
|
798
|
+
# [:uniq]
|
799
|
+
# If true, duplicates will be omitted from the collection. Useful in conjunction with <tt>:through</tt>.
|
800
|
+
# [:readonly]
|
801
|
+
# If true, all the associated objects are readonly through the association.
|
802
|
+
# [:validate]
|
803
|
+
# If false, don't validate the associated objects when saving the parent object. true by default.
|
804
|
+
# [:autosave]
|
805
|
+
# If true, always save any loaded members and destroy members marked for destruction, when saving the parent object. Off by default.
|
806
|
+
#
|
807
|
+
# Option examples:
|
808
|
+
# has_many :comments, :order => "posted_on"
|
809
|
+
# has_many :comments, :include => :author
|
810
|
+
# has_many :people, :class_name => "Person", :conditions => "deleted = 0", :order => "name"
|
811
|
+
# has_many :tracks, :order => "position", :dependent => :destroy
|
812
|
+
# has_many :comments, :dependent => :nullify
|
813
|
+
# has_many :tags, :as => :taggable
|
814
|
+
# has_many :reports, :readonly => true
|
815
|
+
# has_many :subscribers, :through => :subscriptions, :source => :user
|
816
|
+
# has_many :subscribers, :class_name => "Person", :finder_sql =>
|
817
|
+
# 'SELECT DISTINCT people.* ' +
|
818
|
+
# 'FROM people p, post_subscriptions ps ' +
|
819
|
+
# 'WHERE ps.post_id = #{id} AND ps.person_id = p.id ' +
|
820
|
+
# 'ORDER BY p.first_name'
|
821
|
+
def has_many(association_id, options = {}, &extension)
|
822
|
+
reflection = create_has_many_reflection(association_id, options, &extension)
|
823
|
+
configure_dependency_for_has_many(reflection)
|
824
|
+
add_association_callbacks(reflection.name, reflection.options)
|
825
|
+
|
826
|
+
if options[:through]
|
827
|
+
collection_accessor_methods(reflection, HasManyThroughAssociation)
|
828
|
+
else
|
829
|
+
collection_accessor_methods(reflection, HasManyAssociation)
|
830
|
+
end
|
831
|
+
end
|
832
|
+
|
833
|
+
# Specifies a one-to-one association with another class. This method should only be used
|
834
|
+
# if the other class contains the foreign key. If the current class contains the foreign key,
|
835
|
+
# then you should use +belongs_to+ instead. See also ActiveRecord::Associations::ClassMethods's overview
|
836
|
+
# on when to use has_one and when to use belongs_to.
|
837
|
+
#
|
838
|
+
# The following methods for retrieval and query of a single associated object will be added:
|
839
|
+
#
|
840
|
+
# [association(force_reload = false)]
|
841
|
+
# Returns the associated object. +nil+ is returned if none is found.
|
842
|
+
# [association=(associate)]
|
843
|
+
# Assigns the associate object, extracts the primary key, sets it as the foreign key,
|
844
|
+
# and saves the associate object.
|
845
|
+
# [build_association(attributes = {})]
|
846
|
+
# Returns a new object of the associated type that has been instantiated
|
847
|
+
# with +attributes+ and linked to this object through a foreign key, but has not
|
848
|
+
# yet been saved. <b>Note:</b> This ONLY works if an association already exists.
|
849
|
+
# It will NOT work if the association is +nil+.
|
850
|
+
# [create_association(attributes = {})]
|
851
|
+
# Returns a new object of the associated type that has been instantiated
|
852
|
+
# with +attributes+, linked to this object through a foreign key, and that
|
853
|
+
# has already been saved (if it passed the validation).
|
854
|
+
#
|
855
|
+
# (+association+ is replaced with the symbol passed as the first argument, so
|
856
|
+
# <tt>has_one :manager</tt> would add among others <tt>manager.nil?</tt>.)
|
857
|
+
#
|
858
|
+
# === Example
|
859
|
+
#
|
860
|
+
# An Account class declares <tt>has_one :beneficiary</tt>, which will add:
|
861
|
+
# * <tt>Account#beneficiary</tt> (similar to <tt>Beneficiary.find(:first, :conditions => "account_id = #{id}")</tt>)
|
862
|
+
# * <tt>Account#beneficiary=(beneficiary)</tt> (similar to <tt>beneficiary.account_id = account.id; beneficiary.save</tt>)
|
863
|
+
# * <tt>Account#build_beneficiary</tt> (similar to <tt>Beneficiary.new("account_id" => id)</tt>)
|
864
|
+
# * <tt>Account#create_beneficiary</tt> (similar to <tt>b = Beneficiary.new("account_id" => id); b.save; b</tt>)
|
865
|
+
#
|
866
|
+
# === Options
|
867
|
+
#
|
868
|
+
# The declaration can also include an options hash to specialize the behavior of the association.
|
869
|
+
#
|
870
|
+
# Options are:
|
871
|
+
# [:class_name]
|
872
|
+
# Specify the class name of the association. Use it only if that name can't be inferred
|
873
|
+
# from the association name. So <tt>has_one :manager</tt> will by default be linked to the Manager class, but
|
874
|
+
# if the real class name is Person, you'll have to specify it with this option.
|
875
|
+
# [:conditions]
|
876
|
+
# Specify the conditions that the associated object must meet in order to be included as a +WHERE+
|
877
|
+
# SQL fragment, such as <tt>rank = 5</tt>.
|
878
|
+
# [:order]
|
879
|
+
# Specify the order in which the associated objects are returned as an <tt>ORDER BY</tt> SQL fragment,
|
880
|
+
# such as <tt>last_name, first_name DESC</tt>.
|
881
|
+
# [:dependent]
|
882
|
+
# If set to <tt>:destroy</tt>, the associated object is destroyed when this object is. If set to
|
883
|
+
# <tt>:delete</tt>, the associated object is deleted *without* calling its destroy method. If set to <tt>:nullify</tt>, the associated
|
884
|
+
# object's foreign key is set to +NULL+. Also, association is assigned.
|
885
|
+
# [:foreign_key]
|
886
|
+
# Specify the foreign key used for the association. By default this is guessed to be the name
|
887
|
+
# of this class in lower-case and "_id" suffixed. So a Person class that makes a +has_one+ association will use "person_id"
|
888
|
+
# as the default <tt>:foreign_key</tt>.
|
889
|
+
# [:primary_key]
|
890
|
+
# Specify the method that returns the primary key used for the association. By default this is +id+.
|
891
|
+
# [:include]
|
892
|
+
# Specify second-order associations that should be eager loaded when this object is loaded.
|
893
|
+
# [:as]
|
894
|
+
# Specifies a polymorphic interface (See <tt>belongs_to</tt>).
|
895
|
+
# [:select]
|
896
|
+
# By default, this is <tt>*</tt> as in <tt>SELECT * FROM</tt>, but can be changed if, for example, you want to do a join
|
897
|
+
# but not include the joined columns. Do not forget to include the primary and foreign keys, otherwise it will raise an error.
|
898
|
+
# [:through]
|
899
|
+
# Specifies a Join Model through which to perform the query. Options for <tt>:class_name</tt> and <tt>:foreign_key</tt>
|
900
|
+
# are ignored, as the association uses the source reflection. You can only use a <tt>:through</tt> query through a
|
901
|
+
# <tt>has_one</tt> or <tt>belongs_to</tt> association on the join model.
|
902
|
+
# [:source]
|
903
|
+
# Specifies the source association name used by <tt>has_one :through</tt> queries. Only use it if the name cannot be
|
904
|
+
# inferred from the association. <tt>has_one :favorite, :through => :favorites</tt> will look for a
|
905
|
+
# <tt>:favorite</tt> on Favorite, unless a <tt>:source</tt> is given.
|
906
|
+
# [:source_type]
|
907
|
+
# Specifies type of the source association used by <tt>has_one :through</tt> queries where the source
|
908
|
+
# association is a polymorphic +belongs_to+.
|
909
|
+
# [:readonly]
|
910
|
+
# If true, the associated object is readonly through the association.
|
911
|
+
# [:validate]
|
912
|
+
# If false, don't validate the associated object when saving the parent object. +false+ by default.
|
913
|
+
# [:autosave]
|
914
|
+
# If true, always save the associated object or destroy it if marked for destruction, when saving the parent object. Off by default.
|
915
|
+
#
|
916
|
+
# Option examples:
|
917
|
+
# has_one :credit_card, :dependent => :destroy # destroys the associated credit card
|
918
|
+
# has_one :credit_card, :dependent => :nullify # updates the associated records foreign key value to NULL rather than destroying it
|
919
|
+
# has_one :last_comment, :class_name => "Comment", :order => "posted_on"
|
920
|
+
# has_one :project_manager, :class_name => "Person", :conditions => "role = 'project_manager'"
|
921
|
+
# has_one :attachment, :as => :attachable
|
922
|
+
# has_one :boss, :readonly => :true
|
923
|
+
# has_one :club, :through => :membership
|
924
|
+
# has_one :primary_address, :through => :addressables, :conditions => ["addressable.primary = ?", true], :source => :addressable
|
925
|
+
def has_one(association_id, options = {})
|
926
|
+
if options[:through]
|
927
|
+
reflection = create_has_one_through_reflection(association_id, options)
|
928
|
+
association_accessor_methods(reflection, ActiveRecord::Associations::HasOneThroughAssociation)
|
929
|
+
else
|
930
|
+
reflection = create_has_one_reflection(association_id, options)
|
931
|
+
association_accessor_methods(reflection, HasOneAssociation)
|
932
|
+
association_constructor_method(:build, reflection, HasOneAssociation)
|
933
|
+
association_constructor_method(:create, reflection, HasOneAssociation)
|
934
|
+
configure_dependency_for_has_one(reflection)
|
935
|
+
end
|
936
|
+
end
|
937
|
+
|
938
|
+
# Specifies a one-to-one association with another class. This method should only be used
|
939
|
+
# if this class contains the foreign key. If the other class contains the foreign key,
|
940
|
+
# then you should use +has_one+ instead. See also ActiveRecord::Associations::ClassMethods's overview
|
941
|
+
# on when to use +has_one+ and when to use +belongs_to+.
|
942
|
+
#
|
943
|
+
# Methods will be added for retrieval and query for a single associated object, for which
|
944
|
+
# this object holds an id:
|
945
|
+
#
|
946
|
+
# [association(force_reload = false)]
|
947
|
+
# Returns the associated object. +nil+ is returned if none is found.
|
948
|
+
# [association=(associate)]
|
949
|
+
# Assigns the associate object, extracts the primary key, and sets it as the foreign key.
|
950
|
+
# [build_association(attributes = {})]
|
951
|
+
# Returns a new object of the associated type that has been instantiated
|
952
|
+
# with +attributes+ and linked to this object through a foreign key, but has not yet been saved.
|
953
|
+
# [create_association(attributes = {})]
|
954
|
+
# Returns a new object of the associated type that has been instantiated
|
955
|
+
# with +attributes+, linked to this object through a foreign key, and that
|
956
|
+
# has already been saved (if it passed the validation).
|
957
|
+
#
|
958
|
+
# (+association+ is replaced with the symbol passed as the first argument, so
|
959
|
+
# <tt>belongs_to :author</tt> would add among others <tt>author.nil?</tt>.)
|
960
|
+
#
|
961
|
+
# === Example
|
962
|
+
#
|
963
|
+
# A Post class declares <tt>belongs_to :author</tt>, which will add:
|
964
|
+
# * <tt>Post#author</tt> (similar to <tt>Author.find(author_id)</tt>)
|
965
|
+
# * <tt>Post#author=(author)</tt> (similar to <tt>post.author_id = author.id</tt>)
|
966
|
+
# * <tt>Post#author?</tt> (similar to <tt>post.author == some_author</tt>)
|
967
|
+
# * <tt>Post#build_author</tt> (similar to <tt>post.author = Author.new</tt>)
|
968
|
+
# * <tt>Post#create_author</tt> (similar to <tt>post.author = Author.new; post.author.save; post.author</tt>)
|
969
|
+
# The declaration can also include an options hash to specialize the behavior of the association.
|
970
|
+
#
|
971
|
+
# === Options
|
972
|
+
#
|
973
|
+
# [:class_name]
|
974
|
+
# Specify the class name of the association. Use it only if that name can't be inferred
|
975
|
+
# from the association name. So <tt>has_one :author</tt> will by default be linked to the Author class, but
|
976
|
+
# if the real class name is Person, you'll have to specify it with this option.
|
977
|
+
# [:conditions]
|
978
|
+
# Specify the conditions that the associated object must meet in order to be included as a +WHERE+
|
979
|
+
# SQL fragment, such as <tt>authorized = 1</tt>.
|
980
|
+
# [:select]
|
981
|
+
# By default, this is <tt>*</tt> as in <tt>SELECT * FROM</tt>, but can be changed if, for example, you want to do a join
|
982
|
+
# but not include the joined columns. Do not forget to include the primary and foreign keys, otherwise it will raise an error.
|
983
|
+
# [:foreign_key]
|
984
|
+
# Specify the foreign key used for the association. By default this is guessed to be the name
|
985
|
+
# of the association with an "_id" suffix. So a class that defines a <tt>belongs_to :person</tt> association will use
|
986
|
+
# "person_id" as the default <tt>:foreign_key</tt>. Similarly, <tt>belongs_to :favorite_person, :class_name => "Person"</tt>
|
987
|
+
# will use a foreign key of "favorite_person_id".
|
988
|
+
# [:primary_key]
|
989
|
+
# Specify the method that returns the primary key of associated object used for the association. By default this is id.
|
990
|
+
# [:dependent]
|
991
|
+
# If set to <tt>:destroy</tt>, the associated object is destroyed when this object is. If set to
|
992
|
+
# <tt>:delete</tt>, the associated object is deleted *without* calling its destroy method. This option should not be specified when
|
993
|
+
# <tt>belongs_to</tt> is used in conjunction with a <tt>has_many</tt> relationship on another class because of the potential to leave
|
994
|
+
# orphaned records behind.
|
995
|
+
# [:counter_cache]
|
996
|
+
# Caches the number of belonging objects on the associate class through the use of +increment_counter+
|
997
|
+
# and +decrement_counter+. The counter cache is incremented when an object of this class is created and decremented when it's
|
998
|
+
# destroyed. This requires that a column named <tt>#{table_name}_count</tt> (such as +comments_count+ for a belonging Comment class)
|
999
|
+
# is used on the associate class (such as a Post class). You can also specify a custom counter cache column by providing
|
1000
|
+
# a column name instead of a +true+/+false+ value to this option (e.g., <tt>:counter_cache => :my_custom_counter</tt>.)
|
1001
|
+
# Note: Specifying a counter cache will add it to that model's list of readonly attributes using +attr_readonly+.
|
1002
|
+
# [:include]
|
1003
|
+
# Specify second-order associations that should be eager loaded when this object is loaded.
|
1004
|
+
# [:polymorphic]
|
1005
|
+
# Specify this association is a polymorphic association by passing +true+.
|
1006
|
+
# Note: If you've enabled the counter cache, then you may want to add the counter cache attribute
|
1007
|
+
# to the +attr_readonly+ list in the associated classes (e.g. <tt>class Post; attr_readonly :comments_count; end</tt>).
|
1008
|
+
# [:readonly]
|
1009
|
+
# If true, the associated object is readonly through the association.
|
1010
|
+
# [:validate]
|
1011
|
+
# If false, don't validate the associated objects when saving the parent object. +false+ by default.
|
1012
|
+
# [:autosave]
|
1013
|
+
# If true, always save the associated object or destroy it if marked for destruction, when saving the parent object. Off by default.
|
1014
|
+
# [:touch]
|
1015
|
+
# If true, the associated object will be touched (the updated_at/on attributes set to now) when this record is either saved or
|
1016
|
+
# destroyed. If you specify a symbol, that attribute will be updated with the current time instead of the updated_at/on attribute.
|
1017
|
+
#
|
1018
|
+
# Option examples:
|
1019
|
+
# belongs_to :firm, :foreign_key => "client_of"
|
1020
|
+
# belongs_to :person, :primary_key => "name", :foreign_key => "person_name"
|
1021
|
+
# belongs_to :author, :class_name => "Person", :foreign_key => "author_id"
|
1022
|
+
# belongs_to :valid_coupon, :class_name => "Coupon", :foreign_key => "coupon_id",
|
1023
|
+
# :conditions => 'discounts > #{payments_count}'
|
1024
|
+
# belongs_to :attachable, :polymorphic => true
|
1025
|
+
# belongs_to :project, :readonly => true
|
1026
|
+
# belongs_to :post, :counter_cache => true
|
1027
|
+
# belongs_to :company, :touch => true
|
1028
|
+
# belongs_to :company, :touch => :employees_last_updated_at
|
1029
|
+
def belongs_to(association_id, options = {})
|
1030
|
+
reflection = create_belongs_to_reflection(association_id, options)
|
1031
|
+
|
1032
|
+
if reflection.options[:polymorphic]
|
1033
|
+
association_accessor_methods(reflection, BelongsToPolymorphicAssociation)
|
1034
|
+
else
|
1035
|
+
association_accessor_methods(reflection, BelongsToAssociation)
|
1036
|
+
association_constructor_method(:build, reflection, BelongsToAssociation)
|
1037
|
+
association_constructor_method(:create, reflection, BelongsToAssociation)
|
1038
|
+
end
|
1039
|
+
|
1040
|
+
add_counter_cache_callbacks(reflection) if options[:counter_cache]
|
1041
|
+
add_touch_callbacks(reflection, options[:touch]) if options[:touch]
|
1042
|
+
|
1043
|
+
configure_dependency_for_belongs_to(reflection)
|
1044
|
+
end
|
1045
|
+
|
1046
|
+
# Specifies a many-to-many relationship with another class. This associates two classes via an
|
1047
|
+
# intermediate join table. Unless the join table is explicitly specified as an option, it is
|
1048
|
+
# guessed using the lexical order of the class names. So a join between Developer and Project
|
1049
|
+
# will give the default join table name of "developers_projects" because "D" outranks "P". Note that this precedence
|
1050
|
+
# is calculated using the <tt><</tt> operator for String. This means that if the strings are of different lengths,
|
1051
|
+
# and the strings are equal when compared up to the shortest length, then the longer string is considered of higher
|
1052
|
+
# lexical precedence than the shorter one. For example, one would expect the tables "paper_boxes" and "papers"
|
1053
|
+
# to generate a join table name of "papers_paper_boxes" because of the length of the name "paper_boxes",
|
1054
|
+
# but it in fact generates a join table name of "paper_boxes_papers". Be aware of this caveat, and use the
|
1055
|
+
# custom <tt>:join_table</tt> option if you need to.
|
1056
|
+
#
|
1057
|
+
# The join table should not have a primary key or a model associated with it. You must manually generate the
|
1058
|
+
# join table with a migration such as this:
|
1059
|
+
#
|
1060
|
+
# class CreateDevelopersProjectsJoinTable < ActiveRecord::Migration
|
1061
|
+
# def self.up
|
1062
|
+
# create_table :developers_projects, :id => false do |t|
|
1063
|
+
# t.integer :developer_id
|
1064
|
+
# t.integer :project_id
|
1065
|
+
# end
|
1066
|
+
# end
|
1067
|
+
#
|
1068
|
+
# def self.down
|
1069
|
+
# drop_table :developers_projects
|
1070
|
+
# end
|
1071
|
+
# end
|
1072
|
+
#
|
1073
|
+
# Deprecated: Any additional fields added to the join table will be placed as attributes when pulling records out through
|
1074
|
+
# +has_and_belongs_to_many+ associations. Records returned from join tables with additional attributes will be marked as
|
1075
|
+
# readonly (because we can't save changes to the additional attributes). It's strongly recommended that you upgrade any
|
1076
|
+
# associations with attributes to a real join model (see introduction).
|
1077
|
+
#
|
1078
|
+
# Adds the following methods for retrieval and query:
|
1079
|
+
#
|
1080
|
+
# [collection(force_reload = false)]
|
1081
|
+
# Returns an array of all the associated objects.
|
1082
|
+
# An empty array is returned if none are found.
|
1083
|
+
# [collection<<(object, ...)]
|
1084
|
+
# Adds one or more objects to the collection by creating associations in the join table
|
1085
|
+
# (<tt>collection.push</tt> and <tt>collection.concat</tt> are aliases to this method).
|
1086
|
+
# [collection.delete(object, ...)]
|
1087
|
+
# Removes one or more objects from the collection by removing their associations from the join table.
|
1088
|
+
# This does not destroy the objects.
|
1089
|
+
# [collection=objects]
|
1090
|
+
# Replaces the collection's content by deleting and adding objects as appropriate.
|
1091
|
+
# [collection_singular_ids]
|
1092
|
+
# Returns an array of the associated objects' ids.
|
1093
|
+
# [collection_singular_ids=ids]
|
1094
|
+
# Replace the collection by the objects identified by the primary keys in +ids+.
|
1095
|
+
# [collection.clear]
|
1096
|
+
# Removes every object from the collection. This does not destroy the objects.
|
1097
|
+
# [collection.empty?]
|
1098
|
+
# Returns +true+ if there are no associated objects.
|
1099
|
+
# [collection.size]
|
1100
|
+
# Returns the number of associated objects.
|
1101
|
+
# [collection.find(id)]
|
1102
|
+
# Finds an associated object responding to the +id+ and that
|
1103
|
+
# meets the condition that it has to be associated with this object.
|
1104
|
+
# Uses the same rules as ActiveRecord::Base.find.
|
1105
|
+
# [collection.exists?(...)]
|
1106
|
+
# Checks whether an associated object with the given conditions exists.
|
1107
|
+
# Uses the same rules as ActiveRecord::Base.exists?.
|
1108
|
+
# [collection.build(attributes = {})]
|
1109
|
+
# Returns a new object of the collection type that has been instantiated
|
1110
|
+
# with +attributes+ and linked to this object through the join table, but has not yet been saved.
|
1111
|
+
# [collection.create(attributes = {})]
|
1112
|
+
# Returns a new object of the collection type that has been instantiated
|
1113
|
+
# with +attributes+, linked to this object through the join table, and that has already been saved (if it passed the validation).
|
1114
|
+
#
|
1115
|
+
# (+collection+ is replaced with the symbol passed as the first argument, so
|
1116
|
+
# <tt>has_and_belongs_to_many :categories</tt> would add among others <tt>categories.empty?</tt>.)
|
1117
|
+
#
|
1118
|
+
# === Example
|
1119
|
+
#
|
1120
|
+
# A Developer class declares <tt>has_and_belongs_to_many :projects</tt>, which will add:
|
1121
|
+
# * <tt>Developer#projects</tt>
|
1122
|
+
# * <tt>Developer#projects<<</tt>
|
1123
|
+
# * <tt>Developer#projects.delete</tt>
|
1124
|
+
# * <tt>Developer#projects=</tt>
|
1125
|
+
# * <tt>Developer#project_ids</tt>
|
1126
|
+
# * <tt>Developer#project_ids=</tt>
|
1127
|
+
# * <tt>Developer#projects.clear</tt>
|
1128
|
+
# * <tt>Developer#projects.empty?</tt>
|
1129
|
+
# * <tt>Developer#projects.size</tt>
|
1130
|
+
# * <tt>Developer#projects.find(id)</tt>
|
1131
|
+
# * <tt>Developer#clients.exists?(...)</tt>
|
1132
|
+
# * <tt>Developer#projects.build</tt> (similar to <tt>Project.new("project_id" => id)</tt>)
|
1133
|
+
# * <tt>Developer#projects.create</tt> (similar to <tt>c = Project.new("project_id" => id); c.save; c</tt>)
|
1134
|
+
# The declaration may include an options hash to specialize the behavior of the association.
|
1135
|
+
#
|
1136
|
+
# === Options
|
1137
|
+
#
|
1138
|
+
# [:class_name]
|
1139
|
+
# Specify the class name of the association. Use it only if that name can't be inferred
|
1140
|
+
# from the association name. So <tt>has_and_belongs_to_many :projects</tt> will by default be linked to the
|
1141
|
+
# Project class, but if the real class name is SuperProject, you'll have to specify it with this option.
|
1142
|
+
# [:join_table]
|
1143
|
+
# Specify the name of the join table if the default based on lexical order isn't what you want.
|
1144
|
+
# <b>WARNING:</b> If you're overwriting the table name of either class, the +table_name+ method
|
1145
|
+
# MUST be declared underneath any +has_and_belongs_to_many+ declaration in order to work.
|
1146
|
+
# [:foreign_key]
|
1147
|
+
# Specify the foreign key used for the association. By default this is guessed to be the name
|
1148
|
+
# of this class in lower-case and "_id" suffixed. So a Person class that makes a +has_and_belongs_to_many+ association
|
1149
|
+
# to Project will use "person_id" as the default <tt>:foreign_key</tt>.
|
1150
|
+
# [:association_foreign_key]
|
1151
|
+
# Specify the foreign key used for the association on the receiving side of the association.
|
1152
|
+
# By default this is guessed to be the name of the associated class in lower-case and "_id" suffixed.
|
1153
|
+
# So if a Person class makes a +has_and_belongs_to_many+ association to Project,
|
1154
|
+
# the association will use "project_id" as the default <tt>:association_foreign_key</tt>.
|
1155
|
+
# [:conditions]
|
1156
|
+
# Specify the conditions that the associated object must meet in order to be included as a +WHERE+
|
1157
|
+
# SQL fragment, such as <tt>authorized = 1</tt>. Record creations from the association are scoped if a hash is used.
|
1158
|
+
# <tt>has_many :posts, :conditions => {:published => true}</tt> will create published posts with <tt>@blog.posts.create</tt>
|
1159
|
+
# or <tt>@blog.posts.build</tt>.
|
1160
|
+
# [:order]
|
1161
|
+
# Specify the order in which the associated objects are returned as an <tt>ORDER BY</tt> SQL fragment,
|
1162
|
+
# such as <tt>last_name, first_name DESC</tt>
|
1163
|
+
# [:uniq]
|
1164
|
+
# If true, duplicate associated objects will be ignored by accessors and query methods.
|
1165
|
+
# [:finder_sql]
|
1166
|
+
# Overwrite the default generated SQL statement used to fetch the association with a manual statement
|
1167
|
+
# [:counter_sql]
|
1168
|
+
# Specify a complete SQL statement to fetch the size of the association. If <tt>:finder_sql</tt> is
|
1169
|
+
# specified but not <tt>:counter_sql</tt>, <tt>:counter_sql</tt> will be generated by replacing <tt>SELECT ... FROM</tt> with <tt>SELECT COUNT(*) FROM</tt>.
|
1170
|
+
# [:delete_sql]
|
1171
|
+
# Overwrite the default generated SQL statement used to remove links between the associated
|
1172
|
+
# classes with a manual statement.
|
1173
|
+
# [:insert_sql]
|
1174
|
+
# Overwrite the default generated SQL statement used to add links between the associated classes
|
1175
|
+
# with a manual statement.
|
1176
|
+
# [:extend]
|
1177
|
+
# Anonymous module for extending the proxy, see "Association extensions".
|
1178
|
+
# [:include]
|
1179
|
+
# Specify second-order associations that should be eager loaded when the collection is loaded.
|
1180
|
+
# [:group]
|
1181
|
+
# An attribute name by which the result should be grouped. Uses the <tt>GROUP BY</tt> SQL-clause.
|
1182
|
+
# [:having]
|
1183
|
+
# Combined with +:group+ this can be used to filter the records that a <tt>GROUP BY</tt> returns. Uses the <tt>HAVING</tt> SQL-clause.
|
1184
|
+
# [:limit]
|
1185
|
+
# An integer determining the limit on the number of rows that should be returned.
|
1186
|
+
# [:offset]
|
1187
|
+
# An integer determining the offset from where the rows should be fetched. So at 5, it would skip the first 4 rows.
|
1188
|
+
# [:select]
|
1189
|
+
# By default, this is <tt>*</tt> as in <tt>SELECT * FROM</tt>, but can be changed if, for example, you want to do a join
|
1190
|
+
# but not include the joined columns. Do not forget to include the primary and foreign keys, otherwise it will raise an error.
|
1191
|
+
# [:readonly]
|
1192
|
+
# If true, all the associated objects are readonly through the association.
|
1193
|
+
# [:validate]
|
1194
|
+
# If false, don't validate the associated objects when saving the parent object. +true+ by default.
|
1195
|
+
# [:autosave]
|
1196
|
+
# If true, always save any loaded members and destroy members marked for destruction, when saving the parent object. Off by default.
|
1197
|
+
#
|
1198
|
+
# Option examples:
|
1199
|
+
# has_and_belongs_to_many :projects
|
1200
|
+
# has_and_belongs_to_many :projects, :include => [ :milestones, :manager ]
|
1201
|
+
# has_and_belongs_to_many :nations, :class_name => "Country"
|
1202
|
+
# has_and_belongs_to_many :categories, :join_table => "prods_cats"
|
1203
|
+
# has_and_belongs_to_many :categories, :readonly => true
|
1204
|
+
# has_and_belongs_to_many :active_projects, :join_table => 'developers_projects', :delete_sql =>
|
1205
|
+
# 'DELETE FROM developers_projects WHERE active=1 AND developer_id = #{id} AND project_id = #{record.id}'
|
1206
|
+
def has_and_belongs_to_many(association_id, options = {}, &extension)
|
1207
|
+
reflection = create_has_and_belongs_to_many_reflection(association_id, options, &extension)
|
1208
|
+
collection_accessor_methods(reflection, HasAndBelongsToManyAssociation)
|
1209
|
+
|
1210
|
+
# Don't use a before_destroy callback since users' before_destroy
|
1211
|
+
# callbacks will be executed after the association is wiped out.
|
1212
|
+
old_method = "destroy_without_habtm_shim_for_#{reflection.name}"
|
1213
|
+
class_eval <<-end_eval unless method_defined?(old_method)
|
1214
|
+
alias_method :#{old_method}, :destroy_without_callbacks # alias_method :destroy_without_habtm_shim_for_posts, :destroy_without_callbacks
|
1215
|
+
def destroy_without_callbacks # def destroy_without_callbacks
|
1216
|
+
#{reflection.name}.clear # posts.clear
|
1217
|
+
#{old_method} # destroy_without_habtm_shim_for_posts
|
1218
|
+
end # end
|
1219
|
+
end_eval
|
1220
|
+
|
1221
|
+
add_association_callbacks(reflection.name, options)
|
1222
|
+
end
|
1223
|
+
|
1224
|
+
private
|
1225
|
+
# Generates a join table name from two provided table names.
|
1226
|
+
# The names in the join table namesme end up in lexicographic order.
|
1227
|
+
#
|
1228
|
+
# join_table_name("members", "clubs") # => "clubs_members"
|
1229
|
+
# join_table_name("members", "special_clubs") # => "members_special_clubs"
|
1230
|
+
def join_table_name(first_table_name, second_table_name)
|
1231
|
+
if first_table_name < second_table_name
|
1232
|
+
join_table = "#{first_table_name}_#{second_table_name}"
|
1233
|
+
else
|
1234
|
+
join_table = "#{second_table_name}_#{first_table_name}"
|
1235
|
+
end
|
1236
|
+
|
1237
|
+
table_name_prefix + join_table + table_name_suffix
|
1238
|
+
end
|
1239
|
+
|
1240
|
+
def association_accessor_methods(reflection, association_proxy_class)
|
1241
|
+
define_method(reflection.name) do |*params|
|
1242
|
+
force_reload = params.first unless params.empty?
|
1243
|
+
association = association_instance_get(reflection.name)
|
1244
|
+
|
1245
|
+
if association.nil? || force_reload
|
1246
|
+
association = association_proxy_class.new(self, reflection)
|
1247
|
+
retval = association.reload
|
1248
|
+
if retval.nil? and association_proxy_class == BelongsToAssociation
|
1249
|
+
association_instance_set(reflection.name, nil)
|
1250
|
+
return nil
|
1251
|
+
end
|
1252
|
+
association_instance_set(reflection.name, association)
|
1253
|
+
end
|
1254
|
+
|
1255
|
+
association.target.nil? ? nil : association
|
1256
|
+
end
|
1257
|
+
|
1258
|
+
define_method("loaded_#{reflection.name}?") do
|
1259
|
+
association = association_instance_get(reflection.name)
|
1260
|
+
association && association.loaded?
|
1261
|
+
end
|
1262
|
+
|
1263
|
+
define_method("#{reflection.name}=") do |new_value|
|
1264
|
+
association = association_instance_get(reflection.name)
|
1265
|
+
|
1266
|
+
if association.nil? || association.target != new_value
|
1267
|
+
association = association_proxy_class.new(self, reflection)
|
1268
|
+
end
|
1269
|
+
|
1270
|
+
if association_proxy_class == HasOneThroughAssociation
|
1271
|
+
association.create_through_record(new_value)
|
1272
|
+
if new_record?
|
1273
|
+
association_instance_set(reflection.name, new_value.nil? ? nil : association)
|
1274
|
+
else
|
1275
|
+
self.send(reflection.name, new_value)
|
1276
|
+
end
|
1277
|
+
else
|
1278
|
+
association.replace(new_value)
|
1279
|
+
association_instance_set(reflection.name, new_value.nil? ? nil : association)
|
1280
|
+
end
|
1281
|
+
end
|
1282
|
+
|
1283
|
+
define_method("set_#{reflection.name}_target") do |target|
|
1284
|
+
return if target.nil? and association_proxy_class == BelongsToAssociation
|
1285
|
+
association = association_proxy_class.new(self, reflection)
|
1286
|
+
association.target = target
|
1287
|
+
association_instance_set(reflection.name, association)
|
1288
|
+
end
|
1289
|
+
end
|
1290
|
+
|
1291
|
+
def collection_reader_method(reflection, association_proxy_class)
|
1292
|
+
define_method(reflection.name) do |*params|
|
1293
|
+
force_reload = params.first unless params.empty?
|
1294
|
+
association = association_instance_get(reflection.name)
|
1295
|
+
|
1296
|
+
unless association
|
1297
|
+
association = association_proxy_class.new(self, reflection)
|
1298
|
+
association_instance_set(reflection.name, association)
|
1299
|
+
end
|
1300
|
+
|
1301
|
+
association.reload if force_reload
|
1302
|
+
|
1303
|
+
association
|
1304
|
+
end
|
1305
|
+
|
1306
|
+
define_method("#{reflection.name.to_s.singularize}_ids") do
|
1307
|
+
if send(reflection.name).loaded? || reflection.options[:finder_sql]
|
1308
|
+
send(reflection.name).map(&:id)
|
1309
|
+
else
|
1310
|
+
send(reflection.name).all(:select => "#{reflection.quoted_table_name}.#{reflection.klass.primary_key}").map(&:id)
|
1311
|
+
end
|
1312
|
+
end
|
1313
|
+
end
|
1314
|
+
|
1315
|
+
def collection_accessor_methods(reflection, association_proxy_class, writer = true)
|
1316
|
+
collection_reader_method(reflection, association_proxy_class)
|
1317
|
+
|
1318
|
+
if writer
|
1319
|
+
define_method("#{reflection.name}=") do |new_value|
|
1320
|
+
# Loads proxy class instance (defined in collection_reader_method) if not already loaded
|
1321
|
+
association = send(reflection.name)
|
1322
|
+
association.replace(new_value)
|
1323
|
+
association
|
1324
|
+
end
|
1325
|
+
|
1326
|
+
define_method("#{reflection.name.to_s.singularize}_ids=") do |new_value|
|
1327
|
+
ids = (new_value || []).reject { |nid| nid.blank? }
|
1328
|
+
send("#{reflection.name}=", reflection.klass.find(ids))
|
1329
|
+
end
|
1330
|
+
end
|
1331
|
+
end
|
1332
|
+
|
1333
|
+
def association_constructor_method(constructor, reflection, association_proxy_class)
|
1334
|
+
define_method("#{constructor}_#{reflection.name}") do |*params|
|
1335
|
+
attributees = params.first unless params.empty?
|
1336
|
+
replace_existing = params[1].nil? ? true : params[1]
|
1337
|
+
association = association_instance_get(reflection.name)
|
1338
|
+
|
1339
|
+
unless association
|
1340
|
+
association = association_proxy_class.new(self, reflection)
|
1341
|
+
association_instance_set(reflection.name, association)
|
1342
|
+
end
|
1343
|
+
|
1344
|
+
if association_proxy_class == HasOneAssociation
|
1345
|
+
association.send(constructor, attributees, replace_existing)
|
1346
|
+
else
|
1347
|
+
association.send(constructor, attributees)
|
1348
|
+
end
|
1349
|
+
end
|
1350
|
+
end
|
1351
|
+
|
1352
|
+
def add_counter_cache_callbacks(reflection)
|
1353
|
+
cache_column = reflection.counter_cache_column
|
1354
|
+
|
1355
|
+
method_name = "belongs_to_counter_cache_after_create_for_#{reflection.name}".to_sym
|
1356
|
+
define_method(method_name) do
|
1357
|
+
association = send(reflection.name)
|
1358
|
+
association.class.increment_counter(cache_column, association.id) unless association.nil?
|
1359
|
+
end
|
1360
|
+
after_create(method_name)
|
1361
|
+
|
1362
|
+
method_name = "belongs_to_counter_cache_before_destroy_for_#{reflection.name}".to_sym
|
1363
|
+
define_method(method_name) do
|
1364
|
+
association = send(reflection.name)
|
1365
|
+
association.class.decrement_counter(cache_column, association.id) unless association.nil?
|
1366
|
+
end
|
1367
|
+
before_destroy(method_name)
|
1368
|
+
|
1369
|
+
module_eval(
|
1370
|
+
"#{reflection.class_name}.send(:attr_readonly,\"#{cache_column}\".intern) if defined?(#{reflection.class_name}) && #{reflection.class_name}.respond_to?(:attr_readonly)"
|
1371
|
+
)
|
1372
|
+
end
|
1373
|
+
|
1374
|
+
def add_touch_callbacks(reflection, touch_attribute)
|
1375
|
+
method_name = "belongs_to_touch_after_save_or_destroy_for_#{reflection.name}".to_sym
|
1376
|
+
define_method(method_name) do
|
1377
|
+
association = send(reflection.name)
|
1378
|
+
|
1379
|
+
if touch_attribute == true
|
1380
|
+
association.touch unless association.nil?
|
1381
|
+
else
|
1382
|
+
association.touch(touch_attribute) unless association.nil?
|
1383
|
+
end
|
1384
|
+
end
|
1385
|
+
after_save(method_name)
|
1386
|
+
after_destroy(method_name)
|
1387
|
+
end
|
1388
|
+
|
1389
|
+
def find_with_associations(options = {})
|
1390
|
+
catch :invalid_query do
|
1391
|
+
join_dependency = JoinDependency.new(self, merge_includes(scope(:find, :include), options[:include]), options[:joins])
|
1392
|
+
rows = select_all_rows(options, join_dependency)
|
1393
|
+
return join_dependency.instantiate(rows)
|
1394
|
+
end
|
1395
|
+
[]
|
1396
|
+
end
|
1397
|
+
|
1398
|
+
# Creates before_destroy callback methods that nullify, delete or destroy
|
1399
|
+
# has_many associated objects, according to the defined :dependent rule.
|
1400
|
+
#
|
1401
|
+
# See HasManyAssociation#delete_records. Dependent associations
|
1402
|
+
# delete children, otherwise foreign key is set to NULL.
|
1403
|
+
#
|
1404
|
+
# The +extra_conditions+ parameter, which is not used within the main
|
1405
|
+
# Active Record codebase, is meant to allow plugins to define extra
|
1406
|
+
# finder conditions.
|
1407
|
+
def configure_dependency_for_has_many(reflection, extra_conditions = nil)
|
1408
|
+
if reflection.options.include?(:dependent)
|
1409
|
+
# Add polymorphic type if the :as option is present
|
1410
|
+
dependent_conditions = []
|
1411
|
+
dependent_conditions << "#{reflection.primary_key_name} = \#{record.quoted_id}"
|
1412
|
+
dependent_conditions << "#{reflection.options[:as]}_type = '#{base_class.name}'" if reflection.options[:as]
|
1413
|
+
dependent_conditions << sanitize_sql(reflection.options[:conditions], reflection.quoted_table_name) if reflection.options[:conditions]
|
1414
|
+
dependent_conditions << extra_conditions if extra_conditions
|
1415
|
+
dependent_conditions = dependent_conditions.collect {|where| "(#{where})" }.join(" AND ")
|
1416
|
+
dependent_conditions = dependent_conditions.gsub('@', '\@')
|
1417
|
+
case reflection.options[:dependent]
|
1418
|
+
when :destroy
|
1419
|
+
method_name = "has_many_dependent_destroy_for_#{reflection.name}".to_sym
|
1420
|
+
define_method(method_name) do
|
1421
|
+
send(reflection.name).each { |o| o.destroy }
|
1422
|
+
end
|
1423
|
+
before_destroy method_name
|
1424
|
+
when :delete_all
|
1425
|
+
module_eval %Q{
|
1426
|
+
before_destroy do |record| # before_destroy do |record|
|
1427
|
+
delete_all_has_many_dependencies(record, # delete_all_has_many_dependencies(record,
|
1428
|
+
"#{reflection.name}", # "posts",
|
1429
|
+
#{reflection.class_name}, # Post,
|
1430
|
+
%@#{dependent_conditions}@) # %@...@) # this is a string literal like %(...)
|
1431
|
+
end # end
|
1432
|
+
}
|
1433
|
+
when :nullify
|
1434
|
+
module_eval %Q{
|
1435
|
+
before_destroy do |record| # before_destroy do |record|
|
1436
|
+
nullify_has_many_dependencies(record, # nullify_has_many_dependencies(record,
|
1437
|
+
"#{reflection.name}", # "posts",
|
1438
|
+
#{reflection.class_name}, # Post,
|
1439
|
+
"#{reflection.primary_key_name}", # "user_id",
|
1440
|
+
%@#{dependent_conditions}@) # %@...@) # this is a string literal like %(...)
|
1441
|
+
end # end
|
1442
|
+
}
|
1443
|
+
else
|
1444
|
+
raise ArgumentError, "The :dependent option expects either :destroy, :delete_all, or :nullify (#{reflection.options[:dependent].inspect})"
|
1445
|
+
end
|
1446
|
+
end
|
1447
|
+
end
|
1448
|
+
|
1449
|
+
# Creates before_destroy callback methods that nullify, delete or destroy
|
1450
|
+
# has_one associated objects, according to the defined :dependent rule.
|
1451
|
+
def configure_dependency_for_has_one(reflection)
|
1452
|
+
if reflection.options.include?(:dependent)
|
1453
|
+
case reflection.options[:dependent]
|
1454
|
+
when :destroy
|
1455
|
+
method_name = "has_one_dependent_destroy_for_#{reflection.name}".to_sym
|
1456
|
+
define_method(method_name) do
|
1457
|
+
association = send(reflection.name)
|
1458
|
+
association.destroy unless association.nil?
|
1459
|
+
end
|
1460
|
+
before_destroy method_name
|
1461
|
+
when :delete
|
1462
|
+
method_name = "has_one_dependent_delete_for_#{reflection.name}".to_sym
|
1463
|
+
define_method(method_name) do
|
1464
|
+
# Retrieve the associated object and delete it. The retrieval
|
1465
|
+
# is necessary because there may be multiple associated objects
|
1466
|
+
# with foreign keys pointing to this object, and we only want
|
1467
|
+
# to delete the correct one, not all of them.
|
1468
|
+
association = send(reflection.name)
|
1469
|
+
association.delete unless association.nil?
|
1470
|
+
end
|
1471
|
+
before_destroy method_name
|
1472
|
+
when :nullify
|
1473
|
+
method_name = "has_one_dependent_nullify_for_#{reflection.name}".to_sym
|
1474
|
+
define_method(method_name) do
|
1475
|
+
association = send(reflection.name)
|
1476
|
+
association.update_attribute(reflection.primary_key_name, nil) unless association.nil?
|
1477
|
+
end
|
1478
|
+
before_destroy method_name
|
1479
|
+
else
|
1480
|
+
raise ArgumentError, "The :dependent option expects either :destroy, :delete or :nullify (#{reflection.options[:dependent].inspect})"
|
1481
|
+
end
|
1482
|
+
end
|
1483
|
+
end
|
1484
|
+
|
1485
|
+
def configure_dependency_for_belongs_to(reflection)
|
1486
|
+
if reflection.options.include?(:dependent)
|
1487
|
+
case reflection.options[:dependent]
|
1488
|
+
when :destroy
|
1489
|
+
method_name = "belongs_to_dependent_destroy_for_#{reflection.name}".to_sym
|
1490
|
+
define_method(method_name) do
|
1491
|
+
association = send(reflection.name)
|
1492
|
+
association.destroy unless association.nil?
|
1493
|
+
end
|
1494
|
+
after_destroy method_name
|
1495
|
+
when :delete
|
1496
|
+
method_name = "belongs_to_dependent_delete_for_#{reflection.name}".to_sym
|
1497
|
+
define_method(method_name) do
|
1498
|
+
association = send(reflection.name)
|
1499
|
+
association.delete unless association.nil?
|
1500
|
+
end
|
1501
|
+
after_destroy method_name
|
1502
|
+
else
|
1503
|
+
raise ArgumentError, "The :dependent option expects either :destroy or :delete (#{reflection.options[:dependent].inspect})"
|
1504
|
+
end
|
1505
|
+
end
|
1506
|
+
end
|
1507
|
+
|
1508
|
+
def delete_all_has_many_dependencies(record, reflection_name, association_class, dependent_conditions)
|
1509
|
+
association_class.delete_all(dependent_conditions)
|
1510
|
+
end
|
1511
|
+
|
1512
|
+
def nullify_has_many_dependencies(record, reflection_name, association_class, primary_key_name, dependent_conditions)
|
1513
|
+
association_class.update_all("#{primary_key_name} = NULL", dependent_conditions)
|
1514
|
+
end
|
1515
|
+
|
1516
|
+
mattr_accessor :valid_keys_for_has_many_association
|
1517
|
+
@@valid_keys_for_has_many_association = [
|
1518
|
+
:class_name, :table_name, :foreign_key, :primary_key,
|
1519
|
+
:dependent,
|
1520
|
+
:select, :conditions, :include, :order, :group, :having, :limit, :offset,
|
1521
|
+
:as, :through, :source, :source_type,
|
1522
|
+
:uniq,
|
1523
|
+
:finder_sql, :counter_sql,
|
1524
|
+
:before_add, :after_add, :before_remove, :after_remove,
|
1525
|
+
:extend, :readonly,
|
1526
|
+
:validate
|
1527
|
+
]
|
1528
|
+
|
1529
|
+
def create_has_many_reflection(association_id, options, &extension)
|
1530
|
+
options.assert_valid_keys(valid_keys_for_has_many_association)
|
1531
|
+
options[:extend] = create_extension_modules(association_id, extension, options[:extend])
|
1532
|
+
|
1533
|
+
create_reflection(:has_many, association_id, options, self)
|
1534
|
+
end
|
1535
|
+
|
1536
|
+
mattr_accessor :valid_keys_for_has_one_association
|
1537
|
+
@@valid_keys_for_has_one_association = [
|
1538
|
+
:class_name, :foreign_key, :remote, :select, :conditions, :order,
|
1539
|
+
:include, :dependent, :counter_cache, :extend, :as, :readonly,
|
1540
|
+
:validate, :primary_key
|
1541
|
+
]
|
1542
|
+
|
1543
|
+
def create_has_one_reflection(association_id, options)
|
1544
|
+
options.assert_valid_keys(valid_keys_for_has_one_association)
|
1545
|
+
create_reflection(:has_one, association_id, options, self)
|
1546
|
+
end
|
1547
|
+
|
1548
|
+
def create_has_one_through_reflection(association_id, options)
|
1549
|
+
options.assert_valid_keys(
|
1550
|
+
:class_name, :foreign_key, :remote, :select, :conditions, :order, :include, :dependent, :counter_cache, :extend, :as, :through, :source, :source_type, :validate
|
1551
|
+
)
|
1552
|
+
create_reflection(:has_one, association_id, options, self)
|
1553
|
+
end
|
1554
|
+
|
1555
|
+
mattr_accessor :valid_keys_for_belongs_to_association
|
1556
|
+
@@valid_keys_for_belongs_to_association = [
|
1557
|
+
:class_name, :primary_key, :foreign_key, :foreign_type, :remote, :select, :conditions,
|
1558
|
+
:include, :dependent, :counter_cache, :extend, :polymorphic, :readonly,
|
1559
|
+
:validate, :touch
|
1560
|
+
]
|
1561
|
+
|
1562
|
+
def create_belongs_to_reflection(association_id, options)
|
1563
|
+
options.assert_valid_keys(valid_keys_for_belongs_to_association)
|
1564
|
+
reflection = create_reflection(:belongs_to, association_id, options, self)
|
1565
|
+
|
1566
|
+
if options[:polymorphic]
|
1567
|
+
reflection.options[:foreign_type] ||= reflection.class_name.underscore + "_type"
|
1568
|
+
end
|
1569
|
+
|
1570
|
+
reflection
|
1571
|
+
end
|
1572
|
+
|
1573
|
+
mattr_accessor :valid_keys_for_has_and_belongs_to_many_association
|
1574
|
+
@@valid_keys_for_has_and_belongs_to_many_association = [
|
1575
|
+
:class_name, :table_name, :join_table, :foreign_key, :association_foreign_key,
|
1576
|
+
:select, :conditions, :include, :order, :group, :having, :limit, :offset,
|
1577
|
+
:uniq,
|
1578
|
+
:finder_sql, :counter_sql, :delete_sql, :insert_sql,
|
1579
|
+
:before_add, :after_add, :before_remove, :after_remove,
|
1580
|
+
:extend, :readonly,
|
1581
|
+
:validate
|
1582
|
+
]
|
1583
|
+
|
1584
|
+
def create_has_and_belongs_to_many_reflection(association_id, options, &extension)
|
1585
|
+
options.assert_valid_keys(valid_keys_for_has_and_belongs_to_many_association)
|
1586
|
+
|
1587
|
+
options[:extend] = create_extension_modules(association_id, extension, options[:extend])
|
1588
|
+
|
1589
|
+
reflection = create_reflection(:has_and_belongs_to_many, association_id, options, self)
|
1590
|
+
|
1591
|
+
if reflection.association_foreign_key == reflection.primary_key_name
|
1592
|
+
raise HasAndBelongsToManyAssociationForeignKeyNeeded.new(reflection)
|
1593
|
+
end
|
1594
|
+
|
1595
|
+
reflection.options[:join_table] ||= join_table_name(undecorated_table_name(self.to_s), undecorated_table_name(reflection.class_name))
|
1596
|
+
|
1597
|
+
reflection
|
1598
|
+
end
|
1599
|
+
|
1600
|
+
def reflect_on_included_associations(associations)
|
1601
|
+
[ associations ].flatten.collect { |association| reflect_on_association(association.to_s.intern) }
|
1602
|
+
end
|
1603
|
+
|
1604
|
+
def guard_against_unlimitable_reflections(reflections, options)
|
1605
|
+
if (options[:offset] || options[:limit]) && !using_limitable_reflections?(reflections)
|
1606
|
+
raise(
|
1607
|
+
ConfigurationError,
|
1608
|
+
"You can not use offset and limit together with has_many or has_and_belongs_to_many associations"
|
1609
|
+
)
|
1610
|
+
end
|
1611
|
+
end
|
1612
|
+
|
1613
|
+
def select_all_rows(options, join_dependency)
|
1614
|
+
connection.select_all(
|
1615
|
+
construct_finder_sql_with_included_associations(options, join_dependency),
|
1616
|
+
"#{name} Load Including Associations"
|
1617
|
+
)
|
1618
|
+
end
|
1619
|
+
|
1620
|
+
def construct_finder_sql_with_included_associations(options, join_dependency)
|
1621
|
+
scope = scope(:find)
|
1622
|
+
sql = "SELECT #{column_aliases(join_dependency)} FROM #{(scope && scope[:from]) || options[:from] || quoted_table_name} "
|
1623
|
+
sql << join_dependency.join_associations.collect{|join| join.association_join }.join
|
1624
|
+
|
1625
|
+
add_joins!(sql, options[:joins], scope)
|
1626
|
+
add_conditions!(sql, options[:conditions], scope)
|
1627
|
+
add_limited_ids_condition!(sql, options, join_dependency) if !using_limitable_reflections?(join_dependency.reflections) && ((scope && scope[:limit]) || options[:limit])
|
1628
|
+
|
1629
|
+
add_group!(sql, options[:group], options[:having], scope)
|
1630
|
+
add_order!(sql, options[:order], scope)
|
1631
|
+
add_limit!(sql, options, scope) if using_limitable_reflections?(join_dependency.reflections)
|
1632
|
+
add_lock!(sql, options, scope)
|
1633
|
+
|
1634
|
+
return sanitize_sql(sql)
|
1635
|
+
end
|
1636
|
+
|
1637
|
+
def add_limited_ids_condition!(sql, options, join_dependency)
|
1638
|
+
unless (id_list = select_limited_ids_list(options, join_dependency)).empty?
|
1639
|
+
sql << "#{condition_word(sql)} #{connection.quote_table_name table_name}.#{primary_key} IN (#{id_list}) "
|
1640
|
+
else
|
1641
|
+
throw :invalid_query
|
1642
|
+
end
|
1643
|
+
end
|
1644
|
+
|
1645
|
+
def select_limited_ids_list(options, join_dependency)
|
1646
|
+
pk = columns_hash[primary_key]
|
1647
|
+
|
1648
|
+
connection.select_all(
|
1649
|
+
construct_finder_sql_for_association_limiting(options, join_dependency),
|
1650
|
+
"#{name} Load IDs For Limited Eager Loading"
|
1651
|
+
).collect { |row| connection.quote(row[primary_key], pk) }.join(", ")
|
1652
|
+
end
|
1653
|
+
|
1654
|
+
def construct_finder_sql_for_association_limiting(options, join_dependency)
|
1655
|
+
scope = scope(:find)
|
1656
|
+
|
1657
|
+
# Only join tables referenced in order or conditions since this is particularly slow on the pre-query.
|
1658
|
+
tables_from_conditions = conditions_tables(options)
|
1659
|
+
tables_from_order = order_tables(options)
|
1660
|
+
all_tables = tables_from_conditions + tables_from_order
|
1661
|
+
distinct_join_associations = all_tables.uniq.map{|table|
|
1662
|
+
join_dependency.joins_for_table_name(table)
|
1663
|
+
}.flatten.compact.uniq
|
1664
|
+
|
1665
|
+
order = options[:order]
|
1666
|
+
if scoped_order = (scope && scope[:order])
|
1667
|
+
order = order ? "#{order}, #{scoped_order}" : scoped_order
|
1668
|
+
end
|
1669
|
+
|
1670
|
+
is_distinct = !options[:joins].blank? || include_eager_conditions?(options, tables_from_conditions) || include_eager_order?(options, tables_from_order)
|
1671
|
+
sql = "SELECT "
|
1672
|
+
if is_distinct
|
1673
|
+
sql << connection.distinct("#{connection.quote_table_name table_name}.#{primary_key}", order)
|
1674
|
+
else
|
1675
|
+
sql << primary_key
|
1676
|
+
end
|
1677
|
+
sql << " FROM #{connection.quote_table_name table_name} "
|
1678
|
+
|
1679
|
+
if is_distinct
|
1680
|
+
sql << distinct_join_associations.collect { |assoc| assoc.association_join }.join
|
1681
|
+
add_joins!(sql, options[:joins], scope)
|
1682
|
+
end
|
1683
|
+
|
1684
|
+
add_conditions!(sql, options[:conditions], scope)
|
1685
|
+
add_group!(sql, options[:group], options[:having], scope)
|
1686
|
+
|
1687
|
+
if order && is_distinct
|
1688
|
+
connection.add_order_by_for_association_limiting!(sql, :order => order)
|
1689
|
+
else
|
1690
|
+
add_order!(sql, options[:order], scope)
|
1691
|
+
end
|
1692
|
+
|
1693
|
+
add_limit!(sql, options, scope)
|
1694
|
+
|
1695
|
+
return sanitize_sql(sql)
|
1696
|
+
end
|
1697
|
+
|
1698
|
+
def tables_in_string(string)
|
1699
|
+
return [] if string.blank?
|
1700
|
+
string.scan(/([\.a-zA-Z_]+).?\./).flatten
|
1701
|
+
end
|
1702
|
+
|
1703
|
+
def tables_in_hash(hash)
|
1704
|
+
return [] if hash.blank?
|
1705
|
+
tables = hash.map do |key, value|
|
1706
|
+
if value.is_a?(Hash)
|
1707
|
+
key.to_s
|
1708
|
+
else
|
1709
|
+
tables_in_string(key) if key.is_a?(String)
|
1710
|
+
end
|
1711
|
+
end
|
1712
|
+
tables.flatten.compact
|
1713
|
+
end
|
1714
|
+
|
1715
|
+
def conditions_tables(options)
|
1716
|
+
# look in both sets of conditions
|
1717
|
+
conditions = [scope(:find, :conditions), options[:conditions]].inject([]) do |all, cond|
|
1718
|
+
case cond
|
1719
|
+
when nil then all
|
1720
|
+
when Array then all << tables_in_string(cond.first)
|
1721
|
+
when Hash then all << tables_in_hash(cond)
|
1722
|
+
else all << tables_in_string(cond)
|
1723
|
+
end
|
1724
|
+
end
|
1725
|
+
conditions.flatten
|
1726
|
+
end
|
1727
|
+
|
1728
|
+
def order_tables(options)
|
1729
|
+
order = [options[:order], scope(:find, :order) ].join(", ")
|
1730
|
+
return [] unless order && order.is_a?(String)
|
1731
|
+
tables_in_string(order)
|
1732
|
+
end
|
1733
|
+
|
1734
|
+
def selects_tables(options)
|
1735
|
+
select = options[:select]
|
1736
|
+
return [] unless select && select.is_a?(String)
|
1737
|
+
tables_in_string(select)
|
1738
|
+
end
|
1739
|
+
|
1740
|
+
def joined_tables(options)
|
1741
|
+
scope = scope(:find)
|
1742
|
+
joins = options[:joins]
|
1743
|
+
merged_joins = scope && scope[:joins] && joins ? merge_joins(scope[:joins], joins) : (joins || scope && scope[:joins])
|
1744
|
+
[table_name] + case merged_joins
|
1745
|
+
when Symbol, Hash, Array
|
1746
|
+
if array_of_strings?(merged_joins)
|
1747
|
+
tables_in_string(merged_joins.join(' '))
|
1748
|
+
else
|
1749
|
+
join_dependency = ActiveRecord::Associations::ClassMethods::InnerJoinDependency.new(self, merged_joins, nil)
|
1750
|
+
join_dependency.join_associations.collect {|join_association| [join_association.aliased_join_table_name, join_association.aliased_table_name]}.flatten.compact
|
1751
|
+
end
|
1752
|
+
else
|
1753
|
+
tables_in_string(merged_joins)
|
1754
|
+
end
|
1755
|
+
end
|
1756
|
+
|
1757
|
+
# Checks if the conditions reference a table other than the current model table
|
1758
|
+
def include_eager_conditions?(options, tables = nil, joined_tables = nil)
|
1759
|
+
((tables || conditions_tables(options)) - (joined_tables || joined_tables(options))).any?
|
1760
|
+
end
|
1761
|
+
|
1762
|
+
# Checks if the query order references a table other than the current model's table.
|
1763
|
+
def include_eager_order?(options, tables = nil, joined_tables = nil)
|
1764
|
+
((tables || order_tables(options)) - (joined_tables || joined_tables(options))).any?
|
1765
|
+
end
|
1766
|
+
|
1767
|
+
def include_eager_select?(options, joined_tables = nil)
|
1768
|
+
(selects_tables(options) - (joined_tables || joined_tables(options))).any?
|
1769
|
+
end
|
1770
|
+
|
1771
|
+
def references_eager_loaded_tables?(options)
|
1772
|
+
joined_tables = joined_tables(options)
|
1773
|
+
include_eager_order?(options, nil, joined_tables) || include_eager_conditions?(options, nil, joined_tables) || include_eager_select?(options, joined_tables)
|
1774
|
+
end
|
1775
|
+
|
1776
|
+
def using_limitable_reflections?(reflections)
|
1777
|
+
reflections.reject { |r| [ :belongs_to, :has_one ].include?(r.macro) }.length.zero?
|
1778
|
+
end
|
1779
|
+
|
1780
|
+
def column_aliases(join_dependency)
|
1781
|
+
join_dependency.joins.collect{|join| join.column_names_with_alias.collect{|column_name, aliased_name|
|
1782
|
+
"#{connection.quote_table_name join.aliased_table_name}.#{connection.quote_column_name column_name} AS #{aliased_name}"}}.flatten.join(", ")
|
1783
|
+
end
|
1784
|
+
|
1785
|
+
def add_association_callbacks(association_name, options)
|
1786
|
+
callbacks = %w(before_add after_add before_remove after_remove)
|
1787
|
+
callbacks.each do |callback_name|
|
1788
|
+
full_callback_name = "#{callback_name}_for_#{association_name}"
|
1789
|
+
defined_callbacks = options[callback_name.to_sym]
|
1790
|
+
if options.has_key?(callback_name.to_sym)
|
1791
|
+
class_inheritable_reader full_callback_name.to_sym
|
1792
|
+
write_inheritable_attribute(full_callback_name.to_sym, [defined_callbacks].flatten)
|
1793
|
+
else
|
1794
|
+
write_inheritable_attribute(full_callback_name.to_sym, [])
|
1795
|
+
end
|
1796
|
+
end
|
1797
|
+
end
|
1798
|
+
|
1799
|
+
def condition_word(sql)
|
1800
|
+
sql =~ /where/i ? " AND " : "WHERE "
|
1801
|
+
end
|
1802
|
+
|
1803
|
+
def create_extension_modules(association_id, block_extension, extensions)
|
1804
|
+
if block_extension
|
1805
|
+
extension_module_name = "#{self.to_s.demodulize}#{association_id.to_s.camelize}AssociationExtension"
|
1806
|
+
|
1807
|
+
silence_warnings do
|
1808
|
+
self.parent.const_set(extension_module_name, Module.new(&block_extension))
|
1809
|
+
end
|
1810
|
+
Array(extensions).push("#{self.parent}::#{extension_module_name}".constantize)
|
1811
|
+
else
|
1812
|
+
Array(extensions)
|
1813
|
+
end
|
1814
|
+
end
|
1815
|
+
|
1816
|
+
class JoinDependency # :nodoc:
|
1817
|
+
attr_reader :joins, :reflections, :table_aliases
|
1818
|
+
|
1819
|
+
def initialize(base, associations, joins)
|
1820
|
+
@joins = [JoinBase.new(base, joins)]
|
1821
|
+
@associations = associations
|
1822
|
+
@reflections = []
|
1823
|
+
@base_records_hash = {}
|
1824
|
+
@base_records_in_order = []
|
1825
|
+
@table_aliases = Hash.new { |aliases, table| aliases[table] = 0 }
|
1826
|
+
@table_aliases[base.table_name] = 1
|
1827
|
+
build(associations)
|
1828
|
+
end
|
1829
|
+
|
1830
|
+
def join_associations
|
1831
|
+
@joins[1..-1].to_a
|
1832
|
+
end
|
1833
|
+
|
1834
|
+
def join_base
|
1835
|
+
@joins[0]
|
1836
|
+
end
|
1837
|
+
|
1838
|
+
def instantiate(rows)
|
1839
|
+
rows.each_with_index do |row, i|
|
1840
|
+
primary_id = join_base.record_id(row)
|
1841
|
+
unless @base_records_hash[primary_id]
|
1842
|
+
@base_records_in_order << (@base_records_hash[primary_id] = join_base.instantiate(row))
|
1843
|
+
end
|
1844
|
+
construct(@base_records_hash[primary_id], @associations, join_associations.dup, row)
|
1845
|
+
end
|
1846
|
+
remove_duplicate_results!(join_base.active_record, @base_records_in_order, @associations)
|
1847
|
+
return @base_records_in_order
|
1848
|
+
end
|
1849
|
+
|
1850
|
+
def remove_duplicate_results!(base, records, associations)
|
1851
|
+
case associations
|
1852
|
+
when Symbol, String
|
1853
|
+
reflection = base.reflections[associations]
|
1854
|
+
if reflection && [:has_many, :has_and_belongs_to_many].include?(reflection.macro)
|
1855
|
+
records.each { |record| record.send(reflection.name).target.uniq! }
|
1856
|
+
end
|
1857
|
+
when Array
|
1858
|
+
associations.each do |association|
|
1859
|
+
remove_duplicate_results!(base, records, association)
|
1860
|
+
end
|
1861
|
+
when Hash
|
1862
|
+
associations.keys.each do |name|
|
1863
|
+
reflection = base.reflections[name]
|
1864
|
+
is_collection = [:has_many, :has_and_belongs_to_many].include?(reflection.macro)
|
1865
|
+
|
1866
|
+
parent_records = records.map do |record|
|
1867
|
+
descendant = record.send(reflection.name)
|
1868
|
+
next unless descendant
|
1869
|
+
descendant.target.uniq! if is_collection
|
1870
|
+
descendant
|
1871
|
+
end.flatten.compact
|
1872
|
+
|
1873
|
+
remove_duplicate_results!(reflection.klass, parent_records, associations[name]) unless parent_records.empty?
|
1874
|
+
end
|
1875
|
+
end
|
1876
|
+
end
|
1877
|
+
|
1878
|
+
def join_for_table_name(table_name)
|
1879
|
+
join = (@joins.select{|j|j.aliased_table_name == table_name.gsub(/^\"(.*)\"$/){$1} }.first) rescue nil
|
1880
|
+
return join unless join.nil?
|
1881
|
+
@joins.select{|j|j.is_a?(JoinAssociation) && j.aliased_join_table_name == table_name.gsub(/^\"(.*)\"$/){$1} }.first rescue nil
|
1882
|
+
end
|
1883
|
+
|
1884
|
+
def joins_for_table_name(table_name)
|
1885
|
+
join = join_for_table_name(table_name)
|
1886
|
+
result = nil
|
1887
|
+
if join && join.is_a?(JoinAssociation)
|
1888
|
+
result = [join]
|
1889
|
+
if join.parent && join.parent.is_a?(JoinAssociation)
|
1890
|
+
result = joins_for_table_name(join.parent.aliased_table_name) +
|
1891
|
+
result
|
1892
|
+
end
|
1893
|
+
end
|
1894
|
+
result
|
1895
|
+
end
|
1896
|
+
|
1897
|
+
protected
|
1898
|
+
def build(associations, parent = nil)
|
1899
|
+
parent ||= @joins.last
|
1900
|
+
case associations
|
1901
|
+
when Symbol, String
|
1902
|
+
reflection = parent.reflections[associations.to_s.intern] or
|
1903
|
+
raise ConfigurationError, "Association named '#{ associations }' was not found; perhaps you misspelled it?"
|
1904
|
+
@reflections << reflection
|
1905
|
+
@joins << build_join_association(reflection, parent)
|
1906
|
+
when Array
|
1907
|
+
associations.each do |association|
|
1908
|
+
build(association, parent)
|
1909
|
+
end
|
1910
|
+
when Hash
|
1911
|
+
associations.keys.sort{|a,b|a.to_s<=>b.to_s}.each do |name|
|
1912
|
+
build(name, parent)
|
1913
|
+
build(associations[name])
|
1914
|
+
end
|
1915
|
+
else
|
1916
|
+
raise ConfigurationError, associations.inspect
|
1917
|
+
end
|
1918
|
+
end
|
1919
|
+
|
1920
|
+
# overridden in InnerJoinDependency subclass
|
1921
|
+
def build_join_association(reflection, parent)
|
1922
|
+
JoinAssociation.new(reflection, self, parent)
|
1923
|
+
end
|
1924
|
+
|
1925
|
+
def construct(parent, associations, joins, row)
|
1926
|
+
case associations
|
1927
|
+
when Symbol, String
|
1928
|
+
join = joins.detect{|j| j.reflection.name.to_s == associations.to_s && j.parent_table_name == parent.class.table_name }
|
1929
|
+
raise(ConfigurationError, "No such association") if join.nil?
|
1930
|
+
|
1931
|
+
joins.delete(join)
|
1932
|
+
construct_association(parent, join, row)
|
1933
|
+
when Array
|
1934
|
+
associations.each do |association|
|
1935
|
+
construct(parent, association, joins, row)
|
1936
|
+
end
|
1937
|
+
when Hash
|
1938
|
+
associations.keys.sort{|a,b|a.to_s<=>b.to_s}.each do |name|
|
1939
|
+
join = joins.detect{|j| j.reflection.name.to_s == name.to_s && j.parent_table_name == parent.class.table_name }
|
1940
|
+
raise(ConfigurationError, "No such association") if join.nil?
|
1941
|
+
|
1942
|
+
association = construct_association(parent, join, row)
|
1943
|
+
joins.delete(join)
|
1944
|
+
construct(association, associations[name], joins, row) if association
|
1945
|
+
end
|
1946
|
+
else
|
1947
|
+
raise ConfigurationError, associations.inspect
|
1948
|
+
end
|
1949
|
+
end
|
1950
|
+
|
1951
|
+
def construct_association(record, join, row)
|
1952
|
+
case join.reflection.macro
|
1953
|
+
when :has_many, :has_and_belongs_to_many
|
1954
|
+
collection = record.send(join.reflection.name)
|
1955
|
+
collection.loaded
|
1956
|
+
|
1957
|
+
return nil if record.id.to_s != join.parent.record_id(row).to_s or row[join.aliased_primary_key].nil?
|
1958
|
+
association = join.instantiate(row)
|
1959
|
+
collection.target.push(association)
|
1960
|
+
when :has_one
|
1961
|
+
return if record.id.to_s != join.parent.record_id(row).to_s
|
1962
|
+
return if record.instance_variable_defined?("@#{join.reflection.name}")
|
1963
|
+
association = join.instantiate(row) unless row[join.aliased_primary_key].nil?
|
1964
|
+
record.send("set_#{join.reflection.name}_target", association)
|
1965
|
+
when :belongs_to
|
1966
|
+
return if record.id.to_s != join.parent.record_id(row).to_s or row[join.aliased_primary_key].nil?
|
1967
|
+
association = join.instantiate(row)
|
1968
|
+
record.send("set_#{join.reflection.name}_target", association)
|
1969
|
+
else
|
1970
|
+
raise ConfigurationError, "unknown macro: #{join.reflection.macro}"
|
1971
|
+
end
|
1972
|
+
return association
|
1973
|
+
end
|
1974
|
+
|
1975
|
+
class JoinBase # :nodoc:
|
1976
|
+
attr_reader :active_record, :table_joins
|
1977
|
+
delegate :table_name, :column_names, :primary_key, :reflections, :sanitize_sql, :to => :active_record
|
1978
|
+
|
1979
|
+
def initialize(active_record, joins = nil)
|
1980
|
+
@active_record = active_record
|
1981
|
+
@cached_record = {}
|
1982
|
+
@table_joins = joins
|
1983
|
+
end
|
1984
|
+
|
1985
|
+
def aliased_prefix
|
1986
|
+
"t0"
|
1987
|
+
end
|
1988
|
+
|
1989
|
+
def aliased_primary_key
|
1990
|
+
"#{aliased_prefix}_r0"
|
1991
|
+
end
|
1992
|
+
|
1993
|
+
def aliased_table_name
|
1994
|
+
active_record.table_name
|
1995
|
+
end
|
1996
|
+
|
1997
|
+
def column_names_with_alias
|
1998
|
+
unless defined?(@column_names_with_alias)
|
1999
|
+
@column_names_with_alias = []
|
2000
|
+
|
2001
|
+
([primary_key] + (column_names - [primary_key])).each_with_index do |column_name, i|
|
2002
|
+
@column_names_with_alias << [column_name, "#{aliased_prefix}_r#{i}"]
|
2003
|
+
end
|
2004
|
+
end
|
2005
|
+
|
2006
|
+
@column_names_with_alias
|
2007
|
+
end
|
2008
|
+
|
2009
|
+
def extract_record(row)
|
2010
|
+
column_names_with_alias.inject({}){|record, (cn, an)| record[cn] = row[an]; record}
|
2011
|
+
end
|
2012
|
+
|
2013
|
+
def record_id(row)
|
2014
|
+
row[aliased_primary_key]
|
2015
|
+
end
|
2016
|
+
|
2017
|
+
def instantiate(row)
|
2018
|
+
@cached_record[record_id(row)] ||= active_record.send(:instantiate, extract_record(row))
|
2019
|
+
end
|
2020
|
+
end
|
2021
|
+
|
2022
|
+
class JoinAssociation < JoinBase # :nodoc:
|
2023
|
+
attr_reader :reflection, :parent, :aliased_table_name, :aliased_prefix, :aliased_join_table_name, :parent_table_name
|
2024
|
+
delegate :options, :klass, :through_reflection, :source_reflection, :to => :reflection
|
2025
|
+
|
2026
|
+
def initialize(reflection, join_dependency, parent = nil)
|
2027
|
+
reflection.check_validity!
|
2028
|
+
if reflection.options[:polymorphic]
|
2029
|
+
raise EagerLoadPolymorphicError.new(reflection)
|
2030
|
+
end
|
2031
|
+
|
2032
|
+
super(reflection.klass)
|
2033
|
+
@join_dependency = join_dependency
|
2034
|
+
@parent = parent
|
2035
|
+
@reflection = reflection
|
2036
|
+
@aliased_prefix = "t#{ join_dependency.joins.size }"
|
2037
|
+
@parent_table_name = parent.active_record.table_name
|
2038
|
+
@aliased_table_name = aliased_table_name_for(table_name)
|
2039
|
+
|
2040
|
+
if reflection.macro == :has_and_belongs_to_many
|
2041
|
+
@aliased_join_table_name = aliased_table_name_for(reflection.options[:join_table], "_join")
|
2042
|
+
end
|
2043
|
+
|
2044
|
+
if [:has_many, :has_one].include?(reflection.macro) && reflection.options[:through]
|
2045
|
+
@aliased_join_table_name = aliased_table_name_for(reflection.through_reflection.klass.table_name, "_join")
|
2046
|
+
end
|
2047
|
+
end
|
2048
|
+
|
2049
|
+
def association_join
|
2050
|
+
connection = reflection.active_record.connection
|
2051
|
+
join = case reflection.macro
|
2052
|
+
when :has_and_belongs_to_many
|
2053
|
+
" #{join_type} %s ON %s.%s = %s.%s " % [
|
2054
|
+
table_alias_for(options[:join_table], aliased_join_table_name),
|
2055
|
+
connection.quote_table_name(aliased_join_table_name),
|
2056
|
+
options[:foreign_key] || reflection.active_record.to_s.foreign_key,
|
2057
|
+
connection.quote_table_name(parent.aliased_table_name),
|
2058
|
+
reflection.active_record.primary_key] +
|
2059
|
+
" #{join_type} %s ON %s.%s = %s.%s " % [
|
2060
|
+
table_name_and_alias,
|
2061
|
+
connection.quote_table_name(aliased_table_name),
|
2062
|
+
klass.primary_key,
|
2063
|
+
connection.quote_table_name(aliased_join_table_name),
|
2064
|
+
options[:association_foreign_key] || klass.to_s.foreign_key
|
2065
|
+
]
|
2066
|
+
when :has_many, :has_one
|
2067
|
+
case
|
2068
|
+
when reflection.options[:through]
|
2069
|
+
through_conditions = through_reflection.options[:conditions] ? "AND #{interpolate_sql(sanitize_sql(through_reflection.options[:conditions]))}" : ''
|
2070
|
+
|
2071
|
+
jt_foreign_key = jt_as_extra = jt_source_extra = jt_sti_extra = nil
|
2072
|
+
first_key = second_key = as_extra = nil
|
2073
|
+
|
2074
|
+
if through_reflection.options[:as] # has_many :through against a polymorphic join
|
2075
|
+
jt_foreign_key = through_reflection.options[:as].to_s + '_id'
|
2076
|
+
jt_as_extra = " AND %s.%s = %s" % [
|
2077
|
+
connection.quote_table_name(aliased_join_table_name),
|
2078
|
+
connection.quote_column_name(through_reflection.options[:as].to_s + '_type'),
|
2079
|
+
klass.quote_value(parent.active_record.base_class.name)
|
2080
|
+
]
|
2081
|
+
else
|
2082
|
+
jt_foreign_key = through_reflection.primary_key_name
|
2083
|
+
end
|
2084
|
+
|
2085
|
+
case source_reflection.macro
|
2086
|
+
when :has_many
|
2087
|
+
if source_reflection.options[:as]
|
2088
|
+
first_key = "#{source_reflection.options[:as]}_id"
|
2089
|
+
second_key = options[:foreign_key] || primary_key
|
2090
|
+
as_extra = " AND %s.%s = %s" % [
|
2091
|
+
connection.quote_table_name(aliased_table_name),
|
2092
|
+
connection.quote_column_name("#{source_reflection.options[:as]}_type"),
|
2093
|
+
klass.quote_value(source_reflection.active_record.base_class.name)
|
2094
|
+
]
|
2095
|
+
else
|
2096
|
+
first_key = through_reflection.klass.base_class.to_s.foreign_key
|
2097
|
+
second_key = options[:foreign_key] || primary_key
|
2098
|
+
end
|
2099
|
+
|
2100
|
+
unless through_reflection.klass.descends_from_active_record?
|
2101
|
+
jt_sti_extra = " AND %s.%s = %s" % [
|
2102
|
+
connection.quote_table_name(aliased_join_table_name),
|
2103
|
+
connection.quote_column_name(through_reflection.active_record.inheritance_column),
|
2104
|
+
through_reflection.klass.quote_value(through_reflection.klass.sti_name)]
|
2105
|
+
end
|
2106
|
+
when :belongs_to
|
2107
|
+
first_key = primary_key
|
2108
|
+
if reflection.options[:source_type]
|
2109
|
+
second_key = source_reflection.association_foreign_key
|
2110
|
+
jt_source_extra = " AND %s.%s = %s" % [
|
2111
|
+
connection.quote_table_name(aliased_join_table_name),
|
2112
|
+
connection.quote_column_name(reflection.source_reflection.options[:foreign_type]),
|
2113
|
+
klass.quote_value(reflection.options[:source_type])
|
2114
|
+
]
|
2115
|
+
else
|
2116
|
+
second_key = source_reflection.primary_key_name
|
2117
|
+
end
|
2118
|
+
end
|
2119
|
+
|
2120
|
+
" #{join_type} %s ON (%s.%s = %s.%s%s%s%s) " % [
|
2121
|
+
table_alias_for(through_reflection.klass.table_name, aliased_join_table_name),
|
2122
|
+
connection.quote_table_name(parent.aliased_table_name),
|
2123
|
+
connection.quote_column_name(parent.primary_key),
|
2124
|
+
connection.quote_table_name(aliased_join_table_name),
|
2125
|
+
connection.quote_column_name(jt_foreign_key),
|
2126
|
+
jt_as_extra, jt_source_extra, jt_sti_extra
|
2127
|
+
] +
|
2128
|
+
" #{join_type} %s ON (%s.%s = %s.%s%s) " % [
|
2129
|
+
table_name_and_alias,
|
2130
|
+
connection.quote_table_name(aliased_table_name),
|
2131
|
+
connection.quote_column_name(first_key),
|
2132
|
+
connection.quote_table_name(aliased_join_table_name),
|
2133
|
+
connection.quote_column_name(second_key),
|
2134
|
+
as_extra
|
2135
|
+
]
|
2136
|
+
|
2137
|
+
when reflection.options[:as] && [:has_many, :has_one].include?(reflection.macro)
|
2138
|
+
" #{join_type} %s ON %s.%s = %s.%s AND %s.%s = %s" % [
|
2139
|
+
table_name_and_alias,
|
2140
|
+
connection.quote_table_name(aliased_table_name),
|
2141
|
+
"#{reflection.options[:as]}_id",
|
2142
|
+
connection.quote_table_name(parent.aliased_table_name),
|
2143
|
+
parent.primary_key,
|
2144
|
+
connection.quote_table_name(aliased_table_name),
|
2145
|
+
"#{reflection.options[:as]}_type",
|
2146
|
+
klass.quote_value(parent.active_record.base_class.name)
|
2147
|
+
]
|
2148
|
+
else
|
2149
|
+
foreign_key = options[:foreign_key] || reflection.active_record.name.foreign_key
|
2150
|
+
" #{join_type} %s ON %s.%s = %s.%s " % [
|
2151
|
+
table_name_and_alias,
|
2152
|
+
aliased_table_name,
|
2153
|
+
foreign_key,
|
2154
|
+
parent.aliased_table_name,
|
2155
|
+
reflection.options[:primary_key] || parent.primary_key
|
2156
|
+
]
|
2157
|
+
end
|
2158
|
+
when :belongs_to
|
2159
|
+
" #{join_type} %s ON %s.%s = %s.%s " % [
|
2160
|
+
table_name_and_alias,
|
2161
|
+
connection.quote_table_name(aliased_table_name),
|
2162
|
+
reflection.klass.primary_key,
|
2163
|
+
connection.quote_table_name(parent.aliased_table_name),
|
2164
|
+
options[:foreign_key] || reflection.primary_key_name
|
2165
|
+
]
|
2166
|
+
else
|
2167
|
+
""
|
2168
|
+
end || ''
|
2169
|
+
join << %(AND %s) % [
|
2170
|
+
klass.send(:type_condition, aliased_table_name)] unless klass.descends_from_active_record?
|
2171
|
+
|
2172
|
+
[through_reflection, reflection].each do |ref|
|
2173
|
+
join << "AND #{interpolate_sql(sanitize_sql(ref.options[:conditions], aliased_table_name))} " if ref && ref.options[:conditions]
|
2174
|
+
end
|
2175
|
+
|
2176
|
+
join
|
2177
|
+
end
|
2178
|
+
|
2179
|
+
protected
|
2180
|
+
|
2181
|
+
def aliased_table_name_for(name, suffix = nil)
|
2182
|
+
if !parent.table_joins.blank? && parent.table_joins.to_s.downcase =~ %r{join(\s+\w+)?\s+#{active_record.connection.quote_table_name name.downcase}\son}
|
2183
|
+
@join_dependency.table_aliases[name] += 1
|
2184
|
+
end
|
2185
|
+
|
2186
|
+
unless @join_dependency.table_aliases[name].zero?
|
2187
|
+
# if the table name has been used, then use an alias
|
2188
|
+
name = active_record.connection.table_alias_for "#{pluralize(reflection.name)}_#{parent_table_name}#{suffix}"
|
2189
|
+
table_index = @join_dependency.table_aliases[name]
|
2190
|
+
@join_dependency.table_aliases[name] += 1
|
2191
|
+
name = name[0..active_record.connection.table_alias_length-3] + "_#{table_index+1}" if table_index > 0
|
2192
|
+
else
|
2193
|
+
@join_dependency.table_aliases[name] += 1
|
2194
|
+
end
|
2195
|
+
|
2196
|
+
name
|
2197
|
+
end
|
2198
|
+
|
2199
|
+
def pluralize(table_name)
|
2200
|
+
ActiveRecord::Base.pluralize_table_names ? table_name.to_s.pluralize : table_name
|
2201
|
+
end
|
2202
|
+
|
2203
|
+
def table_alias_for(table_name, table_alias)
|
2204
|
+
"#{reflection.active_record.connection.quote_table_name(table_name)} #{table_alias if table_name != table_alias}".strip
|
2205
|
+
end
|
2206
|
+
|
2207
|
+
def table_name_and_alias
|
2208
|
+
table_alias_for table_name, @aliased_table_name
|
2209
|
+
end
|
2210
|
+
|
2211
|
+
def interpolate_sql(sql)
|
2212
|
+
instance_eval("%@#{sql.gsub('@', '\@')}@")
|
2213
|
+
end
|
2214
|
+
|
2215
|
+
private
|
2216
|
+
def join_type
|
2217
|
+
"LEFT OUTER JOIN"
|
2218
|
+
end
|
2219
|
+
end
|
2220
|
+
end
|
2221
|
+
|
2222
|
+
class InnerJoinDependency < JoinDependency # :nodoc:
|
2223
|
+
protected
|
2224
|
+
def build_join_association(reflection, parent)
|
2225
|
+
InnerJoinAssociation.new(reflection, self, parent)
|
2226
|
+
end
|
2227
|
+
|
2228
|
+
class InnerJoinAssociation < JoinAssociation
|
2229
|
+
private
|
2230
|
+
def join_type
|
2231
|
+
"INNER JOIN"
|
2232
|
+
end
|
2233
|
+
end
|
2234
|
+
end
|
2235
|
+
|
2236
|
+
end
|
2237
|
+
end
|
2238
|
+
end
|