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,366 @@
|
|
1
|
+
*2.3.4 (September 4, 2009)*
|
2
|
+
|
3
|
+
* Minor bug fixes.
|
4
|
+
|
5
|
+
*2.3.3 (July 12, 2009)*
|
6
|
+
|
7
|
+
* No changes, just a version bump.
|
8
|
+
|
9
|
+
*2.3.2 [Final] (March 15, 2009)*
|
10
|
+
|
11
|
+
* Fixed that ActionMailer should send correctly formatted Return-Path in MAIL FROM for SMTP #1842 [Matt Jones]
|
12
|
+
|
13
|
+
* Fixed RFC-2045 quoted-printable bug #1421 [squadette]
|
14
|
+
|
15
|
+
* Fixed that no body charset would be set when there are attachments present #740 [Paweł Kondzior]
|
16
|
+
|
17
|
+
|
18
|
+
*2.2.1 [RC2] (November 14th, 2008)*
|
19
|
+
|
20
|
+
* Turn on STARTTLS if it is available in Net::SMTP (added in Ruby 1.8.7) and the SMTP server supports it (This is required for Gmail's SMTP server) #1336 [Grant Hollingworth]
|
21
|
+
|
22
|
+
|
23
|
+
*2.2.0 [RC1] (October 24th, 2008)*
|
24
|
+
|
25
|
+
* Add layout functionality to mailers [Pratik Naik]
|
26
|
+
|
27
|
+
Mailer layouts behaves just like controller layouts, except layout names need to
|
28
|
+
have '_mailer' postfix for them to be automatically picked up.
|
29
|
+
|
30
|
+
|
31
|
+
*2.1.0 (May 31st, 2008)*
|
32
|
+
|
33
|
+
* Fixed that a return-path header would be ignored #7572 [joost]
|
34
|
+
|
35
|
+
* Less verbose mail logging: just recipients for :info log level; the whole email for :debug only. #8000 [iaddict, Tarmo Tänav]
|
36
|
+
|
37
|
+
* Updated TMail to version 1.2.1 [Mikel Lindsaar]
|
38
|
+
|
39
|
+
* Fixed that you don't have to call super in ActionMailer::TestCase#setup #10406 [jamesgolick]
|
40
|
+
|
41
|
+
|
42
|
+
*2.0.2* (December 16th, 2007)
|
43
|
+
|
44
|
+
* Included in Rails 2.0.2
|
45
|
+
|
46
|
+
|
47
|
+
*2.0.1* (December 7th, 2007)
|
48
|
+
|
49
|
+
* Update ActionMailer so it treats ActionView the same way that ActionController does. Closes #10244 [Rick Olson]
|
50
|
+
|
51
|
+
* Pass the template_root as an array as ActionView's view_path
|
52
|
+
* Request templates with the "#{mailer_name}/#{action}" as opposed to just "#{action}"
|
53
|
+
|
54
|
+
* Fixed that partials would be broken when using text.plain.erb as the extension #10130 [java]
|
55
|
+
|
56
|
+
* Update README to use new smtp settings configuration API. Closes #10060 [psq]
|
57
|
+
|
58
|
+
* Allow ActionMailer subclasses to individually set their delivery method (so two subclasses can have different delivery methods) #10033 [Zach Dennis]
|
59
|
+
|
60
|
+
* Update TMail to v1.1.0. Use an updated version of TMail if available. [Mikel Lindsaar]
|
61
|
+
|
62
|
+
* Introduce a new base test class for testing Mailers. ActionMailer::TestCase [Michael Koziarski]
|
63
|
+
|
64
|
+
* Fix silent failure of rxml templates. #9879 [jstewart]
|
65
|
+
|
66
|
+
* Fix attachment decoding when using the TMail C extension. #7861 [orangechicken]
|
67
|
+
|
68
|
+
* Increase mail delivery test coverage. #8692 [Kamal Fariz Mahyuddin]
|
69
|
+
|
70
|
+
* Register alternative template engines using ActionMailer::Base.register_template_extension('haml'). #7534 [cwd, Josh Peek]
|
71
|
+
|
72
|
+
* Only load ActionController::UrlWriter if ActionController is present [Rick Olson]
|
73
|
+
|
74
|
+
* Make sure parsed emails recognized attachments nested inside multipart parts. #6714 [Jamis Buck]
|
75
|
+
|
76
|
+
* Allow mailer actions named send by using __send__ internally. #6467 [iGEL]
|
77
|
+
|
78
|
+
* Add assert_emails and assert_no_emails to test the number of emails delivered. #6479 [Jonathan Viney]
|
79
|
+
# Assert total number of emails delivered:
|
80
|
+
assert_emails 0
|
81
|
+
ContactMailer.deliver_contact
|
82
|
+
assert_emails 1
|
83
|
+
|
84
|
+
# Assert number of emails delivered within a block:
|
85
|
+
assert_emails 1 do
|
86
|
+
post :signup, :name => 'Jonathan'
|
87
|
+
end
|
88
|
+
|
89
|
+
|
90
|
+
*1.3.3* (March 12th, 2007)
|
91
|
+
|
92
|
+
* Depend on Action Pack 1.13.3
|
93
|
+
|
94
|
+
|
95
|
+
*1.3.2* (February 5th, 2007)
|
96
|
+
|
97
|
+
* Deprecate server_settings renaming it to smtp_settings, add sendmail_settings to allow you to override the arguments to and location of the sendmail executable. [Michael Koziarski]
|
98
|
+
|
99
|
+
|
100
|
+
*1.3.1* (January 16th, 2007)
|
101
|
+
|
102
|
+
* Depend on Action Pack 1.13.1
|
103
|
+
|
104
|
+
|
105
|
+
*1.3.0* (January 16th, 2007)
|
106
|
+
|
107
|
+
* Make mime version default to 1.0. closes #2323 [ror@andreas-s.net]
|
108
|
+
|
109
|
+
* Make sure quoted-printable text is decoded correctly when only portions of the text are encoded. closes #3154. [jon@siliconcircus.com]
|
110
|
+
|
111
|
+
* Make sure DOS newlines in quoted-printable text are normalized to unix newlines before unquoting. closes #4166 and #4452. [Jamis Buck]
|
112
|
+
|
113
|
+
* Fixed that iconv decoding should catch InvalidEncoding #3153 [jon@siliconcircus.com]
|
114
|
+
|
115
|
+
* Tighten rescue clauses. #5985 [james@grayproductions.net]
|
116
|
+
|
117
|
+
* Automatically included ActionController::UrlWriter, such that URL generation can happen within ActionMailer controllers. [David Heinemeier Hansson]
|
118
|
+
|
119
|
+
* Replace Reloadable with Reloadable::Deprecated. [Nicholas Seckar]
|
120
|
+
|
121
|
+
* Mailer template root applies to a class and its subclasses rather than acting globally. #5555 [somekool@gmail.com]
|
122
|
+
|
123
|
+
* Resolve action naming collision. #5520 [ssinghi@kreeti.com]
|
124
|
+
|
125
|
+
* ActionMailer::Base documentation rewrite. Closes #4991 [Kevin Clark, Marcel Molina Jr.]
|
126
|
+
|
127
|
+
* Replace alias method chaining with Module#alias_method_chain. [Marcel Molina Jr.]
|
128
|
+
|
129
|
+
* Replace Ruby's deprecated append_features in favor of included. [Marcel Molina Jr.]
|
130
|
+
|
131
|
+
* Correct spurious documentation example code which results in a SyntaxError. [Marcel Molina Jr.]
|
132
|
+
|
133
|
+
|
134
|
+
*1.2.1* (April 6th, 2006)
|
135
|
+
|
136
|
+
* Be part of Rails 1.1.1
|
137
|
+
|
138
|
+
|
139
|
+
*1.2.0* (March 27th, 2006)
|
140
|
+
|
141
|
+
* Nil charset caused subject line to be improperly quoted in implicitly multipart messages #2662 [ehalvorsen+rails@runbox.com]
|
142
|
+
|
143
|
+
* Parse content-type apart before using it so that sub-parts of the header can be set correctly #2918 [Jamis Buck]
|
144
|
+
|
145
|
+
* Make custom headers work in subparts #4034 [elan@bluemandrill.com]
|
146
|
+
|
147
|
+
* Template paths with dot chars in them no longer mess up implicit template selection for multipart messages #3332 [Chad Fowler]
|
148
|
+
|
149
|
+
* Make sure anything with content-disposition of "attachment" is passed to the attachment presenter when parsing an email body [Jamis Buck]
|
150
|
+
|
151
|
+
* Make sure TMail#attachments includes anything with content-disposition of "attachment", regardless of content-type [Jamis Buck]
|
152
|
+
|
153
|
+
|
154
|
+
*1.1.5* (December 13th, 2005)
|
155
|
+
|
156
|
+
* Become part of Rails 1.0
|
157
|
+
|
158
|
+
|
159
|
+
*1.1.4* (December 7th, 2005)
|
160
|
+
|
161
|
+
* Rename Version constant to VERSION. #2802 [Marcel Molina Jr.]
|
162
|
+
|
163
|
+
* Stricter matching for implicitly multipart filenames excludes files ending in unsupported extensions (such as foo.rhtml.bak) and without a two-part content type (such as foo.text.rhtml or foo.text.really.plain.rhtml). #2398 [Dave Burt <dave@burt.id.au>, Jeremy Kemper]
|
164
|
+
|
165
|
+
|
166
|
+
*1.1.3* (November 7th, 2005)
|
167
|
+
|
168
|
+
* Allow Mailers to have custom initialize methods that set default instance variables for all mail actions #2563 [mrj@bigpond.net.au]
|
169
|
+
|
170
|
+
|
171
|
+
*1.1.2* (October 26th, 2005)
|
172
|
+
|
173
|
+
* Upgraded to Action Pack 1.10.2
|
174
|
+
|
175
|
+
|
176
|
+
*1.1.1* (October 19th, 2005)
|
177
|
+
|
178
|
+
* Upgraded to Action Pack 1.10.1
|
179
|
+
|
180
|
+
|
181
|
+
*1.1.0* (October 16th, 2005)
|
182
|
+
|
183
|
+
* Update and extend documentation (rdoc)
|
184
|
+
|
185
|
+
* Minero Aoki made TMail available to Rails/ActionMailer under the MIT license (instead of LGPL) [RubyConf '05]
|
186
|
+
|
187
|
+
* Austin Ziegler made Text::Simple available to Rails/ActionMailer under a MIT-like licens [See rails ML, subject "Text::Format Licence Exception" on Oct 15, 2005]
|
188
|
+
|
189
|
+
* Fix vendor require paths to prevent files being required twice
|
190
|
+
|
191
|
+
* Don't add charset to content-type header for a part that contains subparts (for AOL compatibility) #2013 [John Long]
|
192
|
+
|
193
|
+
* Preserve underscores when unquoting message bodies #1930
|
194
|
+
|
195
|
+
* Encode multibyte characters correctly #1894
|
196
|
+
|
197
|
+
* Multipart messages specify a MIME-Version header automatically #2003 [John Long]
|
198
|
+
|
199
|
+
* Add a unified render method to ActionMailer (delegates to ActionView::Base#render)
|
200
|
+
|
201
|
+
* Move mailer initialization to a separate (overridable) method, so that subclasses may alter the various defaults #1727
|
202
|
+
|
203
|
+
* Look at content-location header (if available) to determine filename of attachments #1670
|
204
|
+
|
205
|
+
* ActionMailer::Base.deliver(email) had been accidentally removed, but was documented in the Rails book #1849
|
206
|
+
|
207
|
+
* Fix problem with sendmail delivery where headers should be delimited by \n characters instead of \r\n, which confuses some mail readers #1742 [Kent Sibilev]
|
208
|
+
|
209
|
+
|
210
|
+
*1.0.1* (11 July, 2005)
|
211
|
+
|
212
|
+
* Bind to Action Pack 1.9.1
|
213
|
+
|
214
|
+
|
215
|
+
*1.0.0* (6 July, 2005)
|
216
|
+
|
217
|
+
* Avoid adding nil header values #1392
|
218
|
+
|
219
|
+
* Better multipart support with implicit multipart/alternative and sorting of subparts [John Long]
|
220
|
+
|
221
|
+
* Allow for nested parts in multipart mails #1570 [Flurin Egger]
|
222
|
+
|
223
|
+
* Normalize line endings in outgoing mail bodies to "\n" #1536 [John Long]
|
224
|
+
|
225
|
+
* Allow template to be explicitly specified #1448 [tuxie@dekadance.se]
|
226
|
+
|
227
|
+
* Allow specific "multipart/xxx" content-type to be set on multipart messages #1412 [Flurin Egger]
|
228
|
+
|
229
|
+
* Unquoted @ characters in headers are now accepted in spite of RFC 822 #1206
|
230
|
+
|
231
|
+
* Helper support (borrowed from ActionPack)
|
232
|
+
|
233
|
+
* Silently ignore Errno::EINVAL errors when converting text.
|
234
|
+
|
235
|
+
* Don't cause an error when parsing an encoded attachment name #1340 [lon@speedymac.com]
|
236
|
+
|
237
|
+
* Nested multipart message parts are correctly processed in TMail::Mail#body
|
238
|
+
|
239
|
+
* BCC headers are removed when sending via SMTP #1402
|
240
|
+
|
241
|
+
* Added 'content_type' accessor, to allow content type to be set on a per-message basis. content_type defaults to "text/plain".
|
242
|
+
|
243
|
+
* Silently ignore Iconv::IllegalSequence errors when converting text #1341 [lon@speedymac.com]
|
244
|
+
|
245
|
+
* Support attachments and multipart messages.
|
246
|
+
|
247
|
+
* Added new accessors for the various mail properties.
|
248
|
+
|
249
|
+
* Fix to only perform the charset conversion if a 'from' and a 'to' charset are given (make no assumptions about what the charset was) #1276 [Jamis Buck]
|
250
|
+
|
251
|
+
* Fix attachments and content-type problems #1276 [Jamis Buck]
|
252
|
+
|
253
|
+
* Fixed the TMail#body method to look at the content-transfer-encoding header and unquote the body according to the rules it specifies #1265 [Jamis Buck]
|
254
|
+
|
255
|
+
* Added unquoting even if the iconv lib can't be loaded--in that case, only the charset conversion is skipped #1265 [Jamis Buck]
|
256
|
+
|
257
|
+
* Added automatic decoding of base64 bodies #1214 [Jamis Buck]
|
258
|
+
|
259
|
+
* Added that delivery errors are caught in a way so the mail is still returned whether the delivery was successful or not
|
260
|
+
|
261
|
+
* Fixed that email address like "Jamis Buck, M.D." <wild.medicine@example.net> would cause the quoter to generate emails resulting in "bad address" errors from the mail server #1220 [Jamis Buck]
|
262
|
+
|
263
|
+
|
264
|
+
*0.9.1* (20th April, 2005)
|
265
|
+
|
266
|
+
* Depend on Action Pack 1.8.1
|
267
|
+
|
268
|
+
|
269
|
+
*0.9.0* (19th April, 2005)
|
270
|
+
|
271
|
+
* Added that deliver_* will now return the email that was sent
|
272
|
+
|
273
|
+
* Added that quoting to UTF-8 only happens if the characters used are in that range #955 [Jamis Buck]
|
274
|
+
|
275
|
+
* Fixed quoting for all address headers, not just to #955 [Jamis Buck]
|
276
|
+
|
277
|
+
* Fixed unquoting of emails that doesn't have an explicit charset #1036 [wolfgang@stufenlos.net]
|
278
|
+
|
279
|
+
|
280
|
+
*0.8.1* (27th March, 2005)
|
281
|
+
|
282
|
+
* Fixed that if charset was found that the end of a mime part declaration TMail would throw an error #919 [lon@speedymac.com]
|
283
|
+
|
284
|
+
* Fixed that TMail::Unquoter would fail to recognize quoting method if it was in lowercase #919 [lon@speedymac.com]
|
285
|
+
|
286
|
+
* Fixed that TMail::Encoder would fail when it attempts to parse e-mail addresses which are encoded using something other than the messages encoding method #919 [lon@speedymac.com]
|
287
|
+
|
288
|
+
* Added rescue for missing iconv library and throws warnings if subject/body is called on a TMail object without it instead
|
289
|
+
|
290
|
+
|
291
|
+
*0.8.0* (22th March, 2005)
|
292
|
+
|
293
|
+
* Added framework support for processing incoming emails with an Action Mailer class. See example in README.
|
294
|
+
|
295
|
+
|
296
|
+
*0.7.1* (7th March, 2005)
|
297
|
+
|
298
|
+
* Bind to newest Action Pack (1.5.1)
|
299
|
+
|
300
|
+
|
301
|
+
*0.7.0* (24th February, 2005)
|
302
|
+
|
303
|
+
* Added support for charsets for both subject and body. The default charset is now UTF-8 #673 [Jamis Buck]. Examples:
|
304
|
+
|
305
|
+
def iso_charset(recipient)
|
306
|
+
@recipients = recipient
|
307
|
+
@subject = "testing iso charsets"
|
308
|
+
@from = "system@loudthinking.com"
|
309
|
+
@body = "Nothing to see here."
|
310
|
+
@charset = "iso-8859-1"
|
311
|
+
end
|
312
|
+
|
313
|
+
def unencoded_subject(recipient)
|
314
|
+
@recipients = recipient
|
315
|
+
@subject = "testing unencoded subject"
|
316
|
+
@from = "system@loudthinking.com"
|
317
|
+
@body = "Nothing to see here."
|
318
|
+
@encode_subject = false
|
319
|
+
@charset = "iso-8859-1"
|
320
|
+
end
|
321
|
+
|
322
|
+
|
323
|
+
*0.6.1* (January 18th, 2005)
|
324
|
+
|
325
|
+
* Fixed sending of emails to use Tmail#from not the deprecated Tmail#from_address
|
326
|
+
|
327
|
+
|
328
|
+
*0.6* (January 17th, 2005)
|
329
|
+
|
330
|
+
* Fixed that bcc and cc should be settable through @bcc and @cc -- not just @headers["Bcc"] and @headers["Cc"] #453 [Eric Hodel]
|
331
|
+
|
332
|
+
* Fixed Action Mailer to be "warnings safe" so you can run with ruby -w and not get framework warnings #453 [Eric Hodel]
|
333
|
+
|
334
|
+
|
335
|
+
*0.5*
|
336
|
+
|
337
|
+
* Added access to custom headers, like cc, bcc, and reply-to #268 [Andreas Schwarz]. Example:
|
338
|
+
|
339
|
+
def post_notification(recipients, post)
|
340
|
+
@recipients = recipients
|
341
|
+
@from = post.author.email_address_with_name
|
342
|
+
@headers["bcc"] = SYSTEM_ADMINISTRATOR_EMAIL
|
343
|
+
@headers["reply-to"] = "notifications@example.com"
|
344
|
+
@subject = "[#{post.account.name} #{post.title}]"
|
345
|
+
@body["post"] = post
|
346
|
+
end
|
347
|
+
|
348
|
+
*0.4* (5)
|
349
|
+
|
350
|
+
* Consolidated the server configuration options into Base#server_settings= and expanded that with controls for authentication and more [Marten]
|
351
|
+
NOTE: This is an API change that could potentially break your application if you used the old application form. Please do change!
|
352
|
+
|
353
|
+
* Added Base#deliveries as an accessor for an array of emails sent out through that ActionMailer class when using the :test delivery option. [Jeremy Kemper]
|
354
|
+
|
355
|
+
* Added Base#perform_deliveries= which can be set to false to turn off the actual delivery of the email through smtp or sendmail.
|
356
|
+
This is especially useful for functional testing that shouldn't send off real emails, but still trigger delivery_* methods.
|
357
|
+
|
358
|
+
* Added option to specify delivery method with Base#delivery_method=. Default is :smtp and :sendmail is currently the only other option.
|
359
|
+
Sendmail is assumed to be present at "/usr/sbin/sendmail" if that option is used. [Kent Sibilev]
|
360
|
+
|
361
|
+
* Dropped "include TMail" as it added to much baggage into the default namespace (like Version) [Chad Fowler]
|
362
|
+
|
363
|
+
|
364
|
+
*0.3*
|
365
|
+
|
366
|
+
* First release
|
@@ -0,0 +1,21 @@
|
|
1
|
+
Copyright (c) 2004-2009 David Heinemeier Hansson
|
2
|
+
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
4
|
+
a copy of this software and associated documentation files (the
|
5
|
+
"Software"), to deal in the Software without restriction, including
|
6
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
7
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
8
|
+
permit persons to whom the Software is furnished to do so, subject to
|
9
|
+
the following conditions:
|
10
|
+
|
11
|
+
The above copyright notice and this permission notice shall be
|
12
|
+
included in all copies or substantial portions of the Software.
|
13
|
+
|
14
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
15
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
16
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
17
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
18
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
19
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
20
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
21
|
+
|
@@ -0,0 +1,149 @@
|
|
1
|
+
= Action Mailer -- Easy email delivery and testing
|
2
|
+
|
3
|
+
Action Mailer is a framework for designing email-service layers. These layers
|
4
|
+
are used to consolidate code for sending out forgotten passwords, welcome
|
5
|
+
wishes on signup, invoices for billing, and any other use case that requires
|
6
|
+
a written notification to either a person or another system.
|
7
|
+
|
8
|
+
Additionally, an Action Mailer class can be used to process incoming email,
|
9
|
+
such as allowing a weblog to accept new posts from an email (which could even
|
10
|
+
have been sent from a phone).
|
11
|
+
|
12
|
+
== Sending emails
|
13
|
+
|
14
|
+
The framework works by setting up all the email details, except the body,
|
15
|
+
in methods on the service layer. Subject, recipients, sender, and timestamp
|
16
|
+
are all set up this way. An example of such a method:
|
17
|
+
|
18
|
+
def signed_up(recipient)
|
19
|
+
recipients recipient
|
20
|
+
subject "[Signed up] Welcome #{recipient}"
|
21
|
+
from "system@loudthinking.com"
|
22
|
+
body :recipient => recipient
|
23
|
+
end
|
24
|
+
|
25
|
+
The body of the email is created by using an Action View template (regular
|
26
|
+
ERb) that has the content of the body hash parameter available as instance variables.
|
27
|
+
So the corresponding body template for the method above could look like this:
|
28
|
+
|
29
|
+
Hello there,
|
30
|
+
|
31
|
+
Mr. <%= @recipient %>
|
32
|
+
|
33
|
+
And if the recipient was given as "david@loudthinking.com", the email
|
34
|
+
generated would look like this:
|
35
|
+
|
36
|
+
Date: Sun, 12 Dec 2004 00:00:00 +0100
|
37
|
+
From: system@loudthinking.com
|
38
|
+
To: david@loudthinking.com
|
39
|
+
Subject: [Signed up] Welcome david@loudthinking.com
|
40
|
+
|
41
|
+
Hello there,
|
42
|
+
|
43
|
+
Mr. david@loudthinking.com
|
44
|
+
|
45
|
+
You never actually call the instance methods like signed_up directly. Instead,
|
46
|
+
you call class methods like deliver_* and create_* that are automatically
|
47
|
+
created for each instance method. So if the signed_up method sat on
|
48
|
+
ApplicationMailer, it would look like this:
|
49
|
+
|
50
|
+
ApplicationMailer.create_signed_up("david@loudthinking.com") # => tmail object for testing
|
51
|
+
ApplicationMailer.deliver_signed_up("david@loudthinking.com") # sends the email
|
52
|
+
ApplicationMailer.new.signed_up("david@loudthinking.com") # won't work!
|
53
|
+
|
54
|
+
== Receiving emails
|
55
|
+
|
56
|
+
To receive emails, you need to implement a public instance method called receive that takes a
|
57
|
+
tmail object as its single parameter. The Action Mailer framework has a corresponding class method,
|
58
|
+
which is also called receive, that accepts a raw, unprocessed email as a string, which it then turns
|
59
|
+
into the tmail object and calls the receive instance method.
|
60
|
+
|
61
|
+
Example:
|
62
|
+
|
63
|
+
class Mailman < ActionMailer::Base
|
64
|
+
def receive(email)
|
65
|
+
page = Page.find_by_address(email.to.first)
|
66
|
+
page.emails.create(
|
67
|
+
:subject => email.subject, :body => email.body
|
68
|
+
)
|
69
|
+
|
70
|
+
if email.has_attachments?
|
71
|
+
for attachment in email.attachments
|
72
|
+
page.attachments.create({
|
73
|
+
:file => attachment, :description => email.subject
|
74
|
+
})
|
75
|
+
end
|
76
|
+
end
|
77
|
+
end
|
78
|
+
end
|
79
|
+
|
80
|
+
This Mailman can be the target for Postfix or other MTAs. In Rails, you would use the runner in the
|
81
|
+
trivial case like this:
|
82
|
+
|
83
|
+
./script/runner 'Mailman.receive(STDIN.read)'
|
84
|
+
|
85
|
+
However, invoking Rails in the runner for each mail to be received is very resource intensive. A single
|
86
|
+
instance of Rails should be run within a daemon if it is going to be utilized to process more than just
|
87
|
+
a limited number of email.
|
88
|
+
|
89
|
+
== Configuration
|
90
|
+
|
91
|
+
The Base class has the full list of configuration options. Here's an example:
|
92
|
+
|
93
|
+
ActionMailer::Base.smtp_settings = {
|
94
|
+
:address => 'smtp.yourserver.com', # default: localhost
|
95
|
+
:port => '25', # default: 25
|
96
|
+
:user_name => 'user',
|
97
|
+
:password => 'pass',
|
98
|
+
:authentication => :plain # :plain, :login or :cram_md5
|
99
|
+
}
|
100
|
+
|
101
|
+
== Dependencies
|
102
|
+
|
103
|
+
Action Mailer requires that the Action Pack is either available to be required immediately
|
104
|
+
or is accessible as a GEM.
|
105
|
+
|
106
|
+
|
107
|
+
== Bundled software
|
108
|
+
|
109
|
+
* tmail 0.10.8 by Minero Aoki released under LGPL
|
110
|
+
Read more on http://i.loveruby.net/en/prog/tmail.html
|
111
|
+
|
112
|
+
* Text::Format 0.63 by Austin Ziegler released under OpenSource
|
113
|
+
Read more on http://www.halostatue.ca/ruby/Text__Format.html
|
114
|
+
|
115
|
+
|
116
|
+
== Download
|
117
|
+
|
118
|
+
The latest version of Action Mailer can be found at
|
119
|
+
|
120
|
+
* http://rubyforge.org/project/showfiles.php?group_id=361
|
121
|
+
|
122
|
+
Documentation can be found at
|
123
|
+
|
124
|
+
* http://actionmailer.rubyonrails.org
|
125
|
+
|
126
|
+
|
127
|
+
== Installation
|
128
|
+
|
129
|
+
You can install Action Mailer with the following command.
|
130
|
+
|
131
|
+
% [sudo] ruby install.rb
|
132
|
+
|
133
|
+
from its distribution directory.
|
134
|
+
|
135
|
+
|
136
|
+
== License
|
137
|
+
|
138
|
+
Action Mailer is released under the MIT license.
|
139
|
+
|
140
|
+
|
141
|
+
== Support
|
142
|
+
|
143
|
+
The Action Mailer homepage is http://www.rubyonrails.org. You can find
|
144
|
+
the Action Mailer RubyForge page at http://rubyforge.org/projects/actionmailer.
|
145
|
+
And as Jim from Rake says:
|
146
|
+
|
147
|
+
Feel free to submit commits or feature requests. If you send a patch,
|
148
|
+
remember to update the corresponding unit tests. If fact, I prefer
|
149
|
+
new feature to be submitted in the form of new unit tests.
|
@@ -0,0 +1,99 @@
|
|
1
|
+
require 'rubygems'
|
2
|
+
require 'rake'
|
3
|
+
require 'rake/testtask'
|
4
|
+
require 'rake/rdoctask'
|
5
|
+
require 'rake/packagetask'
|
6
|
+
require 'rake/gempackagetask'
|
7
|
+
require File.join(File.dirname(__FILE__), 'lib', 'action_mailer', 'version')
|
8
|
+
|
9
|
+
PKG_BUILD = ENV['PKG_BUILD'] ? '.' + ENV['PKG_BUILD'] : ''
|
10
|
+
PKG_NAME = 'actionmailer'
|
11
|
+
PKG_VERSION = ActionMailer::VERSION::STRING + PKG_BUILD
|
12
|
+
PKG_FILE_NAME = "#{PKG_NAME}-#{PKG_VERSION}"
|
13
|
+
|
14
|
+
RELEASE_NAME = "REL #{PKG_VERSION}"
|
15
|
+
|
16
|
+
RUBY_FORGE_PROJECT = "actionmailer"
|
17
|
+
RUBY_FORGE_USER = "webster132"
|
18
|
+
|
19
|
+
desc "Default Task"
|
20
|
+
task :default => [ :test ]
|
21
|
+
|
22
|
+
# Run the unit tests
|
23
|
+
Rake::TestTask.new { |t|
|
24
|
+
t.libs << "test"
|
25
|
+
t.pattern = 'test/*_test.rb'
|
26
|
+
t.verbose = true
|
27
|
+
t.warning = false
|
28
|
+
}
|
29
|
+
|
30
|
+
|
31
|
+
# Generate the RDoc documentation
|
32
|
+
Rake::RDocTask.new { |rdoc|
|
33
|
+
rdoc.rdoc_dir = 'doc'
|
34
|
+
rdoc.title = "Action Mailer -- Easy email delivery and testing"
|
35
|
+
rdoc.options << '--line-numbers' << '--inline-source' << '-A cattr_accessor=object'
|
36
|
+
rdoc.options << '--charset' << 'utf-8'
|
37
|
+
rdoc.template = ENV['template'] ? "#{ENV['template']}.rb" : '../doc/template/horo'
|
38
|
+
rdoc.rdoc_files.include('README', 'CHANGELOG')
|
39
|
+
rdoc.rdoc_files.include('lib/action_mailer.rb')
|
40
|
+
rdoc.rdoc_files.include('lib/action_mailer/*.rb')
|
41
|
+
}
|
42
|
+
|
43
|
+
|
44
|
+
# Create compressed packages
|
45
|
+
spec = Gem::Specification.new do |s|
|
46
|
+
s.platform = Gem::Platform::RUBY
|
47
|
+
s.name = PKG_NAME
|
48
|
+
s.summary = "Service layer for easy email delivery and testing."
|
49
|
+
s.description = %q{Makes it trivial to test and deliver emails sent from a single service layer.}
|
50
|
+
s.version = PKG_VERSION
|
51
|
+
|
52
|
+
s.author = "David Heinemeier Hansson"
|
53
|
+
s.email = "david@loudthinking.com"
|
54
|
+
s.rubyforge_project = "actionmailer"
|
55
|
+
s.homepage = "http://www.rubyonrails.org"
|
56
|
+
|
57
|
+
s.add_dependency('actionpack', '= 2.3.4' + PKG_BUILD)
|
58
|
+
|
59
|
+
s.has_rdoc = true
|
60
|
+
s.requirements << 'none'
|
61
|
+
s.require_path = 'lib'
|
62
|
+
s.autorequire = 'action_mailer'
|
63
|
+
|
64
|
+
s.files = [ "Rakefile", "install.rb", "README", "CHANGELOG", "MIT-LICENSE" ]
|
65
|
+
s.files = s.files + Dir.glob( "lib/**/*" ).delete_if { |item| item.include?( "\.svn" ) }
|
66
|
+
s.files = s.files + Dir.glob( "test/**/*" ).delete_if { |item| item.include?( "\.svn" ) }
|
67
|
+
end
|
68
|
+
|
69
|
+
Rake::GemPackageTask.new(spec) do |p|
|
70
|
+
p.gem_spec = spec
|
71
|
+
p.need_tar = true
|
72
|
+
p.need_zip = true
|
73
|
+
end
|
74
|
+
|
75
|
+
|
76
|
+
desc "Publish the API documentation"
|
77
|
+
task :pgem => [:package] do
|
78
|
+
require 'rake/contrib/sshpublisher'
|
79
|
+
Rake::SshFilePublisher.new("gems.rubyonrails.org", "/u/sites/gems/gems", "pkg", "#{PKG_FILE_NAME}.gem").upload
|
80
|
+
`ssh gems.rubyonrails.org '/u/sites/gems/gemupdate.sh'`
|
81
|
+
end
|
82
|
+
|
83
|
+
desc "Publish the API documentation"
|
84
|
+
task :pdoc => [:rdoc] do
|
85
|
+
require 'rake/contrib/sshpublisher'
|
86
|
+
Rake::SshDirPublisher.new("wrath.rubyonrails.org", "public_html/am", "doc").upload
|
87
|
+
end
|
88
|
+
|
89
|
+
desc "Publish the release files to RubyForge."
|
90
|
+
task :release => [ :package ] do
|
91
|
+
require 'rubyforge'
|
92
|
+
require 'rake/contrib/rubyforgepublisher'
|
93
|
+
|
94
|
+
packages = %w( gem tgz zip ).collect{ |ext| "pkg/#{PKG_NAME}-#{PKG_VERSION}.#{ext}" }
|
95
|
+
|
96
|
+
rubyforge = RubyForge.new
|
97
|
+
rubyforge.login
|
98
|
+
rubyforge.add_release(PKG_NAME, PKG_NAME, "REL #{PKG_VERSION}", *packages)
|
99
|
+
end
|
@@ -0,0 +1,30 @@
|
|
1
|
+
require 'rbconfig'
|
2
|
+
require 'find'
|
3
|
+
require 'ftools'
|
4
|
+
|
5
|
+
include Config
|
6
|
+
|
7
|
+
# this was adapted from rdoc's install.rb by way of Log4r
|
8
|
+
|
9
|
+
$sitedir = CONFIG["sitelibdir"]
|
10
|
+
unless $sitedir
|
11
|
+
version = CONFIG["MAJOR"] + "." + CONFIG["MINOR"]
|
12
|
+
$libdir = File.join(CONFIG["libdir"], "ruby", version)
|
13
|
+
$sitedir = $:.find {|x| x =~ /site_ruby/ }
|
14
|
+
if !$sitedir
|
15
|
+
$sitedir = File.join($libdir, "site_ruby")
|
16
|
+
elsif $sitedir !~ Regexp.quote(version)
|
17
|
+
$sitedir = File.join($sitedir, version)
|
18
|
+
end
|
19
|
+
end
|
20
|
+
|
21
|
+
# the actual gruntwork
|
22
|
+
Dir.chdir("lib")
|
23
|
+
|
24
|
+
Find.find("action_mailer", "action_mailer.rb") { |f|
|
25
|
+
if f[-3..-1] == ".rb"
|
26
|
+
File::install(f, File.join($sitedir, *f.split(/\//)), 0644, true)
|
27
|
+
else
|
28
|
+
File::makedirs(File.join($sitedir, *f.split(/\//)))
|
29
|
+
end
|
30
|
+
}
|
@@ -0,0 +1,30 @@
|
|
1
|
+
module ActionMailer
|
2
|
+
module AdvAttrAccessor #:nodoc:
|
3
|
+
def self.included(base)
|
4
|
+
base.extend(ClassMethods)
|
5
|
+
end
|
6
|
+
|
7
|
+
module ClassMethods #:nodoc:
|
8
|
+
def adv_attr_accessor(*names)
|
9
|
+
names.each do |name|
|
10
|
+
ivar = "@#{name}"
|
11
|
+
|
12
|
+
define_method("#{name}=") do |value|
|
13
|
+
instance_variable_set(ivar, value)
|
14
|
+
end
|
15
|
+
|
16
|
+
define_method(name) do |*parameters|
|
17
|
+
raise ArgumentError, "expected 0 or 1 parameters" unless parameters.length <= 1
|
18
|
+
if parameters.empty?
|
19
|
+
if instance_variable_names.include?(ivar)
|
20
|
+
instance_variable_get(ivar)
|
21
|
+
end
|
22
|
+
else
|
23
|
+
instance_variable_set(ivar, parameters.first)
|
24
|
+
end
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|