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,3158 @@
|
|
1
|
+
require 'yaml'
|
2
|
+
require 'set'
|
3
|
+
|
4
|
+
module ActiveRecord #:nodoc:
|
5
|
+
# Generic Active Record exception class.
|
6
|
+
class ActiveRecordError < StandardError
|
7
|
+
end
|
8
|
+
|
9
|
+
# Raised when the single-table inheritance mechanism fails to locate the subclass
|
10
|
+
# (for example due to improper usage of column that +inheritance_column+ points to).
|
11
|
+
class SubclassNotFound < ActiveRecordError #:nodoc:
|
12
|
+
end
|
13
|
+
|
14
|
+
# Raised when an object assigned to an association has an incorrect type.
|
15
|
+
#
|
16
|
+
# class Ticket < ActiveRecord::Base
|
17
|
+
# has_many :patches
|
18
|
+
# end
|
19
|
+
#
|
20
|
+
# class Patch < ActiveRecord::Base
|
21
|
+
# belongs_to :ticket
|
22
|
+
# end
|
23
|
+
#
|
24
|
+
# # Comments are not patches, this assignment raises AssociationTypeMismatch.
|
25
|
+
# @ticket.patches << Comment.new(:content => "Please attach tests to your patch.")
|
26
|
+
class AssociationTypeMismatch < ActiveRecordError
|
27
|
+
end
|
28
|
+
|
29
|
+
# Raised when unserialized object's type mismatches one specified for serializable field.
|
30
|
+
class SerializationTypeMismatch < ActiveRecordError
|
31
|
+
end
|
32
|
+
|
33
|
+
# Raised when adapter not specified on connection (or configuration file <tt>config/database.yml</tt> misses adapter field).
|
34
|
+
class AdapterNotSpecified < ActiveRecordError
|
35
|
+
end
|
36
|
+
|
37
|
+
# Raised when Active Record cannot find database adapter specified in <tt>config/database.yml</tt> or programmatically.
|
38
|
+
class AdapterNotFound < ActiveRecordError
|
39
|
+
end
|
40
|
+
|
41
|
+
# Raised when connection to the database could not been established (for example when <tt>connection=</tt> is given a nil object).
|
42
|
+
class ConnectionNotEstablished < ActiveRecordError
|
43
|
+
end
|
44
|
+
|
45
|
+
# Raised when Active Record cannot find record by given id or set of ids.
|
46
|
+
class RecordNotFound < ActiveRecordError
|
47
|
+
end
|
48
|
+
|
49
|
+
# Raised by ActiveRecord::Base.save! and ActiveRecord::Base.create! methods when record cannot be
|
50
|
+
# saved because record is invalid.
|
51
|
+
class RecordNotSaved < ActiveRecordError
|
52
|
+
end
|
53
|
+
|
54
|
+
# Raised when SQL statement cannot be executed by the database (for example, it's often the case for MySQL when Ruby driver used is too old).
|
55
|
+
class StatementInvalid < ActiveRecordError
|
56
|
+
end
|
57
|
+
|
58
|
+
# Raised when number of bind variables in statement given to <tt>:condition</tt> key (for example, when using +find+ method)
|
59
|
+
# does not match number of expected variables.
|
60
|
+
#
|
61
|
+
# For example, in
|
62
|
+
#
|
63
|
+
# Location.find :all, :conditions => ["lat = ? AND lng = ?", 53.7362]
|
64
|
+
#
|
65
|
+
# two placeholders are given but only one variable to fill them.
|
66
|
+
class PreparedStatementInvalid < ActiveRecordError
|
67
|
+
end
|
68
|
+
|
69
|
+
# Raised on attempt to save stale record. Record is stale when it's being saved in another query after
|
70
|
+
# instantiation, for example, when two users edit the same wiki page and one starts editing and saves
|
71
|
+
# the page before the other.
|
72
|
+
#
|
73
|
+
# Read more about optimistic locking in ActiveRecord::Locking module RDoc.
|
74
|
+
class StaleObjectError < ActiveRecordError
|
75
|
+
end
|
76
|
+
|
77
|
+
# Raised when association is being configured improperly or
|
78
|
+
# user tries to use offset and limit together with has_many or has_and_belongs_to_many associations.
|
79
|
+
class ConfigurationError < ActiveRecordError
|
80
|
+
end
|
81
|
+
|
82
|
+
# Raised on attempt to update record that is instantiated as read only.
|
83
|
+
class ReadOnlyRecord < ActiveRecordError
|
84
|
+
end
|
85
|
+
|
86
|
+
# ActiveRecord::Transactions::ClassMethods.transaction uses this exception
|
87
|
+
# to distinguish a deliberate rollback from other exceptional situations.
|
88
|
+
# Normally, raising an exception will cause the +transaction+ method to rollback
|
89
|
+
# the database transaction *and* pass on the exception. But if you raise an
|
90
|
+
# ActiveRecord::Rollback exception, then the database transaction will be rolled back,
|
91
|
+
# without passing on the exception.
|
92
|
+
#
|
93
|
+
# For example, you could do this in your controller to rollback a transaction:
|
94
|
+
#
|
95
|
+
# class BooksController < ActionController::Base
|
96
|
+
# def create
|
97
|
+
# Book.transaction do
|
98
|
+
# book = Book.new(params[:book])
|
99
|
+
# book.save!
|
100
|
+
# if today_is_friday?
|
101
|
+
# # The system must fail on Friday so that our support department
|
102
|
+
# # won't be out of job. We silently rollback this transaction
|
103
|
+
# # without telling the user.
|
104
|
+
# raise ActiveRecord::Rollback, "Call tech support!"
|
105
|
+
# end
|
106
|
+
# end
|
107
|
+
# # ActiveRecord::Rollback is the only exception that won't be passed on
|
108
|
+
# # by ActiveRecord::Base.transaction, so this line will still be reached
|
109
|
+
# # even on Friday.
|
110
|
+
# redirect_to root_url
|
111
|
+
# end
|
112
|
+
# end
|
113
|
+
class Rollback < ActiveRecordError
|
114
|
+
end
|
115
|
+
|
116
|
+
# Raised when attribute has a name reserved by Active Record (when attribute has name of one of Active Record instance methods).
|
117
|
+
class DangerousAttributeError < ActiveRecordError
|
118
|
+
end
|
119
|
+
|
120
|
+
# Raised when you've tried to access a column which wasn't loaded by your finder.
|
121
|
+
# Typically this is because <tt>:select</tt> has been specified.
|
122
|
+
class MissingAttributeError < NoMethodError
|
123
|
+
end
|
124
|
+
|
125
|
+
# Raised when unknown attributes are supplied via mass assignment.
|
126
|
+
class UnknownAttributeError < NoMethodError
|
127
|
+
end
|
128
|
+
|
129
|
+
# Raised when an error occurred while doing a mass assignment to an attribute through the
|
130
|
+
# <tt>attributes=</tt> method. The exception has an +attribute+ property that is the name of the
|
131
|
+
# offending attribute.
|
132
|
+
class AttributeAssignmentError < ActiveRecordError
|
133
|
+
attr_reader :exception, :attribute
|
134
|
+
def initialize(message, exception, attribute)
|
135
|
+
@exception = exception
|
136
|
+
@attribute = attribute
|
137
|
+
@message = message
|
138
|
+
end
|
139
|
+
end
|
140
|
+
|
141
|
+
# Raised when there are multiple errors while doing a mass assignment through the +attributes+
|
142
|
+
# method. The exception has an +errors+ property that contains an array of AttributeAssignmentError
|
143
|
+
# objects, each corresponding to the error while assigning to an attribute.
|
144
|
+
class MultiparameterAssignmentErrors < ActiveRecordError
|
145
|
+
attr_reader :errors
|
146
|
+
def initialize(errors)
|
147
|
+
@errors = errors
|
148
|
+
end
|
149
|
+
end
|
150
|
+
|
151
|
+
# Active Record objects don't specify their attributes directly, but rather infer them from the table definition with
|
152
|
+
# which they're linked. Adding, removing, and changing attributes and their type is done directly in the database. Any change
|
153
|
+
# is instantly reflected in the Active Record objects. The mapping that binds a given Active Record class to a certain
|
154
|
+
# database table will happen automatically in most common cases, but can be overwritten for the uncommon ones.
|
155
|
+
#
|
156
|
+
# See the mapping rules in table_name and the full example in link:files/README.html for more insight.
|
157
|
+
#
|
158
|
+
# == Creation
|
159
|
+
#
|
160
|
+
# Active Records accept constructor parameters either in a hash or as a block. The hash method is especially useful when
|
161
|
+
# you're receiving the data from somewhere else, like an HTTP request. It works like this:
|
162
|
+
#
|
163
|
+
# user = User.new(:name => "David", :occupation => "Code Artist")
|
164
|
+
# user.name # => "David"
|
165
|
+
#
|
166
|
+
# You can also use block initialization:
|
167
|
+
#
|
168
|
+
# user = User.new do |u|
|
169
|
+
# u.name = "David"
|
170
|
+
# u.occupation = "Code Artist"
|
171
|
+
# end
|
172
|
+
#
|
173
|
+
# And of course you can just create a bare object and specify the attributes after the fact:
|
174
|
+
#
|
175
|
+
# user = User.new
|
176
|
+
# user.name = "David"
|
177
|
+
# user.occupation = "Code Artist"
|
178
|
+
#
|
179
|
+
# == Conditions
|
180
|
+
#
|
181
|
+
# Conditions can either be specified as a string, array, or hash representing the WHERE-part of an SQL statement.
|
182
|
+
# The array form is to be used when the condition input is tainted and requires sanitization. The string form can
|
183
|
+
# be used for statements that don't involve tainted data. The hash form works much like the array form, except
|
184
|
+
# only equality and range is possible. Examples:
|
185
|
+
#
|
186
|
+
# class User < ActiveRecord::Base
|
187
|
+
# def self.authenticate_unsafely(user_name, password)
|
188
|
+
# find(:first, :conditions => "user_name = '#{user_name}' AND password = '#{password}'")
|
189
|
+
# end
|
190
|
+
#
|
191
|
+
# def self.authenticate_safely(user_name, password)
|
192
|
+
# find(:first, :conditions => [ "user_name = ? AND password = ?", user_name, password ])
|
193
|
+
# end
|
194
|
+
#
|
195
|
+
# def self.authenticate_safely_simply(user_name, password)
|
196
|
+
# find(:first, :conditions => { :user_name => user_name, :password => password })
|
197
|
+
# end
|
198
|
+
# end
|
199
|
+
#
|
200
|
+
# The <tt>authenticate_unsafely</tt> method inserts the parameters directly into the query and is thus susceptible to SQL-injection
|
201
|
+
# attacks if the <tt>user_name</tt> and +password+ parameters come directly from an HTTP request. The <tt>authenticate_safely</tt> and
|
202
|
+
# <tt>authenticate_safely_simply</tt> both will sanitize the <tt>user_name</tt> and +password+ before inserting them in the query,
|
203
|
+
# which will ensure that an attacker can't escape the query and fake the login (or worse).
|
204
|
+
#
|
205
|
+
# When using multiple parameters in the conditions, it can easily become hard to read exactly what the fourth or fifth
|
206
|
+
# question mark is supposed to represent. In those cases, you can resort to named bind variables instead. That's done by replacing
|
207
|
+
# the question marks with symbols and supplying a hash with values for the matching symbol keys:
|
208
|
+
#
|
209
|
+
# Company.find(:first, :conditions => [
|
210
|
+
# "id = :id AND name = :name AND division = :division AND created_at > :accounting_date",
|
211
|
+
# { :id => 3, :name => "37signals", :division => "First", :accounting_date => '2005-01-01' }
|
212
|
+
# ])
|
213
|
+
#
|
214
|
+
# Similarly, a simple hash without a statement will generate conditions based on equality with the SQL AND
|
215
|
+
# operator. For instance:
|
216
|
+
#
|
217
|
+
# Student.find(:all, :conditions => { :first_name => "Harvey", :status => 1 })
|
218
|
+
# Student.find(:all, :conditions => params[:student])
|
219
|
+
#
|
220
|
+
# A range may be used in the hash to use the SQL BETWEEN operator:
|
221
|
+
#
|
222
|
+
# Student.find(:all, :conditions => { :grade => 9..12 })
|
223
|
+
#
|
224
|
+
# An array may be used in the hash to use the SQL IN operator:
|
225
|
+
#
|
226
|
+
# Student.find(:all, :conditions => { :grade => [9,11,12] })
|
227
|
+
#
|
228
|
+
# == Overwriting default accessors
|
229
|
+
#
|
230
|
+
# All column values are automatically available through basic accessors on the Active Record object, but sometimes you
|
231
|
+
# want to specialize this behavior. This can be done by overwriting the default accessors (using the same
|
232
|
+
# name as the attribute) and calling <tt>read_attribute(attr_name)</tt> and <tt>write_attribute(attr_name, value)</tt> to actually change things.
|
233
|
+
# Example:
|
234
|
+
#
|
235
|
+
# class Song < ActiveRecord::Base
|
236
|
+
# # Uses an integer of seconds to hold the length of the song
|
237
|
+
#
|
238
|
+
# def length=(minutes)
|
239
|
+
# write_attribute(:length, minutes.to_i * 60)
|
240
|
+
# end
|
241
|
+
#
|
242
|
+
# def length
|
243
|
+
# read_attribute(:length) / 60
|
244
|
+
# end
|
245
|
+
# end
|
246
|
+
#
|
247
|
+
# You can alternatively use <tt>self[:attribute]=(value)</tt> and <tt>self[:attribute]</tt> instead of <tt>write_attribute(:attribute, value)</tt> and
|
248
|
+
# <tt>read_attribute(:attribute)</tt> as a shorter form.
|
249
|
+
#
|
250
|
+
# == Attribute query methods
|
251
|
+
#
|
252
|
+
# In addition to the basic accessors, query methods are also automatically available on the Active Record object.
|
253
|
+
# Query methods allow you to test whether an attribute value is present.
|
254
|
+
#
|
255
|
+
# For example, an Active Record User with the <tt>name</tt> attribute has a <tt>name?</tt> method that you can call
|
256
|
+
# to determine whether the user has a name:
|
257
|
+
#
|
258
|
+
# user = User.new(:name => "David")
|
259
|
+
# user.name? # => true
|
260
|
+
#
|
261
|
+
# anonymous = User.new(:name => "")
|
262
|
+
# anonymous.name? # => false
|
263
|
+
#
|
264
|
+
# == Accessing attributes before they have been typecasted
|
265
|
+
#
|
266
|
+
# Sometimes you want to be able to read the raw attribute data without having the column-determined typecast run its course first.
|
267
|
+
# That can be done by using the <tt><attribute>_before_type_cast</tt> accessors that all attributes have. For example, if your Account model
|
268
|
+
# has a <tt>balance</tt> attribute, you can call <tt>account.balance_before_type_cast</tt> or <tt>account.id_before_type_cast</tt>.
|
269
|
+
#
|
270
|
+
# This is especially useful in validation situations where the user might supply a string for an integer field and you want to display
|
271
|
+
# the original string back in an error message. Accessing the attribute normally would typecast the string to 0, which isn't what you
|
272
|
+
# want.
|
273
|
+
#
|
274
|
+
# == Dynamic attribute-based finders
|
275
|
+
#
|
276
|
+
# Dynamic attribute-based finders are a cleaner way of getting (and/or creating) objects by simple queries without turning to SQL. They work by
|
277
|
+
# appending the name of an attribute to <tt>find_by_</tt>, <tt>find_last_by_</tt>, or <tt>find_all_by_</tt>, so you get finders like <tt>Person.find_by_user_name</tt>,
|
278
|
+
# <tt>Person.find_all_by_last_name</tt>, and <tt>Payment.find_by_transaction_id</tt>. So instead of writing
|
279
|
+
# <tt>Person.find(:first, :conditions => ["user_name = ?", user_name])</tt>, you just do <tt>Person.find_by_user_name(user_name)</tt>.
|
280
|
+
# And instead of writing <tt>Person.find(:all, :conditions => ["last_name = ?", last_name])</tt>, you just do <tt>Person.find_all_by_last_name(last_name)</tt>.
|
281
|
+
#
|
282
|
+
# It's also possible to use multiple attributes in the same find by separating them with "_and_", so you get finders like
|
283
|
+
# <tt>Person.find_by_user_name_and_password</tt> or even <tt>Payment.find_by_purchaser_and_state_and_country</tt>. So instead of writing
|
284
|
+
# <tt>Person.find(:first, :conditions => ["user_name = ? AND password = ?", user_name, password])</tt>, you just do
|
285
|
+
# <tt>Person.find_by_user_name_and_password(user_name, password)</tt>.
|
286
|
+
#
|
287
|
+
# It's even possible to use all the additional parameters to find. For example, the full interface for <tt>Payment.find_all_by_amount</tt>
|
288
|
+
# is actually <tt>Payment.find_all_by_amount(amount, options)</tt>. And the full interface to <tt>Person.find_by_user_name</tt> is
|
289
|
+
# actually <tt>Person.find_by_user_name(user_name, options)</tt>. So you could call <tt>Payment.find_all_by_amount(50, :order => "created_on")</tt>.
|
290
|
+
# Also you may call <tt>Payment.find_last_by_amount(amount, options)</tt> returning the last record matching that amount and options.
|
291
|
+
#
|
292
|
+
# The same dynamic finder style can be used to create the object if it doesn't already exist. This dynamic finder is called with
|
293
|
+
# <tt>find_or_create_by_</tt> and will return the object if it already exists and otherwise creates it, then returns it. Protected attributes won't be set unless they are given in a block. For example:
|
294
|
+
#
|
295
|
+
# # No 'Summer' tag exists
|
296
|
+
# Tag.find_or_create_by_name("Summer") # equal to Tag.create(:name => "Summer")
|
297
|
+
#
|
298
|
+
# # Now the 'Summer' tag does exist
|
299
|
+
# Tag.find_or_create_by_name("Summer") # equal to Tag.find_by_name("Summer")
|
300
|
+
#
|
301
|
+
# # Now 'Bob' exist and is an 'admin'
|
302
|
+
# User.find_or_create_by_name('Bob', :age => 40) { |u| u.admin = true }
|
303
|
+
#
|
304
|
+
# Use the <tt>find_or_initialize_by_</tt> finder if you want to return a new record without saving it first. Protected attributes won't be set unless they are given in a block. For example:
|
305
|
+
#
|
306
|
+
# # No 'Winter' tag exists
|
307
|
+
# winter = Tag.find_or_initialize_by_name("Winter")
|
308
|
+
# winter.new_record? # true
|
309
|
+
#
|
310
|
+
# To find by a subset of the attributes to be used for instantiating a new object, pass a hash instead of
|
311
|
+
# a list of parameters. For example:
|
312
|
+
#
|
313
|
+
# Tag.find_or_create_by_name(:name => "rails", :creator => current_user)
|
314
|
+
#
|
315
|
+
# That will either find an existing tag named "rails", or create a new one while setting the user that created it.
|
316
|
+
#
|
317
|
+
# == Saving arrays, hashes, and other non-mappable objects in text columns
|
318
|
+
#
|
319
|
+
# Active Record can serialize any object in text columns using YAML. To do so, you must specify this with a call to the class method +serialize+.
|
320
|
+
# This makes it possible to store arrays, hashes, and other non-mappable objects without doing any additional work. Example:
|
321
|
+
#
|
322
|
+
# class User < ActiveRecord::Base
|
323
|
+
# serialize :preferences
|
324
|
+
# end
|
325
|
+
#
|
326
|
+
# user = User.create(:preferences => { "background" => "black", "display" => large })
|
327
|
+
# User.find(user.id).preferences # => { "background" => "black", "display" => large }
|
328
|
+
#
|
329
|
+
# You can also specify a class option as the second parameter that'll raise an exception if a serialized object is retrieved as a
|
330
|
+
# descendant of a class not in the hierarchy. Example:
|
331
|
+
#
|
332
|
+
# class User < ActiveRecord::Base
|
333
|
+
# serialize :preferences, Hash
|
334
|
+
# end
|
335
|
+
#
|
336
|
+
# user = User.create(:preferences => %w( one two three ))
|
337
|
+
# User.find(user.id).preferences # raises SerializationTypeMismatch
|
338
|
+
#
|
339
|
+
# == Single table inheritance
|
340
|
+
#
|
341
|
+
# Active Record allows inheritance by storing the name of the class in a column that by default is named "type" (can be changed
|
342
|
+
# by overwriting <tt>Base.inheritance_column</tt>). This means that an inheritance looking like this:
|
343
|
+
#
|
344
|
+
# class Company < ActiveRecord::Base; end
|
345
|
+
# class Firm < Company; end
|
346
|
+
# class Client < Company; end
|
347
|
+
# class PriorityClient < Client; end
|
348
|
+
#
|
349
|
+
# When you do <tt>Firm.create(:name => "37signals")</tt>, this record will be saved in the companies table with type = "Firm". You can then
|
350
|
+
# fetch this row again using <tt>Company.find(:first, "name = '37signals'")</tt> and it will return a Firm object.
|
351
|
+
#
|
352
|
+
# If you don't have a type column defined in your table, single-table inheritance won't be triggered. In that case, it'll work just
|
353
|
+
# like normal subclasses with no special magic for differentiating between them or reloading the right type with find.
|
354
|
+
#
|
355
|
+
# Note, all the attributes for all the cases are kept in the same table. Read more:
|
356
|
+
# http://www.martinfowler.com/eaaCatalog/singleTableInheritance.html
|
357
|
+
#
|
358
|
+
# == Connection to multiple databases in different models
|
359
|
+
#
|
360
|
+
# Connections are usually created through ActiveRecord::Base.establish_connection and retrieved by ActiveRecord::Base.connection.
|
361
|
+
# All classes inheriting from ActiveRecord::Base will use this connection. But you can also set a class-specific connection.
|
362
|
+
# For example, if Course is an ActiveRecord::Base, but resides in a different database, you can just say <tt>Course.establish_connection</tt>
|
363
|
+
# and Course and all of its subclasses will use this connection instead.
|
364
|
+
#
|
365
|
+
# This feature is implemented by keeping a connection pool in ActiveRecord::Base that is a Hash indexed by the class. If a connection is
|
366
|
+
# requested, the retrieve_connection method will go up the class-hierarchy until a connection is found in the connection pool.
|
367
|
+
#
|
368
|
+
# == Exceptions
|
369
|
+
#
|
370
|
+
# * ActiveRecordError - Generic error class and superclass of all other errors raised by Active Record.
|
371
|
+
# * AdapterNotSpecified - The configuration hash used in <tt>establish_connection</tt> didn't include an
|
372
|
+
# <tt>:adapter</tt> key.
|
373
|
+
# * AdapterNotFound - The <tt>:adapter</tt> key used in <tt>establish_connection</tt> specified a non-existent adapter
|
374
|
+
# (or a bad spelling of an existing one).
|
375
|
+
# * AssociationTypeMismatch - The object assigned to the association wasn't of the type specified in the association definition.
|
376
|
+
# * SerializationTypeMismatch - The serialized object wasn't of the class specified as the second parameter.
|
377
|
+
# * ConnectionNotEstablished+ - No connection has been established. Use <tt>establish_connection</tt> before querying.
|
378
|
+
# * RecordNotFound - No record responded to the +find+ method. Either the row with the given ID doesn't exist
|
379
|
+
# or the row didn't meet the additional restrictions. Some +find+ calls do not raise this exception to signal
|
380
|
+
# nothing was found, please check its documentation for further details.
|
381
|
+
# * StatementInvalid - The database server rejected the SQL statement. The precise error is added in the message.
|
382
|
+
# * MultiparameterAssignmentErrors - Collection of errors that occurred during a mass assignment using the
|
383
|
+
# <tt>attributes=</tt> method. The +errors+ property of this exception contains an array of AttributeAssignmentError
|
384
|
+
# objects that should be inspected to determine which attributes triggered the errors.
|
385
|
+
# * AttributeAssignmentError - An error occurred while doing a mass assignment through the <tt>attributes=</tt> method.
|
386
|
+
# You can inspect the +attribute+ property of the exception object to determine which attribute triggered the error.
|
387
|
+
#
|
388
|
+
# *Note*: The attributes listed are class-level attributes (accessible from both the class and instance level).
|
389
|
+
# So it's possible to assign a logger to the class through <tt>Base.logger=</tt> which will then be used by all
|
390
|
+
# instances in the current object space.
|
391
|
+
class Base
|
392
|
+
##
|
393
|
+
# :singleton-method:
|
394
|
+
# Accepts a logger conforming to the interface of Log4r or the default Ruby 1.8+ Logger class, which is then passed
|
395
|
+
# on to any new database connections made and which can be retrieved on both a class and instance level by calling +logger+.
|
396
|
+
cattr_accessor :logger, :instance_writer => false
|
397
|
+
|
398
|
+
def self.inherited(child) #:nodoc:
|
399
|
+
@@subclasses[self] ||= []
|
400
|
+
@@subclasses[self] << child
|
401
|
+
super
|
402
|
+
end
|
403
|
+
|
404
|
+
def self.reset_subclasses #:nodoc:
|
405
|
+
nonreloadables = []
|
406
|
+
subclasses.each do |klass|
|
407
|
+
unless ActiveSupport::Dependencies.autoloaded? klass
|
408
|
+
nonreloadables << klass
|
409
|
+
next
|
410
|
+
end
|
411
|
+
klass.instance_variables.each { |var| klass.send(:remove_instance_variable, var) }
|
412
|
+
klass.instance_methods(false).each { |m| klass.send :undef_method, m }
|
413
|
+
end
|
414
|
+
@@subclasses = {}
|
415
|
+
nonreloadables.each { |klass| (@@subclasses[klass.superclass] ||= []) << klass }
|
416
|
+
end
|
417
|
+
|
418
|
+
@@subclasses = {}
|
419
|
+
|
420
|
+
##
|
421
|
+
# :singleton-method:
|
422
|
+
# Contains the database configuration - as is typically stored in config/database.yml -
|
423
|
+
# as a Hash.
|
424
|
+
#
|
425
|
+
# For example, the following database.yml...
|
426
|
+
#
|
427
|
+
# development:
|
428
|
+
# adapter: sqlite3
|
429
|
+
# database: db/development.sqlite3
|
430
|
+
#
|
431
|
+
# production:
|
432
|
+
# adapter: sqlite3
|
433
|
+
# database: db/production.sqlite3
|
434
|
+
#
|
435
|
+
# ...would result in ActiveRecord::Base.configurations to look like this:
|
436
|
+
#
|
437
|
+
# {
|
438
|
+
# 'development' => {
|
439
|
+
# 'adapter' => 'sqlite3',
|
440
|
+
# 'database' => 'db/development.sqlite3'
|
441
|
+
# },
|
442
|
+
# 'production' => {
|
443
|
+
# 'adapter' => 'sqlite3',
|
444
|
+
# 'database' => 'db/production.sqlite3'
|
445
|
+
# }
|
446
|
+
# }
|
447
|
+
cattr_accessor :configurations, :instance_writer => false
|
448
|
+
@@configurations = {}
|
449
|
+
|
450
|
+
##
|
451
|
+
# :singleton-method:
|
452
|
+
# Accessor for the prefix type that will be prepended to every primary key column name. The options are :table_name and
|
453
|
+
# :table_name_with_underscore. If the first is specified, the Product class will look for "productid" instead of "id" as
|
454
|
+
# the primary column. If the latter is specified, the Product class will look for "product_id" instead of "id". Remember
|
455
|
+
# that this is a global setting for all Active Records.
|
456
|
+
cattr_accessor :primary_key_prefix_type, :instance_writer => false
|
457
|
+
@@primary_key_prefix_type = nil
|
458
|
+
|
459
|
+
##
|
460
|
+
# :singleton-method:
|
461
|
+
# Accessor for the name of the prefix string to prepend to every table name. So if set to "basecamp_", all
|
462
|
+
# table names will be named like "basecamp_projects", "basecamp_people", etc. This is a convenient way of creating a namespace
|
463
|
+
# for tables in a shared database. By default, the prefix is the empty string.
|
464
|
+
cattr_accessor :table_name_prefix, :instance_writer => false
|
465
|
+
@@table_name_prefix = ""
|
466
|
+
|
467
|
+
##
|
468
|
+
# :singleton-method:
|
469
|
+
# Works like +table_name_prefix+, but appends instead of prepends (set to "_basecamp" gives "projects_basecamp",
|
470
|
+
# "people_basecamp"). By default, the suffix is the empty string.
|
471
|
+
cattr_accessor :table_name_suffix, :instance_writer => false
|
472
|
+
@@table_name_suffix = ""
|
473
|
+
|
474
|
+
##
|
475
|
+
# :singleton-method:
|
476
|
+
# Indicates whether table names should be the pluralized versions of the corresponding class names.
|
477
|
+
# If true, the default table name for a Product class will be +products+. If false, it would just be +product+.
|
478
|
+
# See table_name for the full rules on table/class naming. This is true, by default.
|
479
|
+
cattr_accessor :pluralize_table_names, :instance_writer => false
|
480
|
+
@@pluralize_table_names = true
|
481
|
+
|
482
|
+
##
|
483
|
+
# :singleton-method:
|
484
|
+
# Determines whether to use ANSI codes to colorize the logging statements committed by the connection adapter. These colors
|
485
|
+
# make it much easier to overview things during debugging (when used through a reader like +tail+ and on a black background), but
|
486
|
+
# may complicate matters if you use software like syslog. This is true, by default.
|
487
|
+
cattr_accessor :colorize_logging, :instance_writer => false
|
488
|
+
@@colorize_logging = true
|
489
|
+
|
490
|
+
##
|
491
|
+
# :singleton-method:
|
492
|
+
# Determines whether to use Time.local (using :local) or Time.utc (using :utc) when pulling dates and times from the database.
|
493
|
+
# This is set to :local by default.
|
494
|
+
cattr_accessor :default_timezone, :instance_writer => false
|
495
|
+
@@default_timezone = :local
|
496
|
+
|
497
|
+
##
|
498
|
+
# :singleton-method:
|
499
|
+
# Specifies the format to use when dumping the database schema with Rails'
|
500
|
+
# Rakefile. If :sql, the schema is dumped as (potentially database-
|
501
|
+
# specific) SQL statements. If :ruby, the schema is dumped as an
|
502
|
+
# ActiveRecord::Schema file which can be loaded into any database that
|
503
|
+
# supports migrations. Use :ruby if you want to have different database
|
504
|
+
# adapters for, e.g., your development and test environments.
|
505
|
+
cattr_accessor :schema_format , :instance_writer => false
|
506
|
+
@@schema_format = :ruby
|
507
|
+
|
508
|
+
##
|
509
|
+
# :singleton-method:
|
510
|
+
# Specify whether or not to use timestamps for migration numbers
|
511
|
+
cattr_accessor :timestamped_migrations , :instance_writer => false
|
512
|
+
@@timestamped_migrations = true
|
513
|
+
|
514
|
+
# Determine whether to store the full constant name including namespace when using STI
|
515
|
+
superclass_delegating_accessor :store_full_sti_class
|
516
|
+
self.store_full_sti_class = false
|
517
|
+
|
518
|
+
# Stores the default scope for the class
|
519
|
+
class_inheritable_accessor :default_scoping, :instance_writer => false
|
520
|
+
self.default_scoping = []
|
521
|
+
|
522
|
+
class << self # Class methods
|
523
|
+
# Find operates with four different retrieval approaches:
|
524
|
+
#
|
525
|
+
# * Find by id - This can either be a specific id (1), a list of ids (1, 5, 6), or an array of ids ([5, 6, 10]).
|
526
|
+
# If no record can be found for all of the listed ids, then RecordNotFound will be raised.
|
527
|
+
# * Find first - This will return the first record matched by the options used. These options can either be specific
|
528
|
+
# conditions or merely an order. If no record can be matched, +nil+ is returned. Use
|
529
|
+
# <tt>Model.find(:first, *args)</tt> or its shortcut <tt>Model.first(*args)</tt>.
|
530
|
+
# * Find last - This will return the last record matched by the options used. These options can either be specific
|
531
|
+
# conditions or merely an order. If no record can be matched, +nil+ is returned. Use
|
532
|
+
# <tt>Model.find(:last, *args)</tt> or its shortcut <tt>Model.last(*args)</tt>.
|
533
|
+
# * Find all - This will return all the records matched by the options used.
|
534
|
+
# If no records are found, an empty array is returned. Use
|
535
|
+
# <tt>Model.find(:all, *args)</tt> or its shortcut <tt>Model.all(*args)</tt>.
|
536
|
+
#
|
537
|
+
# All approaches accept an options hash as their last parameter.
|
538
|
+
#
|
539
|
+
# ==== Parameters
|
540
|
+
#
|
541
|
+
# * <tt>:conditions</tt> - An SQL fragment like "administrator = 1", <tt>[ "user_name = ?", username ]</tt>, or <tt>["user_name = :user_name", { :user_name => user_name }]</tt>. See conditions in the intro.
|
542
|
+
# * <tt>:order</tt> - An SQL fragment like "created_at DESC, name".
|
543
|
+
# * <tt>:group</tt> - An attribute name by which the result should be grouped. Uses the <tt>GROUP BY</tt> SQL-clause.
|
544
|
+
# * <tt>:having</tt> - 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.
|
545
|
+
# * <tt>:limit</tt> - An integer determining the limit on the number of rows that should be returned.
|
546
|
+
# * <tt>:offset</tt> - An integer determining the offset from where the rows should be fetched. So at 5, it would skip rows 0 through 4.
|
547
|
+
# * <tt>:joins</tt> - Either an SQL fragment for additional joins like "LEFT JOIN comments ON comments.post_id = id" (rarely needed),
|
548
|
+
# named associations in the same form used for the <tt>:include</tt> option, which will perform an <tt>INNER JOIN</tt> on the associated table(s),
|
549
|
+
# or an array containing a mixture of both strings and named associations.
|
550
|
+
# If the value is a string, then the records will be returned read-only since they will have attributes that do not correspond to the table's columns.
|
551
|
+
# Pass <tt>:readonly => false</tt> to override.
|
552
|
+
# * <tt>:include</tt> - Names associations that should be loaded alongside. The symbols named refer
|
553
|
+
# to already defined associations. See eager loading under Associations.
|
554
|
+
# * <tt>:select</tt> - By default, this is "*" as in "SELECT * FROM", but can be changed if you, for example, want to do a join but not
|
555
|
+
# include the joined columns. Takes a string with the SELECT SQL fragment (e.g. "id, name").
|
556
|
+
# * <tt>:from</tt> - By default, this is the table name of the class, but can be changed to an alternate table name (or even the name
|
557
|
+
# of a database view).
|
558
|
+
# * <tt>:readonly</tt> - Mark the returned records read-only so they cannot be saved or updated.
|
559
|
+
# * <tt>:lock</tt> - An SQL fragment like "FOR UPDATE" or "LOCK IN SHARE MODE".
|
560
|
+
# <tt>:lock => true</tt> gives connection's default exclusive lock, usually "FOR UPDATE".
|
561
|
+
#
|
562
|
+
# ==== Examples
|
563
|
+
#
|
564
|
+
# # find by id
|
565
|
+
# Person.find(1) # returns the object for ID = 1
|
566
|
+
# Person.find(1, 2, 6) # returns an array for objects with IDs in (1, 2, 6)
|
567
|
+
# Person.find([7, 17]) # returns an array for objects with IDs in (7, 17)
|
568
|
+
# Person.find([1]) # returns an array for the object with ID = 1
|
569
|
+
# Person.find(1, :conditions => "administrator = 1", :order => "created_on DESC")
|
570
|
+
#
|
571
|
+
# Note that returned records may not be in the same order as the ids you
|
572
|
+
# provide since database rows are unordered. Give an explicit <tt>:order</tt>
|
573
|
+
# to ensure the results are sorted.
|
574
|
+
#
|
575
|
+
# ==== Examples
|
576
|
+
#
|
577
|
+
# # find first
|
578
|
+
# Person.find(:first) # returns the first object fetched by SELECT * FROM people
|
579
|
+
# Person.find(:first, :conditions => [ "user_name = ?", user_name])
|
580
|
+
# Person.find(:first, :conditions => [ "user_name = :u", { :u => user_name }])
|
581
|
+
# Person.find(:first, :order => "created_on DESC", :offset => 5)
|
582
|
+
#
|
583
|
+
# # find last
|
584
|
+
# Person.find(:last) # returns the last object fetched by SELECT * FROM people
|
585
|
+
# Person.find(:last, :conditions => [ "user_name = ?", user_name])
|
586
|
+
# Person.find(:last, :order => "created_on DESC", :offset => 5)
|
587
|
+
#
|
588
|
+
# # find all
|
589
|
+
# Person.find(:all) # returns an array of objects for all the rows fetched by SELECT * FROM people
|
590
|
+
# Person.find(:all, :conditions => [ "category IN (?)", categories], :limit => 50)
|
591
|
+
# Person.find(:all, :conditions => { :friends => ["Bob", "Steve", "Fred"] }
|
592
|
+
# Person.find(:all, :offset => 10, :limit => 10)
|
593
|
+
# Person.find(:all, :include => [ :account, :friends ])
|
594
|
+
# Person.find(:all, :group => "category")
|
595
|
+
#
|
596
|
+
# Example for find with a lock: Imagine two concurrent transactions:
|
597
|
+
# each will read <tt>person.visits == 2</tt>, add 1 to it, and save, resulting
|
598
|
+
# in two saves of <tt>person.visits = 3</tt>. By locking the row, the second
|
599
|
+
# transaction has to wait until the first is finished; we get the
|
600
|
+
# expected <tt>person.visits == 4</tt>.
|
601
|
+
#
|
602
|
+
# Person.transaction do
|
603
|
+
# person = Person.find(1, :lock => true)
|
604
|
+
# person.visits += 1
|
605
|
+
# person.save!
|
606
|
+
# end
|
607
|
+
def find(*args)
|
608
|
+
options = args.extract_options!
|
609
|
+
validate_find_options(options)
|
610
|
+
set_readonly_option!(options)
|
611
|
+
|
612
|
+
case args.first
|
613
|
+
when :first then find_initial(options)
|
614
|
+
when :last then find_last(options)
|
615
|
+
when :all then find_every(options)
|
616
|
+
else find_from_ids(args, options)
|
617
|
+
end
|
618
|
+
end
|
619
|
+
|
620
|
+
# A convenience wrapper for <tt>find(:first, *args)</tt>. You can pass in all the
|
621
|
+
# same arguments to this method as you can to <tt>find(:first)</tt>.
|
622
|
+
def first(*args)
|
623
|
+
find(:first, *args)
|
624
|
+
end
|
625
|
+
|
626
|
+
# A convenience wrapper for <tt>find(:last, *args)</tt>. You can pass in all the
|
627
|
+
# same arguments to this method as you can to <tt>find(:last)</tt>.
|
628
|
+
def last(*args)
|
629
|
+
find(:last, *args)
|
630
|
+
end
|
631
|
+
|
632
|
+
# This is an alias for find(:all). You can pass in all the same arguments to this method as you can
|
633
|
+
# to find(:all)
|
634
|
+
def all(*args)
|
635
|
+
find(:all, *args)
|
636
|
+
end
|
637
|
+
|
638
|
+
# Executes a custom SQL query against your database and returns all the results. The results will
|
639
|
+
# be returned as an array with columns requested encapsulated as attributes of the model you call
|
640
|
+
# this method from. If you call <tt>Product.find_by_sql</tt> then the results will be returned in
|
641
|
+
# a Product object with the attributes you specified in the SQL query.
|
642
|
+
#
|
643
|
+
# If you call a complicated SQL query which spans multiple tables the columns specified by the
|
644
|
+
# SELECT will be attributes of the model, whether or not they are columns of the corresponding
|
645
|
+
# table.
|
646
|
+
#
|
647
|
+
# The +sql+ parameter is a full SQL query as a string. It will be called as is, there will be
|
648
|
+
# no database agnostic conversions performed. This should be a last resort because using, for example,
|
649
|
+
# MySQL specific terms will lock you to using that particular database engine or require you to
|
650
|
+
# change your call if you switch engines.
|
651
|
+
#
|
652
|
+
# ==== Examples
|
653
|
+
# # A simple SQL query spanning multiple tables
|
654
|
+
# Post.find_by_sql "SELECT p.title, c.author FROM posts p, comments c WHERE p.id = c.post_id"
|
655
|
+
# > [#<Post:0x36bff9c @attributes={"title"=>"Ruby Meetup", "first_name"=>"Quentin"}>, ...]
|
656
|
+
#
|
657
|
+
# # You can use the same string replacement techniques as you can with ActiveRecord#find
|
658
|
+
# Post.find_by_sql ["SELECT title FROM posts WHERE author = ? AND created > ?", author_id, start_date]
|
659
|
+
# > [#<Post:0x36bff9c @attributes={"first_name"=>"The Cheap Man Buys Twice"}>, ...]
|
660
|
+
def find_by_sql(sql)
|
661
|
+
connection.select_all(sanitize_sql(sql), "#{name} Load").collect! { |record| instantiate(record) }
|
662
|
+
end
|
663
|
+
|
664
|
+
# Returns true if a record exists in the table that matches the +id+ or
|
665
|
+
# conditions given, or false otherwise. The argument can take five forms:
|
666
|
+
#
|
667
|
+
# * Integer - Finds the record with this primary key.
|
668
|
+
# * String - Finds the record with a primary key corresponding to this
|
669
|
+
# string (such as <tt>'5'</tt>).
|
670
|
+
# * Array - Finds the record that matches these +find+-style conditions
|
671
|
+
# (such as <tt>['color = ?', 'red']</tt>).
|
672
|
+
# * Hash - Finds the record that matches these +find+-style conditions
|
673
|
+
# (such as <tt>{:color => 'red'}</tt>).
|
674
|
+
# * No args - Returns false if the table is empty, true otherwise.
|
675
|
+
#
|
676
|
+
# For more information about specifying conditions as a Hash or Array,
|
677
|
+
# see the Conditions section in the introduction to ActiveRecord::Base.
|
678
|
+
#
|
679
|
+
# Note: You can't pass in a condition as a string (like <tt>name =
|
680
|
+
# 'Jamie'</tt>), since it would be sanitized and then queried against
|
681
|
+
# the primary key column, like <tt>id = 'name = \'Jamie\''</tt>.
|
682
|
+
#
|
683
|
+
# ==== Examples
|
684
|
+
# Person.exists?(5)
|
685
|
+
# Person.exists?('5')
|
686
|
+
# Person.exists?(:name => "David")
|
687
|
+
# Person.exists?(['name LIKE ?', "%#{query}%"])
|
688
|
+
# Person.exists?
|
689
|
+
def exists?(id_or_conditions = {})
|
690
|
+
find_initial(
|
691
|
+
:select => "#{quoted_table_name}.#{primary_key}",
|
692
|
+
:conditions => expand_id_conditions(id_or_conditions)) ? true : false
|
693
|
+
end
|
694
|
+
|
695
|
+
# Creates an object (or multiple objects) and saves it to the database, if validations pass.
|
696
|
+
# The resulting object is returned whether the object was saved successfully to the database or not.
|
697
|
+
#
|
698
|
+
# The +attributes+ parameter can be either be a Hash or an Array of Hashes. These Hashes describe the
|
699
|
+
# attributes on the objects that are to be created.
|
700
|
+
#
|
701
|
+
# ==== Examples
|
702
|
+
# # Create a single new object
|
703
|
+
# User.create(:first_name => 'Jamie')
|
704
|
+
#
|
705
|
+
# # Create an Array of new objects
|
706
|
+
# User.create([{ :first_name => 'Jamie' }, { :first_name => 'Jeremy' }])
|
707
|
+
#
|
708
|
+
# # Create a single object and pass it into a block to set other attributes.
|
709
|
+
# User.create(:first_name => 'Jamie') do |u|
|
710
|
+
# u.is_admin = false
|
711
|
+
# end
|
712
|
+
#
|
713
|
+
# # Creating an Array of new objects using a block, where the block is executed for each object:
|
714
|
+
# User.create([{ :first_name => 'Jamie' }, { :first_name => 'Jeremy' }]) do |u|
|
715
|
+
# u.is_admin = false
|
716
|
+
# end
|
717
|
+
def create(attributes = nil, &block)
|
718
|
+
if attributes.is_a?(Array)
|
719
|
+
attributes.collect { |attr| create(attr, &block) }
|
720
|
+
else
|
721
|
+
object = new(attributes)
|
722
|
+
yield(object) if block_given?
|
723
|
+
object.save
|
724
|
+
object
|
725
|
+
end
|
726
|
+
end
|
727
|
+
|
728
|
+
# Updates an object (or multiple objects) and saves it to the database, if validations pass.
|
729
|
+
# The resulting object is returned whether the object was saved successfully to the database or not.
|
730
|
+
#
|
731
|
+
# ==== Parameters
|
732
|
+
#
|
733
|
+
# * +id+ - This should be the id or an array of ids to be updated.
|
734
|
+
# * +attributes+ - This should be a hash of attributes to be set on the object, or an array of hashes.
|
735
|
+
#
|
736
|
+
# ==== Examples
|
737
|
+
#
|
738
|
+
# # Updating one record:
|
739
|
+
# Person.update(15, :user_name => 'Samuel', :group => 'expert')
|
740
|
+
#
|
741
|
+
# # Updating multiple records:
|
742
|
+
# people = { 1 => { "first_name" => "David" }, 2 => { "first_name" => "Jeremy" } }
|
743
|
+
# Person.update(people.keys, people.values)
|
744
|
+
def update(id, attributes)
|
745
|
+
if id.is_a?(Array)
|
746
|
+
idx = -1
|
747
|
+
id.collect { |one_id| idx += 1; update(one_id, attributes[idx]) }
|
748
|
+
else
|
749
|
+
object = find(id)
|
750
|
+
object.update_attributes(attributes)
|
751
|
+
object
|
752
|
+
end
|
753
|
+
end
|
754
|
+
|
755
|
+
# Deletes the row with a primary key matching the +id+ argument, using a
|
756
|
+
# SQL +DELETE+ statement, and returns the number of rows deleted. Active
|
757
|
+
# Record objects are not instantiated, so the object's callbacks are not
|
758
|
+
# executed, including any <tt>:dependent</tt> association options or
|
759
|
+
# Observer methods.
|
760
|
+
#
|
761
|
+
# You can delete multiple rows at once by passing an Array of <tt>id</tt>s.
|
762
|
+
#
|
763
|
+
# Note: Although it is often much faster than the alternative,
|
764
|
+
# <tt>#destroy</tt>, skipping callbacks might bypass business logic in
|
765
|
+
# your application that ensures referential integrity or performs other
|
766
|
+
# essential jobs.
|
767
|
+
#
|
768
|
+
# ==== Examples
|
769
|
+
#
|
770
|
+
# # Delete a single row
|
771
|
+
# Todo.delete(1)
|
772
|
+
#
|
773
|
+
# # Delete multiple rows
|
774
|
+
# Todo.delete([2,3,4])
|
775
|
+
def delete(id)
|
776
|
+
delete_all([ "#{connection.quote_column_name(primary_key)} IN (?)", id ])
|
777
|
+
end
|
778
|
+
|
779
|
+
# Destroy an object (or multiple objects) that has the given id, the object is instantiated first,
|
780
|
+
# therefore all callbacks and filters are fired off before the object is deleted. This method is
|
781
|
+
# less efficient than ActiveRecord#delete but allows cleanup methods and other actions to be run.
|
782
|
+
#
|
783
|
+
# This essentially finds the object (or multiple objects) with the given id, creates a new object
|
784
|
+
# from the attributes, and then calls destroy on it.
|
785
|
+
#
|
786
|
+
# ==== Parameters
|
787
|
+
#
|
788
|
+
# * +id+ - Can be either an Integer or an Array of Integers.
|
789
|
+
#
|
790
|
+
# ==== Examples
|
791
|
+
#
|
792
|
+
# # Destroy a single object
|
793
|
+
# Todo.destroy(1)
|
794
|
+
#
|
795
|
+
# # Destroy multiple objects
|
796
|
+
# todos = [1,2,3]
|
797
|
+
# Todo.destroy(todos)
|
798
|
+
def destroy(id)
|
799
|
+
if id.is_a?(Array)
|
800
|
+
id.map { |one_id| destroy(one_id) }
|
801
|
+
else
|
802
|
+
find(id).destroy
|
803
|
+
end
|
804
|
+
end
|
805
|
+
|
806
|
+
# Updates all records with details given if they match a set of conditions supplied, limits and order can
|
807
|
+
# also be supplied. This method constructs a single SQL UPDATE statement and sends it straight to the
|
808
|
+
# database. It does not instantiate the involved models and it does not trigger Active Record callbacks.
|
809
|
+
#
|
810
|
+
# ==== Parameters
|
811
|
+
#
|
812
|
+
# * +updates+ - A string of column and value pairs that will be set on any records that match conditions. This creates the SET clause of the generated SQL.
|
813
|
+
# * +conditions+ - An SQL fragment like "administrator = 1" or [ "user_name = ?", username ]. See conditions in the intro for more info.
|
814
|
+
# * +options+ - Additional options are <tt>:limit</tt> and <tt>:order</tt>, see the examples for usage.
|
815
|
+
#
|
816
|
+
# ==== Examples
|
817
|
+
#
|
818
|
+
# # Update all billing objects with the 3 different attributes given
|
819
|
+
# Billing.update_all( "category = 'authorized', approved = 1, author = 'David'" )
|
820
|
+
#
|
821
|
+
# # Update records that match our conditions
|
822
|
+
# Billing.update_all( "author = 'David'", "title LIKE '%Rails%'" )
|
823
|
+
#
|
824
|
+
# # Update records that match our conditions but limit it to 5 ordered by date
|
825
|
+
# Billing.update_all( "author = 'David'", "title LIKE '%Rails%'",
|
826
|
+
# :order => 'created_at', :limit => 5 )
|
827
|
+
def update_all(updates, conditions = nil, options = {})
|
828
|
+
sql = "UPDATE #{quoted_table_name} SET #{sanitize_sql_for_assignment(updates)} "
|
829
|
+
|
830
|
+
scope = scope(:find)
|
831
|
+
|
832
|
+
select_sql = ""
|
833
|
+
add_conditions!(select_sql, conditions, scope)
|
834
|
+
|
835
|
+
if options.has_key?(:limit) || (scope && scope[:limit])
|
836
|
+
# Only take order from scope if limit is also provided by scope, this
|
837
|
+
# is useful for updating a has_many association with a limit.
|
838
|
+
add_order!(select_sql, options[:order], scope)
|
839
|
+
|
840
|
+
add_limit!(select_sql, options, scope)
|
841
|
+
sql.concat(connection.limited_update_conditions(select_sql, quoted_table_name, connection.quote_column_name(primary_key)))
|
842
|
+
else
|
843
|
+
add_order!(select_sql, options[:order], nil)
|
844
|
+
sql.concat(select_sql)
|
845
|
+
end
|
846
|
+
|
847
|
+
connection.update(sql, "#{name} Update")
|
848
|
+
end
|
849
|
+
|
850
|
+
# Destroys the records matching +conditions+ by instantiating each
|
851
|
+
# record and calling its +destroy+ method. Each object's callbacks are
|
852
|
+
# executed (including <tt>:dependent</tt> association options and
|
853
|
+
# +before_destroy+/+after_destroy+ Observer methods). Returns the
|
854
|
+
# collection of objects that were destroyed; each will be frozen, to
|
855
|
+
# reflect that no changes should be made (since they can't be
|
856
|
+
# persisted).
|
857
|
+
#
|
858
|
+
# Note: Instantiation, callback execution, and deletion of each
|
859
|
+
# record can be time consuming when you're removing many records at
|
860
|
+
# once. It generates at least one SQL +DELETE+ query per record (or
|
861
|
+
# possibly more, to enforce your callbacks). If you want to delete many
|
862
|
+
# rows quickly, without concern for their associations or callbacks, use
|
863
|
+
# +delete_all+ instead.
|
864
|
+
#
|
865
|
+
# ==== Parameters
|
866
|
+
#
|
867
|
+
# * +conditions+ - A string, array, or hash that specifies which records
|
868
|
+
# to destroy. If omitted, all records are destroyed. See the
|
869
|
+
# Conditions section in the introduction to ActiveRecord::Base for
|
870
|
+
# more information.
|
871
|
+
#
|
872
|
+
# ==== Examples
|
873
|
+
#
|
874
|
+
# Person.destroy_all("last_login < '2004-04-04'")
|
875
|
+
# Person.destroy_all(:status => "inactive")
|
876
|
+
def destroy_all(conditions = nil)
|
877
|
+
find(:all, :conditions => conditions).each { |object| object.destroy }
|
878
|
+
end
|
879
|
+
|
880
|
+
# Deletes the records matching +conditions+ without instantiating the records first, and hence not
|
881
|
+
# calling the +destroy+ method nor invoking callbacks. This is a single SQL DELETE statement that
|
882
|
+
# goes straight to the database, much more efficient than +destroy_all+. Be careful with relations
|
883
|
+
# though, in particular <tt>:dependent</tt> rules defined on associations are not honored. Returns
|
884
|
+
# the number of rows affected.
|
885
|
+
#
|
886
|
+
# ==== Parameters
|
887
|
+
#
|
888
|
+
# * +conditions+ - Conditions are specified the same way as with +find+ method.
|
889
|
+
#
|
890
|
+
# ==== Example
|
891
|
+
#
|
892
|
+
# Post.delete_all("person_id = 5 AND (category = 'Something' OR category = 'Else')")
|
893
|
+
# Post.delete_all(["person_id = ? AND (category = ? OR category = ?)", 5, 'Something', 'Else'])
|
894
|
+
#
|
895
|
+
# Both calls delete the affected posts all at once with a single DELETE statement. If you need to destroy dependent
|
896
|
+
# associations or call your <tt>before_*</tt> or +after_destroy+ callbacks, use the +destroy_all+ method instead.
|
897
|
+
def delete_all(conditions = nil)
|
898
|
+
sql = "DELETE FROM #{quoted_table_name} "
|
899
|
+
add_conditions!(sql, conditions, scope(:find))
|
900
|
+
connection.delete(sql, "#{name} Delete all")
|
901
|
+
end
|
902
|
+
|
903
|
+
# Returns the result of an SQL statement that should only include a COUNT(*) in the SELECT part.
|
904
|
+
# The use of this method should be restricted to complicated SQL queries that can't be executed
|
905
|
+
# using the ActiveRecord::Calculations class methods. Look into those before using this.
|
906
|
+
#
|
907
|
+
# ==== Parameters
|
908
|
+
#
|
909
|
+
# * +sql+ - An SQL statement which should return a count query from the database, see the example below.
|
910
|
+
#
|
911
|
+
# ==== Examples
|
912
|
+
#
|
913
|
+
# Product.count_by_sql "SELECT COUNT(*) FROM sales s, customers c WHERE s.customer_id = c.id"
|
914
|
+
def count_by_sql(sql)
|
915
|
+
sql = sanitize_conditions(sql)
|
916
|
+
connection.select_value(sql, "#{name} Count").to_i
|
917
|
+
end
|
918
|
+
|
919
|
+
# A generic "counter updater" implementation, intended primarily to be
|
920
|
+
# used by increment_counter and decrement_counter, but which may also
|
921
|
+
# be useful on its own. It simply does a direct SQL update for the record
|
922
|
+
# with the given ID, altering the given hash of counters by the amount
|
923
|
+
# given by the corresponding value:
|
924
|
+
#
|
925
|
+
# ==== Parameters
|
926
|
+
#
|
927
|
+
# * +id+ - The id of the object you wish to update a counter on or an Array of ids.
|
928
|
+
# * +counters+ - An Array of Hashes containing the names of the fields
|
929
|
+
# to update as keys and the amount to update the field by as values.
|
930
|
+
#
|
931
|
+
# ==== Examples
|
932
|
+
#
|
933
|
+
# # For the Post with id of 5, decrement the comment_count by 1, and
|
934
|
+
# # increment the action_count by 1
|
935
|
+
# Post.update_counters 5, :comment_count => -1, :action_count => 1
|
936
|
+
# # Executes the following SQL:
|
937
|
+
# # UPDATE posts
|
938
|
+
# # SET comment_count = comment_count - 1,
|
939
|
+
# # action_count = action_count + 1
|
940
|
+
# # WHERE id = 5
|
941
|
+
#
|
942
|
+
# # For the Posts with id of 10 and 15, increment the comment_count by 1
|
943
|
+
# Post.update_counters [10, 15], :comment_count => 1
|
944
|
+
# # Executes the following SQL:
|
945
|
+
# # UPDATE posts
|
946
|
+
# # SET comment_count = comment_count + 1,
|
947
|
+
# # WHERE id IN (10, 15)
|
948
|
+
def update_counters(id, counters)
|
949
|
+
updates = counters.inject([]) { |list, (counter_name, increment)|
|
950
|
+
sign = increment < 0 ? "-" : "+"
|
951
|
+
list << "#{connection.quote_column_name(counter_name)} = COALESCE(#{connection.quote_column_name(counter_name)}, 0) #{sign} #{increment.abs}"
|
952
|
+
}.join(", ")
|
953
|
+
|
954
|
+
if id.is_a?(Array)
|
955
|
+
ids_list = id.map {|i| quote_value(i)}.join(', ')
|
956
|
+
condition = "IN (#{ids_list})"
|
957
|
+
else
|
958
|
+
condition = "= #{quote_value(id)}"
|
959
|
+
end
|
960
|
+
|
961
|
+
update_all(updates, "#{connection.quote_column_name(primary_key)} #{condition}")
|
962
|
+
end
|
963
|
+
|
964
|
+
# Increment a number field by one, usually representing a count.
|
965
|
+
#
|
966
|
+
# This is used for caching aggregate values, so that they don't need to be computed every time.
|
967
|
+
# For example, a DiscussionBoard may cache post_count and comment_count otherwise every time the board is
|
968
|
+
# shown it would have to run an SQL query to find how many posts and comments there are.
|
969
|
+
#
|
970
|
+
# ==== Parameters
|
971
|
+
#
|
972
|
+
# * +counter_name+ - The name of the field that should be incremented.
|
973
|
+
# * +id+ - The id of the object that should be incremented.
|
974
|
+
#
|
975
|
+
# ==== Examples
|
976
|
+
#
|
977
|
+
# # Increment the post_count column for the record with an id of 5
|
978
|
+
# DiscussionBoard.increment_counter(:post_count, 5)
|
979
|
+
def increment_counter(counter_name, id)
|
980
|
+
update_counters(id, counter_name => 1)
|
981
|
+
end
|
982
|
+
|
983
|
+
# Decrement a number field by one, usually representing a count.
|
984
|
+
#
|
985
|
+
# This works the same as increment_counter but reduces the column value by 1 instead of increasing it.
|
986
|
+
#
|
987
|
+
# ==== Parameters
|
988
|
+
#
|
989
|
+
# * +counter_name+ - The name of the field that should be decremented.
|
990
|
+
# * +id+ - The id of the object that should be decremented.
|
991
|
+
#
|
992
|
+
# ==== Examples
|
993
|
+
#
|
994
|
+
# # Decrement the post_count column for the record with an id of 5
|
995
|
+
# DiscussionBoard.decrement_counter(:post_count, 5)
|
996
|
+
def decrement_counter(counter_name, id)
|
997
|
+
update_counters(id, counter_name => -1)
|
998
|
+
end
|
999
|
+
|
1000
|
+
# Attributes named in this macro are protected from mass-assignment,
|
1001
|
+
# such as <tt>new(attributes)</tt>,
|
1002
|
+
# <tt>update_attributes(attributes)</tt>, or
|
1003
|
+
# <tt>attributes=(attributes)</tt>.
|
1004
|
+
#
|
1005
|
+
# Mass-assignment to these attributes will simply be ignored, to assign
|
1006
|
+
# to them you can use direct writer methods. This is meant to protect
|
1007
|
+
# sensitive attributes from being overwritten by malicious users
|
1008
|
+
# tampering with URLs or forms.
|
1009
|
+
#
|
1010
|
+
# class Customer < ActiveRecord::Base
|
1011
|
+
# attr_protected :credit_rating
|
1012
|
+
# end
|
1013
|
+
#
|
1014
|
+
# customer = Customer.new("name" => David, "credit_rating" => "Excellent")
|
1015
|
+
# customer.credit_rating # => nil
|
1016
|
+
# customer.attributes = { "description" => "Jolly fellow", "credit_rating" => "Superb" }
|
1017
|
+
# customer.credit_rating # => nil
|
1018
|
+
#
|
1019
|
+
# customer.credit_rating = "Average"
|
1020
|
+
# customer.credit_rating # => "Average"
|
1021
|
+
#
|
1022
|
+
# To start from an all-closed default and enable attributes as needed,
|
1023
|
+
# have a look at +attr_accessible+.
|
1024
|
+
def attr_protected(*attributes)
|
1025
|
+
write_inheritable_attribute(:attr_protected, Set.new(attributes.map(&:to_s)) + (protected_attributes || []))
|
1026
|
+
end
|
1027
|
+
|
1028
|
+
# Returns an array of all the attributes that have been protected from mass-assignment.
|
1029
|
+
def protected_attributes # :nodoc:
|
1030
|
+
read_inheritable_attribute(:attr_protected)
|
1031
|
+
end
|
1032
|
+
|
1033
|
+
# Specifies a white list of model attributes that can be set via
|
1034
|
+
# mass-assignment, such as <tt>new(attributes)</tt>,
|
1035
|
+
# <tt>update_attributes(attributes)</tt>, or
|
1036
|
+
# <tt>attributes=(attributes)</tt>
|
1037
|
+
#
|
1038
|
+
# This is the opposite of the +attr_protected+ macro: Mass-assignment
|
1039
|
+
# will only set attributes in this list, to assign to the rest of
|
1040
|
+
# attributes you can use direct writer methods. This is meant to protect
|
1041
|
+
# sensitive attributes from being overwritten by malicious users
|
1042
|
+
# tampering with URLs or forms. If you'd rather start from an all-open
|
1043
|
+
# default and restrict attributes as needed, have a look at
|
1044
|
+
# +attr_protected+.
|
1045
|
+
#
|
1046
|
+
# class Customer < ActiveRecord::Base
|
1047
|
+
# attr_accessible :name, :nickname
|
1048
|
+
# end
|
1049
|
+
#
|
1050
|
+
# customer = Customer.new(:name => "David", :nickname => "Dave", :credit_rating => "Excellent")
|
1051
|
+
# customer.credit_rating # => nil
|
1052
|
+
# customer.attributes = { :name => "Jolly fellow", :credit_rating => "Superb" }
|
1053
|
+
# customer.credit_rating # => nil
|
1054
|
+
#
|
1055
|
+
# customer.credit_rating = "Average"
|
1056
|
+
# customer.credit_rating # => "Average"
|
1057
|
+
def attr_accessible(*attributes)
|
1058
|
+
write_inheritable_attribute(:attr_accessible, Set.new(attributes.map(&:to_s)) + (accessible_attributes || []))
|
1059
|
+
end
|
1060
|
+
|
1061
|
+
# Returns an array of all the attributes that have been made accessible to mass-assignment.
|
1062
|
+
def accessible_attributes # :nodoc:
|
1063
|
+
read_inheritable_attribute(:attr_accessible)
|
1064
|
+
end
|
1065
|
+
|
1066
|
+
# Attributes listed as readonly can be set for a new record, but will be ignored in database updates afterwards.
|
1067
|
+
def attr_readonly(*attributes)
|
1068
|
+
write_inheritable_attribute(:attr_readonly, Set.new(attributes.map(&:to_s)) + (readonly_attributes || []))
|
1069
|
+
end
|
1070
|
+
|
1071
|
+
# Returns an array of all the attributes that have been specified as readonly.
|
1072
|
+
def readonly_attributes
|
1073
|
+
read_inheritable_attribute(:attr_readonly)
|
1074
|
+
end
|
1075
|
+
|
1076
|
+
# If you have an attribute that needs to be saved to the database as an object, and retrieved as the same object,
|
1077
|
+
# then specify the name of that attribute using this method and it will be handled automatically.
|
1078
|
+
# The serialization is done through YAML. If +class_name+ is specified, the serialized object must be of that
|
1079
|
+
# class on retrieval or SerializationTypeMismatch will be raised.
|
1080
|
+
#
|
1081
|
+
# ==== Parameters
|
1082
|
+
#
|
1083
|
+
# * +attr_name+ - The field name that should be serialized.
|
1084
|
+
# * +class_name+ - Optional, class name that the object type should be equal to.
|
1085
|
+
#
|
1086
|
+
# ==== Example
|
1087
|
+
# # Serialize a preferences attribute
|
1088
|
+
# class User
|
1089
|
+
# serialize :preferences
|
1090
|
+
# end
|
1091
|
+
def serialize(attr_name, class_name = Object)
|
1092
|
+
serialized_attributes[attr_name.to_s] = class_name
|
1093
|
+
end
|
1094
|
+
|
1095
|
+
# Returns a hash of all the attributes that have been specified for serialization as keys and their class restriction as values.
|
1096
|
+
def serialized_attributes
|
1097
|
+
read_inheritable_attribute(:attr_serialized) or write_inheritable_attribute(:attr_serialized, {})
|
1098
|
+
end
|
1099
|
+
|
1100
|
+
# Guesses the table name (in forced lower-case) based on the name of the class in the inheritance hierarchy descending
|
1101
|
+
# directly from ActiveRecord::Base. So if the hierarchy looks like: Reply < Message < ActiveRecord::Base, then Message is used
|
1102
|
+
# to guess the table name even when called on Reply. The rules used to do the guess are handled by the Inflector class
|
1103
|
+
# in Active Support, which knows almost all common English inflections. You can add new inflections in config/initializers/inflections.rb.
|
1104
|
+
#
|
1105
|
+
# Nested classes are given table names prefixed by the singular form of
|
1106
|
+
# the parent's table name. Enclosing modules are not considered.
|
1107
|
+
#
|
1108
|
+
# ==== Examples
|
1109
|
+
#
|
1110
|
+
# class Invoice < ActiveRecord::Base; end;
|
1111
|
+
# file class table_name
|
1112
|
+
# invoice.rb Invoice invoices
|
1113
|
+
#
|
1114
|
+
# class Invoice < ActiveRecord::Base; class Lineitem < ActiveRecord::Base; end; end;
|
1115
|
+
# file class table_name
|
1116
|
+
# invoice.rb Invoice::Lineitem invoice_lineitems
|
1117
|
+
#
|
1118
|
+
# module Invoice; class Lineitem < ActiveRecord::Base; end; end;
|
1119
|
+
# file class table_name
|
1120
|
+
# invoice/lineitem.rb Invoice::Lineitem lineitems
|
1121
|
+
#
|
1122
|
+
# Additionally, the class-level +table_name_prefix+ is prepended and the
|
1123
|
+
# +table_name_suffix+ is appended. So if you have "myapp_" as a prefix,
|
1124
|
+
# the table name guess for an Invoice class becomes "myapp_invoices".
|
1125
|
+
# Invoice::Lineitem becomes "myapp_invoice_lineitems".
|
1126
|
+
#
|
1127
|
+
# You can also overwrite this class method to allow for unguessable
|
1128
|
+
# links, such as a Mouse class with a link to a "mice" table. Example:
|
1129
|
+
#
|
1130
|
+
# class Mouse < ActiveRecord::Base
|
1131
|
+
# set_table_name "mice"
|
1132
|
+
# end
|
1133
|
+
def table_name
|
1134
|
+
reset_table_name
|
1135
|
+
end
|
1136
|
+
|
1137
|
+
def reset_table_name #:nodoc:
|
1138
|
+
base = base_class
|
1139
|
+
|
1140
|
+
name =
|
1141
|
+
# STI subclasses always use their superclass' table.
|
1142
|
+
unless self == base
|
1143
|
+
base.table_name
|
1144
|
+
else
|
1145
|
+
# Nested classes are prefixed with singular parent table name.
|
1146
|
+
if parent < ActiveRecord::Base && !parent.abstract_class?
|
1147
|
+
contained = parent.table_name
|
1148
|
+
contained = contained.singularize if parent.pluralize_table_names
|
1149
|
+
contained << '_'
|
1150
|
+
end
|
1151
|
+
name = "#{table_name_prefix}#{contained}#{undecorated_table_name(base.name)}#{table_name_suffix}"
|
1152
|
+
end
|
1153
|
+
|
1154
|
+
set_table_name(name)
|
1155
|
+
name
|
1156
|
+
end
|
1157
|
+
|
1158
|
+
# Defines the primary key field -- can be overridden in subclasses. Overwriting will negate any effect of the
|
1159
|
+
# primary_key_prefix_type setting, though.
|
1160
|
+
def primary_key
|
1161
|
+
reset_primary_key
|
1162
|
+
end
|
1163
|
+
|
1164
|
+
def reset_primary_key #:nodoc:
|
1165
|
+
key = get_primary_key(base_class.name)
|
1166
|
+
set_primary_key(key)
|
1167
|
+
key
|
1168
|
+
end
|
1169
|
+
|
1170
|
+
def get_primary_key(base_name) #:nodoc:
|
1171
|
+
key = 'id'
|
1172
|
+
case primary_key_prefix_type
|
1173
|
+
when :table_name
|
1174
|
+
key = base_name.to_s.foreign_key(false)
|
1175
|
+
when :table_name_with_underscore
|
1176
|
+
key = base_name.to_s.foreign_key
|
1177
|
+
end
|
1178
|
+
key
|
1179
|
+
end
|
1180
|
+
|
1181
|
+
# Defines the column name for use with single table inheritance
|
1182
|
+
# -- can be set in subclasses like so: self.inheritance_column = "type_id"
|
1183
|
+
def inheritance_column
|
1184
|
+
@inheritance_column ||= "type".freeze
|
1185
|
+
end
|
1186
|
+
|
1187
|
+
# Lazy-set the sequence name to the connection's default. This method
|
1188
|
+
# is only ever called once since set_sequence_name overrides it.
|
1189
|
+
def sequence_name #:nodoc:
|
1190
|
+
reset_sequence_name
|
1191
|
+
end
|
1192
|
+
|
1193
|
+
def reset_sequence_name #:nodoc:
|
1194
|
+
default = connection.default_sequence_name(table_name, primary_key)
|
1195
|
+
set_sequence_name(default)
|
1196
|
+
default
|
1197
|
+
end
|
1198
|
+
|
1199
|
+
# Sets the table name to use to the given value, or (if the value
|
1200
|
+
# is nil or false) to the value returned by the given block.
|
1201
|
+
#
|
1202
|
+
# class Project < ActiveRecord::Base
|
1203
|
+
# set_table_name "project"
|
1204
|
+
# end
|
1205
|
+
def set_table_name(value = nil, &block)
|
1206
|
+
define_attr_method :table_name, value, &block
|
1207
|
+
end
|
1208
|
+
alias :table_name= :set_table_name
|
1209
|
+
|
1210
|
+
# Sets the name of the primary key column to use to the given value,
|
1211
|
+
# or (if the value is nil or false) to the value returned by the given
|
1212
|
+
# block.
|
1213
|
+
#
|
1214
|
+
# class Project < ActiveRecord::Base
|
1215
|
+
# set_primary_key "sysid"
|
1216
|
+
# end
|
1217
|
+
def set_primary_key(value = nil, &block)
|
1218
|
+
define_attr_method :primary_key, value, &block
|
1219
|
+
end
|
1220
|
+
alias :primary_key= :set_primary_key
|
1221
|
+
|
1222
|
+
# Sets the name of the inheritance column to use to the given value,
|
1223
|
+
# or (if the value # is nil or false) to the value returned by the
|
1224
|
+
# given block.
|
1225
|
+
#
|
1226
|
+
# class Project < ActiveRecord::Base
|
1227
|
+
# set_inheritance_column do
|
1228
|
+
# original_inheritance_column + "_id"
|
1229
|
+
# end
|
1230
|
+
# end
|
1231
|
+
def set_inheritance_column(value = nil, &block)
|
1232
|
+
define_attr_method :inheritance_column, value, &block
|
1233
|
+
end
|
1234
|
+
alias :inheritance_column= :set_inheritance_column
|
1235
|
+
|
1236
|
+
# Sets the name of the sequence to use when generating ids to the given
|
1237
|
+
# value, or (if the value is nil or false) to the value returned by the
|
1238
|
+
# given block. This is required for Oracle and is useful for any
|
1239
|
+
# database which relies on sequences for primary key generation.
|
1240
|
+
#
|
1241
|
+
# If a sequence name is not explicitly set when using Oracle or Firebird,
|
1242
|
+
# it will default to the commonly used pattern of: #{table_name}_seq
|
1243
|
+
#
|
1244
|
+
# If a sequence name is not explicitly set when using PostgreSQL, it
|
1245
|
+
# will discover the sequence corresponding to your primary key for you.
|
1246
|
+
#
|
1247
|
+
# class Project < ActiveRecord::Base
|
1248
|
+
# set_sequence_name "projectseq" # default would have been "project_seq"
|
1249
|
+
# end
|
1250
|
+
def set_sequence_name(value = nil, &block)
|
1251
|
+
define_attr_method :sequence_name, value, &block
|
1252
|
+
end
|
1253
|
+
alias :sequence_name= :set_sequence_name
|
1254
|
+
|
1255
|
+
# Turns the +table_name+ back into a class name following the reverse rules of +table_name+.
|
1256
|
+
def class_name(table_name = table_name) # :nodoc:
|
1257
|
+
# remove any prefix and/or suffix from the table name
|
1258
|
+
class_name = table_name[table_name_prefix.length..-(table_name_suffix.length + 1)].camelize
|
1259
|
+
class_name = class_name.singularize if pluralize_table_names
|
1260
|
+
class_name
|
1261
|
+
end
|
1262
|
+
|
1263
|
+
# Indicates whether the table associated with this class exists
|
1264
|
+
def table_exists?
|
1265
|
+
connection.table_exists?(table_name)
|
1266
|
+
end
|
1267
|
+
|
1268
|
+
# Returns an array of column objects for the table associated with this class.
|
1269
|
+
def columns
|
1270
|
+
unless defined?(@columns) && @columns
|
1271
|
+
@columns = connection.columns(table_name, "#{name} Columns")
|
1272
|
+
@columns.each { |column| column.primary = column.name == primary_key }
|
1273
|
+
end
|
1274
|
+
@columns
|
1275
|
+
end
|
1276
|
+
|
1277
|
+
# Returns a hash of column objects for the table associated with this class.
|
1278
|
+
def columns_hash
|
1279
|
+
@columns_hash ||= columns.inject({}) { |hash, column| hash[column.name] = column; hash }
|
1280
|
+
end
|
1281
|
+
|
1282
|
+
# Returns an array of column names as strings.
|
1283
|
+
def column_names
|
1284
|
+
@column_names ||= columns.map { |column| column.name }
|
1285
|
+
end
|
1286
|
+
|
1287
|
+
# Returns an array of column objects where the primary id, all columns ending in "_id" or "_count",
|
1288
|
+
# and columns used for single table inheritance have been removed.
|
1289
|
+
def content_columns
|
1290
|
+
@content_columns ||= columns.reject { |c| c.primary || c.name =~ /(_id|_count)$/ || c.name == inheritance_column }
|
1291
|
+
end
|
1292
|
+
|
1293
|
+
# Returns a hash of all the methods added to query each of the columns in the table with the name of the method as the key
|
1294
|
+
# and true as the value. This makes it possible to do O(1) lookups in respond_to? to check if a given method for attribute
|
1295
|
+
# is available.
|
1296
|
+
def column_methods_hash #:nodoc:
|
1297
|
+
@dynamic_methods_hash ||= column_names.inject(Hash.new(false)) do |methods, attr|
|
1298
|
+
attr_name = attr.to_s
|
1299
|
+
methods[attr.to_sym] = attr_name
|
1300
|
+
methods["#{attr}=".to_sym] = attr_name
|
1301
|
+
methods["#{attr}?".to_sym] = attr_name
|
1302
|
+
methods["#{attr}_before_type_cast".to_sym] = attr_name
|
1303
|
+
methods
|
1304
|
+
end
|
1305
|
+
end
|
1306
|
+
|
1307
|
+
# Resets all the cached information about columns, which will cause them
|
1308
|
+
# to be reloaded on the next request.
|
1309
|
+
#
|
1310
|
+
# The most common usage pattern for this method is probably in a migration,
|
1311
|
+
# when just after creating a table you want to populate it with some default
|
1312
|
+
# values, eg:
|
1313
|
+
#
|
1314
|
+
# class CreateJobLevels < ActiveRecord::Migration
|
1315
|
+
# def self.up
|
1316
|
+
# create_table :job_levels do |t|
|
1317
|
+
# t.integer :id
|
1318
|
+
# t.string :name
|
1319
|
+
#
|
1320
|
+
# t.timestamps
|
1321
|
+
# end
|
1322
|
+
#
|
1323
|
+
# JobLevel.reset_column_information
|
1324
|
+
# %w{assistant executive manager director}.each do |type|
|
1325
|
+
# JobLevel.create(:name => type)
|
1326
|
+
# end
|
1327
|
+
# end
|
1328
|
+
#
|
1329
|
+
# def self.down
|
1330
|
+
# drop_table :job_levels
|
1331
|
+
# end
|
1332
|
+
# end
|
1333
|
+
def reset_column_information
|
1334
|
+
generated_methods.each { |name| undef_method(name) }
|
1335
|
+
@column_names = @columns = @columns_hash = @content_columns = @dynamic_methods_hash = @generated_methods = @inheritance_column = nil
|
1336
|
+
end
|
1337
|
+
|
1338
|
+
def reset_column_information_and_inheritable_attributes_for_all_subclasses#:nodoc:
|
1339
|
+
subclasses.each { |klass| klass.reset_inheritable_attributes; klass.reset_column_information }
|
1340
|
+
end
|
1341
|
+
|
1342
|
+
def self_and_descendants_from_active_record#nodoc:
|
1343
|
+
klass = self
|
1344
|
+
classes = [klass]
|
1345
|
+
while klass != klass.base_class
|
1346
|
+
classes << klass = klass.superclass
|
1347
|
+
end
|
1348
|
+
classes
|
1349
|
+
rescue
|
1350
|
+
# OPTIMIZE this rescue is to fix this test: ./test/cases/reflection_test.rb:56:in `test_human_name_for_column'
|
1351
|
+
# Appearantly the method base_class causes some trouble.
|
1352
|
+
# It now works for sure.
|
1353
|
+
[self]
|
1354
|
+
end
|
1355
|
+
|
1356
|
+
# Transforms attribute key names into a more humane format, such as "First name" instead of "first_name". Example:
|
1357
|
+
# Person.human_attribute_name("first_name") # => "First name"
|
1358
|
+
# This used to be depricated in favor of humanize, but is now preferred, because it automatically uses the I18n
|
1359
|
+
# module now.
|
1360
|
+
# Specify +options+ with additional translating options.
|
1361
|
+
def human_attribute_name(attribute_key_name, options = {})
|
1362
|
+
defaults = self_and_descendants_from_active_record.map do |klass|
|
1363
|
+
:"#{klass.name.underscore}.#{attribute_key_name}"
|
1364
|
+
end
|
1365
|
+
defaults << options[:default] if options[:default]
|
1366
|
+
defaults.flatten!
|
1367
|
+
defaults << attribute_key_name.to_s.humanize
|
1368
|
+
options[:count] ||= 1
|
1369
|
+
I18n.translate(defaults.shift, options.merge(:default => defaults, :scope => [:activerecord, :attributes]))
|
1370
|
+
end
|
1371
|
+
|
1372
|
+
# Transform the modelname into a more humane format, using I18n.
|
1373
|
+
# Defaults to the basic humanize method.
|
1374
|
+
# Default scope of the translation is activerecord.models
|
1375
|
+
# Specify +options+ with additional translating options.
|
1376
|
+
def human_name(options = {})
|
1377
|
+
defaults = self_and_descendants_from_active_record.map do |klass|
|
1378
|
+
:"#{klass.name.underscore}"
|
1379
|
+
end
|
1380
|
+
defaults << self.name.humanize
|
1381
|
+
I18n.translate(defaults.shift, {:scope => [:activerecord, :models], :count => 1, :default => defaults}.merge(options))
|
1382
|
+
end
|
1383
|
+
|
1384
|
+
# True if this isn't a concrete subclass needing a STI type condition.
|
1385
|
+
def descends_from_active_record?
|
1386
|
+
if superclass.abstract_class?
|
1387
|
+
superclass.descends_from_active_record?
|
1388
|
+
else
|
1389
|
+
superclass == Base || !columns_hash.include?(inheritance_column)
|
1390
|
+
end
|
1391
|
+
end
|
1392
|
+
|
1393
|
+
def finder_needs_type_condition? #:nodoc:
|
1394
|
+
# This is like this because benchmarking justifies the strange :false stuff
|
1395
|
+
:true == (@finder_needs_type_condition ||= descends_from_active_record? ? :false : :true)
|
1396
|
+
end
|
1397
|
+
|
1398
|
+
# Returns a string like 'Post id:integer, title:string, body:text'
|
1399
|
+
def inspect
|
1400
|
+
if self == Base
|
1401
|
+
super
|
1402
|
+
elsif abstract_class?
|
1403
|
+
"#{super}(abstract)"
|
1404
|
+
elsif table_exists?
|
1405
|
+
attr_list = columns.map { |c| "#{c.name}: #{c.type}" } * ', '
|
1406
|
+
"#{super}(#{attr_list})"
|
1407
|
+
else
|
1408
|
+
"#{super}(Table doesn't exist)"
|
1409
|
+
end
|
1410
|
+
end
|
1411
|
+
|
1412
|
+
def quote_value(value, column = nil) #:nodoc:
|
1413
|
+
connection.quote(value,column)
|
1414
|
+
end
|
1415
|
+
|
1416
|
+
# Used to sanitize objects before they're used in an SQL SELECT statement. Delegates to <tt>connection.quote</tt>.
|
1417
|
+
def sanitize(object) #:nodoc:
|
1418
|
+
connection.quote(object)
|
1419
|
+
end
|
1420
|
+
|
1421
|
+
# Log and benchmark multiple statements in a single block. Example:
|
1422
|
+
#
|
1423
|
+
# Project.benchmark("Creating project") do
|
1424
|
+
# project = Project.create("name" => "stuff")
|
1425
|
+
# project.create_manager("name" => "David")
|
1426
|
+
# project.milestones << Milestone.find(:all)
|
1427
|
+
# end
|
1428
|
+
#
|
1429
|
+
# The benchmark is only recorded if the current level of the logger is less than or equal to the <tt>log_level</tt>,
|
1430
|
+
# which makes it easy to include benchmarking statements in production software that will remain inexpensive because
|
1431
|
+
# the benchmark will only be conducted if the log level is low enough.
|
1432
|
+
#
|
1433
|
+
# The logging of the multiple statements is turned off unless <tt>use_silence</tt> is set to false.
|
1434
|
+
def benchmark(title, log_level = Logger::DEBUG, use_silence = true)
|
1435
|
+
if logger && logger.level <= log_level
|
1436
|
+
result = nil
|
1437
|
+
ms = Benchmark.ms { result = use_silence ? silence { yield } : yield }
|
1438
|
+
logger.add(log_level, '%s (%.1fms)' % [title, ms])
|
1439
|
+
result
|
1440
|
+
else
|
1441
|
+
yield
|
1442
|
+
end
|
1443
|
+
end
|
1444
|
+
|
1445
|
+
# Silences the logger for the duration of the block.
|
1446
|
+
def silence
|
1447
|
+
old_logger_level, logger.level = logger.level, Logger::ERROR if logger
|
1448
|
+
yield
|
1449
|
+
ensure
|
1450
|
+
logger.level = old_logger_level if logger
|
1451
|
+
end
|
1452
|
+
|
1453
|
+
# Overwrite the default class equality method to provide support for association proxies.
|
1454
|
+
def ===(object)
|
1455
|
+
object.is_a?(self)
|
1456
|
+
end
|
1457
|
+
|
1458
|
+
# Returns the base AR subclass that this class descends from. If A
|
1459
|
+
# extends AR::Base, A.base_class will return A. If B descends from A
|
1460
|
+
# through some arbitrarily deep hierarchy, B.base_class will return A.
|
1461
|
+
def base_class
|
1462
|
+
class_of_active_record_descendant(self)
|
1463
|
+
end
|
1464
|
+
|
1465
|
+
# Set this to true if this is an abstract class (see <tt>abstract_class?</tt>).
|
1466
|
+
attr_accessor :abstract_class
|
1467
|
+
|
1468
|
+
# Returns whether this class is a base AR class. If A is a base class and
|
1469
|
+
# B descends from A, then B.base_class will return B.
|
1470
|
+
def abstract_class?
|
1471
|
+
defined?(@abstract_class) && @abstract_class == true
|
1472
|
+
end
|
1473
|
+
|
1474
|
+
def respond_to?(method_id, include_private = false)
|
1475
|
+
if match = DynamicFinderMatch.match(method_id)
|
1476
|
+
return true if all_attributes_exists?(match.attribute_names)
|
1477
|
+
elsif match = DynamicScopeMatch.match(method_id)
|
1478
|
+
return true if all_attributes_exists?(match.attribute_names)
|
1479
|
+
end
|
1480
|
+
|
1481
|
+
super
|
1482
|
+
end
|
1483
|
+
|
1484
|
+
def sti_name
|
1485
|
+
store_full_sti_class ? name : name.demodulize
|
1486
|
+
end
|
1487
|
+
|
1488
|
+
# Merges conditions so that the result is a valid +condition+
|
1489
|
+
def merge_conditions(*conditions)
|
1490
|
+
segments = []
|
1491
|
+
|
1492
|
+
conditions.each do |condition|
|
1493
|
+
unless condition.blank?
|
1494
|
+
sql = sanitize_sql(condition)
|
1495
|
+
segments << sql unless sql.blank?
|
1496
|
+
end
|
1497
|
+
end
|
1498
|
+
|
1499
|
+
"(#{segments.join(') AND (')})" unless segments.empty?
|
1500
|
+
end
|
1501
|
+
|
1502
|
+
private
|
1503
|
+
def find_initial(options)
|
1504
|
+
options.update(:limit => 1)
|
1505
|
+
find_every(options).first
|
1506
|
+
end
|
1507
|
+
|
1508
|
+
def find_last(options)
|
1509
|
+
order = options[:order]
|
1510
|
+
|
1511
|
+
if order
|
1512
|
+
order = reverse_sql_order(order)
|
1513
|
+
elsif !scoped?(:find, :order)
|
1514
|
+
order = "#{table_name}.#{primary_key} DESC"
|
1515
|
+
end
|
1516
|
+
|
1517
|
+
if scoped?(:find, :order)
|
1518
|
+
scope = scope(:find)
|
1519
|
+
original_scoped_order = scope[:order]
|
1520
|
+
scope[:order] = reverse_sql_order(original_scoped_order)
|
1521
|
+
end
|
1522
|
+
|
1523
|
+
begin
|
1524
|
+
find_initial(options.merge({ :order => order }))
|
1525
|
+
ensure
|
1526
|
+
scope[:order] = original_scoped_order if original_scoped_order
|
1527
|
+
end
|
1528
|
+
end
|
1529
|
+
|
1530
|
+
def reverse_sql_order(order_query)
|
1531
|
+
reversed_query = order_query.to_s.split(/,/).each { |s|
|
1532
|
+
if s.match(/\s(asc|ASC)$/)
|
1533
|
+
s.gsub!(/\s(asc|ASC)$/, ' DESC')
|
1534
|
+
elsif s.match(/\s(desc|DESC)$/)
|
1535
|
+
s.gsub!(/\s(desc|DESC)$/, ' ASC')
|
1536
|
+
elsif !s.match(/\s(asc|ASC|desc|DESC)$/)
|
1537
|
+
s.concat(' DESC')
|
1538
|
+
end
|
1539
|
+
}.join(',')
|
1540
|
+
end
|
1541
|
+
|
1542
|
+
def find_every(options)
|
1543
|
+
include_associations = merge_includes(scope(:find, :include), options[:include])
|
1544
|
+
|
1545
|
+
if include_associations.any? && references_eager_loaded_tables?(options)
|
1546
|
+
records = find_with_associations(options)
|
1547
|
+
else
|
1548
|
+
records = find_by_sql(construct_finder_sql(options))
|
1549
|
+
if include_associations.any?
|
1550
|
+
preload_associations(records, include_associations)
|
1551
|
+
end
|
1552
|
+
end
|
1553
|
+
|
1554
|
+
records.each { |record| record.readonly! } if options[:readonly]
|
1555
|
+
|
1556
|
+
records
|
1557
|
+
end
|
1558
|
+
|
1559
|
+
def find_from_ids(ids, options)
|
1560
|
+
expects_array = ids.first.kind_of?(Array)
|
1561
|
+
return ids.first if expects_array && ids.first.empty?
|
1562
|
+
|
1563
|
+
ids = ids.flatten.compact.uniq
|
1564
|
+
|
1565
|
+
case ids.size
|
1566
|
+
when 0
|
1567
|
+
raise RecordNotFound, "Couldn't find #{name} without an ID"
|
1568
|
+
when 1
|
1569
|
+
result = find_one(ids.first, options)
|
1570
|
+
expects_array ? [ result ] : result
|
1571
|
+
else
|
1572
|
+
find_some(ids, options)
|
1573
|
+
end
|
1574
|
+
end
|
1575
|
+
|
1576
|
+
def find_one(id, options)
|
1577
|
+
conditions = " AND (#{sanitize_sql(options[:conditions])})" if options[:conditions]
|
1578
|
+
options.update :conditions => "#{quoted_table_name}.#{connection.quote_column_name(primary_key)} = #{quote_value(id,columns_hash[primary_key])}#{conditions}"
|
1579
|
+
|
1580
|
+
# Use find_every(options).first since the primary key condition
|
1581
|
+
# already ensures we have a single record. Using find_initial adds
|
1582
|
+
# a superfluous :limit => 1.
|
1583
|
+
if result = find_every(options).first
|
1584
|
+
result
|
1585
|
+
else
|
1586
|
+
raise RecordNotFound, "Couldn't find #{name} with ID=#{id}#{conditions}"
|
1587
|
+
end
|
1588
|
+
end
|
1589
|
+
|
1590
|
+
def find_some(ids, options)
|
1591
|
+
conditions = " AND (#{sanitize_sql(options[:conditions])})" if options[:conditions]
|
1592
|
+
ids_list = ids.map { |id| quote_value(id,columns_hash[primary_key]) }.join(',')
|
1593
|
+
options.update :conditions => "#{quoted_table_name}.#{connection.quote_column_name(primary_key)} IN (#{ids_list})#{conditions}"
|
1594
|
+
|
1595
|
+
result = find_every(options)
|
1596
|
+
|
1597
|
+
# Determine expected size from limit and offset, not just ids.size.
|
1598
|
+
expected_size =
|
1599
|
+
if options[:limit] && ids.size > options[:limit]
|
1600
|
+
options[:limit]
|
1601
|
+
else
|
1602
|
+
ids.size
|
1603
|
+
end
|
1604
|
+
|
1605
|
+
# 11 ids with limit 3, offset 9 should give 2 results.
|
1606
|
+
if options[:offset] && (ids.size - options[:offset] < expected_size)
|
1607
|
+
expected_size = ids.size - options[:offset]
|
1608
|
+
end
|
1609
|
+
|
1610
|
+
if result.size == expected_size
|
1611
|
+
result
|
1612
|
+
else
|
1613
|
+
raise RecordNotFound, "Couldn't find all #{name.pluralize} with IDs (#{ids_list})#{conditions} (found #{result.size} results, but was looking for #{expected_size})"
|
1614
|
+
end
|
1615
|
+
end
|
1616
|
+
|
1617
|
+
# Finder methods must instantiate through this method to work with the
|
1618
|
+
# single-table inheritance model that makes it possible to create
|
1619
|
+
# objects of different types from the same table.
|
1620
|
+
def instantiate(record)
|
1621
|
+
object =
|
1622
|
+
if subclass_name = record[inheritance_column]
|
1623
|
+
# No type given.
|
1624
|
+
if subclass_name.empty?
|
1625
|
+
allocate
|
1626
|
+
|
1627
|
+
else
|
1628
|
+
# Ignore type if no column is present since it was probably
|
1629
|
+
# pulled in from a sloppy join.
|
1630
|
+
unless columns_hash.include?(inheritance_column)
|
1631
|
+
allocate
|
1632
|
+
|
1633
|
+
else
|
1634
|
+
begin
|
1635
|
+
compute_type(subclass_name).allocate
|
1636
|
+
rescue NameError
|
1637
|
+
raise SubclassNotFound,
|
1638
|
+
"The single-table inheritance mechanism failed to locate the subclass: '#{record[inheritance_column]}'. " +
|
1639
|
+
"This error is raised because the column '#{inheritance_column}' is reserved for storing the class in case of inheritance. " +
|
1640
|
+
"Please rename this column if you didn't intend it to be used for storing the inheritance class " +
|
1641
|
+
"or overwrite #{self.to_s}.inheritance_column to use another column for that information."
|
1642
|
+
end
|
1643
|
+
end
|
1644
|
+
end
|
1645
|
+
else
|
1646
|
+
allocate
|
1647
|
+
end
|
1648
|
+
|
1649
|
+
object.instance_variable_set("@attributes", record)
|
1650
|
+
object.instance_variable_set("@attributes_cache", Hash.new)
|
1651
|
+
|
1652
|
+
if object.respond_to_without_attributes?(:after_find)
|
1653
|
+
object.send(:callback, :after_find)
|
1654
|
+
end
|
1655
|
+
|
1656
|
+
if object.respond_to_without_attributes?(:after_initialize)
|
1657
|
+
object.send(:callback, :after_initialize)
|
1658
|
+
end
|
1659
|
+
|
1660
|
+
object
|
1661
|
+
end
|
1662
|
+
|
1663
|
+
# Nest the type name in the same module as this class.
|
1664
|
+
# Bar is "MyApp::Business::Bar" relative to MyApp::Business::Foo
|
1665
|
+
def type_name_with_module(type_name)
|
1666
|
+
if store_full_sti_class
|
1667
|
+
type_name
|
1668
|
+
else
|
1669
|
+
(/^::/ =~ type_name) ? type_name : "#{parent.name}::#{type_name}"
|
1670
|
+
end
|
1671
|
+
end
|
1672
|
+
|
1673
|
+
def default_select(qualified)
|
1674
|
+
if qualified
|
1675
|
+
quoted_table_name + '.*'
|
1676
|
+
else
|
1677
|
+
'*'
|
1678
|
+
end
|
1679
|
+
end
|
1680
|
+
|
1681
|
+
def construct_finder_sql(options)
|
1682
|
+
scope = scope(:find)
|
1683
|
+
sql = "SELECT #{options[:select] || (scope && scope[:select]) || default_select(options[:joins] || (scope && scope[:joins]))} "
|
1684
|
+
sql << "FROM #{options[:from] || (scope && scope[:from]) || quoted_table_name} "
|
1685
|
+
|
1686
|
+
add_joins!(sql, options[:joins], scope)
|
1687
|
+
add_conditions!(sql, options[:conditions], scope)
|
1688
|
+
|
1689
|
+
add_group!(sql, options[:group], options[:having], scope)
|
1690
|
+
add_order!(sql, options[:order], scope)
|
1691
|
+
add_limit!(sql, options, scope)
|
1692
|
+
add_lock!(sql, options, scope)
|
1693
|
+
|
1694
|
+
sql
|
1695
|
+
end
|
1696
|
+
|
1697
|
+
# Merges includes so that the result is a valid +include+
|
1698
|
+
def merge_includes(first, second)
|
1699
|
+
(safe_to_array(first) + safe_to_array(second)).uniq
|
1700
|
+
end
|
1701
|
+
|
1702
|
+
def merge_joins(*joins)
|
1703
|
+
if joins.any?{|j| j.is_a?(String) || array_of_strings?(j) }
|
1704
|
+
joins = joins.collect do |join|
|
1705
|
+
join = [join] if join.is_a?(String)
|
1706
|
+
unless array_of_strings?(join)
|
1707
|
+
join_dependency = ActiveRecord::Associations::ClassMethods::InnerJoinDependency.new(self, join, nil)
|
1708
|
+
join = join_dependency.join_associations.collect { |assoc| assoc.association_join }
|
1709
|
+
end
|
1710
|
+
join
|
1711
|
+
end
|
1712
|
+
joins.flatten.map{|j| j.strip}.uniq
|
1713
|
+
else
|
1714
|
+
joins.collect{|j| safe_to_array(j)}.flatten.uniq
|
1715
|
+
end
|
1716
|
+
end
|
1717
|
+
|
1718
|
+
# Object#to_a is deprecated, though it does have the desired behavior
|
1719
|
+
def safe_to_array(o)
|
1720
|
+
case o
|
1721
|
+
when NilClass
|
1722
|
+
[]
|
1723
|
+
when Array
|
1724
|
+
o
|
1725
|
+
else
|
1726
|
+
[o]
|
1727
|
+
end
|
1728
|
+
end
|
1729
|
+
|
1730
|
+
def array_of_strings?(o)
|
1731
|
+
o.is_a?(Array) && o.all?{|obj| obj.is_a?(String)}
|
1732
|
+
end
|
1733
|
+
|
1734
|
+
def add_order!(sql, order, scope = :auto)
|
1735
|
+
scope = scope(:find) if :auto == scope
|
1736
|
+
scoped_order = scope[:order] if scope
|
1737
|
+
if order
|
1738
|
+
sql << " ORDER BY #{order}"
|
1739
|
+
if scoped_order && scoped_order != order
|
1740
|
+
sql << ", #{scoped_order}"
|
1741
|
+
end
|
1742
|
+
else
|
1743
|
+
sql << " ORDER BY #{scoped_order}" if scoped_order
|
1744
|
+
end
|
1745
|
+
end
|
1746
|
+
|
1747
|
+
def add_group!(sql, group, having, scope = :auto)
|
1748
|
+
if group
|
1749
|
+
sql << " GROUP BY #{group}"
|
1750
|
+
sql << " HAVING #{sanitize_sql_for_conditions(having)}" if having
|
1751
|
+
else
|
1752
|
+
scope = scope(:find) if :auto == scope
|
1753
|
+
if scope && (scoped_group = scope[:group])
|
1754
|
+
sql << " GROUP BY #{scoped_group}"
|
1755
|
+
sql << " HAVING #{sanitize_sql_for_conditions(scope[:having])}" if scope[:having]
|
1756
|
+
end
|
1757
|
+
end
|
1758
|
+
end
|
1759
|
+
|
1760
|
+
# The optional scope argument is for the current <tt>:find</tt> scope.
|
1761
|
+
def add_limit!(sql, options, scope = :auto)
|
1762
|
+
scope = scope(:find) if :auto == scope
|
1763
|
+
|
1764
|
+
if scope
|
1765
|
+
options[:limit] ||= scope[:limit]
|
1766
|
+
options[:offset] ||= scope[:offset]
|
1767
|
+
end
|
1768
|
+
|
1769
|
+
connection.add_limit_offset!(sql, options)
|
1770
|
+
end
|
1771
|
+
|
1772
|
+
# The optional scope argument is for the current <tt>:find</tt> scope.
|
1773
|
+
# The <tt>:lock</tt> option has precedence over a scoped <tt>:lock</tt>.
|
1774
|
+
def add_lock!(sql, options, scope = :auto)
|
1775
|
+
scope = scope(:find) if :auto == scope
|
1776
|
+
options = options.reverse_merge(:lock => scope[:lock]) if scope
|
1777
|
+
connection.add_lock!(sql, options)
|
1778
|
+
end
|
1779
|
+
|
1780
|
+
# The optional scope argument is for the current <tt>:find</tt> scope.
|
1781
|
+
def add_joins!(sql, joins, scope = :auto)
|
1782
|
+
scope = scope(:find) if :auto == scope
|
1783
|
+
merged_joins = scope && scope[:joins] && joins ? merge_joins(scope[:joins], joins) : (joins || scope && scope[:joins])
|
1784
|
+
case merged_joins
|
1785
|
+
when Symbol, Hash, Array
|
1786
|
+
if array_of_strings?(merged_joins)
|
1787
|
+
sql << merged_joins.join(' ') + " "
|
1788
|
+
else
|
1789
|
+
join_dependency = ActiveRecord::Associations::ClassMethods::InnerJoinDependency.new(self, merged_joins, nil)
|
1790
|
+
sql << " #{join_dependency.join_associations.collect { |assoc| assoc.association_join }.join} "
|
1791
|
+
end
|
1792
|
+
when String
|
1793
|
+
sql << " #{merged_joins} "
|
1794
|
+
end
|
1795
|
+
end
|
1796
|
+
|
1797
|
+
# Adds a sanitized version of +conditions+ to the +sql+ string. Note that the passed-in +sql+ string is changed.
|
1798
|
+
# The optional scope argument is for the current <tt>:find</tt> scope.
|
1799
|
+
def add_conditions!(sql, conditions, scope = :auto)
|
1800
|
+
scope = scope(:find) if :auto == scope
|
1801
|
+
conditions = [conditions]
|
1802
|
+
conditions << scope[:conditions] if scope
|
1803
|
+
conditions << type_condition if finder_needs_type_condition?
|
1804
|
+
merged_conditions = merge_conditions(*conditions)
|
1805
|
+
sql << "WHERE #{merged_conditions} " unless merged_conditions.blank?
|
1806
|
+
end
|
1807
|
+
|
1808
|
+
def type_condition(table_alias=nil)
|
1809
|
+
quoted_table_alias = self.connection.quote_table_name(table_alias || table_name)
|
1810
|
+
quoted_inheritance_column = connection.quote_column_name(inheritance_column)
|
1811
|
+
type_condition = subclasses.inject("#{quoted_table_alias}.#{quoted_inheritance_column} = '#{sti_name}' ") do |condition, subclass|
|
1812
|
+
condition << "OR #{quoted_table_alias}.#{quoted_inheritance_column} = '#{subclass.sti_name}' "
|
1813
|
+
end
|
1814
|
+
|
1815
|
+
" (#{type_condition}) "
|
1816
|
+
end
|
1817
|
+
|
1818
|
+
# Guesses the table name, but does not decorate it with prefix and suffix information.
|
1819
|
+
def undecorated_table_name(class_name = base_class.name)
|
1820
|
+
table_name = class_name.to_s.demodulize.underscore
|
1821
|
+
table_name = table_name.pluralize if pluralize_table_names
|
1822
|
+
table_name
|
1823
|
+
end
|
1824
|
+
|
1825
|
+
# Enables dynamic finders like <tt>find_by_user_name(user_name)</tt> and <tt>find_by_user_name_and_password(user_name, password)</tt>
|
1826
|
+
# that are turned into <tt>find(:first, :conditions => ["user_name = ?", user_name])</tt> and
|
1827
|
+
# <tt>find(:first, :conditions => ["user_name = ? AND password = ?", user_name, password])</tt> respectively. Also works for
|
1828
|
+
# <tt>find(:all)</tt> by using <tt>find_all_by_amount(50)</tt> that is turned into <tt>find(:all, :conditions => ["amount = ?", 50])</tt>.
|
1829
|
+
#
|
1830
|
+
# It's even possible to use all the additional parameters to +find+. For example, the full interface for +find_all_by_amount+
|
1831
|
+
# is actually <tt>find_all_by_amount(amount, options)</tt>.
|
1832
|
+
#
|
1833
|
+
# Also enables dynamic scopes like scoped_by_user_name(user_name) and scoped_by_user_name_and_password(user_name, password) that
|
1834
|
+
# are turned into scoped(:conditions => ["user_name = ?", user_name]) and scoped(:conditions => ["user_name = ? AND password = ?", user_name, password])
|
1835
|
+
# respectively.
|
1836
|
+
#
|
1837
|
+
# Each dynamic finder, scope or initializer/creator is also defined in the class after it is first invoked, so that future
|
1838
|
+
# attempts to use it do not run through method_missing.
|
1839
|
+
def method_missing(method_id, *arguments, &block)
|
1840
|
+
if match = DynamicFinderMatch.match(method_id)
|
1841
|
+
attribute_names = match.attribute_names
|
1842
|
+
super unless all_attributes_exists?(attribute_names)
|
1843
|
+
if match.finder?
|
1844
|
+
finder = match.finder
|
1845
|
+
bang = match.bang?
|
1846
|
+
# def self.find_by_login_and_activated(*args)
|
1847
|
+
# options = args.extract_options!
|
1848
|
+
# attributes = construct_attributes_from_arguments(
|
1849
|
+
# [:login,:activated],
|
1850
|
+
# args
|
1851
|
+
# )
|
1852
|
+
# finder_options = { :conditions => attributes }
|
1853
|
+
# validate_find_options(options)
|
1854
|
+
# set_readonly_option!(options)
|
1855
|
+
#
|
1856
|
+
# if options[:conditions]
|
1857
|
+
# with_scope(:find => finder_options) do
|
1858
|
+
# find(:first, options)
|
1859
|
+
# end
|
1860
|
+
# else
|
1861
|
+
# find(:first, options.merge(finder_options))
|
1862
|
+
# end
|
1863
|
+
# end
|
1864
|
+
self.class_eval %{
|
1865
|
+
def self.#{method_id}(*args)
|
1866
|
+
options = args.extract_options!
|
1867
|
+
attributes = construct_attributes_from_arguments(
|
1868
|
+
[:#{attribute_names.join(',:')}],
|
1869
|
+
args
|
1870
|
+
)
|
1871
|
+
finder_options = { :conditions => attributes }
|
1872
|
+
validate_find_options(options)
|
1873
|
+
set_readonly_option!(options)
|
1874
|
+
|
1875
|
+
#{'result = ' if bang}if options[:conditions]
|
1876
|
+
with_scope(:find => finder_options) do
|
1877
|
+
find(:#{finder}, options)
|
1878
|
+
end
|
1879
|
+
else
|
1880
|
+
find(:#{finder}, options.merge(finder_options))
|
1881
|
+
end
|
1882
|
+
#{'result || raise(RecordNotFound, "Couldn\'t find #{name} with #{attributes.to_a.collect {|pair| "#{pair.first} = #{pair.second}"}.join(\', \')}")' if bang}
|
1883
|
+
end
|
1884
|
+
}, __FILE__, __LINE__
|
1885
|
+
send(method_id, *arguments)
|
1886
|
+
elsif match.instantiator?
|
1887
|
+
instantiator = match.instantiator
|
1888
|
+
# def self.find_or_create_by_user_id(*args)
|
1889
|
+
# guard_protected_attributes = false
|
1890
|
+
#
|
1891
|
+
# if args[0].is_a?(Hash)
|
1892
|
+
# guard_protected_attributes = true
|
1893
|
+
# attributes = args[0].with_indifferent_access
|
1894
|
+
# find_attributes = attributes.slice(*[:user_id])
|
1895
|
+
# else
|
1896
|
+
# find_attributes = attributes = construct_attributes_from_arguments([:user_id], args)
|
1897
|
+
# end
|
1898
|
+
#
|
1899
|
+
# options = { :conditions => find_attributes }
|
1900
|
+
# set_readonly_option!(options)
|
1901
|
+
#
|
1902
|
+
# record = find(:first, options)
|
1903
|
+
#
|
1904
|
+
# if record.nil?
|
1905
|
+
# record = self.new { |r| r.send(:attributes=, attributes, guard_protected_attributes) }
|
1906
|
+
# yield(record) if block_given?
|
1907
|
+
# record.save
|
1908
|
+
# record
|
1909
|
+
# else
|
1910
|
+
# record
|
1911
|
+
# end
|
1912
|
+
# end
|
1913
|
+
self.class_eval %{
|
1914
|
+
def self.#{method_id}(*args)
|
1915
|
+
guard_protected_attributes = false
|
1916
|
+
|
1917
|
+
if args[0].is_a?(Hash)
|
1918
|
+
guard_protected_attributes = true
|
1919
|
+
attributes = args[0].with_indifferent_access
|
1920
|
+
find_attributes = attributes.slice(*[:#{attribute_names.join(',:')}])
|
1921
|
+
else
|
1922
|
+
find_attributes = attributes = construct_attributes_from_arguments([:#{attribute_names.join(',:')}], args)
|
1923
|
+
end
|
1924
|
+
|
1925
|
+
options = { :conditions => find_attributes }
|
1926
|
+
set_readonly_option!(options)
|
1927
|
+
|
1928
|
+
record = find(:first, options)
|
1929
|
+
|
1930
|
+
if record.nil?
|
1931
|
+
record = self.new { |r| r.send(:attributes=, attributes, guard_protected_attributes) }
|
1932
|
+
#{'yield(record) if block_given?'}
|
1933
|
+
#{'record.save' if instantiator == :create}
|
1934
|
+
record
|
1935
|
+
else
|
1936
|
+
record
|
1937
|
+
end
|
1938
|
+
end
|
1939
|
+
}, __FILE__, __LINE__
|
1940
|
+
send(method_id, *arguments, &block)
|
1941
|
+
end
|
1942
|
+
elsif match = DynamicScopeMatch.match(method_id)
|
1943
|
+
attribute_names = match.attribute_names
|
1944
|
+
super unless all_attributes_exists?(attribute_names)
|
1945
|
+
if match.scope?
|
1946
|
+
self.class_eval %{
|
1947
|
+
def self.#{method_id}(*args) # def self.scoped_by_user_name_and_password(*args)
|
1948
|
+
options = args.extract_options! # options = args.extract_options!
|
1949
|
+
attributes = construct_attributes_from_arguments( # attributes = construct_attributes_from_arguments(
|
1950
|
+
[:#{attribute_names.join(',:')}], args # [:user_name, :password], args
|
1951
|
+
) # )
|
1952
|
+
#
|
1953
|
+
scoped(:conditions => attributes) # scoped(:conditions => attributes)
|
1954
|
+
end # end
|
1955
|
+
}, __FILE__, __LINE__
|
1956
|
+
send(method_id, *arguments)
|
1957
|
+
end
|
1958
|
+
else
|
1959
|
+
super
|
1960
|
+
end
|
1961
|
+
end
|
1962
|
+
|
1963
|
+
def construct_attributes_from_arguments(attribute_names, arguments)
|
1964
|
+
attributes = {}
|
1965
|
+
attribute_names.each_with_index { |name, idx| attributes[name] = arguments[idx] }
|
1966
|
+
attributes
|
1967
|
+
end
|
1968
|
+
|
1969
|
+
# Similar in purpose to +expand_hash_conditions_for_aggregates+.
|
1970
|
+
def expand_attribute_names_for_aggregates(attribute_names)
|
1971
|
+
expanded_attribute_names = []
|
1972
|
+
attribute_names.each do |attribute_name|
|
1973
|
+
unless (aggregation = reflect_on_aggregation(attribute_name.to_sym)).nil?
|
1974
|
+
aggregate_mapping(aggregation).each do |field_attr, aggregate_attr|
|
1975
|
+
expanded_attribute_names << field_attr
|
1976
|
+
end
|
1977
|
+
else
|
1978
|
+
expanded_attribute_names << attribute_name
|
1979
|
+
end
|
1980
|
+
end
|
1981
|
+
expanded_attribute_names
|
1982
|
+
end
|
1983
|
+
|
1984
|
+
def all_attributes_exists?(attribute_names)
|
1985
|
+
attribute_names = expand_attribute_names_for_aggregates(attribute_names)
|
1986
|
+
attribute_names.all? { |name| column_methods_hash.include?(name.to_sym) }
|
1987
|
+
end
|
1988
|
+
|
1989
|
+
def attribute_condition(quoted_column_name, argument)
|
1990
|
+
case argument
|
1991
|
+
when nil then "#{quoted_column_name} IS ?"
|
1992
|
+
when Array, ActiveRecord::Associations::AssociationCollection, ActiveRecord::NamedScope::Scope then "#{quoted_column_name} IN (?)"
|
1993
|
+
when Range then if argument.exclude_end?
|
1994
|
+
"#{quoted_column_name} >= ? AND #{quoted_column_name} < ?"
|
1995
|
+
else
|
1996
|
+
"#{quoted_column_name} BETWEEN ? AND ?"
|
1997
|
+
end
|
1998
|
+
else "#{quoted_column_name} = ?"
|
1999
|
+
end
|
2000
|
+
end
|
2001
|
+
|
2002
|
+
# Interpret Array and Hash as conditions and anything else as an id.
|
2003
|
+
def expand_id_conditions(id_or_conditions)
|
2004
|
+
case id_or_conditions
|
2005
|
+
when Array, Hash then id_or_conditions
|
2006
|
+
else sanitize_sql(primary_key => id_or_conditions)
|
2007
|
+
end
|
2008
|
+
end
|
2009
|
+
|
2010
|
+
# Defines an "attribute" method (like +inheritance_column+ or
|
2011
|
+
# +table_name+). A new (class) method will be created with the
|
2012
|
+
# given name. If a value is specified, the new method will
|
2013
|
+
# return that value (as a string). Otherwise, the given block
|
2014
|
+
# will be used to compute the value of the method.
|
2015
|
+
#
|
2016
|
+
# The original method will be aliased, with the new name being
|
2017
|
+
# prefixed with "original_". This allows the new method to
|
2018
|
+
# access the original value.
|
2019
|
+
#
|
2020
|
+
# Example:
|
2021
|
+
#
|
2022
|
+
# class A < ActiveRecord::Base
|
2023
|
+
# define_attr_method :primary_key, "sysid"
|
2024
|
+
# define_attr_method( :inheritance_column ) do
|
2025
|
+
# original_inheritance_column + "_id"
|
2026
|
+
# end
|
2027
|
+
# end
|
2028
|
+
def define_attr_method(name, value=nil, &block)
|
2029
|
+
sing = class << self; self; end
|
2030
|
+
sing.send :alias_method, "original_#{name}", name
|
2031
|
+
if block_given?
|
2032
|
+
sing.send :define_method, name, &block
|
2033
|
+
else
|
2034
|
+
# use eval instead of a block to work around a memory leak in dev
|
2035
|
+
# mode in fcgi
|
2036
|
+
sing.class_eval "def #{name}; #{value.to_s.inspect}; end"
|
2037
|
+
end
|
2038
|
+
end
|
2039
|
+
|
2040
|
+
protected
|
2041
|
+
# Scope parameters to method calls within the block. Takes a hash of method_name => parameters hash.
|
2042
|
+
# method_name may be <tt>:find</tt> or <tt>:create</tt>. <tt>:find</tt> parameters may include the <tt>:conditions</tt>, <tt>:joins</tt>,
|
2043
|
+
# <tt>:include</tt>, <tt>:offset</tt>, <tt>:limit</tt>, and <tt>:readonly</tt> options. <tt>:create</tt> parameters are an attributes hash.
|
2044
|
+
#
|
2045
|
+
# class Article < ActiveRecord::Base
|
2046
|
+
# def self.create_with_scope
|
2047
|
+
# with_scope(:find => { :conditions => "blog_id = 1" }, :create => { :blog_id => 1 }) do
|
2048
|
+
# find(1) # => SELECT * from articles WHERE blog_id = 1 AND id = 1
|
2049
|
+
# a = create(1)
|
2050
|
+
# a.blog_id # => 1
|
2051
|
+
# end
|
2052
|
+
# end
|
2053
|
+
# end
|
2054
|
+
#
|
2055
|
+
# In nested scopings, all previous parameters are overwritten by the innermost rule, with the exception of
|
2056
|
+
# <tt>:conditions</tt>, <tt>:include</tt>, and <tt>:joins</tt> options in <tt>:find</tt>, which are merged.
|
2057
|
+
#
|
2058
|
+
# <tt>:joins</tt> options are uniqued so multiple scopes can join in the same table without table aliasing
|
2059
|
+
# problems. If you need to join multiple tables, but still want one of the tables to be uniqued, use the
|
2060
|
+
# array of strings format for your joins.
|
2061
|
+
#
|
2062
|
+
# class Article < ActiveRecord::Base
|
2063
|
+
# def self.find_with_scope
|
2064
|
+
# with_scope(:find => { :conditions => "blog_id = 1", :limit => 1 }, :create => { :blog_id => 1 }) do
|
2065
|
+
# with_scope(:find => { :limit => 10 })
|
2066
|
+
# find(:all) # => SELECT * from articles WHERE blog_id = 1 LIMIT 10
|
2067
|
+
# end
|
2068
|
+
# with_scope(:find => { :conditions => "author_id = 3" })
|
2069
|
+
# find(:all) # => SELECT * from articles WHERE blog_id = 1 AND author_id = 3 LIMIT 1
|
2070
|
+
# end
|
2071
|
+
# end
|
2072
|
+
# end
|
2073
|
+
# end
|
2074
|
+
#
|
2075
|
+
# You can ignore any previous scopings by using the <tt>with_exclusive_scope</tt> method.
|
2076
|
+
#
|
2077
|
+
# class Article < ActiveRecord::Base
|
2078
|
+
# def self.find_with_exclusive_scope
|
2079
|
+
# with_scope(:find => { :conditions => "blog_id = 1", :limit => 1 }) do
|
2080
|
+
# with_exclusive_scope(:find => { :limit => 10 })
|
2081
|
+
# find(:all) # => SELECT * from articles LIMIT 10
|
2082
|
+
# end
|
2083
|
+
# end
|
2084
|
+
# end
|
2085
|
+
# end
|
2086
|
+
#
|
2087
|
+
# *Note*: the +:find+ scope also has effect on update and deletion methods,
|
2088
|
+
# like +update_all+ and +delete_all+.
|
2089
|
+
def with_scope(method_scoping = {}, action = :merge, &block)
|
2090
|
+
method_scoping = method_scoping.method_scoping if method_scoping.respond_to?(:method_scoping)
|
2091
|
+
|
2092
|
+
# Dup first and second level of hash (method and params).
|
2093
|
+
method_scoping = method_scoping.inject({}) do |hash, (method, params)|
|
2094
|
+
hash[method] = (params == true) ? params : params.dup
|
2095
|
+
hash
|
2096
|
+
end
|
2097
|
+
|
2098
|
+
method_scoping.assert_valid_keys([ :find, :create ])
|
2099
|
+
|
2100
|
+
if f = method_scoping[:find]
|
2101
|
+
f.assert_valid_keys(VALID_FIND_OPTIONS)
|
2102
|
+
set_readonly_option! f
|
2103
|
+
end
|
2104
|
+
|
2105
|
+
# Merge scopings
|
2106
|
+
if [:merge, :reverse_merge].include?(action) && current_scoped_methods
|
2107
|
+
method_scoping = current_scoped_methods.inject(method_scoping) do |hash, (method, params)|
|
2108
|
+
case hash[method]
|
2109
|
+
when Hash
|
2110
|
+
if method == :find
|
2111
|
+
(hash[method].keys + params.keys).uniq.each do |key|
|
2112
|
+
merge = hash[method][key] && params[key] # merge if both scopes have the same key
|
2113
|
+
if key == :conditions && merge
|
2114
|
+
if params[key].is_a?(Hash) && hash[method][key].is_a?(Hash)
|
2115
|
+
hash[method][key] = merge_conditions(hash[method][key].deep_merge(params[key]))
|
2116
|
+
else
|
2117
|
+
hash[method][key] = merge_conditions(params[key], hash[method][key])
|
2118
|
+
end
|
2119
|
+
elsif key == :include && merge
|
2120
|
+
hash[method][key] = merge_includes(hash[method][key], params[key]).uniq
|
2121
|
+
elsif key == :joins && merge
|
2122
|
+
hash[method][key] = merge_joins(params[key], hash[method][key])
|
2123
|
+
else
|
2124
|
+
hash[method][key] = hash[method][key] || params[key]
|
2125
|
+
end
|
2126
|
+
end
|
2127
|
+
else
|
2128
|
+
if action == :reverse_merge
|
2129
|
+
hash[method] = hash[method].merge(params)
|
2130
|
+
else
|
2131
|
+
hash[method] = params.merge(hash[method])
|
2132
|
+
end
|
2133
|
+
end
|
2134
|
+
else
|
2135
|
+
hash[method] = params
|
2136
|
+
end
|
2137
|
+
hash
|
2138
|
+
end
|
2139
|
+
end
|
2140
|
+
|
2141
|
+
self.scoped_methods << method_scoping
|
2142
|
+
begin
|
2143
|
+
yield
|
2144
|
+
ensure
|
2145
|
+
self.scoped_methods.pop
|
2146
|
+
end
|
2147
|
+
end
|
2148
|
+
|
2149
|
+
# Works like with_scope, but discards any nested properties.
|
2150
|
+
def with_exclusive_scope(method_scoping = {}, &block)
|
2151
|
+
with_scope(method_scoping, :overwrite, &block)
|
2152
|
+
end
|
2153
|
+
|
2154
|
+
def subclasses #:nodoc:
|
2155
|
+
@@subclasses[self] ||= []
|
2156
|
+
@@subclasses[self] + extra = @@subclasses[self].inject([]) {|list, subclass| list + subclass.subclasses }
|
2157
|
+
end
|
2158
|
+
|
2159
|
+
# Sets the default options for the model. The format of the
|
2160
|
+
# <tt>options</tt> argument is the same as in find.
|
2161
|
+
#
|
2162
|
+
# class Person < ActiveRecord::Base
|
2163
|
+
# default_scope :order => 'last_name, first_name'
|
2164
|
+
# end
|
2165
|
+
def default_scope(options = {})
|
2166
|
+
self.default_scoping << { :find => options, :create => options[:conditions].is_a?(Hash) ? options[:conditions] : {} }
|
2167
|
+
end
|
2168
|
+
|
2169
|
+
# Test whether the given method and optional key are scoped.
|
2170
|
+
def scoped?(method, key = nil) #:nodoc:
|
2171
|
+
if current_scoped_methods && (scope = current_scoped_methods[method])
|
2172
|
+
!key || !scope[key].nil?
|
2173
|
+
end
|
2174
|
+
end
|
2175
|
+
|
2176
|
+
# Retrieve the scope for the given method and optional key.
|
2177
|
+
def scope(method, key = nil) #:nodoc:
|
2178
|
+
if current_scoped_methods && (scope = current_scoped_methods[method])
|
2179
|
+
key ? scope[key] : scope
|
2180
|
+
end
|
2181
|
+
end
|
2182
|
+
|
2183
|
+
def scoped_methods #:nodoc:
|
2184
|
+
Thread.current[:"#{self}_scoped_methods"] ||= self.default_scoping.dup
|
2185
|
+
end
|
2186
|
+
|
2187
|
+
def current_scoped_methods #:nodoc:
|
2188
|
+
scoped_methods.last
|
2189
|
+
end
|
2190
|
+
|
2191
|
+
# Returns the class type of the record using the current module as a prefix. So descendants of
|
2192
|
+
# MyApp::Business::Account would appear as MyApp::Business::AccountSubclass.
|
2193
|
+
def compute_type(type_name)
|
2194
|
+
modularized_name = type_name_with_module(type_name)
|
2195
|
+
silence_warnings do
|
2196
|
+
begin
|
2197
|
+
class_eval(modularized_name, __FILE__, __LINE__)
|
2198
|
+
rescue NameError
|
2199
|
+
class_eval(type_name, __FILE__, __LINE__)
|
2200
|
+
end
|
2201
|
+
end
|
2202
|
+
end
|
2203
|
+
|
2204
|
+
# Returns the class descending directly from ActiveRecord::Base or an
|
2205
|
+
# abstract class, if any, in the inheritance hierarchy.
|
2206
|
+
def class_of_active_record_descendant(klass)
|
2207
|
+
if klass.superclass == Base || klass.superclass.abstract_class?
|
2208
|
+
klass
|
2209
|
+
elsif klass.superclass.nil?
|
2210
|
+
raise ActiveRecordError, "#{name} doesn't belong in a hierarchy descending from ActiveRecord"
|
2211
|
+
else
|
2212
|
+
class_of_active_record_descendant(klass.superclass)
|
2213
|
+
end
|
2214
|
+
end
|
2215
|
+
|
2216
|
+
# Returns the name of the class descending directly from Active Record in the inheritance hierarchy.
|
2217
|
+
def class_name_of_active_record_descendant(klass) #:nodoc:
|
2218
|
+
klass.base_class.name
|
2219
|
+
end
|
2220
|
+
|
2221
|
+
# Accepts an array, hash, or string of SQL conditions and sanitizes
|
2222
|
+
# them into a valid SQL fragment for a WHERE clause.
|
2223
|
+
# ["name='%s' and group_id='%s'", "foo'bar", 4] returns "name='foo''bar' and group_id='4'"
|
2224
|
+
# { :name => "foo'bar", :group_id => 4 } returns "name='foo''bar' and group_id='4'"
|
2225
|
+
# "name='foo''bar' and group_id='4'" returns "name='foo''bar' and group_id='4'"
|
2226
|
+
def sanitize_sql_for_conditions(condition, table_name = quoted_table_name)
|
2227
|
+
return nil if condition.blank?
|
2228
|
+
|
2229
|
+
case condition
|
2230
|
+
when Array; sanitize_sql_array(condition)
|
2231
|
+
when Hash; sanitize_sql_hash_for_conditions(condition, table_name)
|
2232
|
+
else condition
|
2233
|
+
end
|
2234
|
+
end
|
2235
|
+
alias_method :sanitize_sql, :sanitize_sql_for_conditions
|
2236
|
+
|
2237
|
+
# Accepts an array, hash, or string of SQL conditions and sanitizes
|
2238
|
+
# them into a valid SQL fragment for a SET clause.
|
2239
|
+
# { :name => nil, :group_id => 4 } returns "name = NULL , group_id='4'"
|
2240
|
+
def sanitize_sql_for_assignment(assignments)
|
2241
|
+
case assignments
|
2242
|
+
when Array; sanitize_sql_array(assignments)
|
2243
|
+
when Hash; sanitize_sql_hash_for_assignment(assignments)
|
2244
|
+
else assignments
|
2245
|
+
end
|
2246
|
+
end
|
2247
|
+
|
2248
|
+
def aggregate_mapping(reflection)
|
2249
|
+
mapping = reflection.options[:mapping] || [reflection.name, reflection.name]
|
2250
|
+
mapping.first.is_a?(Array) ? mapping : [mapping]
|
2251
|
+
end
|
2252
|
+
|
2253
|
+
# Accepts a hash of SQL conditions and replaces those attributes
|
2254
|
+
# that correspond to a +composed_of+ relationship with their expanded
|
2255
|
+
# aggregate attribute values.
|
2256
|
+
# Given:
|
2257
|
+
# class Person < ActiveRecord::Base
|
2258
|
+
# composed_of :address, :class_name => "Address",
|
2259
|
+
# :mapping => [%w(address_street street), %w(address_city city)]
|
2260
|
+
# end
|
2261
|
+
# Then:
|
2262
|
+
# { :address => Address.new("813 abc st.", "chicago") }
|
2263
|
+
# # => { :address_street => "813 abc st.", :address_city => "chicago" }
|
2264
|
+
def expand_hash_conditions_for_aggregates(attrs)
|
2265
|
+
expanded_attrs = {}
|
2266
|
+
attrs.each do |attr, value|
|
2267
|
+
unless (aggregation = reflect_on_aggregation(attr.to_sym)).nil?
|
2268
|
+
mapping = aggregate_mapping(aggregation)
|
2269
|
+
mapping.each do |field_attr, aggregate_attr|
|
2270
|
+
if mapping.size == 1 && !value.respond_to?(aggregate_attr)
|
2271
|
+
expanded_attrs[field_attr] = value
|
2272
|
+
else
|
2273
|
+
expanded_attrs[field_attr] = value.send(aggregate_attr)
|
2274
|
+
end
|
2275
|
+
end
|
2276
|
+
else
|
2277
|
+
expanded_attrs[attr] = value
|
2278
|
+
end
|
2279
|
+
end
|
2280
|
+
expanded_attrs
|
2281
|
+
end
|
2282
|
+
|
2283
|
+
# Sanitizes a hash of attribute/value pairs into SQL conditions for a WHERE clause.
|
2284
|
+
# { :name => "foo'bar", :group_id => 4 }
|
2285
|
+
# # => "name='foo''bar' and group_id= 4"
|
2286
|
+
# { :status => nil, :group_id => [1,2,3] }
|
2287
|
+
# # => "status IS NULL and group_id IN (1,2,3)"
|
2288
|
+
# { :age => 13..18 }
|
2289
|
+
# # => "age BETWEEN 13 AND 18"
|
2290
|
+
# { 'other_records.id' => 7 }
|
2291
|
+
# # => "`other_records`.`id` = 7"
|
2292
|
+
# { :other_records => { :id => 7 } }
|
2293
|
+
# # => "`other_records`.`id` = 7"
|
2294
|
+
# And for value objects on a composed_of relationship:
|
2295
|
+
# { :address => Address.new("123 abc st.", "chicago") }
|
2296
|
+
# # => "address_street='123 abc st.' and address_city='chicago'"
|
2297
|
+
def sanitize_sql_hash_for_conditions(attrs, default_table_name = quoted_table_name)
|
2298
|
+
attrs = expand_hash_conditions_for_aggregates(attrs)
|
2299
|
+
|
2300
|
+
conditions = attrs.map do |attr, value|
|
2301
|
+
table_name = default_table_name
|
2302
|
+
|
2303
|
+
unless value.is_a?(Hash)
|
2304
|
+
attr = attr.to_s
|
2305
|
+
|
2306
|
+
# Extract table name from qualified attribute names.
|
2307
|
+
if attr.include?('.')
|
2308
|
+
attr_table_name, attr = attr.split('.', 2)
|
2309
|
+
attr_table_name = connection.quote_table_name(attr_table_name)
|
2310
|
+
else
|
2311
|
+
attr_table_name = table_name
|
2312
|
+
end
|
2313
|
+
|
2314
|
+
attribute_condition("#{attr_table_name}.#{connection.quote_column_name(attr)}", value)
|
2315
|
+
else
|
2316
|
+
sanitize_sql_hash_for_conditions(value, connection.quote_table_name(attr.to_s))
|
2317
|
+
end
|
2318
|
+
end.join(' AND ')
|
2319
|
+
|
2320
|
+
replace_bind_variables(conditions, expand_range_bind_variables(attrs.values))
|
2321
|
+
end
|
2322
|
+
alias_method :sanitize_sql_hash, :sanitize_sql_hash_for_conditions
|
2323
|
+
|
2324
|
+
# Sanitizes a hash of attribute/value pairs into SQL conditions for a SET clause.
|
2325
|
+
# { :status => nil, :group_id => 1 }
|
2326
|
+
# # => "status = NULL , group_id = 1"
|
2327
|
+
def sanitize_sql_hash_for_assignment(attrs)
|
2328
|
+
attrs.map do |attr, value|
|
2329
|
+
"#{connection.quote_column_name(attr)} = #{quote_bound_value(value)}"
|
2330
|
+
end.join(', ')
|
2331
|
+
end
|
2332
|
+
|
2333
|
+
# Accepts an array of conditions. The array has each value
|
2334
|
+
# sanitized and interpolated into the SQL statement.
|
2335
|
+
# ["name='%s' and group_id='%s'", "foo'bar", 4] returns "name='foo''bar' and group_id='4'"
|
2336
|
+
def sanitize_sql_array(ary)
|
2337
|
+
statement, *values = ary
|
2338
|
+
if values.first.is_a?(Hash) and statement =~ /:\w+/
|
2339
|
+
replace_named_bind_variables(statement, values.first)
|
2340
|
+
elsif statement.include?('?')
|
2341
|
+
replace_bind_variables(statement, values)
|
2342
|
+
else
|
2343
|
+
statement % values.collect { |value| connection.quote_string(value.to_s) }
|
2344
|
+
end
|
2345
|
+
end
|
2346
|
+
|
2347
|
+
alias_method :sanitize_conditions, :sanitize_sql
|
2348
|
+
|
2349
|
+
def replace_bind_variables(statement, values) #:nodoc:
|
2350
|
+
raise_if_bind_arity_mismatch(statement, statement.count('?'), values.size)
|
2351
|
+
bound = values.dup
|
2352
|
+
statement.gsub('?') { quote_bound_value(bound.shift) }
|
2353
|
+
end
|
2354
|
+
|
2355
|
+
def replace_named_bind_variables(statement, bind_vars) #:nodoc:
|
2356
|
+
statement.gsub(/(:?):([a-zA-Z]\w*)/) do
|
2357
|
+
if $1 == ':' # skip postgresql casts
|
2358
|
+
$& # return the whole match
|
2359
|
+
elsif bind_vars.include?(match = $2.to_sym)
|
2360
|
+
quote_bound_value(bind_vars[match])
|
2361
|
+
else
|
2362
|
+
raise PreparedStatementInvalid, "missing value for :#{match} in #{statement}"
|
2363
|
+
end
|
2364
|
+
end
|
2365
|
+
end
|
2366
|
+
|
2367
|
+
def expand_range_bind_variables(bind_vars) #:nodoc:
|
2368
|
+
expanded = []
|
2369
|
+
|
2370
|
+
bind_vars.each do |var|
|
2371
|
+
next if var.is_a?(Hash)
|
2372
|
+
|
2373
|
+
if var.is_a?(Range)
|
2374
|
+
expanded << var.first
|
2375
|
+
expanded << var.last
|
2376
|
+
else
|
2377
|
+
expanded << var
|
2378
|
+
end
|
2379
|
+
end
|
2380
|
+
|
2381
|
+
expanded
|
2382
|
+
end
|
2383
|
+
|
2384
|
+
def quote_bound_value(value) #:nodoc:
|
2385
|
+
if value.respond_to?(:map) && !value.acts_like?(:string)
|
2386
|
+
if value.respond_to?(:empty?) && value.empty?
|
2387
|
+
connection.quote(nil)
|
2388
|
+
else
|
2389
|
+
value.map { |v| connection.quote(v) }.join(',')
|
2390
|
+
end
|
2391
|
+
else
|
2392
|
+
connection.quote(value)
|
2393
|
+
end
|
2394
|
+
end
|
2395
|
+
|
2396
|
+
def raise_if_bind_arity_mismatch(statement, expected, provided) #:nodoc:
|
2397
|
+
unless expected == provided
|
2398
|
+
raise PreparedStatementInvalid, "wrong number of bind variables (#{provided} for #{expected}) in: #{statement}"
|
2399
|
+
end
|
2400
|
+
end
|
2401
|
+
|
2402
|
+
VALID_FIND_OPTIONS = [ :conditions, :include, :joins, :limit, :offset,
|
2403
|
+
:order, :select, :readonly, :group, :having, :from, :lock ]
|
2404
|
+
|
2405
|
+
def validate_find_options(options) #:nodoc:
|
2406
|
+
options.assert_valid_keys(VALID_FIND_OPTIONS)
|
2407
|
+
end
|
2408
|
+
|
2409
|
+
def set_readonly_option!(options) #:nodoc:
|
2410
|
+
# Inherit :readonly from finder scope if set. Otherwise,
|
2411
|
+
# if :joins is not blank then :readonly defaults to true.
|
2412
|
+
unless options.has_key?(:readonly)
|
2413
|
+
if scoped_readonly = scope(:find, :readonly)
|
2414
|
+
options[:readonly] = scoped_readonly
|
2415
|
+
elsif !options[:joins].blank? && !options[:select]
|
2416
|
+
options[:readonly] = true
|
2417
|
+
end
|
2418
|
+
end
|
2419
|
+
end
|
2420
|
+
|
2421
|
+
def encode_quoted_value(value) #:nodoc:
|
2422
|
+
quoted_value = connection.quote(value)
|
2423
|
+
quoted_value = "'#{quoted_value[1..-2].gsub(/\'/, "\\\\'")}'" if quoted_value.include?("\\\'") # (for ruby mode) "
|
2424
|
+
quoted_value
|
2425
|
+
end
|
2426
|
+
end
|
2427
|
+
|
2428
|
+
public
|
2429
|
+
# New objects can be instantiated as either empty (pass no construction parameter) or pre-set with
|
2430
|
+
# attributes but not yet saved (pass a hash with key names matching the associated table column names).
|
2431
|
+
# In both instances, valid attribute keys are determined by the column names of the associated table --
|
2432
|
+
# hence you can't have attributes that aren't part of the table columns.
|
2433
|
+
def initialize(attributes = nil)
|
2434
|
+
@attributes = attributes_from_column_definition
|
2435
|
+
@attributes_cache = {}
|
2436
|
+
@new_record = true
|
2437
|
+
ensure_proper_type
|
2438
|
+
self.attributes = attributes unless attributes.nil?
|
2439
|
+
self.class.send(:scope, :create).each { |att,value| self.send("#{att}=", value) } if self.class.send(:scoped?, :create)
|
2440
|
+
result = yield self if block_given?
|
2441
|
+
callback(:after_initialize) if respond_to_without_attributes?(:after_initialize)
|
2442
|
+
result
|
2443
|
+
end
|
2444
|
+
|
2445
|
+
# A model instance's primary key is always available as model.id
|
2446
|
+
# whether you name it the default 'id' or set it to something else.
|
2447
|
+
def id
|
2448
|
+
attr_name = self.class.primary_key
|
2449
|
+
column = column_for_attribute(attr_name)
|
2450
|
+
|
2451
|
+
self.class.send(:define_read_method, :id, attr_name, column)
|
2452
|
+
# now that the method exists, call it
|
2453
|
+
self.send attr_name.to_sym
|
2454
|
+
|
2455
|
+
end
|
2456
|
+
|
2457
|
+
# Returns a String, which Action Pack uses for constructing an URL to this
|
2458
|
+
# object. The default implementation returns this record's id as a String,
|
2459
|
+
# or nil if this record's unsaved.
|
2460
|
+
#
|
2461
|
+
# For example, suppose that you have a User model, and that you have a
|
2462
|
+
# <tt>map.resources :users</tt> route. Normally, +user_path+ will
|
2463
|
+
# construct a path with the user object's 'id' in it:
|
2464
|
+
#
|
2465
|
+
# user = User.find_by_name('Phusion')
|
2466
|
+
# user_path(user) # => "/users/1"
|
2467
|
+
#
|
2468
|
+
# You can override +to_param+ in your model to make +user_path+ construct
|
2469
|
+
# a path using the user's name instead of the user's id:
|
2470
|
+
#
|
2471
|
+
# class User < ActiveRecord::Base
|
2472
|
+
# def to_param # overridden
|
2473
|
+
# name
|
2474
|
+
# end
|
2475
|
+
# end
|
2476
|
+
#
|
2477
|
+
# user = User.find_by_name('Phusion')
|
2478
|
+
# user_path(user) # => "/users/Phusion"
|
2479
|
+
def to_param
|
2480
|
+
# We can't use alias_method here, because method 'id' optimizes itself on the fly.
|
2481
|
+
(id = self.id) ? id.to_s : nil # Be sure to stringify the id for routes
|
2482
|
+
end
|
2483
|
+
|
2484
|
+
# Returns a cache key that can be used to identify this record.
|
2485
|
+
#
|
2486
|
+
# ==== Examples
|
2487
|
+
#
|
2488
|
+
# Product.new.cache_key # => "products/new"
|
2489
|
+
# Product.find(5).cache_key # => "products/5" (updated_at not available)
|
2490
|
+
# Person.find(5).cache_key # => "people/5-20071224150000" (updated_at available)
|
2491
|
+
def cache_key
|
2492
|
+
case
|
2493
|
+
when new_record?
|
2494
|
+
"#{self.class.model_name.cache_key}/new"
|
2495
|
+
when timestamp = self[:updated_at]
|
2496
|
+
"#{self.class.model_name.cache_key}/#{id}-#{timestamp.to_s(:number)}"
|
2497
|
+
else
|
2498
|
+
"#{self.class.model_name.cache_key}/#{id}"
|
2499
|
+
end
|
2500
|
+
end
|
2501
|
+
|
2502
|
+
def id_before_type_cast #:nodoc:
|
2503
|
+
read_attribute_before_type_cast(self.class.primary_key)
|
2504
|
+
end
|
2505
|
+
|
2506
|
+
def quoted_id #:nodoc:
|
2507
|
+
quote_value(id, column_for_attribute(self.class.primary_key))
|
2508
|
+
end
|
2509
|
+
|
2510
|
+
# Sets the primary ID.
|
2511
|
+
def id=(value)
|
2512
|
+
write_attribute(self.class.primary_key, value)
|
2513
|
+
end
|
2514
|
+
|
2515
|
+
# Returns true if this object hasn't been saved yet -- that is, a record for the object doesn't exist yet; otherwise, returns false.
|
2516
|
+
def new_record?
|
2517
|
+
@new_record || false
|
2518
|
+
end
|
2519
|
+
|
2520
|
+
# :call-seq:
|
2521
|
+
# save(perform_validation = true)
|
2522
|
+
#
|
2523
|
+
# Saves the model.
|
2524
|
+
#
|
2525
|
+
# If the model is new a record gets created in the database, otherwise
|
2526
|
+
# the existing record gets updated.
|
2527
|
+
#
|
2528
|
+
# If +perform_validation+ is true validations run. If any of them fail
|
2529
|
+
# the action is cancelled and +save+ returns +false+. If the flag is
|
2530
|
+
# false validations are bypassed altogether. See
|
2531
|
+
# ActiveRecord::Validations for more information.
|
2532
|
+
#
|
2533
|
+
# There's a series of callbacks associated with +save+. If any of the
|
2534
|
+
# <tt>before_*</tt> callbacks return +false+ the action is cancelled and
|
2535
|
+
# +save+ returns +false+. See ActiveRecord::Callbacks for further
|
2536
|
+
# details.
|
2537
|
+
def save
|
2538
|
+
create_or_update
|
2539
|
+
end
|
2540
|
+
|
2541
|
+
# Saves the model.
|
2542
|
+
#
|
2543
|
+
# If the model is new a record gets created in the database, otherwise
|
2544
|
+
# the existing record gets updated.
|
2545
|
+
#
|
2546
|
+
# With <tt>save!</tt> validations always run. If any of them fail
|
2547
|
+
# ActiveRecord::RecordInvalid gets raised. See ActiveRecord::Validations
|
2548
|
+
# for more information.
|
2549
|
+
#
|
2550
|
+
# There's a series of callbacks associated with <tt>save!</tt>. If any of
|
2551
|
+
# the <tt>before_*</tt> callbacks return +false+ the action is cancelled
|
2552
|
+
# and <tt>save!</tt> raises ActiveRecord::RecordNotSaved. See
|
2553
|
+
# ActiveRecord::Callbacks for further details.
|
2554
|
+
def save!
|
2555
|
+
create_or_update || raise(RecordNotSaved)
|
2556
|
+
end
|
2557
|
+
|
2558
|
+
# Deletes the record in the database and freezes this instance to
|
2559
|
+
# reflect that no changes should be made (since they can't be
|
2560
|
+
# persisted). Returns the frozen instance.
|
2561
|
+
#
|
2562
|
+
# The row is simply removed with a SQL +DELETE+ statement on the
|
2563
|
+
# record's primary key, and no callbacks are executed.
|
2564
|
+
#
|
2565
|
+
# To enforce the object's +before_destroy+ and +after_destroy+
|
2566
|
+
# callbacks, Observer methods, or any <tt>:dependent</tt> association
|
2567
|
+
# options, use <tt>#destroy</tt>.
|
2568
|
+
def delete
|
2569
|
+
self.class.delete(id) unless new_record?
|
2570
|
+
freeze
|
2571
|
+
end
|
2572
|
+
|
2573
|
+
# Deletes the record in the database and freezes this instance to reflect that no changes should
|
2574
|
+
# be made (since they can't be persisted).
|
2575
|
+
def destroy
|
2576
|
+
unless new_record?
|
2577
|
+
connection.delete(
|
2578
|
+
"DELETE FROM #{self.class.quoted_table_name} " +
|
2579
|
+
"WHERE #{connection.quote_column_name(self.class.primary_key)} = #{quoted_id}",
|
2580
|
+
"#{self.class.name} Destroy"
|
2581
|
+
)
|
2582
|
+
end
|
2583
|
+
|
2584
|
+
freeze
|
2585
|
+
end
|
2586
|
+
|
2587
|
+
# Returns a clone of the record that hasn't been assigned an id yet and
|
2588
|
+
# is treated as a new record. Note that this is a "shallow" clone:
|
2589
|
+
# it copies the object's attributes only, not its associations.
|
2590
|
+
# The extent of a "deep" clone is application-specific and is therefore
|
2591
|
+
# left to the application to implement according to its need.
|
2592
|
+
def clone
|
2593
|
+
attrs = clone_attributes(:read_attribute_before_type_cast)
|
2594
|
+
attrs.delete(self.class.primary_key)
|
2595
|
+
record = self.class.new
|
2596
|
+
record.send :instance_variable_set, '@attributes', attrs
|
2597
|
+
record
|
2598
|
+
end
|
2599
|
+
|
2600
|
+
# Returns an instance of the specified +klass+ with the attributes of the current record. This is mostly useful in relation to
|
2601
|
+
# single-table inheritance structures where you want a subclass to appear as the superclass. This can be used along with record
|
2602
|
+
# identification in Action Pack to allow, say, <tt>Client < Company</tt> to do something like render <tt>:partial => @client.becomes(Company)</tt>
|
2603
|
+
# to render that instance using the companies/company partial instead of clients/client.
|
2604
|
+
#
|
2605
|
+
# Note: The new instance will share a link to the same attributes as the original class. So any change to the attributes in either
|
2606
|
+
# instance will affect the other.
|
2607
|
+
def becomes(klass)
|
2608
|
+
returning klass.new do |became|
|
2609
|
+
became.instance_variable_set("@attributes", @attributes)
|
2610
|
+
became.instance_variable_set("@attributes_cache", @attributes_cache)
|
2611
|
+
became.instance_variable_set("@new_record", new_record?)
|
2612
|
+
end
|
2613
|
+
end
|
2614
|
+
|
2615
|
+
# Updates a single attribute and saves the record without going through the normal validation procedure.
|
2616
|
+
# This is especially useful for boolean flags on existing records. The regular +update_attribute+ method
|
2617
|
+
# in Base is replaced with this when the validations module is mixed in, which it is by default.
|
2618
|
+
def update_attribute(name, value)
|
2619
|
+
send(name.to_s + '=', value)
|
2620
|
+
save(false)
|
2621
|
+
end
|
2622
|
+
|
2623
|
+
# Updates all the attributes from the passed-in Hash and saves the record. If the object is invalid, the saving will
|
2624
|
+
# fail and false will be returned.
|
2625
|
+
def update_attributes(attributes)
|
2626
|
+
self.attributes = attributes
|
2627
|
+
save
|
2628
|
+
end
|
2629
|
+
|
2630
|
+
# Updates an object just like Base.update_attributes but calls save! instead of save so an exception is raised if the record is invalid.
|
2631
|
+
def update_attributes!(attributes)
|
2632
|
+
self.attributes = attributes
|
2633
|
+
save!
|
2634
|
+
end
|
2635
|
+
|
2636
|
+
# Initializes +attribute+ to zero if +nil+ and adds the value passed as +by+ (default is 1).
|
2637
|
+
# The increment is performed directly on the underlying attribute, no setter is invoked.
|
2638
|
+
# Only makes sense for number-based attributes. Returns +self+.
|
2639
|
+
def increment(attribute, by = 1)
|
2640
|
+
self[attribute] ||= 0
|
2641
|
+
self[attribute] += by
|
2642
|
+
self
|
2643
|
+
end
|
2644
|
+
|
2645
|
+
# Wrapper around +increment+ that saves the record. This method differs from
|
2646
|
+
# its non-bang version in that it passes through the attribute setter.
|
2647
|
+
# Saving is not subjected to validation checks. Returns +true+ if the
|
2648
|
+
# record could be saved.
|
2649
|
+
def increment!(attribute, by = 1)
|
2650
|
+
increment(attribute, by).update_attribute(attribute, self[attribute])
|
2651
|
+
end
|
2652
|
+
|
2653
|
+
# Initializes +attribute+ to zero if +nil+ and subtracts the value passed as +by+ (default is 1).
|
2654
|
+
# The decrement is performed directly on the underlying attribute, no setter is invoked.
|
2655
|
+
# Only makes sense for number-based attributes. Returns +self+.
|
2656
|
+
def decrement(attribute, by = 1)
|
2657
|
+
self[attribute] ||= 0
|
2658
|
+
self[attribute] -= by
|
2659
|
+
self
|
2660
|
+
end
|
2661
|
+
|
2662
|
+
# Wrapper around +decrement+ that saves the record. This method differs from
|
2663
|
+
# its non-bang version in that it passes through the attribute setter.
|
2664
|
+
# Saving is not subjected to validation checks. Returns +true+ if the
|
2665
|
+
# record could be saved.
|
2666
|
+
def decrement!(attribute, by = 1)
|
2667
|
+
decrement(attribute, by).update_attribute(attribute, self[attribute])
|
2668
|
+
end
|
2669
|
+
|
2670
|
+
# Assigns to +attribute+ the boolean opposite of <tt>attribute?</tt>. So
|
2671
|
+
# if the predicate returns +true+ the attribute will become +false+. This
|
2672
|
+
# method toggles directly the underlying value without calling any setter.
|
2673
|
+
# Returns +self+.
|
2674
|
+
def toggle(attribute)
|
2675
|
+
self[attribute] = !send("#{attribute}?")
|
2676
|
+
self
|
2677
|
+
end
|
2678
|
+
|
2679
|
+
# Wrapper around +toggle+ that saves the record. This method differs from
|
2680
|
+
# its non-bang version in that it passes through the attribute setter.
|
2681
|
+
# Saving is not subjected to validation checks. Returns +true+ if the
|
2682
|
+
# record could be saved.
|
2683
|
+
def toggle!(attribute)
|
2684
|
+
toggle(attribute).update_attribute(attribute, self[attribute])
|
2685
|
+
end
|
2686
|
+
|
2687
|
+
# Reloads the attributes of this object from the database.
|
2688
|
+
# The optional options argument is passed to find when reloading so you
|
2689
|
+
# may do e.g. record.reload(:lock => true) to reload the same record with
|
2690
|
+
# an exclusive row lock.
|
2691
|
+
def reload(options = nil)
|
2692
|
+
clear_aggregation_cache
|
2693
|
+
clear_association_cache
|
2694
|
+
@attributes.update(self.class.find(self.id, options).instance_variable_get('@attributes'))
|
2695
|
+
@attributes_cache = {}
|
2696
|
+
self
|
2697
|
+
end
|
2698
|
+
|
2699
|
+
# Returns the value of the attribute identified by <tt>attr_name</tt> after it has been typecast (for example,
|
2700
|
+
# "2004-12-12" in a data column is cast to a date object, like Date.new(2004, 12, 12)).
|
2701
|
+
# (Alias for the protected read_attribute method).
|
2702
|
+
def [](attr_name)
|
2703
|
+
read_attribute(attr_name)
|
2704
|
+
end
|
2705
|
+
|
2706
|
+
# Updates the attribute identified by <tt>attr_name</tt> with the specified +value+.
|
2707
|
+
# (Alias for the protected write_attribute method).
|
2708
|
+
def []=(attr_name, value)
|
2709
|
+
write_attribute(attr_name, value)
|
2710
|
+
end
|
2711
|
+
|
2712
|
+
# Allows you to set all the attributes at once by passing in a hash with keys
|
2713
|
+
# matching the attribute names (which again matches the column names).
|
2714
|
+
#
|
2715
|
+
# If +guard_protected_attributes+ is true (the default), then sensitive
|
2716
|
+
# attributes can be protected from this form of mass-assignment by using
|
2717
|
+
# the +attr_protected+ macro. Or you can alternatively specify which
|
2718
|
+
# attributes *can* be accessed with the +attr_accessible+ macro. Then all the
|
2719
|
+
# attributes not included in that won't be allowed to be mass-assigned.
|
2720
|
+
#
|
2721
|
+
# class User < ActiveRecord::Base
|
2722
|
+
# attr_protected :is_admin
|
2723
|
+
# end
|
2724
|
+
#
|
2725
|
+
# user = User.new
|
2726
|
+
# user.attributes = { :username => 'Phusion', :is_admin => true }
|
2727
|
+
# user.username # => "Phusion"
|
2728
|
+
# user.is_admin? # => false
|
2729
|
+
#
|
2730
|
+
# user.send(:attributes=, { :username => 'Phusion', :is_admin => true }, false)
|
2731
|
+
# user.is_admin? # => true
|
2732
|
+
def attributes=(new_attributes, guard_protected_attributes = true)
|
2733
|
+
return if new_attributes.nil?
|
2734
|
+
attributes = new_attributes.dup
|
2735
|
+
attributes.stringify_keys!
|
2736
|
+
|
2737
|
+
multi_parameter_attributes = []
|
2738
|
+
attributes = remove_attributes_protected_from_mass_assignment(attributes) if guard_protected_attributes
|
2739
|
+
|
2740
|
+
attributes.each do |k, v|
|
2741
|
+
if k.include?("(")
|
2742
|
+
multi_parameter_attributes << [ k, v ]
|
2743
|
+
else
|
2744
|
+
respond_to?(:"#{k}=") ? send(:"#{k}=", v) : raise(UnknownAttributeError, "unknown attribute: #{k}")
|
2745
|
+
end
|
2746
|
+
end
|
2747
|
+
|
2748
|
+
assign_multiparameter_attributes(multi_parameter_attributes)
|
2749
|
+
end
|
2750
|
+
|
2751
|
+
# Returns a hash of all the attributes with their names as keys and the values of the attributes as values.
|
2752
|
+
def attributes
|
2753
|
+
self.attribute_names.inject({}) do |attrs, name|
|
2754
|
+
attrs[name] = read_attribute(name)
|
2755
|
+
attrs
|
2756
|
+
end
|
2757
|
+
end
|
2758
|
+
|
2759
|
+
# Returns a hash of attributes before typecasting and deserialization.
|
2760
|
+
def attributes_before_type_cast
|
2761
|
+
self.attribute_names.inject({}) do |attrs, name|
|
2762
|
+
attrs[name] = read_attribute_before_type_cast(name)
|
2763
|
+
attrs
|
2764
|
+
end
|
2765
|
+
end
|
2766
|
+
|
2767
|
+
# Returns an <tt>#inspect</tt>-like string for the value of the
|
2768
|
+
# attribute +attr_name+. String attributes are elided after 50
|
2769
|
+
# characters, and Date and Time attributes are returned in the
|
2770
|
+
# <tt>:db</tt> format. Other attributes return the value of
|
2771
|
+
# <tt>#inspect</tt> without modification.
|
2772
|
+
#
|
2773
|
+
# person = Person.create!(:name => "David Heinemeier Hansson " * 3)
|
2774
|
+
#
|
2775
|
+
# person.attribute_for_inspect(:name)
|
2776
|
+
# # => '"David Heinemeier Hansson David Heinemeier Hansson D..."'
|
2777
|
+
#
|
2778
|
+
# person.attribute_for_inspect(:created_at)
|
2779
|
+
# # => '"2009-01-12 04:48:57"'
|
2780
|
+
def attribute_for_inspect(attr_name)
|
2781
|
+
value = read_attribute(attr_name)
|
2782
|
+
|
2783
|
+
if value.is_a?(String) && value.length > 50
|
2784
|
+
"#{value[0..50]}...".inspect
|
2785
|
+
elsif value.is_a?(Date) || value.is_a?(Time)
|
2786
|
+
%("#{value.to_s(:db)}")
|
2787
|
+
else
|
2788
|
+
value.inspect
|
2789
|
+
end
|
2790
|
+
end
|
2791
|
+
|
2792
|
+
# Returns true if the specified +attribute+ has been set by the user or by a database load and is neither
|
2793
|
+
# nil nor empty? (the latter only applies to objects that respond to empty?, most notably Strings).
|
2794
|
+
def attribute_present?(attribute)
|
2795
|
+
value = read_attribute(attribute)
|
2796
|
+
!value.blank?
|
2797
|
+
end
|
2798
|
+
|
2799
|
+
# Returns true if the given attribute is in the attributes hash
|
2800
|
+
def has_attribute?(attr_name)
|
2801
|
+
@attributes.has_key?(attr_name.to_s)
|
2802
|
+
end
|
2803
|
+
|
2804
|
+
# Returns an array of names for the attributes available on this object sorted alphabetically.
|
2805
|
+
def attribute_names
|
2806
|
+
@attributes.keys.sort
|
2807
|
+
end
|
2808
|
+
|
2809
|
+
# Returns the column object for the named attribute.
|
2810
|
+
def column_for_attribute(name)
|
2811
|
+
self.class.columns_hash[name.to_s]
|
2812
|
+
end
|
2813
|
+
|
2814
|
+
# Returns true if the +comparison_object+ is the same object, or is of the same type and has the same id.
|
2815
|
+
def ==(comparison_object)
|
2816
|
+
comparison_object.equal?(self) ||
|
2817
|
+
(comparison_object.instance_of?(self.class) &&
|
2818
|
+
comparison_object.id == id &&
|
2819
|
+
!comparison_object.new_record?)
|
2820
|
+
end
|
2821
|
+
|
2822
|
+
# Delegates to ==
|
2823
|
+
def eql?(comparison_object)
|
2824
|
+
self == (comparison_object)
|
2825
|
+
end
|
2826
|
+
|
2827
|
+
# Delegates to id in order to allow two records of the same type and id to work with something like:
|
2828
|
+
# [ Person.find(1), Person.find(2), Person.find(3) ] & [ Person.find(1), Person.find(4) ] # => [ Person.find(1) ]
|
2829
|
+
def hash
|
2830
|
+
id.hash
|
2831
|
+
end
|
2832
|
+
|
2833
|
+
# Freeze the attributes hash such that associations are still accessible, even on destroyed records.
|
2834
|
+
def freeze
|
2835
|
+
@attributes.freeze; self
|
2836
|
+
end
|
2837
|
+
|
2838
|
+
# Returns +true+ if the attributes hash has been frozen.
|
2839
|
+
def frozen?
|
2840
|
+
@attributes.frozen?
|
2841
|
+
end
|
2842
|
+
|
2843
|
+
# Returns +true+ if the record is read only. Records loaded through joins with piggy-back
|
2844
|
+
# attributes will be marked as read only since they cannot be saved.
|
2845
|
+
def readonly?
|
2846
|
+
defined?(@readonly) && @readonly == true
|
2847
|
+
end
|
2848
|
+
|
2849
|
+
# Marks this record as read only.
|
2850
|
+
def readonly!
|
2851
|
+
@readonly = true
|
2852
|
+
end
|
2853
|
+
|
2854
|
+
# Returns the contents of the record as a nicely formatted string.
|
2855
|
+
def inspect
|
2856
|
+
attributes_as_nice_string = self.class.column_names.collect { |name|
|
2857
|
+
if has_attribute?(name) || new_record?
|
2858
|
+
"#{name}: #{attribute_for_inspect(name)}"
|
2859
|
+
end
|
2860
|
+
}.compact.join(", ")
|
2861
|
+
"#<#{self.class} #{attributes_as_nice_string}>"
|
2862
|
+
end
|
2863
|
+
|
2864
|
+
private
|
2865
|
+
def create_or_update
|
2866
|
+
raise ReadOnlyRecord if readonly?
|
2867
|
+
result = new_record? ? create : update
|
2868
|
+
result != false
|
2869
|
+
end
|
2870
|
+
|
2871
|
+
# Updates the associated record with values matching those of the instance attributes.
|
2872
|
+
# Returns the number of affected rows.
|
2873
|
+
def update(attribute_names = @attributes.keys)
|
2874
|
+
quoted_attributes = attributes_with_quotes(false, false, attribute_names)
|
2875
|
+
return 0 if quoted_attributes.empty?
|
2876
|
+
connection.update(
|
2877
|
+
"UPDATE #{self.class.quoted_table_name} " +
|
2878
|
+
"SET #{quoted_comma_pair_list(connection, quoted_attributes)} " +
|
2879
|
+
"WHERE #{connection.quote_column_name(self.class.primary_key)} = #{quote_value(id)}",
|
2880
|
+
"#{self.class.name} Update"
|
2881
|
+
)
|
2882
|
+
end
|
2883
|
+
|
2884
|
+
# Creates a record with values matching those of the instance attributes
|
2885
|
+
# and returns its id.
|
2886
|
+
def create
|
2887
|
+
if self.id.nil? && connection.prefetch_primary_key?(self.class.table_name)
|
2888
|
+
self.id = connection.next_sequence_value(self.class.sequence_name)
|
2889
|
+
end
|
2890
|
+
|
2891
|
+
quoted_attributes = attributes_with_quotes
|
2892
|
+
|
2893
|
+
statement = if quoted_attributes.empty?
|
2894
|
+
connection.empty_insert_statement(self.class.table_name)
|
2895
|
+
else
|
2896
|
+
"INSERT INTO #{self.class.quoted_table_name} " +
|
2897
|
+
"(#{quoted_column_names.join(', ')}) " +
|
2898
|
+
"VALUES(#{quoted_attributes.values.join(', ')})"
|
2899
|
+
end
|
2900
|
+
|
2901
|
+
self.id = connection.insert(statement, "#{self.class.name} Create",
|
2902
|
+
self.class.primary_key, self.id, self.class.sequence_name)
|
2903
|
+
|
2904
|
+
@new_record = false
|
2905
|
+
id
|
2906
|
+
end
|
2907
|
+
|
2908
|
+
# Sets the attribute used for single table inheritance to this class name if this is not the ActiveRecord::Base descendant.
|
2909
|
+
# Considering the hierarchy Reply < Message < ActiveRecord::Base, this makes it possible to do Reply.new without having to
|
2910
|
+
# set <tt>Reply[Reply.inheritance_column] = "Reply"</tt> yourself. No such attribute would be set for objects of the
|
2911
|
+
# Message class in that example.
|
2912
|
+
def ensure_proper_type
|
2913
|
+
unless self.class.descends_from_active_record?
|
2914
|
+
write_attribute(self.class.inheritance_column, self.class.sti_name)
|
2915
|
+
end
|
2916
|
+
end
|
2917
|
+
|
2918
|
+
def convert_number_column_value(value)
|
2919
|
+
if value == false
|
2920
|
+
0
|
2921
|
+
elsif value == true
|
2922
|
+
1
|
2923
|
+
elsif value.is_a?(String) && value.blank?
|
2924
|
+
nil
|
2925
|
+
else
|
2926
|
+
value
|
2927
|
+
end
|
2928
|
+
end
|
2929
|
+
|
2930
|
+
def remove_attributes_protected_from_mass_assignment(attributes)
|
2931
|
+
safe_attributes =
|
2932
|
+
if self.class.accessible_attributes.nil? && self.class.protected_attributes.nil?
|
2933
|
+
attributes.reject { |key, value| attributes_protected_by_default.include?(key.gsub(/\(.+/, "")) }
|
2934
|
+
elsif self.class.protected_attributes.nil?
|
2935
|
+
attributes.reject { |key, value| !self.class.accessible_attributes.include?(key.gsub(/\(.+/, "")) || attributes_protected_by_default.include?(key.gsub(/\(.+/, "")) }
|
2936
|
+
elsif self.class.accessible_attributes.nil?
|
2937
|
+
attributes.reject { |key, value| self.class.protected_attributes.include?(key.gsub(/\(.+/,"")) || attributes_protected_by_default.include?(key.gsub(/\(.+/, "")) }
|
2938
|
+
else
|
2939
|
+
raise "Declare either attr_protected or attr_accessible for #{self.class}, but not both."
|
2940
|
+
end
|
2941
|
+
|
2942
|
+
removed_attributes = attributes.keys - safe_attributes.keys
|
2943
|
+
|
2944
|
+
if removed_attributes.any?
|
2945
|
+
log_protected_attribute_removal(removed_attributes)
|
2946
|
+
end
|
2947
|
+
|
2948
|
+
safe_attributes
|
2949
|
+
end
|
2950
|
+
|
2951
|
+
# Removes attributes which have been marked as readonly.
|
2952
|
+
def remove_readonly_attributes(attributes)
|
2953
|
+
unless self.class.readonly_attributes.nil?
|
2954
|
+
attributes.delete_if { |key, value| self.class.readonly_attributes.include?(key.gsub(/\(.+/,"")) }
|
2955
|
+
else
|
2956
|
+
attributes
|
2957
|
+
end
|
2958
|
+
end
|
2959
|
+
|
2960
|
+
def log_protected_attribute_removal(*attributes)
|
2961
|
+
logger.debug "WARNING: Can't mass-assign these protected attributes: #{attributes.join(', ')}"
|
2962
|
+
end
|
2963
|
+
|
2964
|
+
# The primary key and inheritance column can never be set by mass-assignment for security reasons.
|
2965
|
+
def attributes_protected_by_default
|
2966
|
+
default = [ self.class.primary_key, self.class.inheritance_column ]
|
2967
|
+
default << 'id' unless self.class.primary_key.eql? 'id'
|
2968
|
+
default
|
2969
|
+
end
|
2970
|
+
|
2971
|
+
# Returns a copy of the attributes hash where all the values have been safely quoted for use in
|
2972
|
+
# an SQL statement.
|
2973
|
+
def attributes_with_quotes(include_primary_key = true, include_readonly_attributes = true, attribute_names = @attributes.keys)
|
2974
|
+
quoted = {}
|
2975
|
+
connection = self.class.connection
|
2976
|
+
attribute_names.each do |name|
|
2977
|
+
if (column = column_for_attribute(name)) && (include_primary_key || !column.primary)
|
2978
|
+
value = read_attribute(name)
|
2979
|
+
|
2980
|
+
# We need explicit to_yaml because quote() does not properly convert Time/Date fields to YAML.
|
2981
|
+
if value && self.class.serialized_attributes.has_key?(name) && (value.acts_like?(:date) || value.acts_like?(:time))
|
2982
|
+
value = value.to_yaml
|
2983
|
+
end
|
2984
|
+
|
2985
|
+
quoted[name] = connection.quote(value, column)
|
2986
|
+
end
|
2987
|
+
end
|
2988
|
+
include_readonly_attributes ? quoted : remove_readonly_attributes(quoted)
|
2989
|
+
end
|
2990
|
+
|
2991
|
+
# Quote strings appropriately for SQL statements.
|
2992
|
+
def quote_value(value, column = nil)
|
2993
|
+
self.class.connection.quote(value, column)
|
2994
|
+
end
|
2995
|
+
|
2996
|
+
# Interpolate custom SQL string in instance context.
|
2997
|
+
# Optional record argument is meant for custom insert_sql.
|
2998
|
+
def interpolate_sql(sql, record = nil)
|
2999
|
+
instance_eval("%@#{sql.gsub('@', '\@')}@")
|
3000
|
+
end
|
3001
|
+
|
3002
|
+
# Initializes the attributes array with keys matching the columns from the linked table and
|
3003
|
+
# the values matching the corresponding default value of that column, so
|
3004
|
+
# that a new instance, or one populated from a passed-in Hash, still has all the attributes
|
3005
|
+
# that instances loaded from the database would.
|
3006
|
+
def attributes_from_column_definition
|
3007
|
+
self.class.columns.inject({}) do |attributes, column|
|
3008
|
+
attributes[column.name] = column.default unless column.name == self.class.primary_key
|
3009
|
+
attributes
|
3010
|
+
end
|
3011
|
+
end
|
3012
|
+
|
3013
|
+
# Instantiates objects for all attribute classes that needs more than one constructor parameter. This is done
|
3014
|
+
# by calling new on the column type or aggregation type (through composed_of) object with these parameters.
|
3015
|
+
# So having the pairs written_on(1) = "2004", written_on(2) = "6", written_on(3) = "24", will instantiate
|
3016
|
+
# written_on (a date type) with Date.new("2004", "6", "24"). You can also specify a typecast character in the
|
3017
|
+
# parentheses to have the parameters typecasted before they're used in the constructor. Use i for Fixnum, f for Float,
|
3018
|
+
# s for String, and a for Array. If all the values for a given attribute are empty, the attribute will be set to nil.
|
3019
|
+
def assign_multiparameter_attributes(pairs)
|
3020
|
+
execute_callstack_for_multiparameter_attributes(
|
3021
|
+
extract_callstack_for_multiparameter_attributes(pairs)
|
3022
|
+
)
|
3023
|
+
end
|
3024
|
+
|
3025
|
+
def instantiate_time_object(name, values)
|
3026
|
+
if self.class.send(:create_time_zone_conversion_attribute?, name, column_for_attribute(name))
|
3027
|
+
Time.zone.local(*values)
|
3028
|
+
else
|
3029
|
+
Time.time_with_datetime_fallback(@@default_timezone, *values)
|
3030
|
+
end
|
3031
|
+
end
|
3032
|
+
|
3033
|
+
def execute_callstack_for_multiparameter_attributes(callstack)
|
3034
|
+
errors = []
|
3035
|
+
callstack.each do |name, values_with_empty_parameters|
|
3036
|
+
begin
|
3037
|
+
klass = (self.class.reflect_on_aggregation(name.to_sym) || column_for_attribute(name)).klass
|
3038
|
+
# in order to allow a date to be set without a year, we must keep the empty values.
|
3039
|
+
# Otherwise, we wouldn't be able to distinguish it from a date with an empty day.
|
3040
|
+
values = values_with_empty_parameters.reject(&:nil?)
|
3041
|
+
|
3042
|
+
if values.empty?
|
3043
|
+
send(name + "=", nil)
|
3044
|
+
else
|
3045
|
+
|
3046
|
+
value = if Time == klass
|
3047
|
+
instantiate_time_object(name, values)
|
3048
|
+
elsif Date == klass
|
3049
|
+
begin
|
3050
|
+
values = values_with_empty_parameters.collect do |v| v.nil? ? 1 : v end
|
3051
|
+
Date.new(*values)
|
3052
|
+
rescue ArgumentError => ex # if Date.new raises an exception on an invalid date
|
3053
|
+
instantiate_time_object(name, values).to_date # we instantiate Time object and convert it back to a date thus using Time's logic in handling invalid dates
|
3054
|
+
end
|
3055
|
+
else
|
3056
|
+
klass.new(*values)
|
3057
|
+
end
|
3058
|
+
|
3059
|
+
send(name + "=", value)
|
3060
|
+
end
|
3061
|
+
rescue => ex
|
3062
|
+
errors << AttributeAssignmentError.new("error on assignment #{values.inspect} to #{name}", ex, name)
|
3063
|
+
end
|
3064
|
+
end
|
3065
|
+
unless errors.empty?
|
3066
|
+
raise MultiparameterAssignmentErrors.new(errors), "#{errors.size} error(s) on assignment of multiparameter attributes"
|
3067
|
+
end
|
3068
|
+
end
|
3069
|
+
|
3070
|
+
def extract_callstack_for_multiparameter_attributes(pairs)
|
3071
|
+
attributes = { }
|
3072
|
+
|
3073
|
+
for pair in pairs
|
3074
|
+
multiparameter_name, value = pair
|
3075
|
+
attribute_name = multiparameter_name.split("(").first
|
3076
|
+
attributes[attribute_name] = [] unless attributes.include?(attribute_name)
|
3077
|
+
|
3078
|
+
parameter_value = value.empty? ? nil : type_cast_attribute_value(multiparameter_name, value)
|
3079
|
+
attributes[attribute_name] << [ find_parameter_position(multiparameter_name), parameter_value ]
|
3080
|
+
end
|
3081
|
+
|
3082
|
+
attributes.each { |name, values| attributes[name] = values.sort_by{ |v| v.first }.collect { |v| v.last } }
|
3083
|
+
end
|
3084
|
+
|
3085
|
+
def type_cast_attribute_value(multiparameter_name, value)
|
3086
|
+
multiparameter_name =~ /\([0-9]*([if])\)/ ? value.send("to_" + $1) : value
|
3087
|
+
end
|
3088
|
+
|
3089
|
+
def find_parameter_position(multiparameter_name)
|
3090
|
+
multiparameter_name.scan(/\(([0-9]*).*\)/).first.first
|
3091
|
+
end
|
3092
|
+
|
3093
|
+
# Returns a comma-separated pair list, like "key1 = val1, key2 = val2".
|
3094
|
+
def comma_pair_list(hash)
|
3095
|
+
hash.inject([]) { |list, pair| list << "#{pair.first} = #{pair.last}" }.join(", ")
|
3096
|
+
end
|
3097
|
+
|
3098
|
+
def quoted_column_names(attributes = attributes_with_quotes)
|
3099
|
+
connection = self.class.connection
|
3100
|
+
attributes.keys.collect do |column_name|
|
3101
|
+
connection.quote_column_name(column_name)
|
3102
|
+
end
|
3103
|
+
end
|
3104
|
+
|
3105
|
+
def self.quoted_table_name
|
3106
|
+
self.connection.quote_table_name(self.table_name)
|
3107
|
+
end
|
3108
|
+
|
3109
|
+
def quote_columns(quoter, hash)
|
3110
|
+
hash.inject({}) do |quoted, (name, value)|
|
3111
|
+
quoted[quoter.quote_column_name(name)] = value
|
3112
|
+
quoted
|
3113
|
+
end
|
3114
|
+
end
|
3115
|
+
|
3116
|
+
def quoted_comma_pair_list(quoter, hash)
|
3117
|
+
comma_pair_list(quote_columns(quoter, hash))
|
3118
|
+
end
|
3119
|
+
|
3120
|
+
def object_from_yaml(string)
|
3121
|
+
return string unless string.is_a?(String) && string =~ /^---/
|
3122
|
+
YAML::load(string) rescue string
|
3123
|
+
end
|
3124
|
+
|
3125
|
+
def clone_attributes(reader_method = :read_attribute, attributes = {})
|
3126
|
+
self.attribute_names.inject(attributes) do |attrs, name|
|
3127
|
+
attrs[name] = clone_attribute_value(reader_method, name)
|
3128
|
+
attrs
|
3129
|
+
end
|
3130
|
+
end
|
3131
|
+
|
3132
|
+
def clone_attribute_value(reader_method, attribute_name)
|
3133
|
+
value = send(reader_method, attribute_name)
|
3134
|
+
value.duplicable? ? value.clone : value
|
3135
|
+
rescue TypeError, NoMethodError
|
3136
|
+
value
|
3137
|
+
end
|
3138
|
+
end
|
3139
|
+
|
3140
|
+
Base.class_eval do
|
3141
|
+
extend QueryCache::ClassMethods
|
3142
|
+
include Validations
|
3143
|
+
include Locking::Optimistic, Locking::Pessimistic
|
3144
|
+
include AttributeMethods
|
3145
|
+
include Dirty
|
3146
|
+
include Callbacks, Observing, Timestamp
|
3147
|
+
include Associations, AssociationPreload, NamedScope
|
3148
|
+
|
3149
|
+
# AutosaveAssociation needs to be included before Transactions, because we want
|
3150
|
+
# #save_with_autosave_associations to be wrapped inside a transaction.
|
3151
|
+
include AutosaveAssociation, NestedAttributes
|
3152
|
+
|
3153
|
+
include Aggregations, Transactions, Reflection, Batches, Calculations, Serialization
|
3154
|
+
end
|
3155
|
+
end
|
3156
|
+
|
3157
|
+
# TODO: Remove this and make it work with LAZY flag
|
3158
|
+
require 'active_record/connection_adapters/abstract_adapter'
|