gemstreamer 0.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.document +5 -0
- data/.gitignore +5 -0
- data/LICENSE +20 -0
- data/README.rdoc +18 -0
- data/Rakefile +53 -0
- data/VERSION.yml +1 -0
- data/bin/gemstreamer +44 -0
- data/gemstreamer.gemspec +2782 -0
- data/lib/dependencies.rb +18 -0
- data/lib/gemstreamer.rb +6 -0
- data/lib/publisher.rb +26 -0
- data/spec/assets/testapp/.gitignore +8 -0
- data/spec/assets/testapp/Rakefile +10 -0
- data/spec/assets/testapp/app/controllers/application_controller.rb +57 -0
- data/spec/assets/testapp/app/controllers/user_sessions_controller.rb +34 -0
- data/spec/assets/testapp/app/controllers/users_controller.rb +42 -0
- data/spec/assets/testapp/app/helpers/application_helper.rb +3 -0
- data/spec/assets/testapp/app/helpers/user_sessions_helper.rb +2 -0
- data/spec/assets/testapp/app/helpers/users_helper.rb +2 -0
- data/spec/assets/testapp/app/models/.gitignore +0 -0
- data/spec/assets/testapp/app/models/permission.rb +13 -0
- data/spec/assets/testapp/app/models/settings.rb +4 -0
- data/spec/assets/testapp/app/models/user.rb +4 -0
- data/spec/assets/testapp/app/models/user_group.rb +15 -0
- data/spec/assets/testapp/app/models/user_session.rb +3 -0
- data/spec/assets/testapp/app/views/layouts/.gitignore +0 -0
- data/spec/assets/testapp/app/views/user_sessions/new.html.haml +18 -0
- data/spec/assets/testapp/app/views/users/_form.html.haml +14 -0
- data/spec/assets/testapp/app/views/users/edit.html.haml +7 -0
- data/spec/assets/testapp/app/views/users/new.html.haml +5 -0
- data/spec/assets/testapp/app/views/users/show.html.haml +22 -0
- data/spec/assets/testapp/config/application.yml +14 -0
- data/spec/assets/testapp/config/boot.rb +110 -0
- data/spec/assets/testapp/config/environment.rb +57 -0
- data/spec/assets/testapp/config/environments/cucumber.rb +26 -0
- data/spec/assets/testapp/config/environments/development.rb +17 -0
- data/spec/assets/testapp/config/environments/production.rb +28 -0
- data/spec/assets/testapp/config/environments/test.rb +36 -0
- data/spec/assets/testapp/config/initializers/backtrace_silencers.rb +7 -0
- data/spec/assets/testapp/config/initializers/formtastic.rb +47 -0
- data/spec/assets/testapp/config/initializers/inflections.rb +10 -0
- data/spec/assets/testapp/config/initializers/lockit.rb +1 -0
- data/spec/assets/testapp/config/initializers/mime_types.rb +5 -0
- data/spec/assets/testapp/config/initializers/new_rails_defaults.rb +21 -0
- data/spec/assets/testapp/config/initializers/session_store.rb +16 -0
- data/spec/assets/testapp/config/locales/en.yml +5 -0
- data/spec/assets/testapp/config/routes.rb +54 -0
- data/spec/assets/testapp/db/migrate/20091031093219_create_users.rb +28 -0
- data/spec/assets/testapp/db/migrate/20091031093230_create_user_groups.rb +19 -0
- data/spec/assets/testapp/db/migrate/20091031093231_create_permissions.rb +19 -0
- data/spec/assets/testapp/db/migrate/20091031093345_create_sessions.rb +16 -0
- data/spec/assets/testapp/db/seeds.rb +17 -0
- data/spec/assets/testapp/doc/README_FOR_APP +2 -0
- data/spec/assets/testapp/features/step_definitions/webrat_steps.rb +189 -0
- data/spec/assets/testapp/features/support/env.rb +49 -0
- data/spec/assets/testapp/features/support/paths.rb +27 -0
- data/spec/assets/testapp/features/support/version_check.rb +29 -0
- data/spec/assets/testapp/lib/lockdown/README +42 -0
- data/spec/assets/testapp/lib/lockdown/init.rb +149 -0
- data/spec/assets/testapp/lib/tasks/.gitignore +0 -0
- data/spec/assets/testapp/lib/tasks/cucumber.rake +44 -0
- data/spec/assets/testapp/lib/tasks/rcov.rake +26 -0
- data/spec/assets/testapp/lib/tasks/rspec.rake +182 -0
- data/spec/assets/testapp/log/.gitignore +0 -0
- data/spec/assets/testapp/public/404.html +30 -0
- data/spec/assets/testapp/public/422.html +30 -0
- data/spec/assets/testapp/public/500.html +30 -0
- data/spec/assets/testapp/public/favicon.ico +0 -0
- data/spec/assets/testapp/public/images/rails.png +0 -0
- data/spec/assets/testapp/public/javascripts/application.js +0 -0
- data/spec/assets/testapp/public/javascripts/jquery-ui.js +298 -0
- data/spec/assets/testapp/public/javascripts/jquery.js +19 -0
- data/spec/assets/testapp/public/robots.txt +5 -0
- data/spec/assets/testapp/public/stylesheets/.gitignore +0 -0
- data/spec/assets/testapp/public/stylesheets/formtastic.css +137 -0
- data/spec/assets/testapp/public/stylesheets/formtastic_changes.css +10 -0
- data/spec/assets/testapp/script/about +4 -0
- data/spec/assets/testapp/script/autospec +6 -0
- data/spec/assets/testapp/script/console +3 -0
- data/spec/assets/testapp/script/cucumber +17 -0
- data/spec/assets/testapp/script/dbconsole +3 -0
- data/spec/assets/testapp/script/destroy +3 -0
- data/spec/assets/testapp/script/generate +3 -0
- data/spec/assets/testapp/script/performance/benchmarker +3 -0
- data/spec/assets/testapp/script/performance/profiler +3 -0
- data/spec/assets/testapp/script/plugin +3 -0
- data/spec/assets/testapp/script/runner +3 -0
- data/spec/assets/testapp/script/server +3 -0
- data/spec/assets/testapp/script/spec +10 -0
- data/spec/assets/testapp/script/spec_server +9 -0
- data/spec/assets/testapp/spec/controllers/user_sessions_controller_spec.rb +10 -0
- data/spec/assets/testapp/spec/controllers/users_controller_spec.rb +10 -0
- data/spec/assets/testapp/spec/fixtures/users.yml +7 -0
- data/spec/assets/testapp/spec/helpers/user_sessions_helper_spec.rb +11 -0
- data/spec/assets/testapp/spec/helpers/users_helper_spec.rb +11 -0
- data/spec/assets/testapp/spec/models/user_spec.rb +13 -0
- data/spec/assets/testapp/spec/rcov.opts +4 -0
- data/spec/assets/testapp/spec/spec.opts +4 -0
- data/spec/assets/testapp/spec/spec_helper.rb +51 -0
- data/spec/assets/testapp/test/fixtures/.gitignore +0 -0
- data/spec/assets/testapp/test/functional/.gitignore +0 -0
- data/spec/assets/testapp/test/integration/.gitignore +0 -0
- data/spec/assets/testapp/test/performance/browsing_test.rb +9 -0
- data/spec/assets/testapp/test/test_helper.rb +38 -0
- data/spec/assets/testapp/test/unit/.gitignore +0 -0
- data/spec/assets/testapp/tmp/.gitignore +0 -0
- data/spec/assets/testapp/vendor/.gitignore +0 -0
- data/spec/assets/testapp/vendor/rails/actionmailer/CHANGELOG +366 -0
- data/spec/assets/testapp/vendor/rails/actionmailer/MIT-LICENSE +21 -0
- data/spec/assets/testapp/vendor/rails/actionmailer/README +149 -0
- data/spec/assets/testapp/vendor/rails/actionmailer/Rakefile +99 -0
- data/spec/assets/testapp/vendor/rails/actionmailer/install.rb +30 -0
- data/spec/assets/testapp/vendor/rails/actionmailer/lib/action_mailer/adv_attr_accessor.rb +30 -0
- data/spec/assets/testapp/vendor/rails/actionmailer/lib/action_mailer/base.rb +706 -0
- data/spec/assets/testapp/vendor/rails/actionmailer/lib/action_mailer/helpers.rb +113 -0
- data/spec/assets/testapp/vendor/rails/actionmailer/lib/action_mailer/mail_helper.rb +17 -0
- data/spec/assets/testapp/vendor/rails/actionmailer/lib/action_mailer/part.rb +107 -0
- data/spec/assets/testapp/vendor/rails/actionmailer/lib/action_mailer/part_container.rb +55 -0
- data/spec/assets/testapp/vendor/rails/actionmailer/lib/action_mailer/quoting.rb +61 -0
- data/spec/assets/testapp/vendor/rails/actionmailer/lib/action_mailer/test_case.rb +64 -0
- data/spec/assets/testapp/vendor/rails/actionmailer/lib/action_mailer/test_helper.rb +68 -0
- data/spec/assets/testapp/vendor/rails/actionmailer/lib/action_mailer/utils.rb +7 -0
- data/spec/assets/testapp/vendor/rails/actionmailer/lib/action_mailer/vendor/text-format-0.6.3/text/format.rb +1466 -0
- data/spec/assets/testapp/vendor/rails/actionmailer/lib/action_mailer/vendor/text_format.rb +10 -0
- data/spec/assets/testapp/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/address.rb +426 -0
- data/spec/assets/testapp/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/attachments.rb +46 -0
- data/spec/assets/testapp/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/base64.rb +46 -0
- data/spec/assets/testapp/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/compat.rb +41 -0
- data/spec/assets/testapp/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/config.rb +67 -0
- data/spec/assets/testapp/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/core_extensions.rb +63 -0
- data/spec/assets/testapp/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/encode.rb +581 -0
- data/spec/assets/testapp/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/header.rb +960 -0
- data/spec/assets/testapp/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/index.rb +9 -0
- data/spec/assets/testapp/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/interface.rb +1130 -0
- data/spec/assets/testapp/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/loader.rb +3 -0
- data/spec/assets/testapp/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/mail.rb +578 -0
- data/spec/assets/testapp/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/mailbox.rb +495 -0
- data/spec/assets/testapp/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/main.rb +6 -0
- data/spec/assets/testapp/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/mbox.rb +3 -0
- data/spec/assets/testapp/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/net.rb +248 -0
- data/spec/assets/testapp/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/obsolete.rb +132 -0
- data/spec/assets/testapp/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/parser.rb +1476 -0
- data/spec/assets/testapp/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/port.rb +379 -0
- data/spec/assets/testapp/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/quoting.rb +118 -0
- data/spec/assets/testapp/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/require_arch.rb +58 -0
- data/spec/assets/testapp/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/scanner.rb +49 -0
- data/spec/assets/testapp/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/scanner_r.rb +261 -0
- data/spec/assets/testapp/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/stringio.rb +280 -0
- data/spec/assets/testapp/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/utils.rb +337 -0
- data/spec/assets/testapp/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/version.rb +39 -0
- data/spec/assets/testapp/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail.rb +5 -0
- data/spec/assets/testapp/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail.rb +17 -0
- data/spec/assets/testapp/vendor/rails/actionmailer/lib/action_mailer/version.rb +9 -0
- data/spec/assets/testapp/vendor/rails/actionmailer/lib/action_mailer.rb +62 -0
- data/spec/assets/testapp/vendor/rails/actionmailer/lib/actionmailer.rb +1 -0
- data/spec/assets/testapp/vendor/rails/actionmailer/test/abstract_unit.rb +62 -0
- data/spec/assets/testapp/vendor/rails/actionmailer/test/asset_host_test.rb +54 -0
- data/spec/assets/testapp/vendor/rails/actionmailer/test/delivery_method_test.rb +51 -0
- data/spec/assets/testapp/vendor/rails/actionmailer/test/fixtures/asset_host_mailer/email_with_asset.html.erb +1 -0
- data/spec/assets/testapp/vendor/rails/actionmailer/test/fixtures/auto_layout_mailer/hello.html.erb +1 -0
- data/spec/assets/testapp/vendor/rails/actionmailer/test/fixtures/auto_layout_mailer/multipart.text.html.erb +1 -0
- data/spec/assets/testapp/vendor/rails/actionmailer/test/fixtures/auto_layout_mailer/multipart.text.plain.erb +1 -0
- data/spec/assets/testapp/vendor/rails/actionmailer/test/fixtures/explicit_layout_mailer/logout.html.erb +1 -0
- data/spec/assets/testapp/vendor/rails/actionmailer/test/fixtures/explicit_layout_mailer/signup.html.erb +1 -0
- data/spec/assets/testapp/vendor/rails/actionmailer/test/fixtures/first_mailer/share.erb +1 -0
- data/spec/assets/testapp/vendor/rails/actionmailer/test/fixtures/helper_mailer/use_example_helper.erb +1 -0
- data/spec/assets/testapp/vendor/rails/actionmailer/test/fixtures/helper_mailer/use_helper.erb +1 -0
- data/spec/assets/testapp/vendor/rails/actionmailer/test/fixtures/helper_mailer/use_helper_method.erb +1 -0
- data/spec/assets/testapp/vendor/rails/actionmailer/test/fixtures/helper_mailer/use_mail_helper.erb +5 -0
- data/spec/assets/testapp/vendor/rails/actionmailer/test/fixtures/helpers/example_helper.rb +5 -0
- data/spec/assets/testapp/vendor/rails/actionmailer/test/fixtures/layouts/auto_layout_mailer.html.erb +1 -0
- data/spec/assets/testapp/vendor/rails/actionmailer/test/fixtures/layouts/auto_layout_mailer.text.erb +1 -0
- data/spec/assets/testapp/vendor/rails/actionmailer/test/fixtures/layouts/spam.html.erb +1 -0
- data/spec/assets/testapp/vendor/rails/actionmailer/test/fixtures/path.with.dots/funky_path_mailer/multipart_with_template_path_with_dots.erb +1 -0
- data/spec/assets/testapp/vendor/rails/actionmailer/test/fixtures/raw_email +14 -0
- data/spec/assets/testapp/vendor/rails/actionmailer/test/fixtures/raw_email10 +20 -0
- data/spec/assets/testapp/vendor/rails/actionmailer/test/fixtures/raw_email12 +32 -0
- data/spec/assets/testapp/vendor/rails/actionmailer/test/fixtures/raw_email13 +29 -0
- data/spec/assets/testapp/vendor/rails/actionmailer/test/fixtures/raw_email2 +114 -0
- data/spec/assets/testapp/vendor/rails/actionmailer/test/fixtures/raw_email3 +70 -0
- data/spec/assets/testapp/vendor/rails/actionmailer/test/fixtures/raw_email4 +59 -0
- data/spec/assets/testapp/vendor/rails/actionmailer/test/fixtures/raw_email5 +19 -0
- data/spec/assets/testapp/vendor/rails/actionmailer/test/fixtures/raw_email6 +20 -0
- data/spec/assets/testapp/vendor/rails/actionmailer/test/fixtures/raw_email7 +66 -0
- data/spec/assets/testapp/vendor/rails/actionmailer/test/fixtures/raw_email8 +47 -0
- data/spec/assets/testapp/vendor/rails/actionmailer/test/fixtures/raw_email9 +28 -0
- data/spec/assets/testapp/vendor/rails/actionmailer/test/fixtures/raw_email_quoted_with_0d0a +14 -0
- data/spec/assets/testapp/vendor/rails/actionmailer/test/fixtures/raw_email_with_invalid_characters_in_content_type +104 -0
- data/spec/assets/testapp/vendor/rails/actionmailer/test/fixtures/raw_email_with_nested_attachment +100 -0
- data/spec/assets/testapp/vendor/rails/actionmailer/test/fixtures/raw_email_with_partially_quoted_subject +14 -0
- data/spec/assets/testapp/vendor/rails/actionmailer/test/fixtures/second_mailer/share.erb +1 -0
- data/spec/assets/testapp/vendor/rails/actionmailer/test/fixtures/templates/signed_up.erb +3 -0
- data/spec/assets/testapp/vendor/rails/actionmailer/test/fixtures/test_mailer/_subtemplate.text.plain.erb +1 -0
- data/spec/assets/testapp/vendor/rails/actionmailer/test/fixtures/test_mailer/body_ivar.erb +2 -0
- data/spec/assets/testapp/vendor/rails/actionmailer/test/fixtures/test_mailer/custom_templating_extension.text.html.haml +6 -0
- data/spec/assets/testapp/vendor/rails/actionmailer/test/fixtures/test_mailer/custom_templating_extension.text.plain.haml +6 -0
- data/spec/assets/testapp/vendor/rails/actionmailer/test/fixtures/test_mailer/implicitly_multipart_example.ignored.erb +1 -0
- data/spec/assets/testapp/vendor/rails/actionmailer/test/fixtures/test_mailer/implicitly_multipart_example.text.html.erb +10 -0
- data/spec/assets/testapp/vendor/rails/actionmailer/test/fixtures/test_mailer/implicitly_multipart_example.text.plain.erb +2 -0
- data/spec/assets/testapp/vendor/rails/actionmailer/test/fixtures/test_mailer/implicitly_multipart_example.text.yaml.erb +1 -0
- data/spec/assets/testapp/vendor/rails/actionmailer/test/fixtures/test_mailer/included_subtemplate.text.plain.erb +1 -0
- data/spec/assets/testapp/vendor/rails/actionmailer/test/fixtures/test_mailer/rxml_template.builder +2 -0
- data/spec/assets/testapp/vendor/rails/actionmailer/test/fixtures/test_mailer/rxml_template.rxml +2 -0
- data/spec/assets/testapp/vendor/rails/actionmailer/test/fixtures/test_mailer/signed_up.html.erb +3 -0
- data/spec/assets/testapp/vendor/rails/actionmailer/test/fixtures/test_mailer/signed_up_with_url.erb +5 -0
- data/spec/assets/testapp/vendor/rails/actionmailer/test/mail_helper_test.rb +95 -0
- data/spec/assets/testapp/vendor/rails/actionmailer/test/mail_layout_test.rb +123 -0
- data/spec/assets/testapp/vendor/rails/actionmailer/test/mail_render_test.rb +116 -0
- data/spec/assets/testapp/vendor/rails/actionmailer/test/mail_service_test.rb +1079 -0
- data/spec/assets/testapp/vendor/rails/actionmailer/test/quoting_test.rb +99 -0
- data/spec/assets/testapp/vendor/rails/actionmailer/test/test_helper_test.rb +129 -0
- data/spec/assets/testapp/vendor/rails/actionmailer/test/tmail_test.rb +22 -0
- data/spec/assets/testapp/vendor/rails/actionmailer/test/url_test.rb +76 -0
- data/spec/assets/testapp/vendor/rails/actionpack/CHANGELOG +5172 -0
- data/spec/assets/testapp/vendor/rails/actionpack/MIT-LICENSE +21 -0
- data/spec/assets/testapp/vendor/rails/actionpack/README +409 -0
- data/spec/assets/testapp/vendor/rails/actionpack/RUNNING_UNIT_TESTS +24 -0
- data/spec/assets/testapp/vendor/rails/actionpack/Rakefile +160 -0
- data/spec/assets/testapp/vendor/rails/actionpack/install.rb +30 -0
- data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/assertions/dom_assertions.rb +39 -0
- data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/assertions/model_assertions.rb +21 -0
- data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/assertions/response_assertions.rb +160 -0
- data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/assertions/routing_assertions.rb +146 -0
- data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/assertions/selector_assertions.rb +632 -0
- data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/assertions/tag_assertions.rb +127 -0
- data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/base.rb +1423 -0
- data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/benchmarking.rb +107 -0
- data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/caching/actions.rb +177 -0
- data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/caching/fragments.rb +120 -0
- data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/caching/pages.rb +152 -0
- data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/caching/sweeper.rb +45 -0
- data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/caching/sweeping.rb +55 -0
- data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/caching.rb +70 -0
- data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/cgi_ext/cookie.rb +112 -0
- data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/cgi_ext/query_extension.rb +22 -0
- data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/cgi_ext/stdinput.rb +24 -0
- data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/cgi_ext.rb +15 -0
- data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/cgi_process.rb +77 -0
- data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/cookies.rb +94 -0
- data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/dispatcher.rb +133 -0
- data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/failsafe.rb +86 -0
- data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/filters.rb +680 -0
- data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/flash.rb +171 -0
- data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/headers.rb +33 -0
- data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/helpers.rb +225 -0
- data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/http_authentication.rb +308 -0
- data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/integration.rb +680 -0
- data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/layout.rb +281 -0
- data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/middleware_stack.rb +119 -0
- data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/middlewares.rb +12 -0
- data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/mime_responds.rb +193 -0
- data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/mime_type.rb +212 -0
- data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/mime_types.rb +21 -0
- data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/params_parser.rb +77 -0
- data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/performance_test.rb +15 -0
- data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/polymorphic_routes.rb +204 -0
- data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/record_identifier.rb +104 -0
- data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/reloader.rb +54 -0
- data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/request.rb +493 -0
- data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/request_forgery_protection.rb +109 -0
- data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/rescue.rb +183 -0
- data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/resources.rb +682 -0
- data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/response.rb +238 -0
- data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/routing/builder.rb +197 -0
- data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/routing/optimisations.rb +130 -0
- data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/routing/recognition_optimisation.rb +167 -0
- data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/routing/route.rb +265 -0
- data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/routing/route_set.rb +502 -0
- data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/routing/routing_ext.rb +49 -0
- data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/routing/segments.rb +343 -0
- data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/routing.rb +388 -0
- data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/session/abstract_store.rb +181 -0
- data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/session/cookie_store.rb +221 -0
- data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/session/mem_cache_store.rb +51 -0
- data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/session_management.rb +54 -0
- data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/status_codes.rb +88 -0
- data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/streaming.rb +181 -0
- data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/templates/rescues/_request_and_response.erb +24 -0
- data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/templates/rescues/_trace.erb +26 -0
- data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/templates/rescues/diagnostics.erb +11 -0
- data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb +29 -0
- data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/templates/rescues/missing_template.erb +2 -0
- data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/templates/rescues/routing_error.erb +10 -0
- data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/templates/rescues/template_error.erb +21 -0
- data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/templates/rescues/unknown_action.erb +2 -0
- data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/test_case.rb +204 -0
- data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/test_process.rb +580 -0
- data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/translation.rb +13 -0
- data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/uploaded_file.rb +44 -0
- data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/url_rewriter.rb +216 -0
- data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/vendor/html-scanner/html/document.rb +68 -0
- data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/vendor/html-scanner/html/node.rb +537 -0
- data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/vendor/html-scanner/html/sanitizer.rb +173 -0
- data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/vendor/html-scanner/html/selector.rb +828 -0
- data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/vendor/html-scanner/html/tokenizer.rb +105 -0
- data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/vendor/html-scanner/html/version.rb +11 -0
- data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/vendor/html-scanner.rb +16 -0
- data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller/verification.rb +130 -0
- data/spec/assets/testapp/vendor/rails/actionpack/lib/action_controller.rb +111 -0
- data/spec/assets/testapp/vendor/rails/actionpack/lib/action_pack/version.rb +9 -0
- data/spec/assets/testapp/vendor/rails/actionpack/lib/action_pack.rb +24 -0
- data/spec/assets/testapp/vendor/rails/actionpack/lib/action_view/base.rb +357 -0
- data/spec/assets/testapp/vendor/rails/actionpack/lib/action_view/erb/util.rb +38 -0
- data/spec/assets/testapp/vendor/rails/actionpack/lib/action_view/helpers/active_record_helper.rb +305 -0
- data/spec/assets/testapp/vendor/rails/actionpack/lib/action_view/helpers/asset_tag_helper.rb +694 -0
- data/spec/assets/testapp/vendor/rails/actionpack/lib/action_view/helpers/atom_feed_helper.rb +198 -0
- data/spec/assets/testapp/vendor/rails/actionpack/lib/action_view/helpers/benchmark_helper.rb +54 -0
- data/spec/assets/testapp/vendor/rails/actionpack/lib/action_view/helpers/cache_helper.rb +39 -0
- data/spec/assets/testapp/vendor/rails/actionpack/lib/action_view/helpers/capture_helper.rb +136 -0
- data/spec/assets/testapp/vendor/rails/actionpack/lib/action_view/helpers/date_helper.rb +976 -0
- data/spec/assets/testapp/vendor/rails/actionpack/lib/action_view/helpers/debug_helper.rb +38 -0
- data/spec/assets/testapp/vendor/rails/actionpack/lib/action_view/helpers/form_helper.rb +1053 -0
- data/spec/assets/testapp/vendor/rails/actionpack/lib/action_view/helpers/form_options_helper.rb +600 -0
- data/spec/assets/testapp/vendor/rails/actionpack/lib/action_view/helpers/form_tag_helper.rb +487 -0
- data/spec/assets/testapp/vendor/rails/actionpack/lib/action_view/helpers/javascript_helper.rb +208 -0
- data/spec/assets/testapp/vendor/rails/actionpack/lib/action_view/helpers/number_helper.rb +303 -0
- data/spec/assets/testapp/vendor/rails/actionpack/lib/action_view/helpers/prototype_helper.rb +1305 -0
- data/spec/assets/testapp/vendor/rails/actionpack/lib/action_view/helpers/record_identification_helper.rb +20 -0
- data/spec/assets/testapp/vendor/rails/actionpack/lib/action_view/helpers/record_tag_helper.rb +58 -0
- data/spec/assets/testapp/vendor/rails/actionpack/lib/action_view/helpers/sanitize_helper.rb +251 -0
- data/spec/assets/testapp/vendor/rails/actionpack/lib/action_view/helpers/scriptaculous_helper.rb +226 -0
- data/spec/assets/testapp/vendor/rails/actionpack/lib/action_view/helpers/tag_helper.rb +150 -0
- data/spec/assets/testapp/vendor/rails/actionpack/lib/action_view/helpers/text_helper.rb +587 -0
- data/spec/assets/testapp/vendor/rails/actionpack/lib/action_view/helpers/translation_helper.rb +39 -0
- data/spec/assets/testapp/vendor/rails/actionpack/lib/action_view/helpers/url_helper.rb +638 -0
- data/spec/assets/testapp/vendor/rails/actionpack/lib/action_view/helpers.rb +57 -0
- data/spec/assets/testapp/vendor/rails/actionpack/lib/action_view/inline_template.rb +19 -0
- data/spec/assets/testapp/vendor/rails/actionpack/lib/action_view/locale/en.yml +114 -0
- data/spec/assets/testapp/vendor/rails/actionpack/lib/action_view/partials.rb +240 -0
- data/spec/assets/testapp/vendor/rails/actionpack/lib/action_view/paths.rb +69 -0
- data/spec/assets/testapp/vendor/rails/actionpack/lib/action_view/reloadable_template.rb +117 -0
- data/spec/assets/testapp/vendor/rails/actionpack/lib/action_view/renderable.rb +95 -0
- data/spec/assets/testapp/vendor/rails/actionpack/lib/action_view/renderable_partial.rb +47 -0
- data/spec/assets/testapp/vendor/rails/actionpack/lib/action_view/template.rb +246 -0
- data/spec/assets/testapp/vendor/rails/actionpack/lib/action_view/template_error.rb +99 -0
- data/spec/assets/testapp/vendor/rails/actionpack/lib/action_view/template_handler.rb +34 -0
- data/spec/assets/testapp/vendor/rails/actionpack/lib/action_view/template_handlers/builder.rb +17 -0
- data/spec/assets/testapp/vendor/rails/actionpack/lib/action_view/template_handlers/erb.rb +22 -0
- data/spec/assets/testapp/vendor/rails/actionpack/lib/action_view/template_handlers/rjs.rb +13 -0
- data/spec/assets/testapp/vendor/rails/actionpack/lib/action_view/template_handlers.rb +48 -0
- data/spec/assets/testapp/vendor/rails/actionpack/lib/action_view/test_case.rb +87 -0
- data/spec/assets/testapp/vendor/rails/actionpack/lib/action_view.rb +58 -0
- data/spec/assets/testapp/vendor/rails/actionpack/lib/actionpack.rb +1 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/abstract_unit.rb +61 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/active_record_unit.rb +104 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/activerecord/active_record_store_test.rb +174 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/activerecord/render_partial_with_record_identification_test.rb +188 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/adv_attr_test.rb +20 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/controller/action_pack_assertions_test.rb +543 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/controller/addresses_render_test.rb +37 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/controller/assert_select_test.rb +734 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/controller/base_test.rb +217 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/controller/benchmark_test.rb +32 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/controller/caching_test.rb +729 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/controller/capture_test.rb +66 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/controller/content_type_test.rb +168 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/controller/controller_fixtures/app/controllers/admin/user_controller.rb +0 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/controller/controller_fixtures/app/controllers/user_controller.rb +0 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/controller/controller_fixtures/vendor/plugins/bad_plugin/lib/plugin_controller.rb +0 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/controller/cookie_test.rb +127 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/controller/deprecation/deprecated_base_methods_test.rb +32 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/controller/dispatcher_test.rb +144 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/controller/failsafe_test.rb +60 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/controller/fake_controllers.rb +33 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/controller/fake_models.rb +19 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/controller/filter_params_test.rb +51 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/controller/filters_test.rb +885 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/controller/flash_test.rb +147 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/controller/header_test.rb +14 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/controller/helper_test.rb +224 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/controller/html-scanner/cdata_node_test.rb +15 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/controller/html-scanner/document_test.rb +148 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/controller/html-scanner/node_test.rb +89 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/controller/html-scanner/sanitizer_test.rb +273 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/controller/html-scanner/tag_node_test.rb +238 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/controller/html-scanner/text_node_test.rb +50 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/controller/html-scanner/tokenizer_test.rb +131 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/controller/http_basic_authentication_test.rb +113 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/controller/http_digest_authentication_test.rb +232 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/controller/integration_test.rb +445 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/controller/layout_test.rb +204 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/controller/logging_test.rb +46 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/controller/middleware_stack_test.rb +90 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/controller/mime_responds_test.rb +536 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/controller/mime_type_test.rb +93 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/controller/polymorphic_routes_test.rb +293 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/controller/rack_test.rb +311 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/controller/record_identifier_test.rb +139 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/controller/redirect_test.rb +285 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/controller/reloader_test.rb +124 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/controller/render_test.rb +1762 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/controller/request/json_params_parsing_test.rb +65 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/controller/request/multipart_params_parsing_test.rb +162 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/controller/request/query_string_parsing_test.rb +120 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/controller/request/test_request_test.rb +35 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/controller/request/url_encoded_params_parsing_test.rb +146 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/controller/request/xml_params_parsing_test.rb +103 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/controller/request_forgery_protection_test.rb +247 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/controller/request_test.rb +395 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/controller/rescue_test.rb +536 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/controller/resources_test.rb +1393 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/controller/routing_test.rb +2583 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/controller/selector_test.rb +628 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/controller/send_file_test.rb +171 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/controller/session/cookie_store_test.rb +216 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/controller/session/mem_cache_store_test.rb +127 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/controller/session/test_session_test.rb +58 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/controller/test_test.rb +700 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/controller/translation_test.rb +26 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/controller/url_rewriter_test.rb +385 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/controller/verification_test.rb +270 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/controller/view_paths_test.rb +141 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/controller/webservice_test.rb +260 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/_top_level_partial.html.erb +1 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/_top_level_partial_only.erb +1 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/addresses/list.erb +1 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/alternate_helpers/foo_helper.rb +3 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/bad_customers/_bad_customer.html.erb +1 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/companies.yml +24 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/company.rb +10 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/content_type/render_default_content_types_for_respond_to.rhtml +1 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/content_type/render_default_for_rhtml.rhtml +1 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/content_type/render_default_for_rjs.rjs +1 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/content_type/render_default_for_rxml.rxml +1 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/customers/_customer.html.erb +1 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/db_definitions/sqlite.sql +49 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/developer.rb +9 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/developers/_developer.erb +1 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/developers.yml +21 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/developers_projects.yml +13 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/failsafe/500.html +1 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/fun/games/_game.erb +1 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/fun/games/hello_world.erb +1 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/fun/serious/games/_game.erb +1 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/functional_caching/_partial.erb +3 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/functional_caching/formatted_fragment_cached.html.erb +3 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/functional_caching/formatted_fragment_cached.js.rjs +6 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/functional_caching/formatted_fragment_cached.xml.builder +5 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/functional_caching/fragment_cached.html.erb +2 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/functional_caching/html_fragment_cached_with_partial.html.erb +1 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/functional_caching/inline_fragment_cached.html.erb +2 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/functional_caching/js_fragment_cached_with_partial.js.rjs +1 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/good_customers/_good_customer.html.erb +1 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/helpers/abc_helper.rb +5 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/helpers/fun/games_helper.rb +3 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/helpers/fun/pdf_helper.rb +3 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/layout_tests/alt/hello.rhtml +1 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/layout_tests/alt/layouts/alt.rhtml +0 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/layout_tests/layouts/controller_name_space/nested.rhtml +1 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/layout_tests/layouts/item.rhtml +1 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/layout_tests/layouts/layout_test.rhtml +1 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/layout_tests/layouts/multiple_extensions.html.erb +1 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/layout_tests/layouts/third_party_template_library.mab +1 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/layout_tests/views/hello.rhtml +1 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/layouts/_column.html.erb +2 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/layouts/block_with_layout.erb +3 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/layouts/builder.builder +3 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/layouts/default_html.html.erb +1 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/layouts/partial_with_layout.erb +3 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/layouts/standard.erb +1 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/layouts/talk_from_action.erb +2 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/layouts/xhr.html.erb +2 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/layouts/yield.erb +2 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/mascot.rb +3 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/mascots/_mascot.html.erb +1 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/mascots.yml +4 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/multipart/binary_file +0 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/multipart/boundary_problem_file +10 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/multipart/bracketed_param +5 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/multipart/empty +10 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/multipart/hello.txt +1 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/multipart/large_text_file +10 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/multipart/mixed_files +0 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/multipart/mona_lisa.jpg +0 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/multipart/none +9 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/multipart/single_parameter +5 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/multipart/text_file +10 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/override/test/hello_world.erb +1 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/override2/layouts/test/sub.erb +1 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/post_test/layouts/post.html.erb +1 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/post_test/layouts/super_post.iphone.erb +1 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/post_test/post/index.html.erb +1 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/post_test/post/index.iphone.erb +1 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/post_test/super_post/index.html.erb +1 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/post_test/super_post/index.iphone.erb +1 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/project.rb +3 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/projects/_project.erb +1 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/projects.yml +7 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/public/404.html +1 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/public/500.da.html +1 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/public/500.html +1 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/public/absolute/test.css +23 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/public/absolute/test.js +63 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/public/images/rails.png +0 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/public/javascripts/application.js +1 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/public/javascripts/bank.js +1 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/public/javascripts/controls.js +1 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/public/javascripts/dragdrop.js +1 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/public/javascripts/effects.js +1 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/public/javascripts/prototype.js +1 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/public/javascripts/robber.js +1 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/public/javascripts/subdir/subdir.js +1 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/public/javascripts/version.1.0.js +1 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/public/stylesheets/bank.css +1 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/public/stylesheets/robber.css +1 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/public/stylesheets/subdir/subdir.css +1 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/public/stylesheets/version.1.0.css +1 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/quiz/questions/_question.html.erb +1 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/replies/_reply.erb +1 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/replies.yml +15 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/reply.rb +7 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/respond_to/all_types_with_layout.html.erb +1 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/respond_to/all_types_with_layout.js.rjs +1 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/respond_to/custom_constant_handling_without_block.mobile.erb +1 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/respond_to/iphone_with_html_response_type.html.erb +1 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/respond_to/iphone_with_html_response_type.iphone.erb +1 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/respond_to/layouts/missing.html.erb +1 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/respond_to/layouts/standard.html.erb +1 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/respond_to/layouts/standard.iphone.erb +1 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/respond_to/using_defaults.html.erb +1 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/respond_to/using_defaults.js.rjs +1 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/respond_to/using_defaults.xml.builder +1 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/respond_to/using_defaults_with_type_list.html.erb +1 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/respond_to/using_defaults_with_type_list.js.rjs +1 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/respond_to/using_defaults_with_type_list.xml.builder +1 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/scope/test/modgreet.erb +1 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/shared.html.erb +1 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/symlink_parent/symlinked_layout.erb +5 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/_counter.html.erb +1 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/_customer.erb +1 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/_customer_counter.erb +1 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/_customer_greeting.erb +1 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/_customer_with_var.erb +1 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/_form.erb +1 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/_hash_greeting.erb +1 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/_hash_object.erb +2 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/_hello.builder +1 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/_labelling_form.erb +1 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/_layout_for_block_with_args.html.erb +3 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/_layout_for_partial.html.erb +3 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/_local_inspector.html.erb +1 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/_one.html.erb +1 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/_partial.erb +1 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/_partial.html.erb +1 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/_partial.js.erb +1 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/_partial_for_use_in_layout.html.erb +1 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/_partial_only.erb +1 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/_partial_with_only_html_version.html.erb +1 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/_person.erb +2 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/_raise.html.erb +1 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/_two.html.erb +1 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/action_talk_to_layout.erb +2 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/calling_partial_with_layout.html.erb +1 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/capturing.erb +4 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/content_for.erb +2 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/content_for_concatenated.erb +3 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/content_for_with_parameter.erb +2 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/delete_with_js.rjs +2 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/dont_pick_me +1 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/dot.directory/render_file_with_ivar.erb +1 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/enum_rjs_test.rjs +6 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/formatted_html_erb.html.erb +1 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/formatted_xml_erb.builder +1 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/formatted_xml_erb.html.erb +1 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/formatted_xml_erb.xml.erb +1 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/greeting.erb +1 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/greeting.js.rjs +1 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/hello.builder +4 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/hello_world.da.html.erb +1 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/hello_world.erb +1 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/hello_world.pt-BR.html.erb +1 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/hello_world_container.builder +3 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/hello_world_from_rxml.builder +4 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/hello_world_with_layout_false.erb +1 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/hello_xml_world.builder +11 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/hyphen-ated.erb +1 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/implicit_content_type.atom.builder +2 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/list.erb +1 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/nested_layout.erb +3 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/non_erb_block_content_for.builder +4 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/potential_conflicts.erb +4 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/render_explicit_html_template.js.rjs +1 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/render_file_from_template.html.erb +1 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/render_file_with_ivar.erb +1 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/render_file_with_locals.erb +1 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/render_implicit_html_template.js.rjs +1 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/render_implicit_html_template_from_xhr_request.da.html.erb +1 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/render_implicit_html_template_from_xhr_request.html.erb +1 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/render_implicit_js_template_without_layout.js.erb +1 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/render_to_string_test.erb +1 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/sub_template_raise.html.erb +1 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/template.erb +1 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/update_element_with_capture.erb +9 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/using_layout_around_block.html.erb +1 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/using_layout_around_block_with_args.html.erb +1 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/test/utf8.html.erb +2 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/topic.rb +3 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/topics/_topic.html.erb +1 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/fixtures/topics.yml +22 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/template/active_record_helper_i18n_test.rb +44 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/template/active_record_helper_test.rb +302 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/template/asset_tag_helper_test.rb +759 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/template/atom_feed_helper_test.rb +315 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/template/benchmark_helper_test.rb +86 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/template/compiled_templates_test.rb +203 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/template/date_helper_i18n_test.rb +120 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/template/date_helper_test.rb +2469 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/template/erb_util_test.rb +24 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/template/form_helper_test.rb +1313 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/template/form_options_helper_i18n_test.rb +27 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/template/form_options_helper_test.rb +807 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/template/form_tag_helper_test.rb +344 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/template/javascript_helper_test.rb +106 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/template/number_helper_i18n_test.rb +69 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/template/number_helper_test.rb +128 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/template/prototype_helper_test.rb +639 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/template/record_tag_helper_test.rb +58 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/template/render_test.rb +290 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/template/sanitize_helper_test.rb +48 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/template/scriptaculous_helper_test.rb +90 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/template/tag_helper_test.rb +97 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/template/template_test.rb +32 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/template/test_test.rb +54 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/template/text_helper_test.rb +543 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/template/translation_helper_test.rb +32 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/template/url_helper_test.rb +622 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/testing_sandbox.rb +15 -0
- data/spec/assets/testapp/vendor/rails/actionpack/test/view/test_case_test.rb +8 -0
- data/spec/assets/testapp/vendor/rails/activerecord/CHANGELOG +5850 -0
- data/spec/assets/testapp/vendor/rails/activerecord/README +351 -0
- data/spec/assets/testapp/vendor/rails/activerecord/RUNNING_UNIT_TESTS +36 -0
- data/spec/assets/testapp/vendor/rails/activerecord/Rakefile +270 -0
- data/spec/assets/testapp/vendor/rails/activerecord/examples/associations.png +0 -0
- data/spec/assets/testapp/vendor/rails/activerecord/examples/performance.rb +162 -0
- data/spec/assets/testapp/vendor/rails/activerecord/install.rb +30 -0
- data/spec/assets/testapp/vendor/rails/activerecord/lib/active_record/aggregations.rb +261 -0
- data/spec/assets/testapp/vendor/rails/activerecord/lib/active_record/association_preload.rb +389 -0
- data/spec/assets/testapp/vendor/rails/activerecord/lib/active_record/associations/association_collection.rb +475 -0
- data/spec/assets/testapp/vendor/rails/activerecord/lib/active_record/associations/association_proxy.rb +279 -0
- data/spec/assets/testapp/vendor/rails/activerecord/lib/active_record/associations/belongs_to_association.rb +76 -0
- data/spec/assets/testapp/vendor/rails/activerecord/lib/active_record/associations/belongs_to_polymorphic_association.rb +53 -0
- data/spec/assets/testapp/vendor/rails/activerecord/lib/active_record/associations/has_and_belongs_to_many_association.rb +143 -0
- data/spec/assets/testapp/vendor/rails/activerecord/lib/active_record/associations/has_many_association.rb +122 -0
- data/spec/assets/testapp/vendor/rails/activerecord/lib/active_record/associations/has_many_through_association.rb +266 -0
- data/spec/assets/testapp/vendor/rails/activerecord/lib/active_record/associations/has_one_association.rb +124 -0
- data/spec/assets/testapp/vendor/rails/activerecord/lib/active_record/associations/has_one_through_association.rb +37 -0
- data/spec/assets/testapp/vendor/rails/activerecord/lib/active_record/associations.rb +2238 -0
- data/spec/assets/testapp/vendor/rails/activerecord/lib/active_record/attribute_methods.rb +388 -0
- data/spec/assets/testapp/vendor/rails/activerecord/lib/active_record/autosave_association.rb +355 -0
- data/spec/assets/testapp/vendor/rails/activerecord/lib/active_record/base.rb +3158 -0
- data/spec/assets/testapp/vendor/rails/activerecord/lib/active_record/batches.rb +81 -0
- data/spec/assets/testapp/vendor/rails/activerecord/lib/active_record/calculations.rb +311 -0
- data/spec/assets/testapp/vendor/rails/activerecord/lib/active_record/callbacks.rb +360 -0
- data/spec/assets/testapp/vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/connection_pool.rb +371 -0
- data/spec/assets/testapp/vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/connection_specification.rb +139 -0
- data/spec/assets/testapp/vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/database_statements.rb +289 -0
- data/spec/assets/testapp/vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb +94 -0
- data/spec/assets/testapp/vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/quoting.rb +69 -0
- data/spec/assets/testapp/vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/schema_definitions.rb +722 -0
- data/spec/assets/testapp/vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/schema_statements.rb +434 -0
- data/spec/assets/testapp/vendor/rails/activerecord/lib/active_record/connection_adapters/abstract_adapter.rb +241 -0
- data/spec/assets/testapp/vendor/rails/activerecord/lib/active_record/connection_adapters/mysql_adapter.rb +626 -0
- data/spec/assets/testapp/vendor/rails/activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb +1113 -0
- data/spec/assets/testapp/vendor/rails/activerecord/lib/active_record/connection_adapters/sqlite3_adapter.rb +34 -0
- data/spec/assets/testapp/vendor/rails/activerecord/lib/active_record/connection_adapters/sqlite_adapter.rb +453 -0
- data/spec/assets/testapp/vendor/rails/activerecord/lib/active_record/dirty.rb +183 -0
- data/spec/assets/testapp/vendor/rails/activerecord/lib/active_record/dynamic_finder_match.rb +41 -0
- data/spec/assets/testapp/vendor/rails/activerecord/lib/active_record/dynamic_scope_match.rb +25 -0
- data/spec/assets/testapp/vendor/rails/activerecord/lib/active_record/fixtures.rb +996 -0
- data/spec/assets/testapp/vendor/rails/activerecord/lib/active_record/i18n_interpolation_deprecation.rb +26 -0
- data/spec/assets/testapp/vendor/rails/activerecord/lib/active_record/locale/en.yml +58 -0
- data/spec/assets/testapp/vendor/rails/activerecord/lib/active_record/locking/optimistic.rb +181 -0
- data/spec/assets/testapp/vendor/rails/activerecord/lib/active_record/locking/pessimistic.rb +77 -0
- data/spec/assets/testapp/vendor/rails/activerecord/lib/active_record/migration.rb +566 -0
- data/spec/assets/testapp/vendor/rails/activerecord/lib/active_record/named_scope.rb +192 -0
- data/spec/assets/testapp/vendor/rails/activerecord/lib/active_record/nested_attributes.rb +329 -0
- data/spec/assets/testapp/vendor/rails/activerecord/lib/active_record/observer.rb +197 -0
- data/spec/assets/testapp/vendor/rails/activerecord/lib/active_record/query_cache.rb +33 -0
- data/spec/assets/testapp/vendor/rails/activerecord/lib/active_record/reflection.rb +320 -0
- data/spec/assets/testapp/vendor/rails/activerecord/lib/active_record/schema.rb +51 -0
- data/spec/assets/testapp/vendor/rails/activerecord/lib/active_record/schema_dumper.rb +182 -0
- data/spec/assets/testapp/vendor/rails/activerecord/lib/active_record/serialization.rb +101 -0
- data/spec/assets/testapp/vendor/rails/activerecord/lib/active_record/serializers/json_serializer.rb +91 -0
- data/spec/assets/testapp/vendor/rails/activerecord/lib/active_record/serializers/xml_serializer.rb +357 -0
- data/spec/assets/testapp/vendor/rails/activerecord/lib/active_record/session_store.rb +326 -0
- data/spec/assets/testapp/vendor/rails/activerecord/lib/active_record/test_case.rb +66 -0
- data/spec/assets/testapp/vendor/rails/activerecord/lib/active_record/timestamp.rb +71 -0
- data/spec/assets/testapp/vendor/rails/activerecord/lib/active_record/transactions.rb +235 -0
- data/spec/assets/testapp/vendor/rails/activerecord/lib/active_record/validations.rb +1135 -0
- data/spec/assets/testapp/vendor/rails/activerecord/lib/active_record/version.rb +9 -0
- data/spec/assets/testapp/vendor/rails/activerecord/lib/active_record.rb +84 -0
- data/spec/assets/testapp/vendor/rails/activerecord/lib/activerecord.rb +1 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/assets/example.log +1 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/assets/flowers.jpg +0 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/cases/aaa_create_tables_test.rb +24 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/cases/active_schema_test_mysql.rb +100 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/cases/active_schema_test_postgresql.rb +24 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/cases/adapter_test.rb +145 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/cases/aggregations_test.rb +167 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/cases/ar_schema_test.rb +32 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/cases/associations/belongs_to_associations_test.rb +425 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/cases/associations/callbacks_test.rb +161 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/cases/associations/cascaded_eager_loading_test.rb +131 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/cases/associations/eager_load_includes_full_sti_class_test.rb +36 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/cases/associations/eager_load_nested_include_test.rb +130 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/cases/associations/eager_singularization_test.rb +145 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/cases/associations/eager_test.rb +834 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/cases/associations/extension_test.rb +62 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/cases/associations/habtm_join_table_test.rb +56 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/cases/associations/has_and_belongs_to_many_associations_test.rb +822 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/cases/associations/has_many_associations_test.rb +1122 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/cases/associations/has_many_through_associations_test.rb +324 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/cases/associations/has_one_associations_test.rb +309 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/cases/associations/has_one_through_associations_test.rb +209 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/cases/associations/inner_join_association_test.rb +93 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/cases/associations/join_model_test.rb +712 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/cases/associations_test.rb +262 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/cases/attribute_methods_test.rb +305 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/cases/autosave_association_test.rb +923 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/cases/base_test.rb +2152 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/cases/batches_test.rb +61 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/cases/binary_test.rb +30 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/cases/calculations_test.rb +348 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/cases/callbacks_observers_test.rb +38 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/cases/callbacks_test.rb +438 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/cases/class_inheritable_attributes_test.rb +32 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/cases/column_alias_test.rb +17 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/cases/column_definition_test.rb +70 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/cases/connection_pool_test.rb +25 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/cases/connection_test_firebird.rb +8 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/cases/connection_test_mysql.rb +56 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/cases/copy_table_test_sqlite.rb +80 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/cases/database_statements_test.rb +12 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/cases/datatype_test_postgresql.rb +204 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/cases/date_time_test.rb +37 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/cases/default_test_firebird.rb +16 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/cases/defaults_test.rb +111 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/cases/deprecated_finder_test.rb +30 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/cases/dirty_test.rb +316 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/cases/finder_respond_to_test.rb +76 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/cases/finder_test.rb +1054 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/cases/fixtures_test.rb +656 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/cases/helper.rb +68 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/cases/i18n_test.rb +46 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/cases/inheritance_test.rb +262 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/cases/invalid_date_test.rb +24 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/cases/json_serialization_test.rb +205 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/cases/lifecycle_test.rb +193 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/cases/locking_test.rb +322 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/cases/method_scoping_test.rb +704 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/cases/migration_test.rb +1523 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/cases/migration_test_firebird.rb +124 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/cases/mixin_test.rb +96 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/cases/modules_test.rb +81 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/cases/multiple_db_test.rb +85 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/cases/named_scope_test.rb +361 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/cases/nested_attributes_test.rb +509 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/cases/pk_test.rb +119 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/cases/pooled_connections_test.rb +103 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/cases/query_cache_test.rb +123 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/cases/readonly_test.rb +107 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/cases/reflection_test.rb +194 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/cases/reload_models_test.rb +22 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/cases/repair_helper.rb +50 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/cases/reserved_word_test_mysql.rb +176 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/cases/sanitize_test.rb +25 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/cases/schema_authorization_test_postgresql.rb +75 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/cases/schema_dumper_test.rb +211 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/cases/schema_test_postgresql.rb +178 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/cases/serialization_test.rb +47 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/cases/synonym_test_oracle.rb +17 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/cases/timestamp_test.rb +75 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/cases/transactions_test.rb +522 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/cases/unconnected_test.rb +32 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/cases/validations_i18n_test.rb +947 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/cases/validations_test.rb +1612 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/cases/xml_serialization_test.rb +240 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/config.rb +5 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/connections/jdbc_jdbcderby/connection.rb +18 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/connections/jdbc_jdbch2/connection.rb +18 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/connections/jdbc_jdbchsqldb/connection.rb +18 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/connections/jdbc_jdbcmysql/connection.rb +26 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/connections/jdbc_jdbcpostgresql/connection.rb +26 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/connections/jdbc_jdbcsqlite3/connection.rb +25 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/connections/native_db2/connection.rb +25 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/connections/native_firebird/connection.rb +26 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/connections/native_frontbase/connection.rb +27 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/connections/native_mysql/connection.rb +25 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/connections/native_openbase/connection.rb +21 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/connections/native_oracle/connection.rb +27 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/connections/native_postgresql/connection.rb +21 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/connections/native_sqlite/connection.rb +25 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/connections/native_sqlite3/connection.rb +25 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/connections/native_sqlite3/in_memory_connection.rb +18 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/connections/native_sybase/connection.rb +23 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/accounts.yml +28 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/all/developers.yml +0 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/all/people.csv +0 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/all/tasks.yml +0 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/author_addresses.yml +5 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/author_favorites.yml +4 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/authors.yml +9 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/binaries.yml +132 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/books.yml +7 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/categories/special_categories.yml +9 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/categories/subsubdir/arbitrary_filename.yml +4 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/categories.yml +14 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/categories_ordered.yml +7 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/categories_posts.yml +23 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/categorizations.yml +17 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/clubs.yml +6 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/comments.yml +59 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/companies.yml +56 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/computers.yml +4 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/courses.yml +7 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/customers.yml +26 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/developers.yml +21 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/developers_projects.yml +17 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/edges.yml +6 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/entrants.yml +14 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/fixture_database.sqlite +0 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/fixture_database.sqlite3 +0 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/fixture_database_2.sqlite +0 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/fixture_database_2.sqlite3 +0 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/fk_test_has_fk.yml +3 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/fk_test_has_pk.yml +2 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/funny_jokes.yml +10 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/items.yml +4 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/jobs.yml +7 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/legacy_things.yml +3 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/mateys.yml +4 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/member_types.yml +6 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/members.yml +6 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/memberships.yml +20 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/minimalistics.yml +2 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/mixed_case_monkeys.yml +6 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/mixins.yml +29 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/movies.yml +7 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/naked/csv/accounts.csv +1 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/naked/yml/accounts.yml +1 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/naked/yml/companies.yml +1 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/naked/yml/courses.yml +1 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/organizations.yml +5 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/owners.yml +7 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/parrots.yml +27 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/parrots_pirates.yml +7 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/people.yml +15 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/pets.yml +14 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/pirates.yml +9 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/posts.yml +52 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/price_estimates.yml +7 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/projects.yml +7 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/readers.yml +9 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/references.yml +17 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/reserved_words/distinct.yml +5 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/reserved_words/distincts_selects.yml +11 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/reserved_words/group.yml +14 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/reserved_words/select.yml +8 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/reserved_words/values.yml +7 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/ships.yml +5 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/sponsors.yml +9 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/subscribers.yml +7 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/subscriptions.yml +12 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/taggings.yml +28 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/tags.yml +7 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/tasks.yml +7 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/topics.yml +42 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/toys.yml +4 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/treasures.yml +10 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/vertices.yml +4 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/fixtures/warehouse-things.yml +3 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/migrations/broken/100_migration_that_raises_exception.rb +10 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/migrations/decimal/1_give_me_big_numbers.rb +15 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/migrations/duplicate/1_people_have_last_names.rb +9 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/migrations/duplicate/2_we_need_reminders.rb +12 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/migrations/duplicate/3_foo.rb +7 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/migrations/duplicate/3_innocent_jointable.rb +12 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/migrations/duplicate_names/20080507052938_chunky.rb +7 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/migrations/duplicate_names/20080507053028_chunky.rb +7 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/migrations/interleaved/pass_1/3_innocent_jointable.rb +12 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/migrations/interleaved/pass_2/1_people_have_last_names.rb +9 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/migrations/interleaved/pass_2/3_innocent_jointable.rb +12 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/migrations/interleaved/pass_3/1_people_have_last_names.rb +9 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/migrations/interleaved/pass_3/2_i_raise_on_down.rb +8 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/migrations/interleaved/pass_3/3_innocent_jointable.rb +12 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/migrations/missing/1000_people_have_middle_names.rb +9 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/migrations/missing/1_people_have_last_names.rb +9 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/migrations/missing/3_we_need_reminders.rb +12 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/migrations/missing/4_innocent_jointable.rb +12 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/migrations/valid/1_people_have_last_names.rb +9 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/migrations/valid/2_we_need_reminders.rb +12 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/migrations/valid/3_innocent_jointable.rb +12 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/models/author.rb +146 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/models/auto_id.rb +4 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/models/binary.rb +2 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/models/bird.rb +3 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/models/book.rb +4 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/models/categorization.rb +5 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/models/category.rb +34 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/models/citation.rb +6 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/models/club.rb +13 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/models/column_name.rb +3 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/models/comment.rb +29 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/models/company.rb +161 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/models/company_in_module.rb +61 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/models/computer.rb +3 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/models/contact.rb +16 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/models/contract.rb +5 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/models/course.rb +3 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/models/customer.rb +73 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/models/default.rb +2 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/models/developer.rb +101 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/models/edge.rb +5 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/models/entrant.rb +3 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/models/essay.rb +3 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/models/event.rb +3 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/models/guid.rb +2 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/models/item.rb +7 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/models/job.rb +5 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/models/joke.rb +3 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/models/keyboard.rb +3 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/models/legacy_thing.rb +3 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/models/matey.rb +4 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/models/member.rb +12 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/models/member_detail.rb +5 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/models/member_type.rb +3 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/models/membership.rb +9 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/models/minimalistic.rb +2 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/models/mixed_case_monkey.rb +3 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/models/movie.rb +5 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/models/order.rb +4 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/models/organization.rb +6 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/models/owner.rb +5 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/models/parrot.rb +16 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/models/person.rb +16 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/models/pet.rb +5 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/models/pirate.rb +63 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/models/post.rb +100 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/models/price_estimate.rb +3 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/models/project.rb +30 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/models/reader.rb +4 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/models/reference.rb +4 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/models/reply.rb +46 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/models/ship.rb +10 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/models/ship_part.rb +5 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/models/sponsor.rb +4 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/models/subject.rb +4 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/models/subscriber.rb +8 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/models/subscription.rb +4 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/models/tag.rb +7 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/models/tagging.rb +10 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/models/task.rb +3 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/models/topic.rb +80 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/models/toy.rb +6 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/models/treasure.rb +6 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/models/vertex.rb +9 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/models/warehouse_thing.rb +5 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/schema/mysql_specific_schema.rb +12 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/schema/postgresql_specific_schema.rb +114 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/schema/schema.rb +492 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/schema/schema2.rb +6 -0
- data/spec/assets/testapp/vendor/rails/activerecord/test/schema/sqlite_specific_schema.rb +25 -0
- data/spec/assets/testapp/vendor/rails/activeresource/CHANGELOG +283 -0
- data/spec/assets/testapp/vendor/rails/activeresource/README +165 -0
- data/spec/assets/testapp/vendor/rails/activeresource/Rakefile +139 -0
- data/spec/assets/testapp/vendor/rails/activeresource/lib/active_resource/base.rb +1157 -0
- data/spec/assets/testapp/vendor/rails/activeresource/lib/active_resource/connection.rb +283 -0
- data/spec/assets/testapp/vendor/rails/activeresource/lib/active_resource/custom_methods.rb +120 -0
- data/spec/assets/testapp/vendor/rails/activeresource/lib/active_resource/exceptions.rb +66 -0
- data/spec/assets/testapp/vendor/rails/activeresource/lib/active_resource/formats/json_format.rb +23 -0
- data/spec/assets/testapp/vendor/rails/activeresource/lib/active_resource/formats/xml_format.rb +34 -0
- data/spec/assets/testapp/vendor/rails/activeresource/lib/active_resource/formats.rb +14 -0
- data/spec/assets/testapp/vendor/rails/activeresource/lib/active_resource/http_mock.rb +207 -0
- data/spec/assets/testapp/vendor/rails/activeresource/lib/active_resource/validations.rb +290 -0
- data/spec/assets/testapp/vendor/rails/activeresource/lib/active_resource/version.rb +9 -0
- data/spec/assets/testapp/vendor/rails/activeresource/lib/active_resource.rb +44 -0
- data/spec/assets/testapp/vendor/rails/activeresource/lib/activeresource.rb +1 -0
- data/spec/assets/testapp/vendor/rails/activeresource/test/abstract_unit.rb +21 -0
- data/spec/assets/testapp/vendor/rails/activeresource/test/authorization_test.rb +122 -0
- data/spec/assets/testapp/vendor/rails/activeresource/test/base/custom_methods_test.rb +100 -0
- data/spec/assets/testapp/vendor/rails/activeresource/test/base/equality_test.rb +52 -0
- data/spec/assets/testapp/vendor/rails/activeresource/test/base/load_test.rb +161 -0
- data/spec/assets/testapp/vendor/rails/activeresource/test/base_errors_test.rb +85 -0
- data/spec/assets/testapp/vendor/rails/activeresource/test/base_test.rb +1038 -0
- data/spec/assets/testapp/vendor/rails/activeresource/test/connection_test.rb +238 -0
- data/spec/assets/testapp/vendor/rails/activeresource/test/debug.log +7974 -0
- data/spec/assets/testapp/vendor/rails/activeresource/test/fixtures/beast.rb +14 -0
- data/spec/assets/testapp/vendor/rails/activeresource/test/fixtures/customer.rb +3 -0
- data/spec/assets/testapp/vendor/rails/activeresource/test/fixtures/person.rb +3 -0
- data/spec/assets/testapp/vendor/rails/activeresource/test/fixtures/proxy.rb +4 -0
- data/spec/assets/testapp/vendor/rails/activeresource/test/fixtures/street_address.rb +4 -0
- data/spec/assets/testapp/vendor/rails/activeresource/test/format_test.rb +112 -0
- data/spec/assets/testapp/vendor/rails/activeresource/test/setter_trap.rb +26 -0
- data/spec/assets/testapp/vendor/rails/activesupport/CHANGELOG +1322 -0
- data/spec/assets/testapp/vendor/rails/activesupport/README +43 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/all.rb +8 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/backtrace_cleaner.rb +72 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/base64.rb +33 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/basic_object.rb +24 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/buffered_logger.rb +127 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/cache/compressed_mem_cache_store.rb +20 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/cache/drb_store.rb +14 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/cache/file_store.rb +72 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/cache/mem_cache_store.rb +138 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/cache/memory_store.rb +52 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/cache/strategy/local_cache.rb +104 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/cache/synchronized_memory_store.rb +47 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/cache.rb +241 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/callbacks.rb +279 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/array/access.rb +53 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/array/conversions.rb +197 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/array/extract_options.rb +20 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/array/grouping.rb +106 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/array/random_access.rb +12 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/array/wrapper.rb +24 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/array.rb +15 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/base64/encoding.rb +16 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/base64.rb +4 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/benchmark.rb +19 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/bigdecimal/conversions.rb +37 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/bigdecimal.rb +6 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/blank.rb +58 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/cgi/escape_skipping_slashes.rb +23 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/cgi.rb +5 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/class/attribute_accessors.rb +54 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/class/delegating_attributes.rb +47 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/class/inheritable_attributes.rb +140 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/class/removal.rb +50 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/class.rb +4 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/date/behavior.rb +42 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/date/calculations.rb +231 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/date/conversions.rb +107 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/date.rb +10 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/date_time/calculations.rb +126 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/date_time/conversions.rb +96 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/date_time.rb +12 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/duplicable.rb +43 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/enumerable.rb +114 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/exception.rb +45 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/file/atomic.rb +46 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/file.rb +5 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/float/rounding.rb +24 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/float/time.rb +27 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/float.rb +7 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/hash/conversions.rb +247 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/hash/deep_merge.rb +23 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/hash/diff.rb +19 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/hash/except.rb +25 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/hash/indifferent_access.rb +143 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/hash/keys.rb +52 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/hash/reverse_merge.rb +35 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/hash/slice.rb +40 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/hash.rb +14 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/integer/even_odd.rb +29 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/integer/inflections.rb +20 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/integer/time.rb +45 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/integer.rb +9 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/kernel/agnostics.rb +11 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/kernel/daemonizing.rb +7 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/kernel/debugger.rb +15 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/kernel/reporting.rb +59 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/kernel/requires.rb +24 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/kernel.rb +5 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/load_error.rb +38 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/logger.rb +145 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/module/aliasing.rb +74 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/module/attr_accessor_with_default.rb +31 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/module/attr_internal.rb +32 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/module/attribute_accessors.rb +60 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/module/delegation.rb +135 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/module/inclusion.rb +30 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/module/introspection.rb +90 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/module/loading.rb +23 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/module/model_naming.rb +25 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/module/synchronization.rb +39 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/module.rb +23 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/name_error.rb +17 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/numeric/bytes.rb +50 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/numeric/conversions.rb +19 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/numeric/time.rb +81 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/numeric.rb +9 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/object/conversions.rb +15 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/object/extending.rb +80 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/object/instance_variables.rb +74 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/object/metaclass.rb +13 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/object/misc.rb +90 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/object.rb +5 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/pathname/clean_within.rb +14 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/pathname.rb +7 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/proc.rb +12 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/process/daemon.rb +25 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/process.rb +1 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/range/blockless_step.rb +32 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/range/conversions.rb +27 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/range/include_range.rb +30 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/range/overlaps.rb +15 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/range.rb +11 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/rexml.rb +41 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/string/access.rb +106 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/string/behavior.rb +13 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/string/bytesize.rb +5 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/string/conversions.rb +28 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/string/filters.rb +26 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/string/inflections.rb +167 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/string/iterators.rb +23 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/string/multibyte.rb +81 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/string/starts_ends_with.rb +35 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/string/xchar.rb +11 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/string.rb +23 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/symbol.rb +14 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/time/behavior.rb +13 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/time/calculations.rb +303 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/time/conversions.rb +90 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/time/zones.rb +86 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/time.rb +42 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/try.rb +36 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/uri.rb +16 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext.rb +4 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/dependencies.rb +625 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/deprecation.rb +196 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/duration.rb +100 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/gzip.rb +25 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/inflections.rb +56 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/inflector.rb +406 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/json/backends/jsongem.rb +38 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/json/backends/yaml.rb +88 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/json/decoding.rb +33 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/json/encoders/date.rb +22 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/json/encoders/date_time.rb +22 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/json/encoders/enumerable.rb +17 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/json/encoders/false_class.rb +7 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/json/encoders/hash.rb +56 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/json/encoders/nil_class.rb +7 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/json/encoders/numeric.rb +21 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/json/encoders/object.rb +10 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/json/encoders/regexp.rb +9 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/json/encoders/string.rb +9 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/json/encoders/symbol.rb +5 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/json/encoders/time.rb +22 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/json/encoders/true_class.rb +7 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/json/encoding.rb +102 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/json/variable.rb +10 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/json.rb +2 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/locale/en.yml +33 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/memoizable.rb +100 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/message_encryptor.rb +70 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/message_verifier.rb +59 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/multibyte/chars.rb +707 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/multibyte/exceptions.rb +8 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/multibyte/unicode_database.rb +71 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/multibyte/utils.rb +61 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/multibyte.rb +57 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/option_merger.rb +23 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/ordered_hash.rb +134 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/ordered_options.rb +19 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/rescuable.rb +108 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/secure_random.rb +199 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/string_inquirer.rb +21 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/test_case.rb +40 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/testing/assertions.rb +65 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/testing/declarative.rb +21 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/testing/default.rb +9 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/testing/deprecation.rb +57 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/testing/performance.rb +452 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/testing/setup_and_teardown.rb +91 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/time_with_zone.rb +335 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/values/time_zone.rb +404 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/values/unicode_tables.dat +0 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/builder-2.1.2/blankslate.rb +113 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/builder-2.1.2/builder/blankslate.rb +20 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/builder-2.1.2/builder/css.rb +250 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/builder-2.1.2/builder/xchar.rb +115 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/builder-2.1.2/builder/xmlbase.rb +139 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/builder-2.1.2/builder/xmlevents.rb +63 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/builder-2.1.2/builder/xmlmarkup.rb +328 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/builder-2.1.2/builder.rb +13 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.1.3/MIT-LICENSE +20 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.1.3/README.textile +20 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.1.3/Rakefile +5 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.1.3/i18n.gemspec +27 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.1.3/lib/i18n/backend/simple.rb +214 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.1.3/lib/i18n/exceptions.rb +53 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.1.3/lib/i18n.rb +199 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.1.3/test/all.rb +5 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.1.3/test/i18n_exceptions_test.rb +99 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.1.3/test/i18n_test.rb +124 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.1.3/test/locale/en.rb +1 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.1.3/test/locale/en.yml +3 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.1.3/test/simple_backend_test.rb +567 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/memcache-client-1.7.4/memcache.rb +1107 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/data_timezone.rb +47 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/data_timezone_info.rb +228 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Africa/Algiers.rb +55 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Africa/Cairo.rb +219 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Africa/Casablanca.rb +40 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Africa/Harare.rb +18 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Africa/Johannesburg.rb +25 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Africa/Monrovia.rb +22 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Africa/Nairobi.rb +23 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Argentina/Buenos_Aires.rb +166 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Argentina/San_Juan.rb +86 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Bogota.rb +23 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Caracas.rb +23 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Chicago.rb +283 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Chihuahua.rb +136 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Denver.rb +204 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Godthab.rb +161 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Guatemala.rb +27 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Halifax.rb +274 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Indiana/Indianapolis.rb +149 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Juneau.rb +194 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/La_Paz.rb +22 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Lima.rb +35 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Los_Angeles.rb +232 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Mazatlan.rb +139 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Mexico_City.rb +144 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Monterrey.rb +131 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/New_York.rb +282 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Phoenix.rb +30 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Regina.rb +74 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Santiago.rb +205 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Sao_Paulo.rb +171 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/St_Johns.rb +288 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Tijuana.rb +196 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Almaty.rb +67 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Baghdad.rb +73 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Baku.rb +161 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Bangkok.rb +20 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Chongqing.rb +33 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Colombo.rb +30 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Dhaka.rb +27 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Hong_Kong.rb +87 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Irkutsk.rb +165 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Jakarta.rb +30 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Jerusalem.rb +163 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Kabul.rb +20 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Kamchatka.rb +163 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Karachi.rb +30 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Katmandu.rb +20 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Kolkata.rb +25 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Krasnoyarsk.rb +163 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Kuala_Lumpur.rb +31 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Kuwait.rb +18 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Magadan.rb +163 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Muscat.rb +18 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Novosibirsk.rb +164 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Rangoon.rb +24 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Riyadh.rb +18 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Seoul.rb +34 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Shanghai.rb +35 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Singapore.rb +33 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Taipei.rb +59 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Tashkent.rb +47 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Tbilisi.rb +78 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Tehran.rb +121 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Tokyo.rb +30 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Ulaanbaatar.rb +65 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Urumqi.rb +33 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Vladivostok.rb +164 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Yakutsk.rb +163 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Yekaterinburg.rb +165 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Yerevan.rb +165 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Atlantic/Azores.rb +270 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Atlantic/Cape_Verde.rb +23 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Atlantic/South_Georgia.rb +18 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Australia/Adelaide.rb +187 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Australia/Brisbane.rb +35 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Australia/Darwin.rb +29 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Australia/Hobart.rb +193 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Australia/Melbourne.rb +185 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Australia/Perth.rb +37 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Australia/Sydney.rb +185 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Etc/UTC.rb +16 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Amsterdam.rb +228 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Athens.rb +185 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Belgrade.rb +163 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Berlin.rb +188 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Bratislava.rb +13 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Brussels.rb +232 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Bucharest.rb +181 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Budapest.rb +197 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Copenhagen.rb +179 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Dublin.rb +276 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Helsinki.rb +163 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Istanbul.rb +218 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Kiev.rb +168 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Lisbon.rb +268 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Ljubljana.rb +13 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/London.rb +288 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Madrid.rb +211 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Minsk.rb +170 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Moscow.rb +181 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Paris.rb +232 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Prague.rb +187 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Riga.rb +176 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Rome.rb +215 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Sarajevo.rb +13 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Skopje.rb +13 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Sofia.rb +173 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Stockholm.rb +165 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Tallinn.rb +172 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Vienna.rb +183 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Vilnius.rb +170 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Warsaw.rb +212 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Zagreb.rb +13 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Auckland.rb +202 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Fiji.rb +23 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Guam.rb +22 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Honolulu.rb +28 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Majuro.rb +20 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Midway.rb +25 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Noumea.rb +25 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Pago_Pago.rb +26 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Port_Moresby.rb +20 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Tongatapu.rb +27 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/info_timezone.rb +52 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/linked_timezone.rb +51 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/linked_timezone_info.rb +44 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/offset_rationals.rb +98 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/ruby_core_support.rb +56 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/time_or_datetime.rb +292 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/timezone.rb +508 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/timezone_definition.rb +56 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/timezone_info.rb +40 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/timezone_offset_info.rb +94 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/timezone_period.rb +198 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/timezone_transition_info.rb +129 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo.rb +33 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/vendor.rb +28 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/version.rb +9 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/whiny_nil.rb +58 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/xml_mini/jdom.rb +162 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/xml_mini/libxml.rb +133 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/xml_mini/nokogiri.rb +77 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/xml_mini/rexml.rb +108 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support/xml_mini.rb +31 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/active_support.rb +59 -0
- data/spec/assets/testapp/vendor/rails/activesupport/lib/activesupport.rb +1 -0
- data/spec/assets/testapp/vendor/rails/railties/CHANGELOG +2166 -0
- data/spec/assets/testapp/vendor/rails/railties/MIT-LICENSE +20 -0
- data/spec/assets/testapp/vendor/rails/railties/README +243 -0
- data/spec/assets/testapp/vendor/rails/railties/Rakefile +368 -0
- data/spec/assets/testapp/vendor/rails/railties/bin/about +4 -0
- data/spec/assets/testapp/vendor/rails/railties/bin/console +3 -0
- data/spec/assets/testapp/vendor/rails/railties/bin/dbconsole +3 -0
- data/spec/assets/testapp/vendor/rails/railties/bin/destroy +3 -0
- data/spec/assets/testapp/vendor/rails/railties/bin/generate +3 -0
- data/spec/assets/testapp/vendor/rails/railties/bin/performance/benchmarker +3 -0
- data/spec/assets/testapp/vendor/rails/railties/bin/performance/profiler +3 -0
- data/spec/assets/testapp/vendor/rails/railties/bin/plugin +3 -0
- data/spec/assets/testapp/vendor/rails/railties/bin/rails +20 -0
- data/spec/assets/testapp/vendor/rails/railties/bin/runner +3 -0
- data/spec/assets/testapp/vendor/rails/railties/bin/server +3 -0
- data/spec/assets/testapp/vendor/rails/railties/builtin/rails_info/rails/info.rb +131 -0
- data/spec/assets/testapp/vendor/rails/railties/builtin/rails_info/rails/info_controller.rb +9 -0
- data/spec/assets/testapp/vendor/rails/railties/builtin/rails_info/rails/info_helper.rb +2 -0
- data/spec/assets/testapp/vendor/rails/railties/builtin/rails_info/rails_info_controller.rb +2 -0
- data/spec/assets/testapp/vendor/rails/railties/configs/databases/frontbase.yml +28 -0
- data/spec/assets/testapp/vendor/rails/railties/configs/databases/ibm_db.yml +62 -0
- data/spec/assets/testapp/vendor/rails/railties/configs/databases/mysql.yml +60 -0
- data/spec/assets/testapp/vendor/rails/railties/configs/databases/oracle.yml +39 -0
- data/spec/assets/testapp/vendor/rails/railties/configs/databases/postgresql.yml +51 -0
- data/spec/assets/testapp/vendor/rails/railties/configs/databases/sqlite2.yml +19 -0
- data/spec/assets/testapp/vendor/rails/railties/configs/databases/sqlite3.yml +22 -0
- data/spec/assets/testapp/vendor/rails/railties/configs/empty.log +0 -0
- data/spec/assets/testapp/vendor/rails/railties/configs/initializers/backtrace_silencers.rb +7 -0
- data/spec/assets/testapp/vendor/rails/railties/configs/initializers/inflections.rb +10 -0
- data/spec/assets/testapp/vendor/rails/railties/configs/initializers/mime_types.rb +5 -0
- data/spec/assets/testapp/vendor/rails/railties/configs/initializers/new_rails_defaults.rb +21 -0
- data/spec/assets/testapp/vendor/rails/railties/configs/initializers/session_store.rb +15 -0
- data/spec/assets/testapp/vendor/rails/railties/configs/locales/en.yml +5 -0
- data/spec/assets/testapp/vendor/rails/railties/configs/routes.rb +43 -0
- data/spec/assets/testapp/vendor/rails/railties/configs/seeds.rb +7 -0
- data/spec/assets/testapp/vendor/rails/railties/dispatches/config.ru +7 -0
- data/spec/assets/testapp/vendor/rails/railties/dispatches/dispatch.fcgi +24 -0
- data/spec/assets/testapp/vendor/rails/railties/dispatches/dispatch.rb +10 -0
- data/spec/assets/testapp/vendor/rails/railties/dispatches/gateway.cgi +97 -0
- data/spec/assets/testapp/vendor/rails/railties/doc/README_FOR_APP +2 -0
- data/spec/assets/testapp/vendor/rails/railties/environments/boot.rb +110 -0
- data/spec/assets/testapp/vendor/rails/railties/environments/development.rb +17 -0
- data/spec/assets/testapp/vendor/rails/railties/environments/environment.rb +41 -0
- data/spec/assets/testapp/vendor/rails/railties/environments/production.rb +28 -0
- data/spec/assets/testapp/vendor/rails/railties/environments/test.rb +28 -0
- data/spec/assets/testapp/vendor/rails/railties/fresh_rakefile +10 -0
- data/spec/assets/testapp/vendor/rails/railties/guides/files/javascripts/code_highlighter.js +188 -0
- data/spec/assets/testapp/vendor/rails/railties/guides/files/javascripts/guides.js +8 -0
- data/spec/assets/testapp/vendor/rails/railties/guides/files/javascripts/highlighters.js +90 -0
- data/spec/assets/testapp/vendor/rails/railties/guides/files/stylesheets/main.css +441 -0
- data/spec/assets/testapp/vendor/rails/railties/guides/files/stylesheets/print.css +52 -0
- data/spec/assets/testapp/vendor/rails/railties/guides/files/stylesheets/reset.css +43 -0
- data/spec/assets/testapp/vendor/rails/railties/guides/files/stylesheets/style.css +13 -0
- data/spec/assets/testapp/vendor/rails/railties/guides/files/stylesheets/syntax.css +31 -0
- data/spec/assets/testapp/vendor/rails/railties/guides/images/belongs_to.png +0 -0
- data/spec/assets/testapp/vendor/rails/railties/guides/images/book_icon.gif +0 -0
- data/spec/assets/testapp/vendor/rails/railties/guides/images/bullet.gif +0 -0
- data/spec/assets/testapp/vendor/rails/railties/guides/images/chapters_icon.gif +0 -0
- data/spec/assets/testapp/vendor/rails/railties/guides/images/check_bullet.gif +0 -0
- data/spec/assets/testapp/vendor/rails/railties/guides/images/credits_pic_blank.gif +0 -0
- data/spec/assets/testapp/vendor/rails/railties/guides/images/csrf.png +0 -0
- data/spec/assets/testapp/vendor/rails/railties/guides/images/customized_error_messages.png +0 -0
- data/spec/assets/testapp/vendor/rails/railties/guides/images/error_messages.png +0 -0
- data/spec/assets/testapp/vendor/rails/railties/guides/images/feature_tile.gif +0 -0
- data/spec/assets/testapp/vendor/rails/railties/guides/images/footer_tile.gif +0 -0
- data/spec/assets/testapp/vendor/rails/railties/guides/images/fxn.jpg +0 -0
- data/spec/assets/testapp/vendor/rails/railties/guides/images/grey_bullet.gif +0 -0
- data/spec/assets/testapp/vendor/rails/railties/guides/images/habtm.png +0 -0
- data/spec/assets/testapp/vendor/rails/railties/guides/images/has_many.png +0 -0
- data/spec/assets/testapp/vendor/rails/railties/guides/images/has_many_through.png +0 -0
- data/spec/assets/testapp/vendor/rails/railties/guides/images/has_one.png +0 -0
- data/spec/assets/testapp/vendor/rails/railties/guides/images/has_one_through.png +0 -0
- data/spec/assets/testapp/vendor/rails/railties/guides/images/header_backdrop.png +0 -0
- data/spec/assets/testapp/vendor/rails/railties/guides/images/header_tile.gif +0 -0
- data/spec/assets/testapp/vendor/rails/railties/guides/images/i18n/demo_localized_pirate.png +0 -0
- data/spec/assets/testapp/vendor/rails/railties/guides/images/i18n/demo_translated_en.png +0 -0
- data/spec/assets/testapp/vendor/rails/railties/guides/images/i18n/demo_translated_pirate.png +0 -0
- data/spec/assets/testapp/vendor/rails/railties/guides/images/i18n/demo_translation_missing.png +0 -0
- data/spec/assets/testapp/vendor/rails/railties/guides/images/i18n/demo_untranslated.png +0 -0
- data/spec/assets/testapp/vendor/rails/railties/guides/images/icons/README +5 -0
- data/spec/assets/testapp/vendor/rails/railties/guides/images/icons/callouts/1.png +0 -0
- data/spec/assets/testapp/vendor/rails/railties/guides/images/icons/callouts/10.png +0 -0
- data/spec/assets/testapp/vendor/rails/railties/guides/images/icons/callouts/11.png +0 -0
- data/spec/assets/testapp/vendor/rails/railties/guides/images/icons/callouts/12.png +0 -0
- data/spec/assets/testapp/vendor/rails/railties/guides/images/icons/callouts/13.png +0 -0
- data/spec/assets/testapp/vendor/rails/railties/guides/images/icons/callouts/14.png +0 -0
- data/spec/assets/testapp/vendor/rails/railties/guides/images/icons/callouts/15.png +0 -0
- data/spec/assets/testapp/vendor/rails/railties/guides/images/icons/callouts/2.png +0 -0
- data/spec/assets/testapp/vendor/rails/railties/guides/images/icons/callouts/3.png +0 -0
- data/spec/assets/testapp/vendor/rails/railties/guides/images/icons/callouts/4.png +0 -0
- data/spec/assets/testapp/vendor/rails/railties/guides/images/icons/callouts/5.png +0 -0
- data/spec/assets/testapp/vendor/rails/railties/guides/images/icons/callouts/6.png +0 -0
- data/spec/assets/testapp/vendor/rails/railties/guides/images/icons/callouts/7.png +0 -0
- data/spec/assets/testapp/vendor/rails/railties/guides/images/icons/callouts/8.png +0 -0
- data/spec/assets/testapp/vendor/rails/railties/guides/images/icons/callouts/9.png +0 -0
- data/spec/assets/testapp/vendor/rails/railties/guides/images/icons/caution.png +0 -0
- data/spec/assets/testapp/vendor/rails/railties/guides/images/icons/example.png +0 -0
- data/spec/assets/testapp/vendor/rails/railties/guides/images/icons/home.png +0 -0
- data/spec/assets/testapp/vendor/rails/railties/guides/images/icons/important.png +0 -0
- data/spec/assets/testapp/vendor/rails/railties/guides/images/icons/next.png +0 -0
- data/spec/assets/testapp/vendor/rails/railties/guides/images/icons/note.png +0 -0
- data/spec/assets/testapp/vendor/rails/railties/guides/images/icons/prev.png +0 -0
- data/spec/assets/testapp/vendor/rails/railties/guides/images/icons/tip.png +0 -0
- data/spec/assets/testapp/vendor/rails/railties/guides/images/icons/up.png +0 -0
- data/spec/assets/testapp/vendor/rails/railties/guides/images/icons/warning.png +0 -0
- data/spec/assets/testapp/vendor/rails/railties/guides/images/nav_arrow.gif +0 -0
- data/spec/assets/testapp/vendor/rails/railties/guides/images/polymorphic.png +0 -0
- data/spec/assets/testapp/vendor/rails/railties/guides/images/posts_index.png +0 -0
- data/spec/assets/testapp/vendor/rails/railties/guides/images/rails_guides_logo.gif +0 -0
- data/spec/assets/testapp/vendor/rails/railties/guides/images/rails_logo_remix.gif +0 -0
- data/spec/assets/testapp/vendor/rails/railties/guides/images/rails_welcome.png +0 -0
- data/spec/assets/testapp/vendor/rails/railties/guides/images/session_fixation.png +0 -0
- data/spec/assets/testapp/vendor/rails/railties/guides/images/tab_grey.gif +0 -0
- data/spec/assets/testapp/vendor/rails/railties/guides/images/tab_info.gif +0 -0
- data/spec/assets/testapp/vendor/rails/railties/guides/images/tab_note.gif +0 -0
- data/spec/assets/testapp/vendor/rails/railties/guides/images/tab_red.gif +0 -0
- data/spec/assets/testapp/vendor/rails/railties/guides/images/tab_yellow.gif +0 -0
- data/spec/assets/testapp/vendor/rails/railties/guides/images/tab_yellow.png +0 -0
- data/spec/assets/testapp/vendor/rails/railties/guides/images/validation_error_messages.png +0 -0
- data/spec/assets/testapp/vendor/rails/railties/guides/rails_guides/generator.rb +138 -0
- data/spec/assets/testapp/vendor/rails/railties/guides/rails_guides/helpers.rb +34 -0
- data/spec/assets/testapp/vendor/rails/railties/guides/rails_guides/indexer.rb +55 -0
- data/spec/assets/testapp/vendor/rails/railties/guides/rails_guides/textile_extensions.rb +41 -0
- data/spec/assets/testapp/vendor/rails/railties/guides/rails_guides.rb +42 -0
- data/spec/assets/testapp/vendor/rails/railties/guides/source/2_2_release_notes.textile +422 -0
- data/spec/assets/testapp/vendor/rails/railties/guides/source/2_3_release_notes.textile +610 -0
- data/spec/assets/testapp/vendor/rails/railties/guides/source/action_controller_overview.textile +776 -0
- data/spec/assets/testapp/vendor/rails/railties/guides/source/action_mailer_basics.textile +424 -0
- data/spec/assets/testapp/vendor/rails/railties/guides/source/active_record_basics.textile +135 -0
- data/spec/assets/testapp/vendor/rails/railties/guides/source/active_record_querying.textile +969 -0
- data/spec/assets/testapp/vendor/rails/railties/guides/source/activerecord_validations_callbacks.textile +1086 -0
- data/spec/assets/testapp/vendor/rails/railties/guides/source/association_basics.textile +1781 -0
- data/spec/assets/testapp/vendor/rails/railties/guides/source/caching_with_rails.textile +524 -0
- data/spec/assets/testapp/vendor/rails/railties/guides/source/command_line.textile +589 -0
- data/spec/assets/testapp/vendor/rails/railties/guides/source/configuring.textile +234 -0
- data/spec/assets/testapp/vendor/rails/railties/guides/source/contribute.textile +71 -0
- data/spec/assets/testapp/vendor/rails/railties/guides/source/contributing_to_rails.textile +239 -0
- data/spec/assets/testapp/vendor/rails/railties/guides/source/credits.erb.textile +52 -0
- data/spec/assets/testapp/vendor/rails/railties/guides/source/debugging_rails_applications.textile +709 -0
- data/spec/assets/testapp/vendor/rails/railties/guides/source/form_helpers.textile +766 -0
- data/spec/assets/testapp/vendor/rails/railties/guides/source/getting_started.textile +1297 -0
- data/spec/assets/testapp/vendor/rails/railties/guides/source/i18n.textile +912 -0
- data/spec/assets/testapp/vendor/rails/railties/guides/source/index.erb.textile +124 -0
- data/spec/assets/testapp/vendor/rails/railties/guides/source/layout.html.erb +103 -0
- data/spec/assets/testapp/vendor/rails/railties/guides/source/layouts_and_rendering.textile +979 -0
- data/spec/assets/testapp/vendor/rails/railties/guides/source/migrations.textile +591 -0
- data/spec/assets/testapp/vendor/rails/railties/guides/source/nested_model_forms.textile +222 -0
- data/spec/assets/testapp/vendor/rails/railties/guides/source/performance_testing.textile +531 -0
- data/spec/assets/testapp/vendor/rails/railties/guides/source/plugins.textile +1512 -0
- data/spec/assets/testapp/vendor/rails/railties/guides/source/rails_on_rack.textile +309 -0
- data/spec/assets/testapp/vendor/rails/railties/guides/source/routing.textile +903 -0
- data/spec/assets/testapp/vendor/rails/railties/guides/source/security.textile +986 -0
- data/spec/assets/testapp/vendor/rails/railties/guides/source/testing.textile +951 -0
- data/spec/assets/testapp/vendor/rails/railties/helpers/application_controller.rb +10 -0
- data/spec/assets/testapp/vendor/rails/railties/helpers/application_helper.rb +3 -0
- data/spec/assets/testapp/vendor/rails/railties/helpers/performance_test.rb +9 -0
- data/spec/assets/testapp/vendor/rails/railties/helpers/test_helper.rb +38 -0
- data/spec/assets/testapp/vendor/rails/railties/html/404.html +30 -0
- data/spec/assets/testapp/vendor/rails/railties/html/422.html +30 -0
- data/spec/assets/testapp/vendor/rails/railties/html/500.html +30 -0
- data/spec/assets/testapp/vendor/rails/railties/html/favicon.ico +0 -0
- data/spec/assets/testapp/vendor/rails/railties/html/images/rails.png +0 -0
- data/spec/assets/testapp/vendor/rails/railties/html/index.html +275 -0
- data/spec/assets/testapp/vendor/rails/railties/html/javascripts/application.js +2 -0
- data/spec/assets/testapp/vendor/rails/railties/html/javascripts/controls.js +963 -0
- data/spec/assets/testapp/vendor/rails/railties/html/javascripts/dragdrop.js +973 -0
- data/spec/assets/testapp/vendor/rails/railties/html/javascripts/effects.js +1128 -0
- data/spec/assets/testapp/vendor/rails/railties/html/javascripts/prototype.js +4320 -0
- data/spec/assets/testapp/vendor/rails/railties/html/robots.txt +5 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/code_statistics.rb +107 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/commands/about.rb +3 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/commands/console.rb +45 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/commands/dbconsole.rb +87 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/commands/destroy.rb +6 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/commands/generate.rb +6 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/commands/ncgi/listener +86 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/commands/ncgi/tracker +69 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/commands/performance/benchmarker.rb +24 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/commands/performance/profiler.rb +50 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/commands/plugin.rb +968 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/commands/runner.rb +54 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/commands/server.rb +114 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/commands/update.rb +4 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/commands.rb +17 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/console_app.rb +30 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/console_sandbox.rb +6 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/console_with_helpers.rb +5 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/dispatcher.rb +24 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/fcgi_handler.rb +239 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/initializer.rb +1128 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/performance_test_help.rb +5 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/rails/backtrace_cleaner.rb +54 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/rails/gem_builder.rb +21 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/rails/gem_dependency.rb +311 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/rails/plugin/loader.rb +198 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/rails/plugin/locator.rb +100 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/rails/plugin.rb +179 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/rails/rack/debugger.rb +21 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/rails/rack/log_tailer.rb +35 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/rails/rack/metal.rb +51 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/rails/rack/static.rb +46 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/rails/rack.rb +8 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/rails/vendor_gem_source_index.rb +140 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/rails/version.rb +9 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/base.rb +266 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/commands.rb +621 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generated_attribute.rb +46 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/applications/app/USAGE +9 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/applications/app/app_generator.rb +263 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/applications/app/scm/git.rb +18 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/applications/app/scm/scm.rb +8 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/applications/app/scm/svn.rb +7 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/applications/app/template_runner.rb +401 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/controller/USAGE +30 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/controller/controller_generator.rb +43 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/controller/templates/controller.rb +7 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/controller/templates/functional_test.rb +8 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/controller/templates/helper.rb +2 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/controller/templates/helper_test.rb +4 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/controller/templates/view.html.erb +2 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/helper/USAGE +24 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/helper/helper_generator.rb +25 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/helper/templates/helper.rb +2 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/helper/templates/helper_test.rb +4 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/integration_test/USAGE +8 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/integration_test/integration_test_generator.rb +16 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/integration_test/templates/integration_test.rb +10 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/mailer/USAGE +16 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/mailer/mailer_generator.rb +30 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/mailer/templates/fixture.erb +3 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/mailer/templates/fixture.rhtml +0 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/mailer/templates/mailer.rb +15 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/mailer/templates/unit_test.rb +20 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/mailer/templates/view.erb +3 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/mailer/templates/view.rhtml +0 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/metal/USAGE +8 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/metal/metal_generator.rb +8 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/metal/templates/metal.rb +12 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/migration/USAGE +29 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/migration/migration_generator.rb +20 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/migration/templates/migration.rb +11 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/model/USAGE +27 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/model/model_generator.rb +52 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/model/templates/fixtures.yml +19 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/model/templates/migration.rb +16 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/model/templates/model.rb +5 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/model/templates/unit_test.rb +8 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/observer/USAGE +13 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/observer/observer_generator.rb +16 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/observer/templates/observer.rb +2 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/observer/templates/unit_test.rb +8 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/performance_test/USAGE +8 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/performance_test/performance_test_generator.rb +16 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/performance_test/templates/performance_test.rb +9 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/plugin/USAGE +25 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/plugin/plugin_generator.rb +39 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/MIT-LICENSE +20 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/README +13 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/Rakefile +23 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/USAGE +8 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/generator.rb +8 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/init.rb +1 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/install.rb +1 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/plugin.rb +1 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/tasks.rake +4 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/test_helper.rb +3 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/uninstall.rb +1 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/unit_test.rb +8 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/resource/USAGE +23 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/resource/resource_generator.rb +76 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/resource/templates/controller.rb +2 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/resource/templates/functional_test.rb +8 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/resource/templates/helper.rb +2 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/resource/templates/helper_test.rb +4 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/USAGE +29 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/scaffold_generator.rb +103 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/templates/controller.rb +85 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/templates/functional_test.rb +45 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/templates/helper.rb +2 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/templates/helper_test.rb +4 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/templates/layout.html.erb +17 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/templates/style.css +54 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/templates/view_edit.html.erb +18 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/templates/view_index.html.erb +24 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/templates/view_new.html.erb +17 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/templates/view_show.html.erb +10 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/session_migration/USAGE +10 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/session_migration/session_migration_generator.rb +18 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/generators/components/session_migration/templates/migration.rb +16 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/lookup.rb +249 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/manifest.rb +53 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/options.rb +150 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/scripts/destroy.rb +29 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/scripts/generate.rb +7 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/scripts/update.rb +12 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/scripts.rb +89 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/secret_key_generator.rb +24 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/simple_logger.rb +46 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator/spec.rb +44 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/rails_generator.rb +43 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/railties_path.rb +1 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/ruby_version_check.rb +17 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/rubyprof_ext.rb +35 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/source_annotation_extractor.rb +102 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/tasks/annotations.rake +20 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/tasks/databases.rake +436 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/tasks/documentation.rake +88 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/tasks/framework.rake +143 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/tasks/gems.rake +78 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/tasks/log.rake +9 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/tasks/middleware.rake +7 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/tasks/misc.rake +63 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/tasks/rails.rb +8 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/tasks/routes.rake +18 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/tasks/statistics.rake +17 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/tasks/testing.rake +139 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/tasks/tmp.rake +37 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/test_help.rb +38 -0
- data/spec/assets/testapp/vendor/rails/railties/lib/webrick_server.rb +156 -0
- data/spec/dependencies_spec.rb +8 -0
- data/spec/gemstreamer_spec.rb +7 -0
- data/spec/publisher_spec.rb +10 -0
- data/spec/spec_helper.rb +6 -0
- metadata +2817 -0
@@ -0,0 +1,47 @@
|
|
1
|
+
# Set the default text field size when input is a string. Default is 50.
|
2
|
+
# Formtastic::SemanticFormBuilder.default_text_field_size = 50
|
3
|
+
|
4
|
+
# Should all fields be considered "required" by default?
|
5
|
+
# Defaults to true, see ValidationReflection notes below.
|
6
|
+
# Formtastic::SemanticFormBuilder.all_fields_required_by_default = true
|
7
|
+
|
8
|
+
# Should select fields have a blank option/prompt by default?
|
9
|
+
# Defaults to true.
|
10
|
+
# Formtastic::SemanticFormBuilder.include_blank_for_select_by_default = true
|
11
|
+
|
12
|
+
# Set the string that will be appended to the labels/fieldsets which are required
|
13
|
+
# It accepts string or procs and the default is a localized version of
|
14
|
+
# '<abbr title="required">*</abbr>'. In other words, if you configure formtastic.required
|
15
|
+
# in your locale, it will replace the abbr title properly. But if you don't want to use
|
16
|
+
# abbr tag, you can simply give a string as below
|
17
|
+
# Formtastic::SemanticFormBuilder.required_string = "(required)"
|
18
|
+
|
19
|
+
# Set the string that will be appended to the labels/fieldsets which are optional
|
20
|
+
# Defaults to an empty string ("") and also accepts procs (see required_string above)
|
21
|
+
# Formtastic::SemanticFormBuilder.optional_string = "(optional)"
|
22
|
+
|
23
|
+
# Set the way inline errors will be displayed.
|
24
|
+
# Defaults to :sentence, valid options are :sentence, :list and :none
|
25
|
+
# Formtastic::SemanticFormBuilder.inline_errors = :sentence
|
26
|
+
|
27
|
+
# Set the method to call on label text to transform or format it for human-friendly
|
28
|
+
# reading when formtastic is user without object. Defaults to :humanize.
|
29
|
+
# Formtastic::SemanticFormBuilder.label_str_method = :humanize
|
30
|
+
|
31
|
+
# Set the array of methods to try calling on parent objects in :select and :radio inputs
|
32
|
+
# for the text inside each @<option>@ tag or alongside each radio @<input>@. The first method
|
33
|
+
# that is found on the object will be used.
|
34
|
+
# Defaults to ["to_label", "display_name", "full_name", "name", "title", "username", "login", "value", "to_s"]
|
35
|
+
# Formtastic::SemanticFormBuilder.collection_label_methods = [
|
36
|
+
# "to_label", "display_name", "full_name", "name", "title", "username", "login", "value", "to_s"]
|
37
|
+
|
38
|
+
# Formtastic by default renders inside li tags the input, hints and then
|
39
|
+
# errors messages. Sometimes you want the hints to be rendered first than
|
40
|
+
# the input, in the following order: hints, input and errors. You can
|
41
|
+
# customize it doing just as below:
|
42
|
+
# Formtastic::SemanticFormBuilder.inline_order = [:input, :hints, :errors]
|
43
|
+
|
44
|
+
# Specifies if labels/hints for input fields automatically be looked up using I18n.
|
45
|
+
# Default value: false. Overridden for specific fields by setting value to true,
|
46
|
+
# i.e. :label => true, or :hint => true (or opposite depending on initialized value)
|
47
|
+
# Formtastic::SemanticFormBuilder.i18n_lookups_by_default = false
|
@@ -0,0 +1,10 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
3
|
+
# Add new inflection rules using the following format
|
4
|
+
# (all these examples are active by default):
|
5
|
+
# ActiveSupport::Inflector.inflections do |inflect|
|
6
|
+
# inflect.plural /^(ox)$/i, '\1en'
|
7
|
+
# inflect.singular /^(ox)en/i, '\1'
|
8
|
+
# inflect.irregular 'person', 'people'
|
9
|
+
# inflect.uncountable %w( fish sheep )
|
10
|
+
# end
|
@@ -0,0 +1 @@
|
|
1
|
+
require 'lockdown'
|
@@ -0,0 +1,21 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
3
|
+
# These settings change the behavior of Rails 2 apps and will be defaults
|
4
|
+
# for Rails 3. You can remove this initializer when Rails 3 is released.
|
5
|
+
|
6
|
+
if defined?(ActiveRecord)
|
7
|
+
# Include Active Record class name as root for JSON serialized output.
|
8
|
+
ActiveRecord::Base.include_root_in_json = true
|
9
|
+
|
10
|
+
# Store the full class name (including module namespace) in STI type column.
|
11
|
+
ActiveRecord::Base.store_full_sti_class = true
|
12
|
+
end
|
13
|
+
|
14
|
+
ActionController::Routing.generate_best_match = false
|
15
|
+
|
16
|
+
# Use ISO 8601 format for JSON serialized times and dates.
|
17
|
+
ActiveSupport.use_standard_json_time_format = true
|
18
|
+
|
19
|
+
# Don't escape HTML entities in JSON, leave that for the #json_escape helper.
|
20
|
+
# if you're including raw json in an HTML page.
|
21
|
+
ActiveSupport.escape_html_entities_in_json = false
|
@@ -0,0 +1,16 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
3
|
+
# Your secret key for verifying cookie session data integrity.
|
4
|
+
# If you change this key, all old sessions will become invalid!
|
5
|
+
# Make sure the secret is at least 30 characters and all random,
|
6
|
+
# no regular words or you'll be exposed to dictionary attacks.
|
7
|
+
ActionController::Base.session = {
|
8
|
+
:key => '_testapp_session',
|
9
|
+
:secret => '4be61fdc6164901df0ba3583d909685729dc5077f4193f13406ba07b8c538808db8276a15858edd414d4fbbd4e641855a736b16d70dcd87fedf40fa6831e42bf'
|
10
|
+
}
|
11
|
+
|
12
|
+
# Use the database for sessions instead of the cookie-based default,
|
13
|
+
# which shouldn't be used to store highly confidential information
|
14
|
+
# (create the session table with "rake db:sessions:create")
|
15
|
+
# ActionController::Base.session_store = :active_record_store
|
16
|
+
ActionController::Base.session_store = :active_record_store
|
@@ -0,0 +1,54 @@
|
|
1
|
+
ActionController::Routing::Routes.draw do |map|
|
2
|
+
map.resources :users
|
3
|
+
|
4
|
+
map.resource :account, :controller => "users"
|
5
|
+
|
6
|
+
map.logout '/logout', :controller => 'user_sessions', :action => 'destroy'
|
7
|
+
|
8
|
+
map.login '/login', :controller => 'user_sessions', :action => 'new'
|
9
|
+
|
10
|
+
map.resource :user_session
|
11
|
+
|
12
|
+
# The priority is based upon order of creation: first created -> highest priority.
|
13
|
+
|
14
|
+
# Sample of regular route:
|
15
|
+
# map.connect 'products/:id', :controller => 'catalog', :action => 'view'
|
16
|
+
# Keep in mind you can assign values other than :controller and :action
|
17
|
+
|
18
|
+
# Sample of named route:
|
19
|
+
# map.purchase 'products/:id/purchase', :controller => 'catalog', :action => 'purchase'
|
20
|
+
# This route can be invoked with purchase_url(:id => product.id)
|
21
|
+
|
22
|
+
# Sample resource route (maps HTTP verbs to controller actions automatically):
|
23
|
+
# map.resources :products
|
24
|
+
|
25
|
+
# Sample resource route with options:
|
26
|
+
# map.resources :products, :member => { :short => :get, :toggle => :post }, :collection => { :sold => :get }
|
27
|
+
|
28
|
+
# Sample resource route with sub-resources:
|
29
|
+
# map.resources :products, :has_many => [ :comments, :sales ], :has_one => :seller
|
30
|
+
|
31
|
+
# Sample resource route with more complex sub-resources
|
32
|
+
# map.resources :products do |products|
|
33
|
+
# products.resources :comments
|
34
|
+
# products.resources :sales, :collection => { :recent => :get }
|
35
|
+
# end
|
36
|
+
|
37
|
+
# Sample resource route within a namespace:
|
38
|
+
# map.namespace :admin do |admin|
|
39
|
+
# # Directs /admin/products/* to Admin::ProductsController (app/controllers/admin/products_controller.rb)
|
40
|
+
# admin.resources :products
|
41
|
+
# end
|
42
|
+
|
43
|
+
# You can have the root of your site routed with map.root -- just remember to delete public/index.html.
|
44
|
+
# map.root :controller => "welcome"
|
45
|
+
map.root :controller => 'user_sessions', :action => 'new'
|
46
|
+
|
47
|
+
# See how all your routes lay out with "rake routes"
|
48
|
+
|
49
|
+
# Install the default routes as the lowest priority.
|
50
|
+
# Note: These default routes make all actions in every controller accessible via GET requests. You should
|
51
|
+
# consider removing or commenting them out if you're using named routes and resources.
|
52
|
+
map.connect ':controller/:action/:id'
|
53
|
+
map.connect ':controller/:action/:id.:format'
|
54
|
+
end
|
@@ -0,0 +1,28 @@
|
|
1
|
+
class CreateUsers < ActiveRecord::Migration
|
2
|
+
def self.up
|
3
|
+
create_table :users do |t|
|
4
|
+
t.string :login, :null => false # optional, you can use email instead, or both
|
5
|
+
t.string :email, :null => false # optional, you can use login instead, or both
|
6
|
+
t.string :crypted_password, :null => false # optional, see below
|
7
|
+
t.string :password_salt, :null => false # optional, but highly recommended
|
8
|
+
t.string :persistence_token, :null => false # required
|
9
|
+
t.string :single_access_token, :null => false # optional, see Authlogic::Session::Params
|
10
|
+
t.string :perishable_token, :null => false # optional, see Authlogic::Session::Perishability
|
11
|
+
|
12
|
+
# Magic columns, just like ActiveRecord's created_at and updated_at. These are automatically maintained by Authlogic if they are present.
|
13
|
+
t.integer :login_count, :null => false, :default => 0 # optional, see Authlogic::Session::MagicColumns
|
14
|
+
t.integer :failed_login_count, :null => false, :default => 0 # optional, see Authlogic::Session::MagicColumns
|
15
|
+
t.datetime :last_request_at # optional, see Authlogic::Session::MagicColumns
|
16
|
+
t.datetime :current_login_at # optional, see Authlogic::Session::MagicColumns
|
17
|
+
t.datetime :last_login_at # optional, see Authlogic::Session::MagicColumns
|
18
|
+
t.string :current_login_ip # optional, see Authlogic::Session::MagicColumns
|
19
|
+
t.string :last_login_ip # optional, see Authlogic::Session::MagicColumns
|
20
|
+
|
21
|
+
t.timestamps
|
22
|
+
end
|
23
|
+
end
|
24
|
+
|
25
|
+
def self.down
|
26
|
+
drop_table :users
|
27
|
+
end
|
28
|
+
end
|
@@ -0,0 +1,19 @@
|
|
1
|
+
class CreateUserGroups < ActiveRecord::Migration
|
2
|
+
def self.up
|
3
|
+
create_table :user_groups do |t|
|
4
|
+
t.string :name
|
5
|
+
|
6
|
+
t.timestamps
|
7
|
+
end
|
8
|
+
|
9
|
+
create_table :user_groups_users, :id => false do |t|
|
10
|
+
t.integer :user_group_id
|
11
|
+
t.integer :user_id
|
12
|
+
end
|
13
|
+
end
|
14
|
+
|
15
|
+
def self.down
|
16
|
+
drop_table :user_groups_users
|
17
|
+
drop_table :user_groups
|
18
|
+
end
|
19
|
+
end
|
@@ -0,0 +1,19 @@
|
|
1
|
+
class CreatePermissions < ActiveRecord::Migration
|
2
|
+
def self.up
|
3
|
+
create_table :permissions do |t|
|
4
|
+
t.string :name
|
5
|
+
|
6
|
+
t.timestamps
|
7
|
+
end
|
8
|
+
|
9
|
+
create_table :permissions_user_groups, :id => false do |t|
|
10
|
+
t.integer :permission_id
|
11
|
+
t.integer :user_group_id
|
12
|
+
end
|
13
|
+
end
|
14
|
+
|
15
|
+
def self.down
|
16
|
+
drop_table :permissions_user_groups
|
17
|
+
drop_table :permissions
|
18
|
+
end
|
19
|
+
end
|
@@ -0,0 +1,16 @@
|
|
1
|
+
class CreateSessions < ActiveRecord::Migration
|
2
|
+
def self.up
|
3
|
+
create_table :sessions do |t|
|
4
|
+
t.string :session_id, :null => false
|
5
|
+
t.text :data
|
6
|
+
t.timestamps
|
7
|
+
end
|
8
|
+
|
9
|
+
add_index :sessions, :session_id
|
10
|
+
add_index :sessions, :updated_at
|
11
|
+
end
|
12
|
+
|
13
|
+
def self.down
|
14
|
+
drop_table :sessions
|
15
|
+
end
|
16
|
+
end
|
@@ -0,0 +1,17 @@
|
|
1
|
+
# This file should contain all the record creation needed to seed the database with its default values.
|
2
|
+
# The data can then be loaded with the rake db:seed (or created alongside the db with db:setup).
|
3
|
+
#
|
4
|
+
# Examples:
|
5
|
+
#
|
6
|
+
# cities = City.create([{ :name => 'Chicago' }, { :name => 'Copenhagen' }])
|
7
|
+
# Major.create(:name => 'Daley', :city => cities.first)
|
8
|
+
|
9
|
+
# Setup initial user and make this user an administrator
|
10
|
+
user = User.create(
|
11
|
+
:login => "admin",
|
12
|
+
:email => "admin@example.com",
|
13
|
+
:password => "password",
|
14
|
+
:password_confirmation => "password"
|
15
|
+
)
|
16
|
+
|
17
|
+
Lockdown::System.make_user_administrator(user)
|
@@ -0,0 +1,189 @@
|
|
1
|
+
# IMPORTANT: This file was generated by Cucumber 0.4.2
|
2
|
+
# Edit at your own peril - it's recommended to regenerate this file
|
3
|
+
# in the future when you upgrade to a newer version of Cucumber.
|
4
|
+
# Consider adding your own code to a new file instead of editing this one.
|
5
|
+
|
6
|
+
require File.expand_path(File.join(File.dirname(__FILE__), "..", "support", "paths"))
|
7
|
+
|
8
|
+
# Commonly used webrat steps
|
9
|
+
# http://github.com/brynary/webrat
|
10
|
+
|
11
|
+
Given /^I am on (.+)$/ do |page_name|
|
12
|
+
visit path_to(page_name)
|
13
|
+
end
|
14
|
+
|
15
|
+
When /^I go to (.+)$/ do |page_name|
|
16
|
+
visit path_to(page_name)
|
17
|
+
end
|
18
|
+
|
19
|
+
When /^I press "([^\"]*)"$/ do |button|
|
20
|
+
click_button(button)
|
21
|
+
end
|
22
|
+
|
23
|
+
When /^I follow "([^\"]*)"$/ do |link|
|
24
|
+
click_link(link)
|
25
|
+
end
|
26
|
+
|
27
|
+
When /^I follow "([^\"]*)" within "([^\"]*)"$/ do |link, parent|
|
28
|
+
click_link_within(parent, link)
|
29
|
+
end
|
30
|
+
|
31
|
+
When /^I fill in "([^\"]*)" with "([^\"]*)"$/ do |field, value|
|
32
|
+
fill_in(field, :with => value)
|
33
|
+
end
|
34
|
+
|
35
|
+
When /^I fill in "([^\"]*)" for "([^\"]*)"$/ do |value, field|
|
36
|
+
fill_in(field, :with => value)
|
37
|
+
end
|
38
|
+
|
39
|
+
# Use this to fill in an entire form with data from a table. Example:
|
40
|
+
#
|
41
|
+
# When I fill in the following:
|
42
|
+
# | Account Number | 5002 |
|
43
|
+
# | Expiry date | 2009-11-01 |
|
44
|
+
# | Note | Nice guy |
|
45
|
+
# | Wants Email? | |
|
46
|
+
#
|
47
|
+
# TODO: Add support for checkbox, select og option
|
48
|
+
# based on naming conventions.
|
49
|
+
#
|
50
|
+
When /^I fill in the following:$/ do |fields|
|
51
|
+
fields.rows_hash.each do |name, value|
|
52
|
+
When %{I fill in "#{name}" with "#{value}"}
|
53
|
+
end
|
54
|
+
end
|
55
|
+
|
56
|
+
When /^I select "([^\"]*)" from "([^\"]*)"$/ do |value, field|
|
57
|
+
select(value, :from => field)
|
58
|
+
end
|
59
|
+
|
60
|
+
# Use this step in conjunction with Rail's datetime_select helper. For example:
|
61
|
+
# When I select "December 25, 2008 10:00" as the date and time
|
62
|
+
When /^I select "([^\"]*)" as the date and time$/ do |time|
|
63
|
+
select_datetime(time)
|
64
|
+
end
|
65
|
+
|
66
|
+
# Use this step when using multiple datetime_select helpers on a page or
|
67
|
+
# you want to specify which datetime to select. Given the following view:
|
68
|
+
# <%= f.label :preferred %><br />
|
69
|
+
# <%= f.datetime_select :preferred %>
|
70
|
+
# <%= f.label :alternative %><br />
|
71
|
+
# <%= f.datetime_select :alternative %>
|
72
|
+
# The following steps would fill out the form:
|
73
|
+
# When I select "November 23, 2004 11:20" as the "Preferred" date and time
|
74
|
+
# And I select "November 25, 2004 10:30" as the "Alternative" date and time
|
75
|
+
When /^I select "([^\"]*)" as the "([^\"]*)" date and time$/ do |datetime, datetime_label|
|
76
|
+
select_datetime(datetime, :from => datetime_label)
|
77
|
+
end
|
78
|
+
|
79
|
+
# Use this step in conjunction with Rail's time_select helper. For example:
|
80
|
+
# When I select "2:20PM" as the time
|
81
|
+
# Note: Rail's default time helper provides 24-hour time-- not 12 hour time. Webrat
|
82
|
+
# will convert the 2:20PM to 14:20 and then select it.
|
83
|
+
When /^I select "([^\"]*)" as the time$/ do |time|
|
84
|
+
select_time(time)
|
85
|
+
end
|
86
|
+
|
87
|
+
# Use this step when using multiple time_select helpers on a page or you want to
|
88
|
+
# specify the name of the time on the form. For example:
|
89
|
+
# When I select "7:30AM" as the "Gym" time
|
90
|
+
When /^I select "([^\"]*)" as the "([^\"]*)" time$/ do |time, time_label|
|
91
|
+
select_time(time, :from => time_label)
|
92
|
+
end
|
93
|
+
|
94
|
+
# Use this step in conjunction with Rail's date_select helper. For example:
|
95
|
+
# When I select "February 20, 1981" as the date
|
96
|
+
When /^I select "([^\"]*)" as the date$/ do |date|
|
97
|
+
select_date(date)
|
98
|
+
end
|
99
|
+
|
100
|
+
# Use this step when using multiple date_select helpers on one page or
|
101
|
+
# you want to specify the name of the date on the form. For example:
|
102
|
+
# When I select "April 26, 1982" as the "Date of Birth" date
|
103
|
+
When /^I select "([^\"]*)" as the "([^\"]*)" date$/ do |date, date_label|
|
104
|
+
select_date(date, :from => date_label)
|
105
|
+
end
|
106
|
+
|
107
|
+
When /^I check "([^\"]*)"$/ do |field|
|
108
|
+
check(field)
|
109
|
+
end
|
110
|
+
|
111
|
+
When /^I uncheck "([^\"]*)"$/ do |field|
|
112
|
+
uncheck(field)
|
113
|
+
end
|
114
|
+
|
115
|
+
When /^I choose "([^\"]*)"$/ do |field|
|
116
|
+
choose(field)
|
117
|
+
end
|
118
|
+
|
119
|
+
When /^I attach the file at "([^\"]*)" to "([^\"]*)"$/ do |path, field|
|
120
|
+
attach_file(field, path)
|
121
|
+
end
|
122
|
+
|
123
|
+
Then /^I should see "([^\"]*)"$/ do |text|
|
124
|
+
response.should contain(text)
|
125
|
+
end
|
126
|
+
|
127
|
+
Then /^I should see "([^\"]*)" within "([^\"]*)"$/ do |text, selector|
|
128
|
+
within(selector) do |content|
|
129
|
+
content.should contain(text)
|
130
|
+
end
|
131
|
+
end
|
132
|
+
|
133
|
+
Then /^I should see \/([^\/]*)\/$/ do |regexp|
|
134
|
+
regexp = Regexp.new(regexp)
|
135
|
+
response.should contain(regexp)
|
136
|
+
end
|
137
|
+
|
138
|
+
Then /^I should see \/([^\/]*)\/ within "([^\"]*)"$/ do |regexp, selector|
|
139
|
+
within(selector) do |content|
|
140
|
+
regexp = Regexp.new(regexp)
|
141
|
+
content.should contain(regexp)
|
142
|
+
end
|
143
|
+
end
|
144
|
+
|
145
|
+
Then /^I should not see "([^\"]*)"$/ do |text|
|
146
|
+
response.should_not contain(text)
|
147
|
+
end
|
148
|
+
|
149
|
+
Then /^I should not see "([^\"]*)" within "([^\"]*)"$/ do |text, selector|
|
150
|
+
within(selector) do |content|
|
151
|
+
content.should_not contain(text)
|
152
|
+
end
|
153
|
+
end
|
154
|
+
|
155
|
+
Then /^I should not see \/([^\/]*)\/$/ do |regexp|
|
156
|
+
regexp = Regexp.new(regexp)
|
157
|
+
response.should_not contain(regexp)
|
158
|
+
end
|
159
|
+
|
160
|
+
Then /^I should not see \/([^\/]*)\/ within "([^\"]*)"$/ do |regexp, selector|
|
161
|
+
within(selector) do |content|
|
162
|
+
regexp = Regexp.new(regexp)
|
163
|
+
content.should_not contain(regexp)
|
164
|
+
end
|
165
|
+
end
|
166
|
+
|
167
|
+
Then /^the "([^\"]*)" field should contain "([^\"]*)"$/ do |field, value|
|
168
|
+
field_labeled(field).value.should =~ /#{value}/
|
169
|
+
end
|
170
|
+
|
171
|
+
Then /^the "([^\"]*)" field should not contain "([^\"]*)"$/ do |field, value|
|
172
|
+
field_labeled(field).value.should_not =~ /#{value}/
|
173
|
+
end
|
174
|
+
|
175
|
+
Then /^the "([^\"]*)" checkbox should be checked$/ do |label|
|
176
|
+
field_labeled(label).should be_checked
|
177
|
+
end
|
178
|
+
|
179
|
+
Then /^the "([^\"]*)" checkbox should not be checked$/ do |label|
|
180
|
+
field_labeled(label).should_not be_checked
|
181
|
+
end
|
182
|
+
|
183
|
+
Then /^I should be on (.+)$/ do |page_name|
|
184
|
+
URI.parse(current_url).path.should == path_to(page_name)
|
185
|
+
end
|
186
|
+
|
187
|
+
Then /^show me the page$/ do
|
188
|
+
save_and_open_page
|
189
|
+
end
|
@@ -0,0 +1,49 @@
|
|
1
|
+
# IMPORTANT: This file was generated by Cucumber 0.4.2
|
2
|
+
# Edit at your own peril - it's recommended to regenerate this file
|
3
|
+
# in the future when you upgrade to a newer version of Cucumber.
|
4
|
+
# Consider adding your own code to a new file instead of editing this one.
|
5
|
+
|
6
|
+
# Sets up the Rails environment for Cucumber
|
7
|
+
ENV["RAILS_ENV"] ||= "cucumber"
|
8
|
+
require File.expand_path(File.dirname(__FILE__) + '/../../config/environment')
|
9
|
+
require 'cucumber/rails/world'
|
10
|
+
|
11
|
+
# If you set this to true, each scenario will run in a database transaction.
|
12
|
+
# You can still turn off transactions on a per-scenario basis, simply tagging
|
13
|
+
# a feature or scenario with the @no-txn tag.
|
14
|
+
#
|
15
|
+
# If you set this to false, transactions will be off for all scenarios,
|
16
|
+
# regardless of whether you use @no-txn or not.
|
17
|
+
#
|
18
|
+
# Beware that turning transactions off will leave data in your database
|
19
|
+
# after each scenario, which can lead to hard-to-debug failures in
|
20
|
+
# subsequent scenarios. If you do this, we recommend you create a Before
|
21
|
+
# block that will explicitly put your database in a known state.
|
22
|
+
Cucumber::Rails::World.use_transactional_fixtures = true
|
23
|
+
|
24
|
+
# If you set this to false, any error raised from within your app will bubble
|
25
|
+
# up to your step definition and out to cucumber unless you catch it somewhere
|
26
|
+
# on the way. You can make Rails rescue errors and render error pages on a
|
27
|
+
# per-scenario basis by tagging a scenario or feature with the @allow-rescue tag.
|
28
|
+
#
|
29
|
+
# If you set this to true, Rails will rescue all errors and render error
|
30
|
+
# pages, more or less in the same way your application would behave in the
|
31
|
+
# default production environment. It's not recommended to do this for all
|
32
|
+
# of your scenarios, as this makes it hard to discover errors in your application.
|
33
|
+
ActionController::Base.allow_rescue = false
|
34
|
+
|
35
|
+
require 'cucumber'
|
36
|
+
# Comment out the next line if you don't want Cucumber Unicode support
|
37
|
+
require 'cucumber/formatter/unicode'
|
38
|
+
require 'cucumber/webrat/element_locator' # Lets you do table.diff!(element_at('#my_table_or_dl_or_ul_or_ol').to_table)
|
39
|
+
require 'cucumber/rails/rspec'
|
40
|
+
|
41
|
+
require 'webrat'
|
42
|
+
require 'webrat/core/matchers'
|
43
|
+
Webrat.configure do |config|
|
44
|
+
config.mode = :rails
|
45
|
+
config.open_error_files = false # Set to true if you want error pages to pop up in the browser
|
46
|
+
end
|
47
|
+
|
48
|
+
require 'factory_girl'
|
49
|
+
Dir.glob(File.join(File.dirname(__FILE__), '../../spec/factories/*.rb')).each { |f| require f }
|
@@ -0,0 +1,27 @@
|
|
1
|
+
module NavigationHelpers
|
2
|
+
# Maps a name to a path. Used by the
|
3
|
+
#
|
4
|
+
# When /^I go to (.+)$/ do |page_name|
|
5
|
+
#
|
6
|
+
# step definition in webrat_steps.rb
|
7
|
+
#
|
8
|
+
def path_to(page_name)
|
9
|
+
case page_name
|
10
|
+
|
11
|
+
when /the home\s?page/
|
12
|
+
'/'
|
13
|
+
|
14
|
+
# Add more mappings here.
|
15
|
+
# Here is a more fancy example:
|
16
|
+
#
|
17
|
+
# when /^(.*)'s profile page$/i
|
18
|
+
# user_profile_path(User.find_by_login($1))
|
19
|
+
|
20
|
+
else
|
21
|
+
raise "Can't find mapping from \"#{page_name}\" to a path.\n" +
|
22
|
+
"Now, go and add a mapping in #{__FILE__}"
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
26
|
+
|
27
|
+
World(NavigationHelpers)
|
@@ -0,0 +1,29 @@
|
|
1
|
+
if Cucumber::VERSION != '0.4.2'
|
2
|
+
warning = <<-WARNING
|
3
|
+
(::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::)
|
4
|
+
|
5
|
+
(::) R O T T E N C U C U M B E R A L E R T (::)
|
6
|
+
|
7
|
+
Your #{__FILE__.gsub(/version_check.rb$/, 'env.rb')} file was generated with Cucumber 0.4.2,
|
8
|
+
but you seem to be running Cucumber #{Cucumber::VERSION}. If you're running an older
|
9
|
+
version than #{Cucumber::VERSION}, just upgrade your gem. If you're running a newer
|
10
|
+
version than #{Cucumber::VERSION} you should:
|
11
|
+
|
12
|
+
1) Read http://wiki.github.com/aslakhellesoy/cucumber/upgrading
|
13
|
+
|
14
|
+
2) Regenerate your cucumber environment with the following command:
|
15
|
+
|
16
|
+
ruby script/generate cucumber
|
17
|
+
|
18
|
+
If you get prompted to replace a file, hit 'd' to see the difference.
|
19
|
+
When you're sure you have captured any personal edits, confirm that you
|
20
|
+
want to overwrite #{__FILE__.gsub(/version_check.rb$/, 'env.rb')} by pressing 'y'. Then reapply any
|
21
|
+
personal changes that may have been overwritten.
|
22
|
+
|
23
|
+
This message will then self destruct.
|
24
|
+
|
25
|
+
(::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::)
|
26
|
+
WARNING
|
27
|
+
warn(warning)
|
28
|
+
at_exit {warn(warning)}
|
29
|
+
end
|
@@ -0,0 +1,42 @@
|
|
1
|
+
#
|
2
|
+
# !!!!IMPORTANT!!!!
|
3
|
+
#
|
4
|
+
#*** MUST define a current_user method that will return the current user object
|
5
|
+
#
|
6
|
+
#*** MUST add call to add_lockdown_session_values to your login method
|
7
|
+
#
|
8
|
+
#*** MAY NEED to add call to reset_lockdown_session to your logout method.
|
9
|
+
# ** Not needed if your authentication system resets the session
|
10
|
+
#
|
11
|
+
# Definitely need to use the user_group and permission models. The lockdown
|
12
|
+
# generator will provide those for you. Just add the following to your user
|
13
|
+
# model:
|
14
|
+
# has_and_belongs_to_many :user_groups
|
15
|
+
#
|
16
|
+
# That's it!
|
17
|
+
#
|
18
|
+
#
|
19
|
+
# ~~~~Method Descriptions~~~~
|
20
|
+
|
21
|
+
# The Lockdown gem defines these session methods:
|
22
|
+
#
|
23
|
+
# current_user_id: returns the id of the current_user
|
24
|
+
#
|
25
|
+
# logged_in? : returns true if current_user_id > 0
|
26
|
+
#
|
27
|
+
# current_user_is_admin?: returns true if user is assigned
|
28
|
+
# administrator rights.
|
29
|
+
#
|
30
|
+
# reset_lockdown_session: This will nil the following session values:
|
31
|
+
# current_user_id
|
32
|
+
# access_rights
|
33
|
+
# expiry_time
|
34
|
+
#
|
35
|
+
# current_user_access_in_group?(grp): grp is a symbol referencing a
|
36
|
+
# Lockdown::UserGroups method such as :registered_users
|
37
|
+
# Will return true if the session[:access_rights] contain at
|
38
|
+
# least one match to the access_right list associated to the group
|
39
|
+
#
|
40
|
+
# If you want access to any of these methods in your view, just add them
|
41
|
+
# as helpers in your controller (application controller for global use).
|
42
|
+
#
|