factorylabs-castronaut 0.7.5
Sign up to get free protection for your applications and to get access to all the features.
- data/MIT-LICENSE +20 -0
- data/README.textile +67 -0
- data/Rakefile +78 -0
- data/bin/castronaut +75 -0
- data/config/castronaut.example.yml +41 -0
- data/config/castronaut.sample.yml +40 -0
- data/config/castronaut.yml +40 -0
- data/config/nginx_vhost.conf +17 -0
- data/config/thin_config.yml +13 -0
- data/lib/castronaut.rb +50 -0
- data/lib/castronaut/adapters.rb +13 -0
- data/lib/castronaut/adapters/development/adapter.rb +13 -0
- data/lib/castronaut/adapters/development/user.rb +25 -0
- data/lib/castronaut/adapters/ldap/adapter.rb +15 -0
- data/lib/castronaut/adapters/ldap/user.rb +40 -0
- data/lib/castronaut/adapters/restful_authentication/adapter.rb +15 -0
- data/lib/castronaut/adapters/restful_authentication/user.rb +50 -0
- data/lib/castronaut/application.rb +1 -0
- data/lib/castronaut/application/application.rb +70 -0
- data/lib/castronaut/application/public/javascripts/application.js +3 -0
- data/lib/castronaut/application/public/javascripts/jquery.js +32 -0
- data/lib/castronaut/application/public/stylesheets/screen.css +122 -0
- data/lib/castronaut/application/views/layout.erb +27 -0
- data/lib/castronaut/application/views/login.erb +31 -0
- data/lib/castronaut/application/views/logout.erb +13 -0
- data/lib/castronaut/application/views/proxy_validate.erb +21 -0
- data/lib/castronaut/application/views/service_validate.erb +14 -0
- data/lib/castronaut/authentication_result.rb +24 -0
- data/lib/castronaut/configuration.rb +110 -0
- data/lib/castronaut/db/001_create_cas_database.rb +47 -0
- data/lib/castronaut/models/consumeable.rb +18 -0
- data/lib/castronaut/models/dispenser.rb +14 -0
- data/lib/castronaut/models/login_ticket.rb +53 -0
- data/lib/castronaut/models/proxy_granting_ticket.rb +70 -0
- data/lib/castronaut/models/proxy_ticket.rb +43 -0
- data/lib/castronaut/models/service_ticket.rb +91 -0
- data/lib/castronaut/models/ticket_granting_ticket.rb +52 -0
- data/lib/castronaut/presenters/login.rb +84 -0
- data/lib/castronaut/presenters/logout.rb +56 -0
- data/lib/castronaut/presenters/process_login.rb +149 -0
- data/lib/castronaut/presenters/proxy_validate.rb +67 -0
- data/lib/castronaut/presenters/service_validate.rb +68 -0
- data/lib/castronaut/support/sample.rb +21 -0
- data/lib/castronaut/ticket_result.rb +27 -0
- data/lib/castronaut/utilities/random_string.rb +24 -0
- data/spec/app/controllers/application_spec.rb +86 -0
- data/spec/castronaut/adapters/development/adapter_spec.rb +14 -0
- data/spec/castronaut/adapters/development/user_spec.rb +55 -0
- data/spec/castronaut/adapters/ldap/adapter_spec.rb +14 -0
- data/spec/castronaut/adapters/ldap/user_spec.rb +25 -0
- data/spec/castronaut/adapters/restful_authentication/adapter_spec.rb +14 -0
- data/spec/castronaut/adapters/restful_authentication/user_spec.rb +108 -0
- data/spec/castronaut/adapters_spec.rb +13 -0
- data/spec/castronaut/authentication_result_spec.rb +20 -0
- data/spec/castronaut/configuration_spec.rb +172 -0
- data/spec/castronaut/models/consumeable_spec.rb +39 -0
- data/spec/castronaut/models/dispenser_spec.rb +30 -0
- data/spec/castronaut/models/login_ticket_spec.rb +107 -0
- data/spec/castronaut/models/proxy_granting_ticket_spec.rb +302 -0
- data/spec/castronaut/models/proxy_ticket_spec.rb +109 -0
- data/spec/castronaut/models/service_ticket_spec.rb +269 -0
- data/spec/castronaut/models/ticket_granting_ticket_spec.rb +89 -0
- data/spec/castronaut/presenters/login_spec.rb +152 -0
- data/spec/castronaut/presenters/logout_spec.rb +85 -0
- data/spec/castronaut/presenters/process_login_spec.rb +300 -0
- data/spec/castronaut/presenters/proxy_validate_spec.rb +103 -0
- data/spec/castronaut/presenters/service_validate_spec.rb +86 -0
- data/spec/castronaut/ticket_result_spec.rb +42 -0
- data/spec/castronaut/utilities/random_string_spec.rb +14 -0
- data/spec/castronaut_spec.rb +26 -0
- data/spec/spec_controller_helper.rb +17 -0
- data/spec/spec_helper.rb +39 -0
- data/spec/spec_rails_mocks.rb +132 -0
- data/vendor/activerecord/CHANGELOG +5786 -0
- data/vendor/activerecord/README +351 -0
- data/vendor/activerecord/RUNNING_UNIT_TESTS +36 -0
- data/vendor/activerecord/Rakefile +247 -0
- data/vendor/activerecord/examples/associations.png +0 -0
- data/vendor/activerecord/install.rb +30 -0
- data/vendor/activerecord/lib/active_record.rb +81 -0
- data/vendor/activerecord/lib/active_record/aggregations.rb +261 -0
- data/vendor/activerecord/lib/active_record/association_preload.rb +374 -0
- data/vendor/activerecord/lib/active_record/associations.rb +2227 -0
- data/vendor/activerecord/lib/active_record/associations/association_collection.rb +453 -0
- data/vendor/activerecord/lib/active_record/associations/association_proxy.rb +272 -0
- data/vendor/activerecord/lib/active_record/associations/belongs_to_association.rb +58 -0
- data/vendor/activerecord/lib/active_record/associations/belongs_to_polymorphic_association.rb +49 -0
- data/vendor/activerecord/lib/active_record/associations/has_and_belongs_to_many_association.rb +121 -0
- data/vendor/activerecord/lib/active_record/associations/has_many_association.rb +121 -0
- data/vendor/activerecord/lib/active_record/associations/has_many_through_association.rb +256 -0
- data/vendor/activerecord/lib/active_record/associations/has_one_association.rb +115 -0
- data/vendor/activerecord/lib/active_record/associations/has_one_through_association.rb +31 -0
- data/vendor/activerecord/lib/active_record/attribute_methods.rb +387 -0
- data/vendor/activerecord/lib/active_record/base.rb +2967 -0
- data/vendor/activerecord/lib/active_record/calculations.rb +299 -0
- data/vendor/activerecord/lib/active_record/callbacks.rb +331 -0
- data/vendor/activerecord/lib/active_record/connection_adapters/abstract/connection_pool.rb +355 -0
- data/vendor/activerecord/lib/active_record/connection_adapters/abstract/connection_specification.rb +136 -0
- data/vendor/activerecord/lib/active_record/connection_adapters/abstract/database_statements.rb +201 -0
- data/vendor/activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb +94 -0
- data/vendor/activerecord/lib/active_record/connection_adapters/abstract/quoting.rb +69 -0
- data/vendor/activerecord/lib/active_record/connection_adapters/abstract/schema_definitions.rb +705 -0
- data/vendor/activerecord/lib/active_record/connection_adapters/abstract/schema_statements.rb +434 -0
- data/vendor/activerecord/lib/active_record/connection_adapters/abstract_adapter.rb +210 -0
- data/vendor/activerecord/lib/active_record/connection_adapters/mysql_adapter.rb +585 -0
- data/vendor/activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb +1065 -0
- data/vendor/activerecord/lib/active_record/connection_adapters/sqlite3_adapter.rb +34 -0
- data/vendor/activerecord/lib/active_record/connection_adapters/sqlite_adapter.rb +418 -0
- data/vendor/activerecord/lib/active_record/dirty.rb +183 -0
- data/vendor/activerecord/lib/active_record/dynamic_finder_match.rb +41 -0
- data/vendor/activerecord/lib/active_record/fixtures.rb +998 -0
- data/vendor/activerecord/lib/active_record/i18n_interpolation_deprecation.rb +26 -0
- data/vendor/activerecord/lib/active_record/locale/en.yml +54 -0
- data/vendor/activerecord/lib/active_record/locking/optimistic.rb +148 -0
- data/vendor/activerecord/lib/active_record/locking/pessimistic.rb +77 -0
- data/vendor/activerecord/lib/active_record/migration.rb +560 -0
- data/vendor/activerecord/lib/active_record/named_scope.rb +181 -0
- data/vendor/activerecord/lib/active_record/observer.rb +197 -0
- data/vendor/activerecord/lib/active_record/query_cache.rb +21 -0
- data/vendor/activerecord/lib/active_record/reflection.rb +307 -0
- data/vendor/activerecord/lib/active_record/schema.rb +51 -0
- data/vendor/activerecord/lib/active_record/schema_dumper.rb +177 -0
- data/vendor/activerecord/lib/active_record/serialization.rb +98 -0
- data/vendor/activerecord/lib/active_record/serializers/json_serializer.rb +80 -0
- data/vendor/activerecord/lib/active_record/serializers/xml_serializer.rb +338 -0
- data/vendor/activerecord/lib/active_record/test_case.rb +60 -0
- data/vendor/activerecord/lib/active_record/timestamp.rb +41 -0
- data/vendor/activerecord/lib/active_record/transactions.rb +185 -0
- data/vendor/activerecord/lib/active_record/validations.rb +1061 -0
- data/vendor/activerecord/lib/active_record/version.rb +9 -0
- data/vendor/activerecord/lib/activerecord.rb +1 -0
- data/vendor/activerecord/test/assets/example.log +1 -0
- data/vendor/activerecord/test/assets/flowers.jpg +0 -0
- data/vendor/activerecord/test/cases/aaa_create_tables_test.rb +24 -0
- data/vendor/activerecord/test/cases/active_schema_test_mysql.rb +100 -0
- data/vendor/activerecord/test/cases/active_schema_test_postgresql.rb +24 -0
- data/vendor/activerecord/test/cases/adapter_test.rb +133 -0
- data/vendor/activerecord/test/cases/aggregations_test.rb +167 -0
- data/vendor/activerecord/test/cases/ar_schema_test.rb +33 -0
- data/vendor/activerecord/test/cases/associations/belongs_to_associations_test.rb +441 -0
- data/vendor/activerecord/test/cases/associations/callbacks_test.rb +161 -0
- data/vendor/activerecord/test/cases/associations/cascaded_eager_loading_test.rb +123 -0
- data/vendor/activerecord/test/cases/associations/eager_load_includes_full_sti_class_test.rb +36 -0
- data/vendor/activerecord/test/cases/associations/eager_load_nested_include_test.rb +101 -0
- data/vendor/activerecord/test/cases/associations/eager_singularization_test.rb +145 -0
- data/vendor/activerecord/test/cases/associations/eager_test.rb +692 -0
- data/vendor/activerecord/test/cases/associations/extension_test.rb +62 -0
- data/vendor/activerecord/test/cases/associations/has_and_belongs_to_many_associations_test.rb +773 -0
- data/vendor/activerecord/test/cases/associations/has_many_associations_test.rb +1101 -0
- data/vendor/activerecord/test/cases/associations/has_many_through_associations_test.rb +247 -0
- data/vendor/activerecord/test/cases/associations/has_one_associations_test.rb +362 -0
- data/vendor/activerecord/test/cases/associations/has_one_through_associations_test.rb +161 -0
- data/vendor/activerecord/test/cases/associations/inner_join_association_test.rb +88 -0
- data/vendor/activerecord/test/cases/associations/join_model_test.rb +714 -0
- data/vendor/activerecord/test/cases/associations_test.rb +262 -0
- data/vendor/activerecord/test/cases/attribute_methods_test.rb +293 -0
- data/vendor/activerecord/test/cases/base_test.rb +2087 -0
- data/vendor/activerecord/test/cases/binary_test.rb +30 -0
- data/vendor/activerecord/test/cases/calculations_test.rb +328 -0
- data/vendor/activerecord/test/cases/callbacks_observers_test.rb +38 -0
- data/vendor/activerecord/test/cases/callbacks_test.rb +400 -0
- data/vendor/activerecord/test/cases/class_inheritable_attributes_test.rb +32 -0
- data/vendor/activerecord/test/cases/column_alias_test.rb +17 -0
- data/vendor/activerecord/test/cases/column_definition_test.rb +36 -0
- data/vendor/activerecord/test/cases/connection_test_firebird.rb +8 -0
- data/vendor/activerecord/test/cases/connection_test_mysql.rb +30 -0
- data/vendor/activerecord/test/cases/copy_table_test_sqlite.rb +69 -0
- data/vendor/activerecord/test/cases/database_statements_test.rb +12 -0
- data/vendor/activerecord/test/cases/datatype_test_postgresql.rb +203 -0
- data/vendor/activerecord/test/cases/date_time_test.rb +37 -0
- data/vendor/activerecord/test/cases/default_test_firebird.rb +16 -0
- data/vendor/activerecord/test/cases/defaults_test.rb +100 -0
- data/vendor/activerecord/test/cases/deprecated_finder_test.rb +30 -0
- data/vendor/activerecord/test/cases/dirty_test.rb +270 -0
- data/vendor/activerecord/test/cases/finder_respond_to_test.rb +76 -0
- data/vendor/activerecord/test/cases/finder_test.rb +1048 -0
- data/vendor/activerecord/test/cases/fixtures_test.rb +655 -0
- data/vendor/activerecord/test/cases/helper.rb +62 -0
- data/vendor/activerecord/test/cases/i18n_test.rb +41 -0
- data/vendor/activerecord/test/cases/inheritance_test.rb +262 -0
- data/vendor/activerecord/test/cases/invalid_date_test.rb +24 -0
- data/vendor/activerecord/test/cases/json_serialization_test.rb +205 -0
- data/vendor/activerecord/test/cases/lifecycle_test.rb +193 -0
- data/vendor/activerecord/test/cases/locking_test.rb +304 -0
- data/vendor/activerecord/test/cases/method_scoping_test.rb +569 -0
- data/vendor/activerecord/test/cases/migration_test.rb +1479 -0
- data/vendor/activerecord/test/cases/migration_test_firebird.rb +124 -0
- data/vendor/activerecord/test/cases/mixin_test.rb +96 -0
- data/vendor/activerecord/test/cases/modules_test.rb +39 -0
- data/vendor/activerecord/test/cases/multiple_db_test.rb +85 -0
- data/vendor/activerecord/test/cases/named_scope_test.rb +280 -0
- data/vendor/activerecord/test/cases/pk_test.rb +101 -0
- data/vendor/activerecord/test/cases/pooled_connections_test.rb +103 -0
- data/vendor/activerecord/test/cases/query_cache_test.rb +127 -0
- data/vendor/activerecord/test/cases/readonly_test.rb +107 -0
- data/vendor/activerecord/test/cases/reflection_test.rb +184 -0
- data/vendor/activerecord/test/cases/reload_models_test.rb +20 -0
- data/vendor/activerecord/test/cases/reserved_word_test_mysql.rb +176 -0
- data/vendor/activerecord/test/cases/sanitize_test.rb +25 -0
- data/vendor/activerecord/test/cases/schema_authorization_test_postgresql.rb +75 -0
- data/vendor/activerecord/test/cases/schema_dumper_test.rb +184 -0
- data/vendor/activerecord/test/cases/schema_test_postgresql.rb +102 -0
- data/vendor/activerecord/test/cases/serialization_test.rb +47 -0
- data/vendor/activerecord/test/cases/synonym_test_oracle.rb +17 -0
- data/vendor/activerecord/test/cases/transactions_test.rb +357 -0
- data/vendor/activerecord/test/cases/unconnected_test.rb +32 -0
- data/vendor/activerecord/test/cases/validations_i18n_test.rb +921 -0
- data/vendor/activerecord/test/cases/validations_test.rb +1552 -0
- data/vendor/activerecord/test/cases/xml_serialization_test.rb +202 -0
- data/vendor/activerecord/test/config.rb +5 -0
- data/vendor/activerecord/test/connections/native_db2/connection.rb +25 -0
- data/vendor/activerecord/test/connections/native_firebird/connection.rb +26 -0
- data/vendor/activerecord/test/connections/native_frontbase/connection.rb +27 -0
- data/vendor/activerecord/test/connections/native_mysql/connection.rb +25 -0
- data/vendor/activerecord/test/connections/native_openbase/connection.rb +21 -0
- data/vendor/activerecord/test/connections/native_oracle/connection.rb +27 -0
- data/vendor/activerecord/test/connections/native_postgresql/connection.rb +21 -0
- data/vendor/activerecord/test/connections/native_sqlite/connection.rb +25 -0
- data/vendor/activerecord/test/connections/native_sqlite3/connection.rb +25 -0
- data/vendor/activerecord/test/connections/native_sqlite3/in_memory_connection.rb +18 -0
- data/vendor/activerecord/test/connections/native_sybase/connection.rb +23 -0
- data/vendor/activerecord/test/fixtures/accounts.yml +28 -0
- data/vendor/activerecord/test/fixtures/all/developers.yml +0 -0
- data/vendor/activerecord/test/fixtures/all/people.csv +0 -0
- data/vendor/activerecord/test/fixtures/all/tasks.yml +0 -0
- data/vendor/activerecord/test/fixtures/author_addresses.yml +5 -0
- data/vendor/activerecord/test/fixtures/author_favorites.yml +4 -0
- data/vendor/activerecord/test/fixtures/authors.yml +9 -0
- data/vendor/activerecord/test/fixtures/binaries.yml +132 -0
- data/vendor/activerecord/test/fixtures/books.yml +7 -0
- data/vendor/activerecord/test/fixtures/categories.yml +14 -0
- data/vendor/activerecord/test/fixtures/categories/special_categories.yml +9 -0
- data/vendor/activerecord/test/fixtures/categories/subsubdir/arbitrary_filename.yml +4 -0
- data/vendor/activerecord/test/fixtures/categories_ordered.yml +7 -0
- data/vendor/activerecord/test/fixtures/categories_posts.yml +23 -0
- data/vendor/activerecord/test/fixtures/categorizations.yml +17 -0
- data/vendor/activerecord/test/fixtures/clubs.yml +6 -0
- data/vendor/activerecord/test/fixtures/comments.yml +59 -0
- data/vendor/activerecord/test/fixtures/companies.yml +56 -0
- data/vendor/activerecord/test/fixtures/computers.yml +4 -0
- data/vendor/activerecord/test/fixtures/courses.yml +7 -0
- data/vendor/activerecord/test/fixtures/customers.yml +26 -0
- data/vendor/activerecord/test/fixtures/developers.yml +21 -0
- data/vendor/activerecord/test/fixtures/developers_projects.yml +17 -0
- data/vendor/activerecord/test/fixtures/edges.yml +6 -0
- data/vendor/activerecord/test/fixtures/entrants.yml +14 -0
- data/vendor/activerecord/test/fixtures/fixture_database.sqlite3 +0 -0
- data/vendor/activerecord/test/fixtures/fixture_database_2.sqlite3 +0 -0
- data/vendor/activerecord/test/fixtures/fk_test_has_fk.yml +3 -0
- data/vendor/activerecord/test/fixtures/fk_test_has_pk.yml +2 -0
- data/vendor/activerecord/test/fixtures/funny_jokes.yml +10 -0
- data/vendor/activerecord/test/fixtures/items.yml +4 -0
- data/vendor/activerecord/test/fixtures/jobs.yml +7 -0
- data/vendor/activerecord/test/fixtures/legacy_things.yml +3 -0
- data/vendor/activerecord/test/fixtures/mateys.yml +4 -0
- data/vendor/activerecord/test/fixtures/members.yml +4 -0
- data/vendor/activerecord/test/fixtures/memberships.yml +20 -0
- data/vendor/activerecord/test/fixtures/minimalistics.yml +2 -0
- data/vendor/activerecord/test/fixtures/mixed_case_monkeys.yml +6 -0
- data/vendor/activerecord/test/fixtures/mixins.yml +29 -0
- data/vendor/activerecord/test/fixtures/movies.yml +7 -0
- data/vendor/activerecord/test/fixtures/naked/csv/accounts.csv +1 -0
- data/vendor/activerecord/test/fixtures/naked/yml/accounts.yml +1 -0
- data/vendor/activerecord/test/fixtures/naked/yml/companies.yml +1 -0
- data/vendor/activerecord/test/fixtures/naked/yml/courses.yml +1 -0
- data/vendor/activerecord/test/fixtures/organizations.yml +5 -0
- data/vendor/activerecord/test/fixtures/owners.yml +7 -0
- data/vendor/activerecord/test/fixtures/parrots.yml +27 -0
- data/vendor/activerecord/test/fixtures/parrots_pirates.yml +7 -0
- data/vendor/activerecord/test/fixtures/people.yml +6 -0
- data/vendor/activerecord/test/fixtures/pets.yml +14 -0
- data/vendor/activerecord/test/fixtures/pirates.yml +9 -0
- data/vendor/activerecord/test/fixtures/posts.yml +49 -0
- data/vendor/activerecord/test/fixtures/price_estimates.yml +7 -0
- data/vendor/activerecord/test/fixtures/projects.yml +7 -0
- data/vendor/activerecord/test/fixtures/readers.yml +9 -0
- data/vendor/activerecord/test/fixtures/references.yml +17 -0
- data/vendor/activerecord/test/fixtures/reserved_words/distinct.yml +5 -0
- data/vendor/activerecord/test/fixtures/reserved_words/distincts_selects.yml +11 -0
- data/vendor/activerecord/test/fixtures/reserved_words/group.yml +14 -0
- data/vendor/activerecord/test/fixtures/reserved_words/select.yml +8 -0
- data/vendor/activerecord/test/fixtures/reserved_words/values.yml +7 -0
- data/vendor/activerecord/test/fixtures/ships.yml +5 -0
- data/vendor/activerecord/test/fixtures/sponsors.yml +9 -0
- data/vendor/activerecord/test/fixtures/subscribers.yml +7 -0
- data/vendor/activerecord/test/fixtures/subscriptions.yml +12 -0
- data/vendor/activerecord/test/fixtures/taggings.yml +28 -0
- data/vendor/activerecord/test/fixtures/tags.yml +7 -0
- data/vendor/activerecord/test/fixtures/tasks.yml +7 -0
- data/vendor/activerecord/test/fixtures/topics.yml +42 -0
- data/vendor/activerecord/test/fixtures/treasures.yml +10 -0
- data/vendor/activerecord/test/fixtures/vertices.yml +4 -0
- data/vendor/activerecord/test/fixtures/warehouse-things.yml +3 -0
- data/vendor/activerecord/test/migrations/broken/100_migration_that_raises_exception.rb +10 -0
- data/vendor/activerecord/test/migrations/decimal/1_give_me_big_numbers.rb +15 -0
- data/vendor/activerecord/test/migrations/duplicate/1_people_have_last_names.rb +9 -0
- data/vendor/activerecord/test/migrations/duplicate/2_we_need_reminders.rb +12 -0
- data/vendor/activerecord/test/migrations/duplicate/3_foo.rb +7 -0
- data/vendor/activerecord/test/migrations/duplicate/3_innocent_jointable.rb +12 -0
- data/vendor/activerecord/test/migrations/duplicate_names/20080507052938_chunky.rb +7 -0
- data/vendor/activerecord/test/migrations/duplicate_names/20080507053028_chunky.rb +7 -0
- data/vendor/activerecord/test/migrations/interleaved/pass_1/3_innocent_jointable.rb +12 -0
- data/vendor/activerecord/test/migrations/interleaved/pass_2/1_people_have_last_names.rb +9 -0
- data/vendor/activerecord/test/migrations/interleaved/pass_2/3_innocent_jointable.rb +12 -0
- data/vendor/activerecord/test/migrations/interleaved/pass_3/1_people_have_last_names.rb +9 -0
- data/vendor/activerecord/test/migrations/interleaved/pass_3/2_i_raise_on_down.rb +8 -0
- data/vendor/activerecord/test/migrations/interleaved/pass_3/3_innocent_jointable.rb +12 -0
- data/vendor/activerecord/test/migrations/missing/1000_people_have_middle_names.rb +9 -0
- data/vendor/activerecord/test/migrations/missing/1_people_have_last_names.rb +9 -0
- data/vendor/activerecord/test/migrations/missing/3_we_need_reminders.rb +12 -0
- data/vendor/activerecord/test/migrations/missing/4_innocent_jointable.rb +12 -0
- data/vendor/activerecord/test/migrations/valid/1_people_have_last_names.rb +9 -0
- data/vendor/activerecord/test/migrations/valid/2_we_need_reminders.rb +12 -0
- data/vendor/activerecord/test/migrations/valid/3_innocent_jointable.rb +12 -0
- data/vendor/activerecord/test/models/author.rb +140 -0
- data/vendor/activerecord/test/models/auto_id.rb +4 -0
- data/vendor/activerecord/test/models/binary.rb +2 -0
- data/vendor/activerecord/test/models/book.rb +4 -0
- data/vendor/activerecord/test/models/categorization.rb +5 -0
- data/vendor/activerecord/test/models/category.rb +33 -0
- data/vendor/activerecord/test/models/citation.rb +6 -0
- data/vendor/activerecord/test/models/club.rb +13 -0
- data/vendor/activerecord/test/models/column_name.rb +3 -0
- data/vendor/activerecord/test/models/comment.rb +25 -0
- data/vendor/activerecord/test/models/company.rb +156 -0
- data/vendor/activerecord/test/models/company_in_module.rb +61 -0
- data/vendor/activerecord/test/models/computer.rb +3 -0
- data/vendor/activerecord/test/models/contact.rb +16 -0
- data/vendor/activerecord/test/models/course.rb +3 -0
- data/vendor/activerecord/test/models/customer.rb +73 -0
- data/vendor/activerecord/test/models/default.rb +2 -0
- data/vendor/activerecord/test/models/developer.rb +79 -0
- data/vendor/activerecord/test/models/edge.rb +5 -0
- data/vendor/activerecord/test/models/entrant.rb +3 -0
- data/vendor/activerecord/test/models/guid.rb +2 -0
- data/vendor/activerecord/test/models/item.rb +7 -0
- data/vendor/activerecord/test/models/job.rb +5 -0
- data/vendor/activerecord/test/models/joke.rb +3 -0
- data/vendor/activerecord/test/models/keyboard.rb +3 -0
- data/vendor/activerecord/test/models/legacy_thing.rb +3 -0
- data/vendor/activerecord/test/models/matey.rb +4 -0
- data/vendor/activerecord/test/models/member.rb +11 -0
- data/vendor/activerecord/test/models/member_detail.rb +4 -0
- data/vendor/activerecord/test/models/membership.rb +9 -0
- data/vendor/activerecord/test/models/minimalistic.rb +2 -0
- data/vendor/activerecord/test/models/mixed_case_monkey.rb +3 -0
- data/vendor/activerecord/test/models/movie.rb +5 -0
- data/vendor/activerecord/test/models/order.rb +4 -0
- data/vendor/activerecord/test/models/organization.rb +4 -0
- data/vendor/activerecord/test/models/owner.rb +4 -0
- data/vendor/activerecord/test/models/parrot.rb +14 -0
- data/vendor/activerecord/test/models/person.rb +10 -0
- data/vendor/activerecord/test/models/pet.rb +4 -0
- data/vendor/activerecord/test/models/pirate.rb +9 -0
- data/vendor/activerecord/test/models/post.rb +88 -0
- data/vendor/activerecord/test/models/price_estimate.rb +3 -0
- data/vendor/activerecord/test/models/project.rb +29 -0
- data/vendor/activerecord/test/models/reader.rb +4 -0
- data/vendor/activerecord/test/models/reference.rb +4 -0
- data/vendor/activerecord/test/models/reply.rb +39 -0
- data/vendor/activerecord/test/models/ship.rb +3 -0
- data/vendor/activerecord/test/models/sponsor.rb +4 -0
- data/vendor/activerecord/test/models/subject.rb +4 -0
- data/vendor/activerecord/test/models/subscriber.rb +8 -0
- data/vendor/activerecord/test/models/subscription.rb +4 -0
- data/vendor/activerecord/test/models/tag.rb +7 -0
- data/vendor/activerecord/test/models/tagging.rb +10 -0
- data/vendor/activerecord/test/models/task.rb +3 -0
- data/vendor/activerecord/test/models/topic.rb +69 -0
- data/vendor/activerecord/test/models/treasure.rb +6 -0
- data/vendor/activerecord/test/models/vertex.rb +9 -0
- data/vendor/activerecord/test/models/warehouse_thing.rb +5 -0
- data/vendor/activerecord/test/schema/mysql_specific_schema.rb +12 -0
- data/vendor/activerecord/test/schema/postgresql_specific_schema.rb +103 -0
- data/vendor/activerecord/test/schema/schema.rb +440 -0
- data/vendor/activerecord/test/schema/schema2.rb +6 -0
- data/vendor/activerecord/test/schema/sqlite_specific_schema.rb +25 -0
- data/vendor/activesupport/CHANGELOG +1257 -0
- data/vendor/activesupport/README +43 -0
- data/vendor/activesupport/lib/active_support.rb +61 -0
- data/vendor/activesupport/lib/active_support/base64.rb +33 -0
- data/vendor/activesupport/lib/active_support/basic_object.rb +24 -0
- data/vendor/activesupport/lib/active_support/buffered_logger.rb +122 -0
- data/vendor/activesupport/lib/active_support/cache.rb +223 -0
- data/vendor/activesupport/lib/active_support/cache/compressed_mem_cache_store.rb +20 -0
- data/vendor/activesupport/lib/active_support/cache/drb_store.rb +15 -0
- data/vendor/activesupport/lib/active_support/cache/file_store.rb +72 -0
- data/vendor/activesupport/lib/active_support/cache/mem_cache_store.rb +127 -0
- data/vendor/activesupport/lib/active_support/cache/memory_store.rb +52 -0
- data/vendor/activesupport/lib/active_support/cache/synchronized_memory_store.rb +47 -0
- data/vendor/activesupport/lib/active_support/callbacks.rb +280 -0
- data/vendor/activesupport/lib/active_support/core_ext.rb +4 -0
- data/vendor/activesupport/lib/active_support/core_ext/array.rb +13 -0
- data/vendor/activesupport/lib/active_support/core_ext/array/access.rb +53 -0
- data/vendor/activesupport/lib/active_support/core_ext/array/conversions.rb +183 -0
- data/vendor/activesupport/lib/active_support/core_ext/array/extract_options.rb +20 -0
- data/vendor/activesupport/lib/active_support/core_ext/array/grouping.rb +106 -0
- data/vendor/activesupport/lib/active_support/core_ext/array/random_access.rb +12 -0
- data/vendor/activesupport/lib/active_support/core_ext/base64.rb +4 -0
- data/vendor/activesupport/lib/active_support/core_ext/base64/encoding.rb +16 -0
- data/vendor/activesupport/lib/active_support/core_ext/benchmark.rb +12 -0
- data/vendor/activesupport/lib/active_support/core_ext/bigdecimal.rb +6 -0
- data/vendor/activesupport/lib/active_support/core_ext/bigdecimal/conversions.rb +37 -0
- data/vendor/activesupport/lib/active_support/core_ext/blank.rb +58 -0
- data/vendor/activesupport/lib/active_support/core_ext/cgi.rb +5 -0
- data/vendor/activesupport/lib/active_support/core_ext/cgi/escape_skipping_slashes.rb +14 -0
- data/vendor/activesupport/lib/active_support/core_ext/class.rb +4 -0
- data/vendor/activesupport/lib/active_support/core_ext/class/attribute_accessors.rb +54 -0
- data/vendor/activesupport/lib/active_support/core_ext/class/delegating_attributes.rb +46 -0
- data/vendor/activesupport/lib/active_support/core_ext/class/inheritable_attributes.rb +140 -0
- data/vendor/activesupport/lib/active_support/core_ext/class/removal.rb +50 -0
- data/vendor/activesupport/lib/active_support/core_ext/date.rb +10 -0
- data/vendor/activesupport/lib/active_support/core_ext/date/behavior.rb +42 -0
- data/vendor/activesupport/lib/active_support/core_ext/date/calculations.rb +230 -0
- data/vendor/activesupport/lib/active_support/core_ext/date/conversions.rb +107 -0
- data/vendor/activesupport/lib/active_support/core_ext/date_time.rb +12 -0
- data/vendor/activesupport/lib/active_support/core_ext/date_time/calculations.rb +126 -0
- data/vendor/activesupport/lib/active_support/core_ext/date_time/conversions.rb +96 -0
- data/vendor/activesupport/lib/active_support/core_ext/duplicable.rb +43 -0
- data/vendor/activesupport/lib/active_support/core_ext/enumerable.rb +107 -0
- data/vendor/activesupport/lib/active_support/core_ext/exception.rb +41 -0
- data/vendor/activesupport/lib/active_support/core_ext/file.rb +5 -0
- data/vendor/activesupport/lib/active_support/core_ext/file/atomic.rb +46 -0
- data/vendor/activesupport/lib/active_support/core_ext/float.rb +7 -0
- data/vendor/activesupport/lib/active_support/core_ext/float/rounding.rb +24 -0
- data/vendor/activesupport/lib/active_support/core_ext/float/time.rb +27 -0
- data/vendor/activesupport/lib/active_support/core_ext/hash.rb +14 -0
- data/vendor/activesupport/lib/active_support/core_ext/hash/conversions.rb +259 -0
- data/vendor/activesupport/lib/active_support/core_ext/hash/deep_merge.rb +23 -0
- data/vendor/activesupport/lib/active_support/core_ext/hash/diff.rb +19 -0
- data/vendor/activesupport/lib/active_support/core_ext/hash/except.rb +25 -0
- data/vendor/activesupport/lib/active_support/core_ext/hash/indifferent_access.rb +137 -0
- data/vendor/activesupport/lib/active_support/core_ext/hash/keys.rb +52 -0
- data/vendor/activesupport/lib/active_support/core_ext/hash/reverse_merge.rb +35 -0
- data/vendor/activesupport/lib/active_support/core_ext/hash/slice.rb +33 -0
- data/vendor/activesupport/lib/active_support/core_ext/integer.rb +9 -0
- data/vendor/activesupport/lib/active_support/core_ext/integer/even_odd.rb +29 -0
- data/vendor/activesupport/lib/active_support/core_ext/integer/inflections.rb +20 -0
- data/vendor/activesupport/lib/active_support/core_ext/integer/time.rb +45 -0
- data/vendor/activesupport/lib/active_support/core_ext/kernel.rb +5 -0
- data/vendor/activesupport/lib/active_support/core_ext/kernel/agnostics.rb +11 -0
- data/vendor/activesupport/lib/active_support/core_ext/kernel/daemonizing.rb +7 -0
- data/vendor/activesupport/lib/active_support/core_ext/kernel/debugger.rb +13 -0
- data/vendor/activesupport/lib/active_support/core_ext/kernel/reporting.rb +59 -0
- data/vendor/activesupport/lib/active_support/core_ext/kernel/requires.rb +24 -0
- data/vendor/activesupport/lib/active_support/core_ext/load_error.rb +38 -0
- data/vendor/activesupport/lib/active_support/core_ext/logger.rb +143 -0
- data/vendor/activesupport/lib/active_support/core_ext/module.rb +23 -0
- data/vendor/activesupport/lib/active_support/core_ext/module/aliasing.rb +74 -0
- data/vendor/activesupport/lib/active_support/core_ext/module/attr_accessor_with_default.rb +31 -0
- data/vendor/activesupport/lib/active_support/core_ext/module/attr_internal.rb +32 -0
- data/vendor/activesupport/lib/active_support/core_ext/module/attribute_accessors.rb +58 -0
- data/vendor/activesupport/lib/active_support/core_ext/module/delegation.rb +95 -0
- data/vendor/activesupport/lib/active_support/core_ext/module/inclusion.rb +30 -0
- data/vendor/activesupport/lib/active_support/core_ext/module/introspection.rb +90 -0
- data/vendor/activesupport/lib/active_support/core_ext/module/loading.rb +23 -0
- data/vendor/activesupport/lib/active_support/core_ext/module/model_naming.rb +23 -0
- data/vendor/activesupport/lib/active_support/core_ext/module/synchronization.rb +39 -0
- data/vendor/activesupport/lib/active_support/core_ext/name_error.rb +17 -0
- data/vendor/activesupport/lib/active_support/core_ext/numeric.rb +9 -0
- data/vendor/activesupport/lib/active_support/core_ext/numeric/bytes.rb +44 -0
- data/vendor/activesupport/lib/active_support/core_ext/numeric/conversions.rb +19 -0
- data/vendor/activesupport/lib/active_support/core_ext/numeric/time.rb +81 -0
- data/vendor/activesupport/lib/active_support/core_ext/object.rb +5 -0
- data/vendor/activesupport/lib/active_support/core_ext/object/conversions.rb +14 -0
- data/vendor/activesupport/lib/active_support/core_ext/object/extending.rb +80 -0
- data/vendor/activesupport/lib/active_support/core_ext/object/instance_variables.rb +74 -0
- data/vendor/activesupport/lib/active_support/core_ext/object/metaclass.rb +13 -0
- data/vendor/activesupport/lib/active_support/core_ext/object/misc.rb +74 -0
- data/vendor/activesupport/lib/active_support/core_ext/pathname.rb +7 -0
- data/vendor/activesupport/lib/active_support/core_ext/pathname/clean_within.rb +14 -0
- data/vendor/activesupport/lib/active_support/core_ext/proc.rb +12 -0
- data/vendor/activesupport/lib/active_support/core_ext/process.rb +1 -0
- data/vendor/activesupport/lib/active_support/core_ext/process/daemon.rb +25 -0
- data/vendor/activesupport/lib/active_support/core_ext/range.rb +11 -0
- data/vendor/activesupport/lib/active_support/core_ext/range/blockless_step.rb +32 -0
- data/vendor/activesupport/lib/active_support/core_ext/range/conversions.rb +27 -0
- data/vendor/activesupport/lib/active_support/core_ext/range/include_range.rb +30 -0
- data/vendor/activesupport/lib/active_support/core_ext/range/overlaps.rb +15 -0
- data/vendor/activesupport/lib/active_support/core_ext/rexml.rb +36 -0
- data/vendor/activesupport/lib/active_support/core_ext/string.rb +22 -0
- data/vendor/activesupport/lib/active_support/core_ext/string/access.rb +82 -0
- data/vendor/activesupport/lib/active_support/core_ext/string/behavior.rb +13 -0
- data/vendor/activesupport/lib/active_support/core_ext/string/conversions.rb +28 -0
- data/vendor/activesupport/lib/active_support/core_ext/string/filters.rb +26 -0
- data/vendor/activesupport/lib/active_support/core_ext/string/inflections.rb +167 -0
- data/vendor/activesupport/lib/active_support/core_ext/string/iterators.rb +21 -0
- data/vendor/activesupport/lib/active_support/core_ext/string/multibyte.rb +81 -0
- data/vendor/activesupport/lib/active_support/core_ext/string/starts_ends_with.rb +35 -0
- data/vendor/activesupport/lib/active_support/core_ext/string/xchar.rb +11 -0
- data/vendor/activesupport/lib/active_support/core_ext/symbol.rb +14 -0
- data/vendor/activesupport/lib/active_support/core_ext/time.rb +42 -0
- data/vendor/activesupport/lib/active_support/core_ext/time/behavior.rb +13 -0
- data/vendor/activesupport/lib/active_support/core_ext/time/calculations.rb +303 -0
- data/vendor/activesupport/lib/active_support/core_ext/time/conversions.rb +90 -0
- data/vendor/activesupport/lib/active_support/core_ext/time/zones.rb +86 -0
- data/vendor/activesupport/lib/active_support/dependencies.rb +621 -0
- data/vendor/activesupport/lib/active_support/deprecation.rb +243 -0
- data/vendor/activesupport/lib/active_support/duration.rb +96 -0
- data/vendor/activesupport/lib/active_support/gzip.rb +25 -0
- data/vendor/activesupport/lib/active_support/inflections.rb +55 -0
- data/vendor/activesupport/lib/active_support/inflector.rb +397 -0
- data/vendor/activesupport/lib/active_support/json.rb +23 -0
- data/vendor/activesupport/lib/active_support/json/decoding.rb +63 -0
- data/vendor/activesupport/lib/active_support/json/encoders/date.rb +21 -0
- data/vendor/activesupport/lib/active_support/json/encoders/date_time.rb +21 -0
- data/vendor/activesupport/lib/active_support/json/encoders/enumerable.rb +12 -0
- data/vendor/activesupport/lib/active_support/json/encoders/false_class.rb +5 -0
- data/vendor/activesupport/lib/active_support/json/encoders/hash.rb +47 -0
- data/vendor/activesupport/lib/active_support/json/encoders/nil_class.rb +5 -0
- data/vendor/activesupport/lib/active_support/json/encoders/numeric.rb +5 -0
- data/vendor/activesupport/lib/active_support/json/encoders/object.rb +6 -0
- data/vendor/activesupport/lib/active_support/json/encoders/regexp.rb +5 -0
- data/vendor/activesupport/lib/active_support/json/encoders/string.rb +36 -0
- data/vendor/activesupport/lib/active_support/json/encoders/symbol.rb +5 -0
- data/vendor/activesupport/lib/active_support/json/encoders/time.rb +21 -0
- data/vendor/activesupport/lib/active_support/json/encoders/true_class.rb +5 -0
- data/vendor/activesupport/lib/active_support/json/encoding.rb +37 -0
- data/vendor/activesupport/lib/active_support/json/variable.rb +10 -0
- data/vendor/activesupport/lib/active_support/locale/en.yml +32 -0
- data/vendor/activesupport/lib/active_support/memoizable.rb +82 -0
- data/vendor/activesupport/lib/active_support/multibyte.rb +33 -0
- data/vendor/activesupport/lib/active_support/multibyte/chars.rb +679 -0
- data/vendor/activesupport/lib/active_support/multibyte/exceptions.rb +8 -0
- data/vendor/activesupport/lib/active_support/multibyte/unicode_database.rb +71 -0
- data/vendor/activesupport/lib/active_support/option_merger.rb +17 -0
- data/vendor/activesupport/lib/active_support/ordered_hash.rb +58 -0
- data/vendor/activesupport/lib/active_support/ordered_options.rb +19 -0
- data/vendor/activesupport/lib/active_support/rescuable.rb +108 -0
- data/vendor/activesupport/lib/active_support/secure_random.rb +197 -0
- data/vendor/activesupport/lib/active_support/string_inquirer.rb +21 -0
- data/vendor/activesupport/lib/active_support/test_case.rb +24 -0
- data/vendor/activesupport/lib/active_support/testing/core_ext/test.rb +6 -0
- data/vendor/activesupport/lib/active_support/testing/core_ext/test/unit/assertions.rb +72 -0
- data/vendor/activesupport/lib/active_support/testing/default.rb +9 -0
- data/vendor/activesupport/lib/active_support/testing/performance.rb +452 -0
- data/vendor/activesupport/lib/active_support/testing/setup_and_teardown.rb +120 -0
- data/vendor/activesupport/lib/active_support/time_with_zone.rb +328 -0
- data/vendor/activesupport/lib/active_support/values/time_zone.rb +403 -0
- data/vendor/activesupport/lib/active_support/values/unicode_tables.dat +0 -0
- data/vendor/activesupport/lib/active_support/vendor.rb +34 -0
- data/vendor/activesupport/lib/active_support/vendor/builder-2.1.2/blankslate.rb +113 -0
- data/vendor/activesupport/lib/active_support/vendor/builder-2.1.2/builder.rb +13 -0
- data/vendor/activesupport/lib/active_support/vendor/builder-2.1.2/builder/blankslate.rb +20 -0
- data/vendor/activesupport/lib/active_support/vendor/builder-2.1.2/builder/css.rb +250 -0
- data/vendor/activesupport/lib/active_support/vendor/builder-2.1.2/builder/xchar.rb +115 -0
- data/vendor/activesupport/lib/active_support/vendor/builder-2.1.2/builder/xmlbase.rb +139 -0
- data/vendor/activesupport/lib/active_support/vendor/builder-2.1.2/builder/xmlevents.rb +63 -0
- data/vendor/activesupport/lib/active_support/vendor/builder-2.1.2/builder/xmlmarkup.rb +328 -0
- data/vendor/activesupport/lib/active_support/vendor/i18n-0.0.1/i18n.rb +194 -0
- data/vendor/activesupport/lib/active_support/vendor/i18n-0.0.1/i18n/backend/simple.rb +216 -0
- data/vendor/activesupport/lib/active_support/vendor/i18n-0.0.1/i18n/exceptions.rb +53 -0
- data/vendor/activesupport/lib/active_support/vendor/memcache-client-1.5.1/memcache.rb +849 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo.rb +33 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/data_timezone.rb +47 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/data_timezone_info.rb +228 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Africa/Algiers.rb +55 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Africa/Cairo.rb +219 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Africa/Casablanca.rb +40 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Africa/Harare.rb +18 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Africa/Johannesburg.rb +25 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Africa/Monrovia.rb +22 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Africa/Nairobi.rb +23 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Argentina/Buenos_Aires.rb +166 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Argentina/San_Juan.rb +86 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Bogota.rb +23 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Caracas.rb +23 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Chicago.rb +283 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Chihuahua.rb +136 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Denver.rb +204 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Godthab.rb +161 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Guatemala.rb +27 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Halifax.rb +274 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Indiana/Indianapolis.rb +149 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Juneau.rb +194 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/La_Paz.rb +22 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Lima.rb +35 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Los_Angeles.rb +232 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Mazatlan.rb +139 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Mexico_City.rb +144 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Monterrey.rb +131 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/New_York.rb +282 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Phoenix.rb +30 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Regina.rb +74 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Santiago.rb +205 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Sao_Paulo.rb +171 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/St_Johns.rb +288 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Tijuana.rb +196 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Almaty.rb +67 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Baghdad.rb +73 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Baku.rb +161 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Bangkok.rb +20 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Chongqing.rb +33 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Colombo.rb +30 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Dhaka.rb +27 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Hong_Kong.rb +87 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Irkutsk.rb +165 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Jakarta.rb +30 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Jerusalem.rb +163 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Kabul.rb +20 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Kamchatka.rb +163 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Karachi.rb +30 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Katmandu.rb +20 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Kolkata.rb +25 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Krasnoyarsk.rb +163 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Kuala_Lumpur.rb +31 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Kuwait.rb +18 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Magadan.rb +163 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Muscat.rb +18 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Novosibirsk.rb +164 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Rangoon.rb +24 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Riyadh.rb +18 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Seoul.rb +34 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Shanghai.rb +35 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Singapore.rb +33 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Taipei.rb +59 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Tashkent.rb +47 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Tbilisi.rb +78 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Tehran.rb +121 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Tokyo.rb +30 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Ulaanbaatar.rb +65 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Urumqi.rb +33 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Vladivostok.rb +164 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Yakutsk.rb +163 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Yekaterinburg.rb +165 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Yerevan.rb +165 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Atlantic/Azores.rb +270 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Atlantic/Cape_Verde.rb +23 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Atlantic/South_Georgia.rb +18 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Australia/Adelaide.rb +187 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Australia/Brisbane.rb +35 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Australia/Darwin.rb +29 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Australia/Hobart.rb +193 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Australia/Melbourne.rb +185 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Australia/Perth.rb +37 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Australia/Sydney.rb +185 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Etc/UTC.rb +16 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Amsterdam.rb +228 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Athens.rb +185 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Belgrade.rb +163 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Berlin.rb +188 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Bratislava.rb +13 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Brussels.rb +232 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Bucharest.rb +181 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Budapest.rb +197 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Copenhagen.rb +179 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Dublin.rb +276 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Helsinki.rb +163 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Istanbul.rb +218 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Kiev.rb +168 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Lisbon.rb +268 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Ljubljana.rb +13 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/London.rb +288 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Madrid.rb +211 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Minsk.rb +170 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Moscow.rb +181 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Paris.rb +232 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Prague.rb +187 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Riga.rb +176 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Rome.rb +215 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Sarajevo.rb +13 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Skopje.rb +13 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Sofia.rb +173 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Stockholm.rb +165 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Tallinn.rb +172 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Vienna.rb +183 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Vilnius.rb +170 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Warsaw.rb +212 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Zagreb.rb +13 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Auckland.rb +202 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Fiji.rb +23 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Guam.rb +22 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Honolulu.rb +28 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Majuro.rb +20 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Midway.rb +25 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Noumea.rb +25 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Pago_Pago.rb +26 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Port_Moresby.rb +20 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Tongatapu.rb +27 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/info_timezone.rb +52 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/linked_timezone.rb +51 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/linked_timezone_info.rb +44 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/offset_rationals.rb +98 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/ruby_core_support.rb +56 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/time_or_datetime.rb +292 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/timezone.rb +508 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/timezone_definition.rb +56 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/timezone_info.rb +40 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/timezone_offset_info.rb +94 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/timezone_period.rb +198 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/timezone_transition_info.rb +129 -0
- data/vendor/activesupport/lib/active_support/vendor/xml-simple-1.0.11/xmlsimple.rb +1021 -0
- data/vendor/activesupport/lib/active_support/version.rb +9 -0
- data/vendor/activesupport/lib/active_support/whiny_nil.rb +58 -0
- data/vendor/activesupport/lib/activesupport.rb +1 -0
- data/vendor/isaac/LICENSE +26 -0
- data/vendor/isaac/README +78 -0
- data/vendor/isaac/TODO +3 -0
- data/vendor/isaac/VERSIONS +3 -0
- data/vendor/isaac/crypt/ISAAC.rb +171 -0
- data/vendor/isaac/isaac.gemspec +39 -0
- data/vendor/isaac/setup.rb +596 -0
- data/vendor/isaac/test/TC_ISAAC.rb +76 -0
- data/vendor/json/CHANGES +93 -0
- data/vendor/json/GPL +340 -0
- data/vendor/json/README +78 -0
- data/vendor/json/RUBY +58 -0
- data/vendor/json/Rakefile +309 -0
- data/vendor/json/TODO +1 -0
- data/vendor/json/VERSION +1 -0
- data/vendor/json/benchmarks/benchmark.txt +133 -0
- data/vendor/json/benchmarks/benchmark_generator.rb +48 -0
- data/vendor/json/benchmarks/benchmark_parser.rb +26 -0
- data/vendor/json/benchmarks/benchmark_rails.rb +26 -0
- data/vendor/json/bin/edit_json.rb +10 -0
- data/vendor/json/bin/prettify_json.rb +76 -0
- data/vendor/json/data/example.json +1 -0
- data/vendor/json/data/index.html +38 -0
- data/vendor/json/data/prototype.js +4184 -0
- data/vendor/json/ext/json/ext/generator/extconf.rb +9 -0
- data/vendor/json/ext/json/ext/generator/generator.c +875 -0
- data/vendor/json/ext/json/ext/generator/unicode.c +182 -0
- data/vendor/json/ext/json/ext/generator/unicode.h +53 -0
- data/vendor/json/ext/json/ext/parser/extconf.rb +9 -0
- data/vendor/json/ext/json/ext/parser/parser.c +1758 -0
- data/vendor/json/ext/json/ext/parser/parser.rl +638 -0
- data/vendor/json/ext/json/ext/parser/unicode.c +154 -0
- data/vendor/json/ext/json/ext/parser/unicode.h +58 -0
- data/vendor/json/install.rb +26 -0
- data/vendor/json/lib/json.rb +235 -0
- data/vendor/json/lib/json/Array.xpm +21 -0
- data/vendor/json/lib/json/FalseClass.xpm +21 -0
- data/vendor/json/lib/json/Hash.xpm +21 -0
- data/vendor/json/lib/json/Key.xpm +73 -0
- data/vendor/json/lib/json/NilClass.xpm +21 -0
- data/vendor/json/lib/json/Numeric.xpm +28 -0
- data/vendor/json/lib/json/String.xpm +96 -0
- data/vendor/json/lib/json/TrueClass.xpm +21 -0
- data/vendor/json/lib/json/add/core.rb +135 -0
- data/vendor/json/lib/json/add/rails.rb +58 -0
- data/vendor/json/lib/json/common.rb +354 -0
- data/vendor/json/lib/json/editor.rb +1362 -0
- data/vendor/json/lib/json/ext.rb +13 -0
- data/vendor/json/lib/json/json.xpm +1499 -0
- data/vendor/json/lib/json/pure.rb +75 -0
- data/vendor/json/lib/json/pure/generator.rb +394 -0
- data/vendor/json/lib/json/pure/parser.rb +259 -0
- data/vendor/json/lib/json/version.rb +9 -0
- data/vendor/json/tests/fixtures/fail1.json +1 -0
- data/vendor/json/tests/fixtures/fail10.json +1 -0
- data/vendor/json/tests/fixtures/fail11.json +1 -0
- data/vendor/json/tests/fixtures/fail12.json +1 -0
- data/vendor/json/tests/fixtures/fail13.json +1 -0
- data/vendor/json/tests/fixtures/fail14.json +1 -0
- data/vendor/json/tests/fixtures/fail18.json +1 -0
- data/vendor/json/tests/fixtures/fail19.json +1 -0
- data/vendor/json/tests/fixtures/fail2.json +1 -0
- data/vendor/json/tests/fixtures/fail20.json +1 -0
- data/vendor/json/tests/fixtures/fail21.json +1 -0
- data/vendor/json/tests/fixtures/fail22.json +1 -0
- data/vendor/json/tests/fixtures/fail23.json +1 -0
- data/vendor/json/tests/fixtures/fail24.json +1 -0
- data/vendor/json/tests/fixtures/fail25.json +1 -0
- data/vendor/json/tests/fixtures/fail27.json +2 -0
- data/vendor/json/tests/fixtures/fail28.json +2 -0
- data/vendor/json/tests/fixtures/fail3.json +1 -0
- data/vendor/json/tests/fixtures/fail4.json +1 -0
- data/vendor/json/tests/fixtures/fail5.json +1 -0
- data/vendor/json/tests/fixtures/fail6.json +1 -0
- data/vendor/json/tests/fixtures/fail7.json +1 -0
- data/vendor/json/tests/fixtures/fail8.json +1 -0
- data/vendor/json/tests/fixtures/fail9.json +1 -0
- data/vendor/json/tests/fixtures/pass1.json +56 -0
- data/vendor/json/tests/fixtures/pass15.json +1 -0
- data/vendor/json/tests/fixtures/pass16.json +1 -0
- data/vendor/json/tests/fixtures/pass17.json +1 -0
- data/vendor/json/tests/fixtures/pass2.json +1 -0
- data/vendor/json/tests/fixtures/pass26.json +1 -0
- data/vendor/json/tests/fixtures/pass3.json +6 -0
- data/vendor/json/tests/runner.rb +25 -0
- data/vendor/json/tests/test_json.rb +293 -0
- data/vendor/json/tests/test_json_addition.rb +161 -0
- data/vendor/json/tests/test_json_fixtures.rb +30 -0
- data/vendor/json/tests/test_json_generate.rb +100 -0
- data/vendor/json/tests/test_json_rails.rb +118 -0
- data/vendor/json/tests/test_json_unicode.rb +61 -0
- data/vendor/json/tools/fuzz.rb +140 -0
- data/vendor/json/tools/server.rb +62 -0
- metadata +841 -0
@@ -0,0 +1,120 @@
|
|
1
|
+
module ActiveSupport
|
2
|
+
module Testing
|
3
|
+
module SetupAndTeardown
|
4
|
+
# For compatibility with Ruby < 1.8.6
|
5
|
+
PASSTHROUGH_EXCEPTIONS =
|
6
|
+
if defined?(Test::Unit::TestCase::PASSTHROUGH_EXCEPTIONS)
|
7
|
+
Test::Unit::TestCase::PASSTHROUGH_EXCEPTIONS
|
8
|
+
else
|
9
|
+
[NoMemoryError, SignalException, Interrupt, SystemExit]
|
10
|
+
end
|
11
|
+
|
12
|
+
def self.included(base)
|
13
|
+
base.class_eval do
|
14
|
+
include ActiveSupport::Callbacks
|
15
|
+
define_callbacks :setup, :teardown
|
16
|
+
|
17
|
+
if defined?(::Mini)
|
18
|
+
undef_method :run
|
19
|
+
alias_method :run, :run_with_callbacks_and_miniunit
|
20
|
+
else
|
21
|
+
begin
|
22
|
+
require 'mocha'
|
23
|
+
undef_method :run
|
24
|
+
alias_method :run, :run_with_callbacks_and_mocha
|
25
|
+
rescue LoadError
|
26
|
+
undef_method :run
|
27
|
+
alias_method :run, :run_with_callbacks_and_testunit
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
31
|
+
end
|
32
|
+
|
33
|
+
def run_with_callbacks_and_miniunit(runner)
|
34
|
+
result = '.'
|
35
|
+
begin
|
36
|
+
run_callbacks :setup
|
37
|
+
result = super
|
38
|
+
rescue Exception => e
|
39
|
+
result = runner.puke(self.class, self.name, e)
|
40
|
+
ensure
|
41
|
+
begin
|
42
|
+
teardown
|
43
|
+
run_callbacks :teardown, :enumerator => :reverse_each
|
44
|
+
rescue Exception => e
|
45
|
+
result = runner.puke(self.class, self.name, e)
|
46
|
+
end
|
47
|
+
end
|
48
|
+
result
|
49
|
+
end
|
50
|
+
|
51
|
+
# This redefinition is unfortunate but test/unit shows us no alternative.
|
52
|
+
def run_with_callbacks_and_testunit(result) #:nodoc:
|
53
|
+
return if @method_name.to_s == "default_test"
|
54
|
+
|
55
|
+
yield(Test::Unit::TestCase::STARTED, name)
|
56
|
+
@_result = result
|
57
|
+
begin
|
58
|
+
run_callbacks :setup
|
59
|
+
setup
|
60
|
+
__send__(@method_name)
|
61
|
+
rescue Test::Unit::AssertionFailedError => e
|
62
|
+
add_failure(e.message, e.backtrace)
|
63
|
+
rescue *PASSTHROUGH_EXCEPTIONS
|
64
|
+
raise
|
65
|
+
rescue Exception
|
66
|
+
add_error($!)
|
67
|
+
ensure
|
68
|
+
begin
|
69
|
+
teardown
|
70
|
+
run_callbacks :teardown, :enumerator => :reverse_each
|
71
|
+
rescue Test::Unit::AssertionFailedError => e
|
72
|
+
add_failure(e.message, e.backtrace)
|
73
|
+
rescue *PASSTHROUGH_EXCEPTIONS
|
74
|
+
raise
|
75
|
+
rescue Exception
|
76
|
+
add_error($!)
|
77
|
+
end
|
78
|
+
end
|
79
|
+
result.add_run
|
80
|
+
yield(Test::Unit::TestCase::FINISHED, name)
|
81
|
+
end
|
82
|
+
|
83
|
+
# Doubly unfortunate: mocha does the same so we have to hax their hax.
|
84
|
+
def run_with_callbacks_and_mocha(result)
|
85
|
+
return if @method_name.to_s == "default_test"
|
86
|
+
|
87
|
+
yield(Test::Unit::TestCase::STARTED, name)
|
88
|
+
@_result = result
|
89
|
+
begin
|
90
|
+
mocha_setup
|
91
|
+
begin
|
92
|
+
run_callbacks :setup
|
93
|
+
setup
|
94
|
+
__send__(@method_name)
|
95
|
+
mocha_verify { add_assertion }
|
96
|
+
rescue Mocha::ExpectationError => e
|
97
|
+
add_failure(e.message, e.backtrace)
|
98
|
+
rescue Test::Unit::AssertionFailedError => e
|
99
|
+
add_failure(e.message, e.backtrace)
|
100
|
+
rescue StandardError, ScriptError
|
101
|
+
add_error($!)
|
102
|
+
ensure
|
103
|
+
begin
|
104
|
+
teardown
|
105
|
+
run_callbacks :teardown, :enumerator => :reverse_each
|
106
|
+
rescue Test::Unit::AssertionFailedError => e
|
107
|
+
add_failure(e.message, e.backtrace)
|
108
|
+
rescue StandardError, ScriptError
|
109
|
+
add_error($!)
|
110
|
+
end
|
111
|
+
end
|
112
|
+
ensure
|
113
|
+
mocha_teardown
|
114
|
+
end
|
115
|
+
result.add_run
|
116
|
+
yield(Test::Unit::TestCase::FINISHED, name)
|
117
|
+
end
|
118
|
+
end
|
119
|
+
end
|
120
|
+
end
|
@@ -0,0 +1,328 @@
|
|
1
|
+
require 'tzinfo'
|
2
|
+
module ActiveSupport
|
3
|
+
# A Time-like class that can represent a time in any time zone. Necessary because standard Ruby Time instances are
|
4
|
+
# limited to UTC and the system's <tt>ENV['TZ']</tt> zone.
|
5
|
+
#
|
6
|
+
# You shouldn't ever need to create a TimeWithZone instance directly via <tt>new</tt> -- instead, Rails provides the methods
|
7
|
+
# +local+, +parse+, +at+ and +now+ on TimeZone instances, and +in_time_zone+ on Time and DateTime instances, for a more
|
8
|
+
# user-friendly syntax. Examples:
|
9
|
+
#
|
10
|
+
# Time.zone = 'Eastern Time (US & Canada)' # => 'Eastern Time (US & Canada)'
|
11
|
+
# Time.zone.local(2007, 2, 10, 15, 30, 45) # => Sat, 10 Feb 2007 15:30:45 EST -05:00
|
12
|
+
# Time.zone.parse('2007-02-01 15:30:45') # => Sat, 10 Feb 2007 15:30:45 EST -05:00
|
13
|
+
# Time.zone.at(1170361845) # => Sat, 10 Feb 2007 15:30:45 EST -05:00
|
14
|
+
# Time.zone.now # => Sun, 18 May 2008 13:07:55 EDT -04:00
|
15
|
+
# Time.utc(2007, 2, 10, 20, 30, 45).in_time_zone # => Sat, 10 Feb 2007 15:30:45 EST -05:00
|
16
|
+
#
|
17
|
+
# See TimeZone and ActiveSupport::CoreExtensions::Time::Zones for further documentation for these methods.
|
18
|
+
#
|
19
|
+
# TimeWithZone instances implement the same API as Ruby Time instances, so that Time and TimeWithZone instances are interchangable. Examples:
|
20
|
+
#
|
21
|
+
# t = Time.zone.now # => Sun, 18 May 2008 13:27:25 EDT -04:00
|
22
|
+
# t.hour # => 13
|
23
|
+
# t.dst? # => true
|
24
|
+
# t.utc_offset # => -14400
|
25
|
+
# t.zone # => "EDT"
|
26
|
+
# t.to_s(:rfc822) # => "Sun, 18 May 2008 13:27:25 -0400"
|
27
|
+
# t + 1.day # => Mon, 19 May 2008 13:27:25 EDT -04:00
|
28
|
+
# t.beginning_of_year # => Tue, 01 Jan 2008 00:00:00 EST -05:00
|
29
|
+
# t > Time.utc(1999) # => true
|
30
|
+
# t.is_a?(Time) # => true
|
31
|
+
# t.is_a?(ActiveSupport::TimeWithZone) # => true
|
32
|
+
class TimeWithZone
|
33
|
+
include Comparable
|
34
|
+
attr_reader :time_zone
|
35
|
+
|
36
|
+
def initialize(utc_time, time_zone, local_time = nil, period = nil)
|
37
|
+
@utc, @time_zone, @time = utc_time, time_zone, local_time
|
38
|
+
@period = @utc ? period : get_period_and_ensure_valid_local_time
|
39
|
+
end
|
40
|
+
|
41
|
+
# Returns a Time or DateTime instance that represents the time in +time_zone+.
|
42
|
+
def time
|
43
|
+
@time ||= period.to_local(@utc)
|
44
|
+
end
|
45
|
+
|
46
|
+
# Returns a Time or DateTime instance that represents the time in UTC.
|
47
|
+
def utc
|
48
|
+
@utc ||= period.to_utc(@time)
|
49
|
+
end
|
50
|
+
alias_method :comparable_time, :utc
|
51
|
+
alias_method :getgm, :utc
|
52
|
+
alias_method :getutc, :utc
|
53
|
+
alias_method :gmtime, :utc
|
54
|
+
|
55
|
+
# Returns the underlying TZInfo::TimezonePeriod.
|
56
|
+
def period
|
57
|
+
@period ||= time_zone.period_for_utc(@utc)
|
58
|
+
end
|
59
|
+
|
60
|
+
# Returns the simultaneous time in <tt>Time.zone</tt>, or the specified zone.
|
61
|
+
def in_time_zone(new_zone = ::Time.zone)
|
62
|
+
return self if time_zone == new_zone
|
63
|
+
utc.in_time_zone(new_zone)
|
64
|
+
end
|
65
|
+
|
66
|
+
# Returns a <tt>Time.local()</tt> instance of the simultaneous time in your system's <tt>ENV['TZ']</tt> zone
|
67
|
+
def localtime
|
68
|
+
utc.getlocal
|
69
|
+
end
|
70
|
+
alias_method :getlocal, :localtime
|
71
|
+
|
72
|
+
def dst?
|
73
|
+
period.dst?
|
74
|
+
end
|
75
|
+
alias_method :isdst, :dst?
|
76
|
+
|
77
|
+
def utc?
|
78
|
+
time_zone.name == 'UTC'
|
79
|
+
end
|
80
|
+
alias_method :gmt?, :utc?
|
81
|
+
|
82
|
+
def utc_offset
|
83
|
+
period.utc_total_offset
|
84
|
+
end
|
85
|
+
alias_method :gmt_offset, :utc_offset
|
86
|
+
alias_method :gmtoff, :utc_offset
|
87
|
+
|
88
|
+
def formatted_offset(colon = true, alternate_utc_string = nil)
|
89
|
+
utc? && alternate_utc_string || utc_offset.to_utc_offset_s(colon)
|
90
|
+
end
|
91
|
+
|
92
|
+
# Time uses +zone+ to display the time zone abbreviation, so we're duck-typing it.
|
93
|
+
def zone
|
94
|
+
period.zone_identifier.to_s
|
95
|
+
end
|
96
|
+
|
97
|
+
def inspect
|
98
|
+
"#{time.strftime('%a, %d %b %Y %H:%M:%S')} #{zone} #{formatted_offset}"
|
99
|
+
end
|
100
|
+
|
101
|
+
def xmlschema
|
102
|
+
"#{time.strftime("%Y-%m-%dT%H:%M:%S")}#{formatted_offset(true, 'Z')}"
|
103
|
+
end
|
104
|
+
alias_method :iso8601, :xmlschema
|
105
|
+
|
106
|
+
# Returns a JSON string representing the TimeWithZone. If ActiveSupport.use_standard_json_time_format is set to
|
107
|
+
# true, the ISO 8601 format is used.
|
108
|
+
#
|
109
|
+
# ==== Examples:
|
110
|
+
#
|
111
|
+
# # With ActiveSupport.use_standard_json_time_format = true
|
112
|
+
# Time.utc(2005,2,1,15,15,10).in_time_zone.to_json
|
113
|
+
# # => "2005-02-01T15:15:10Z"
|
114
|
+
#
|
115
|
+
# # With ActiveSupport.use_standard_json_time_format = false
|
116
|
+
# Time.utc(2005,2,1,15,15,10).in_time_zone.to_json
|
117
|
+
# # => "2005/02/01 15:15:10 +0000"
|
118
|
+
def to_json(options = nil)
|
119
|
+
if ActiveSupport.use_standard_json_time_format
|
120
|
+
xmlschema.inspect
|
121
|
+
else
|
122
|
+
%("#{time.strftime("%Y/%m/%d %H:%M:%S")} #{formatted_offset(false)}")
|
123
|
+
end
|
124
|
+
end
|
125
|
+
|
126
|
+
def to_yaml(options = {})
|
127
|
+
if options.kind_of?(YAML::Emitter)
|
128
|
+
utc.to_yaml(options)
|
129
|
+
else
|
130
|
+
time.to_yaml(options).gsub('Z', formatted_offset(true, 'Z'))
|
131
|
+
end
|
132
|
+
end
|
133
|
+
|
134
|
+
def httpdate
|
135
|
+
utc.httpdate
|
136
|
+
end
|
137
|
+
|
138
|
+
def rfc2822
|
139
|
+
to_s(:rfc822)
|
140
|
+
end
|
141
|
+
alias_method :rfc822, :rfc2822
|
142
|
+
|
143
|
+
# <tt>:db</tt> format outputs time in UTC; all others output time in local.
|
144
|
+
# Uses TimeWithZone's +strftime+, so <tt>%Z</tt> and <tt>%z</tt> work correctly.
|
145
|
+
def to_s(format = :default)
|
146
|
+
return utc.to_s(format) if format == :db
|
147
|
+
if formatter = ::Time::DATE_FORMATS[format]
|
148
|
+
formatter.respond_to?(:call) ? formatter.call(self).to_s : strftime(formatter)
|
149
|
+
else
|
150
|
+
"#{time.strftime("%Y-%m-%d %H:%M:%S")} #{formatted_offset(false, 'UTC')}" # mimicking Ruby 1.9 Time#to_s format
|
151
|
+
end
|
152
|
+
end
|
153
|
+
|
154
|
+
# Replaces <tt>%Z</tt> and <tt>%z</tt> directives with +zone+ and +formatted_offset+, respectively, before passing to
|
155
|
+
# Time#strftime, so that zone information is correct
|
156
|
+
def strftime(format)
|
157
|
+
format = format.gsub('%Z', zone).gsub('%z', formatted_offset(false))
|
158
|
+
time.strftime(format)
|
159
|
+
end
|
160
|
+
|
161
|
+
# Use the time in UTC for comparisons.
|
162
|
+
def <=>(other)
|
163
|
+
utc <=> other
|
164
|
+
end
|
165
|
+
|
166
|
+
def between?(min, max)
|
167
|
+
utc.between?(min, max)
|
168
|
+
end
|
169
|
+
|
170
|
+
def past?
|
171
|
+
utc.past?
|
172
|
+
end
|
173
|
+
|
174
|
+
def today?
|
175
|
+
time.today?
|
176
|
+
end
|
177
|
+
|
178
|
+
def future?
|
179
|
+
utc.future?
|
180
|
+
end
|
181
|
+
|
182
|
+
def eql?(other)
|
183
|
+
utc == other
|
184
|
+
end
|
185
|
+
|
186
|
+
def +(other)
|
187
|
+
# If we're adding a Duration of variable length (i.e., years, months, days), move forward from #time,
|
188
|
+
# otherwise move forward from #utc, for accuracy when moving across DST boundaries
|
189
|
+
if duration_of_variable_length?(other)
|
190
|
+
method_missing(:+, other)
|
191
|
+
else
|
192
|
+
result = utc.acts_like?(:date) ? utc.since(other) : utc + other rescue utc.since(other)
|
193
|
+
result.in_time_zone(time_zone)
|
194
|
+
end
|
195
|
+
end
|
196
|
+
|
197
|
+
def -(other)
|
198
|
+
# If we're subtracting a Duration of variable length (i.e., years, months, days), move backwards from #time,
|
199
|
+
# otherwise move backwards #utc, for accuracy when moving across DST boundaries
|
200
|
+
if other.acts_like?(:time)
|
201
|
+
utc - other
|
202
|
+
elsif duration_of_variable_length?(other)
|
203
|
+
method_missing(:-, other)
|
204
|
+
else
|
205
|
+
result = utc.acts_like?(:date) ? utc.ago(other) : utc - other rescue utc.ago(other)
|
206
|
+
result.in_time_zone(time_zone)
|
207
|
+
end
|
208
|
+
end
|
209
|
+
|
210
|
+
def since(other)
|
211
|
+
# If we're adding a Duration of variable length (i.e., years, months, days), move forward from #time,
|
212
|
+
# otherwise move forward from #utc, for accuracy when moving across DST boundaries
|
213
|
+
if duration_of_variable_length?(other)
|
214
|
+
method_missing(:since, other)
|
215
|
+
else
|
216
|
+
utc.since(other).in_time_zone(time_zone)
|
217
|
+
end
|
218
|
+
end
|
219
|
+
|
220
|
+
def ago(other)
|
221
|
+
since(-other)
|
222
|
+
end
|
223
|
+
|
224
|
+
def advance(options)
|
225
|
+
# If we're advancing a value of variable length (i.e., years, weeks, months, days), advance from #time,
|
226
|
+
# otherwise advance from #utc, for accuracy when moving across DST boundaries
|
227
|
+
if options.detect {|k,v| [:years, :weeks, :months, :days].include? k}
|
228
|
+
method_missing(:advance, options)
|
229
|
+
else
|
230
|
+
utc.advance(options).in_time_zone(time_zone)
|
231
|
+
end
|
232
|
+
end
|
233
|
+
|
234
|
+
%w(year mon month day mday wday yday hour min sec to_date).each do |method_name|
|
235
|
+
class_eval <<-EOV
|
236
|
+
def #{method_name}
|
237
|
+
time.#{method_name}
|
238
|
+
end
|
239
|
+
EOV
|
240
|
+
end
|
241
|
+
|
242
|
+
def usec
|
243
|
+
time.respond_to?(:usec) ? time.usec : 0
|
244
|
+
end
|
245
|
+
|
246
|
+
def to_a
|
247
|
+
[time.sec, time.min, time.hour, time.day, time.mon, time.year, time.wday, time.yday, dst?, zone]
|
248
|
+
end
|
249
|
+
|
250
|
+
def to_f
|
251
|
+
utc.to_f
|
252
|
+
end
|
253
|
+
|
254
|
+
def to_i
|
255
|
+
utc.to_i
|
256
|
+
end
|
257
|
+
alias_method :hash, :to_i
|
258
|
+
alias_method :tv_sec, :to_i
|
259
|
+
|
260
|
+
# A TimeWithZone acts like a Time, so just return +self+.
|
261
|
+
def to_time
|
262
|
+
self
|
263
|
+
end
|
264
|
+
|
265
|
+
def to_datetime
|
266
|
+
utc.to_datetime.new_offset(Rational(utc_offset, 86_400))
|
267
|
+
end
|
268
|
+
|
269
|
+
# So that +self+ <tt>acts_like?(:time)</tt>.
|
270
|
+
def acts_like_time?
|
271
|
+
true
|
272
|
+
end
|
273
|
+
|
274
|
+
# Say we're a Time to thwart type checking.
|
275
|
+
def is_a?(klass)
|
276
|
+
klass == ::Time || super
|
277
|
+
end
|
278
|
+
alias_method :kind_of?, :is_a?
|
279
|
+
|
280
|
+
def freeze
|
281
|
+
period; utc; time # preload instance variables before freezing
|
282
|
+
super
|
283
|
+
end
|
284
|
+
|
285
|
+
def marshal_dump
|
286
|
+
[utc, time_zone.name, time]
|
287
|
+
end
|
288
|
+
|
289
|
+
def marshal_load(variables)
|
290
|
+
initialize(variables[0].utc, ::Time.__send__(:get_zone, variables[1]), variables[2].utc)
|
291
|
+
end
|
292
|
+
|
293
|
+
# Ensure proxy class responds to all methods that underlying time instance responds to.
|
294
|
+
def respond_to?(sym, include_priv = false)
|
295
|
+
# consistently respond false to acts_like?(:date), regardless of whether #time is a Time or DateTime
|
296
|
+
return false if sym.to_s == 'acts_like_date?'
|
297
|
+
super || time.respond_to?(sym, include_priv)
|
298
|
+
end
|
299
|
+
|
300
|
+
# Send the missing method to +time+ instance, and wrap result in a new TimeWithZone with the existing +time_zone+.
|
301
|
+
def method_missing(sym, *args, &block)
|
302
|
+
result = time.__send__(sym, *args, &block)
|
303
|
+
result.acts_like?(:time) ? self.class.new(nil, time_zone, result) : result
|
304
|
+
end
|
305
|
+
|
306
|
+
private
|
307
|
+
def get_period_and_ensure_valid_local_time
|
308
|
+
# we don't want a Time.local instance enforcing its own DST rules as well,
|
309
|
+
# so transfer time values to a utc constructor if necessary
|
310
|
+
@time = transfer_time_values_to_utc_constructor(@time) unless @time.utc?
|
311
|
+
begin
|
312
|
+
@time_zone.period_for_local(@time)
|
313
|
+
rescue ::TZInfo::PeriodNotFound
|
314
|
+
# time is in the "spring forward" hour gap, so we're moving the time forward one hour and trying again
|
315
|
+
@time += 1.hour
|
316
|
+
retry
|
317
|
+
end
|
318
|
+
end
|
319
|
+
|
320
|
+
def transfer_time_values_to_utc_constructor(time)
|
321
|
+
::Time.utc_time(time.year, time.month, time.day, time.hour, time.min, time.sec, time.respond_to?(:usec) ? time.usec : 0)
|
322
|
+
end
|
323
|
+
|
324
|
+
def duration_of_variable_length?(obj)
|
325
|
+
ActiveSupport::Duration === obj && obj.parts.flatten.detect {|p| [:years, :months, :days].include? p }
|
326
|
+
end
|
327
|
+
end
|
328
|
+
end
|
@@ -0,0 +1,403 @@
|
|
1
|
+
# The TimeZone class serves as a wrapper around TZInfo::Timezone instances. It allows us to do the following:
|
2
|
+
#
|
3
|
+
# * Limit the set of zones provided by TZInfo to a meaningful subset of 142 zones.
|
4
|
+
# * Retrieve and display zones with a friendlier name (e.g., "Eastern Time (US & Canada)" instead of "America/New_York").
|
5
|
+
# * Lazily load TZInfo::Timezone instances only when they're needed.
|
6
|
+
# * Create ActiveSupport::TimeWithZone instances via TimeZone's +local+, +parse+, +at+ and +now+ methods.
|
7
|
+
#
|
8
|
+
# If you set <tt>config.time_zone</tt> in the Rails Initializer, you can access this TimeZone object via <tt>Time.zone</tt>:
|
9
|
+
#
|
10
|
+
# # environment.rb:
|
11
|
+
# Rails::Initializer.run do |config|
|
12
|
+
# config.time_zone = "Eastern Time (US & Canada)"
|
13
|
+
# end
|
14
|
+
#
|
15
|
+
# Time.zone # => #<TimeZone:0x514834...>
|
16
|
+
# Time.zone.name # => "Eastern Time (US & Canada)"
|
17
|
+
# Time.zone.now # => Sun, 18 May 2008 14:30:44 EDT -04:00
|
18
|
+
#
|
19
|
+
# The version of TZInfo bundled with Active Support only includes the definitions necessary to support the zones
|
20
|
+
# defined by the TimeZone class. If you need to use zones that aren't defined by TimeZone, you'll need to install the TZInfo gem
|
21
|
+
# (if a recent version of the gem is installed locally, this will be used instead of the bundled version.)
|
22
|
+
module ActiveSupport
|
23
|
+
class TimeZone
|
24
|
+
unless const_defined?(:MAPPING)
|
25
|
+
# Keys are Rails TimeZone names, values are TZInfo identifiers
|
26
|
+
MAPPING = {
|
27
|
+
"International Date Line West" => "Pacific/Midway",
|
28
|
+
"Midway Island" => "Pacific/Midway",
|
29
|
+
"Samoa" => "Pacific/Pago_Pago",
|
30
|
+
"Hawaii" => "Pacific/Honolulu",
|
31
|
+
"Alaska" => "America/Juneau",
|
32
|
+
"Pacific Time (US & Canada)" => "America/Los_Angeles",
|
33
|
+
"Tijuana" => "America/Tijuana",
|
34
|
+
"Mountain Time (US & Canada)" => "America/Denver",
|
35
|
+
"Arizona" => "America/Phoenix",
|
36
|
+
"Chihuahua" => "America/Chihuahua",
|
37
|
+
"Mazatlan" => "America/Mazatlan",
|
38
|
+
"Central Time (US & Canada)" => "America/Chicago",
|
39
|
+
"Saskatchewan" => "America/Regina",
|
40
|
+
"Guadalajara" => "America/Mexico_City",
|
41
|
+
"Mexico City" => "America/Mexico_City",
|
42
|
+
"Monterrey" => "America/Monterrey",
|
43
|
+
"Central America" => "America/Guatemala",
|
44
|
+
"Eastern Time (US & Canada)" => "America/New_York",
|
45
|
+
"Indiana (East)" => "America/Indiana/Indianapolis",
|
46
|
+
"Bogota" => "America/Bogota",
|
47
|
+
"Lima" => "America/Lima",
|
48
|
+
"Quito" => "America/Lima",
|
49
|
+
"Atlantic Time (Canada)" => "America/Halifax",
|
50
|
+
"Caracas" => "America/Caracas",
|
51
|
+
"La Paz" => "America/La_Paz",
|
52
|
+
"Santiago" => "America/Santiago",
|
53
|
+
"Newfoundland" => "America/St_Johns",
|
54
|
+
"Brasilia" => "America/Sao_Paulo",
|
55
|
+
"Buenos Aires" => "America/Argentina/Buenos_Aires",
|
56
|
+
"Georgetown" => "America/Argentina/San_Juan",
|
57
|
+
"Greenland" => "America/Godthab",
|
58
|
+
"Mid-Atlantic" => "Atlantic/South_Georgia",
|
59
|
+
"Azores" => "Atlantic/Azores",
|
60
|
+
"Cape Verde Is." => "Atlantic/Cape_Verde",
|
61
|
+
"Dublin" => "Europe/Dublin",
|
62
|
+
"Edinburgh" => "Europe/Dublin",
|
63
|
+
"Lisbon" => "Europe/Lisbon",
|
64
|
+
"London" => "Europe/London",
|
65
|
+
"Casablanca" => "Africa/Casablanca",
|
66
|
+
"Monrovia" => "Africa/Monrovia",
|
67
|
+
"UTC" => "Etc/UTC",
|
68
|
+
"Belgrade" => "Europe/Belgrade",
|
69
|
+
"Bratislava" => "Europe/Bratislava",
|
70
|
+
"Budapest" => "Europe/Budapest",
|
71
|
+
"Ljubljana" => "Europe/Ljubljana",
|
72
|
+
"Prague" => "Europe/Prague",
|
73
|
+
"Sarajevo" => "Europe/Sarajevo",
|
74
|
+
"Skopje" => "Europe/Skopje",
|
75
|
+
"Warsaw" => "Europe/Warsaw",
|
76
|
+
"Zagreb" => "Europe/Zagreb",
|
77
|
+
"Brussels" => "Europe/Brussels",
|
78
|
+
"Copenhagen" => "Europe/Copenhagen",
|
79
|
+
"Madrid" => "Europe/Madrid",
|
80
|
+
"Paris" => "Europe/Paris",
|
81
|
+
"Amsterdam" => "Europe/Amsterdam",
|
82
|
+
"Berlin" => "Europe/Berlin",
|
83
|
+
"Bern" => "Europe/Berlin",
|
84
|
+
"Rome" => "Europe/Rome",
|
85
|
+
"Stockholm" => "Europe/Stockholm",
|
86
|
+
"Vienna" => "Europe/Vienna",
|
87
|
+
"West Central Africa" => "Africa/Algiers",
|
88
|
+
"Bucharest" => "Europe/Bucharest",
|
89
|
+
"Cairo" => "Africa/Cairo",
|
90
|
+
"Helsinki" => "Europe/Helsinki",
|
91
|
+
"Kyev" => "Europe/Kiev",
|
92
|
+
"Riga" => "Europe/Riga",
|
93
|
+
"Sofia" => "Europe/Sofia",
|
94
|
+
"Tallinn" => "Europe/Tallinn",
|
95
|
+
"Vilnius" => "Europe/Vilnius",
|
96
|
+
"Athens" => "Europe/Athens",
|
97
|
+
"Istanbul" => "Europe/Istanbul",
|
98
|
+
"Minsk" => "Europe/Minsk",
|
99
|
+
"Jerusalem" => "Asia/Jerusalem",
|
100
|
+
"Harare" => "Africa/Harare",
|
101
|
+
"Pretoria" => "Africa/Johannesburg",
|
102
|
+
"Moscow" => "Europe/Moscow",
|
103
|
+
"St. Petersburg" => "Europe/Moscow",
|
104
|
+
"Volgograd" => "Europe/Moscow",
|
105
|
+
"Kuwait" => "Asia/Kuwait",
|
106
|
+
"Riyadh" => "Asia/Riyadh",
|
107
|
+
"Nairobi" => "Africa/Nairobi",
|
108
|
+
"Baghdad" => "Asia/Baghdad",
|
109
|
+
"Tehran" => "Asia/Tehran",
|
110
|
+
"Abu Dhabi" => "Asia/Muscat",
|
111
|
+
"Muscat" => "Asia/Muscat",
|
112
|
+
"Baku" => "Asia/Baku",
|
113
|
+
"Tbilisi" => "Asia/Tbilisi",
|
114
|
+
"Yerevan" => "Asia/Yerevan",
|
115
|
+
"Kabul" => "Asia/Kabul",
|
116
|
+
"Ekaterinburg" => "Asia/Yekaterinburg",
|
117
|
+
"Islamabad" => "Asia/Karachi",
|
118
|
+
"Karachi" => "Asia/Karachi",
|
119
|
+
"Tashkent" => "Asia/Tashkent",
|
120
|
+
"Chennai" => "Asia/Kolkata",
|
121
|
+
"Kolkata" => "Asia/Kolkata",
|
122
|
+
"Mumbai" => "Asia/Kolkata",
|
123
|
+
"New Delhi" => "Asia/Kolkata",
|
124
|
+
"Kathmandu" => "Asia/Katmandu",
|
125
|
+
"Astana" => "Asia/Dhaka",
|
126
|
+
"Dhaka" => "Asia/Dhaka",
|
127
|
+
"Sri Jayawardenepura" => "Asia/Colombo",
|
128
|
+
"Almaty" => "Asia/Almaty",
|
129
|
+
"Novosibirsk" => "Asia/Novosibirsk",
|
130
|
+
"Rangoon" => "Asia/Rangoon",
|
131
|
+
"Bangkok" => "Asia/Bangkok",
|
132
|
+
"Hanoi" => "Asia/Bangkok",
|
133
|
+
"Jakarta" => "Asia/Jakarta",
|
134
|
+
"Krasnoyarsk" => "Asia/Krasnoyarsk",
|
135
|
+
"Beijing" => "Asia/Shanghai",
|
136
|
+
"Chongqing" => "Asia/Chongqing",
|
137
|
+
"Hong Kong" => "Asia/Hong_Kong",
|
138
|
+
"Urumqi" => "Asia/Urumqi",
|
139
|
+
"Kuala Lumpur" => "Asia/Kuala_Lumpur",
|
140
|
+
"Singapore" => "Asia/Singapore",
|
141
|
+
"Taipei" => "Asia/Taipei",
|
142
|
+
"Perth" => "Australia/Perth",
|
143
|
+
"Irkutsk" => "Asia/Irkutsk",
|
144
|
+
"Ulaan Bataar" => "Asia/Ulaanbaatar",
|
145
|
+
"Seoul" => "Asia/Seoul",
|
146
|
+
"Osaka" => "Asia/Tokyo",
|
147
|
+
"Sapporo" => "Asia/Tokyo",
|
148
|
+
"Tokyo" => "Asia/Tokyo",
|
149
|
+
"Yakutsk" => "Asia/Yakutsk",
|
150
|
+
"Darwin" => "Australia/Darwin",
|
151
|
+
"Adelaide" => "Australia/Adelaide",
|
152
|
+
"Canberra" => "Australia/Melbourne",
|
153
|
+
"Melbourne" => "Australia/Melbourne",
|
154
|
+
"Sydney" => "Australia/Sydney",
|
155
|
+
"Brisbane" => "Australia/Brisbane",
|
156
|
+
"Hobart" => "Australia/Hobart",
|
157
|
+
"Vladivostok" => "Asia/Vladivostok",
|
158
|
+
"Guam" => "Pacific/Guam",
|
159
|
+
"Port Moresby" => "Pacific/Port_Moresby",
|
160
|
+
"Magadan" => "Asia/Magadan",
|
161
|
+
"Solomon Is." => "Asia/Magadan",
|
162
|
+
"New Caledonia" => "Pacific/Noumea",
|
163
|
+
"Fiji" => "Pacific/Fiji",
|
164
|
+
"Kamchatka" => "Asia/Kamchatka",
|
165
|
+
"Marshall Is." => "Pacific/Majuro",
|
166
|
+
"Auckland" => "Pacific/Auckland",
|
167
|
+
"Wellington" => "Pacific/Auckland",
|
168
|
+
"Nuku'alofa" => "Pacific/Tongatapu"
|
169
|
+
}.each { |name, zone| name.freeze; zone.freeze }
|
170
|
+
MAPPING.freeze
|
171
|
+
end
|
172
|
+
|
173
|
+
include Comparable
|
174
|
+
attr_reader :name
|
175
|
+
|
176
|
+
# Create a new TimeZone object with the given name and offset. The
|
177
|
+
# offset is the number of seconds that this time zone is offset from UTC
|
178
|
+
# (GMT). Seconds were chosen as the offset unit because that is the unit that
|
179
|
+
# Ruby uses to represent time zone offsets (see Time#utc_offset).
|
180
|
+
def initialize(name, utc_offset, tzinfo = nil)
|
181
|
+
@name = name
|
182
|
+
@utc_offset = utc_offset
|
183
|
+
@tzinfo = tzinfo
|
184
|
+
end
|
185
|
+
|
186
|
+
def utc_offset
|
187
|
+
@utc_offset ||= tzinfo.current_period.utc_offset
|
188
|
+
end
|
189
|
+
|
190
|
+
# Returns the offset of this time zone as a formatted string, of the
|
191
|
+
# format "+HH:MM".
|
192
|
+
def formatted_offset(colon=true, alternate_utc_string = nil)
|
193
|
+
utc_offset == 0 && alternate_utc_string || utc_offset.to_utc_offset_s(colon)
|
194
|
+
end
|
195
|
+
|
196
|
+
# Compare this time zone to the parameter. The two are comapred first on
|
197
|
+
# their offsets, and then by name.
|
198
|
+
def <=>(zone)
|
199
|
+
result = (utc_offset <=> zone.utc_offset)
|
200
|
+
result = (name <=> zone.name) if result == 0
|
201
|
+
result
|
202
|
+
end
|
203
|
+
|
204
|
+
# Compare #name and TZInfo identifier to a supplied regexp, returning true
|
205
|
+
# if a match is found.
|
206
|
+
def =~(re)
|
207
|
+
return true if name =~ re || MAPPING[name] =~ re
|
208
|
+
end
|
209
|
+
|
210
|
+
# Returns a textual representation of this time zone.
|
211
|
+
def to_s
|
212
|
+
"(GMT#{formatted_offset}) #{name}"
|
213
|
+
end
|
214
|
+
|
215
|
+
# Method for creating new ActiveSupport::TimeWithZone instance in time zone of +self+ from given values. Example:
|
216
|
+
#
|
217
|
+
# Time.zone = "Hawaii" # => "Hawaii"
|
218
|
+
# Time.zone.local(2007, 2, 1, 15, 30, 45) # => Thu, 01 Feb 2007 15:30:45 HST -10:00
|
219
|
+
def local(*args)
|
220
|
+
time = Time.utc_time(*args)
|
221
|
+
ActiveSupport::TimeWithZone.new(nil, self, time)
|
222
|
+
end
|
223
|
+
|
224
|
+
# Method for creating new ActiveSupport::TimeWithZone instance in time zone of +self+ from number of seconds since the Unix epoch. Example:
|
225
|
+
#
|
226
|
+
# Time.zone = "Hawaii" # => "Hawaii"
|
227
|
+
# Time.utc(2000).to_f # => 946684800.0
|
228
|
+
# Time.zone.at(946684800.0) # => Fri, 31 Dec 1999 14:00:00 HST -10:00
|
229
|
+
def at(secs)
|
230
|
+
utc = Time.at(secs).utc rescue DateTime.civil(1970).since(secs)
|
231
|
+
utc.in_time_zone(self)
|
232
|
+
end
|
233
|
+
|
234
|
+
# Method for creating new ActiveSupport::TimeWithZone instance in time zone of +self+ from parsed string. Example:
|
235
|
+
#
|
236
|
+
# Time.zone = "Hawaii" # => "Hawaii"
|
237
|
+
# Time.zone.parse('1999-12-31 14:00:00') # => Fri, 31 Dec 1999 14:00:00 HST -10:00
|
238
|
+
#
|
239
|
+
# If upper components are missing from the string, they are supplied from TimeZone#now:
|
240
|
+
#
|
241
|
+
# Time.zone.now # => Fri, 31 Dec 1999 14:00:00 HST -10:00
|
242
|
+
# Time.zone.parse('22:30:00') # => Fri, 31 Dec 1999 22:30:00 HST -10:00
|
243
|
+
def parse(str, now=now)
|
244
|
+
date_parts = Date._parse(str)
|
245
|
+
return if date_parts.blank?
|
246
|
+
time = Time.parse(str, now) rescue DateTime.parse(str)
|
247
|
+
if date_parts[:offset].nil?
|
248
|
+
ActiveSupport::TimeWithZone.new(nil, self, time)
|
249
|
+
else
|
250
|
+
time.in_time_zone(self)
|
251
|
+
end
|
252
|
+
end
|
253
|
+
|
254
|
+
# Returns an ActiveSupport::TimeWithZone instance representing the current time
|
255
|
+
# in the time zone represented by +self+. Example:
|
256
|
+
#
|
257
|
+
# Time.zone = 'Hawaii' # => "Hawaii"
|
258
|
+
# Time.zone.now # => Wed, 23 Jan 2008 20:24:27 HST -10:00
|
259
|
+
def now
|
260
|
+
Time.now.utc.in_time_zone(self)
|
261
|
+
end
|
262
|
+
|
263
|
+
# Return the current date in this time zone.
|
264
|
+
def today
|
265
|
+
tzinfo.now.to_date
|
266
|
+
end
|
267
|
+
|
268
|
+
# Adjust the given time to the simultaneous time in the time zone represented by +self+. Returns a
|
269
|
+
# Time.utc() instance -- if you want an ActiveSupport::TimeWithZone instance, use Time#in_time_zone() instead.
|
270
|
+
def utc_to_local(time)
|
271
|
+
tzinfo.utc_to_local(time)
|
272
|
+
end
|
273
|
+
|
274
|
+
# Adjust the given time to the simultaneous time in UTC. Returns a Time.utc() instance.
|
275
|
+
def local_to_utc(time, dst=true)
|
276
|
+
tzinfo.local_to_utc(time, dst)
|
277
|
+
end
|
278
|
+
|
279
|
+
# Available so that TimeZone instances respond like TZInfo::Timezone instances
|
280
|
+
def period_for_utc(time)
|
281
|
+
tzinfo.period_for_utc(time)
|
282
|
+
end
|
283
|
+
|
284
|
+
# Available so that TimeZone instances respond like TZInfo::Timezone instances
|
285
|
+
def period_for_local(time, dst=true)
|
286
|
+
tzinfo.period_for_local(time, dst)
|
287
|
+
end
|
288
|
+
|
289
|
+
# TODO: Preload instead of lazy load for thread safety
|
290
|
+
def tzinfo
|
291
|
+
@tzinfo ||= TZInfo::Timezone.get(MAPPING[name])
|
292
|
+
end
|
293
|
+
|
294
|
+
unless const_defined?(:ZONES)
|
295
|
+
ZONES = []
|
296
|
+
ZONES_MAP = {}
|
297
|
+
[[-39_600, "International Date Line West", "Midway Island", "Samoa" ],
|
298
|
+
[-36_000, "Hawaii" ],
|
299
|
+
[-32_400, "Alaska" ],
|
300
|
+
[-28_800, "Pacific Time (US & Canada)", "Tijuana" ],
|
301
|
+
[-25_200, "Mountain Time (US & Canada)", "Chihuahua", "Mazatlan",
|
302
|
+
"Arizona" ],
|
303
|
+
[-21_600, "Central Time (US & Canada)", "Saskatchewan", "Guadalajara",
|
304
|
+
"Mexico City", "Monterrey", "Central America" ],
|
305
|
+
[-18_000, "Eastern Time (US & Canada)", "Indiana (East)", "Bogota",
|
306
|
+
"Lima", "Quito" ],
|
307
|
+
[-16_200, "Caracas" ],
|
308
|
+
[-14_400, "Atlantic Time (Canada)", "La Paz", "Santiago" ],
|
309
|
+
[-12_600, "Newfoundland" ],
|
310
|
+
[-10_800, "Brasilia", "Buenos Aires", "Georgetown", "Greenland" ],
|
311
|
+
[ -7_200, "Mid-Atlantic" ],
|
312
|
+
[ -3_600, "Azores", "Cape Verde Is." ],
|
313
|
+
[ 0, "Dublin", "Edinburgh", "Lisbon", "London", "Casablanca",
|
314
|
+
"Monrovia", "UTC" ],
|
315
|
+
[ 3_600, "Belgrade", "Bratislava", "Budapest", "Ljubljana", "Prague",
|
316
|
+
"Sarajevo", "Skopje", "Warsaw", "Zagreb", "Brussels",
|
317
|
+
"Copenhagen", "Madrid", "Paris", "Amsterdam", "Berlin",
|
318
|
+
"Bern", "Rome", "Stockholm", "Vienna",
|
319
|
+
"West Central Africa" ],
|
320
|
+
[ 7_200, "Bucharest", "Cairo", "Helsinki", "Kyev", "Riga", "Sofia",
|
321
|
+
"Tallinn", "Vilnius", "Athens", "Istanbul", "Minsk",
|
322
|
+
"Jerusalem", "Harare", "Pretoria" ],
|
323
|
+
[ 10_800, "Moscow", "St. Petersburg", "Volgograd", "Kuwait", "Riyadh",
|
324
|
+
"Nairobi", "Baghdad" ],
|
325
|
+
[ 12_600, "Tehran" ],
|
326
|
+
[ 14_400, "Abu Dhabi", "Muscat", "Baku", "Tbilisi", "Yerevan" ],
|
327
|
+
[ 16_200, "Kabul" ],
|
328
|
+
[ 18_000, "Ekaterinburg", "Islamabad", "Karachi", "Tashkent" ],
|
329
|
+
[ 19_800, "Chennai", "Kolkata", "Mumbai", "New Delhi", "Sri Jayawardenepura" ],
|
330
|
+
[ 20_700, "Kathmandu" ],
|
331
|
+
[ 21_600, "Astana", "Dhaka", "Almaty",
|
332
|
+
"Novosibirsk" ],
|
333
|
+
[ 23_400, "Rangoon" ],
|
334
|
+
[ 25_200, "Bangkok", "Hanoi", "Jakarta", "Krasnoyarsk" ],
|
335
|
+
[ 28_800, "Beijing", "Chongqing", "Hong Kong", "Urumqi",
|
336
|
+
"Kuala Lumpur", "Singapore", "Taipei", "Perth", "Irkutsk",
|
337
|
+
"Ulaan Bataar" ],
|
338
|
+
[ 32_400, "Seoul", "Osaka", "Sapporo", "Tokyo", "Yakutsk" ],
|
339
|
+
[ 34_200, "Darwin", "Adelaide" ],
|
340
|
+
[ 36_000, "Canberra", "Melbourne", "Sydney", "Brisbane", "Hobart",
|
341
|
+
"Vladivostok", "Guam", "Port Moresby" ],
|
342
|
+
[ 39_600, "Magadan", "Solomon Is.", "New Caledonia" ],
|
343
|
+
[ 43_200, "Fiji", "Kamchatka", "Marshall Is.", "Auckland",
|
344
|
+
"Wellington" ],
|
345
|
+
[ 46_800, "Nuku'alofa" ]].
|
346
|
+
each do |offset, *places|
|
347
|
+
places.each do |place|
|
348
|
+
place.freeze
|
349
|
+
zone = new(place, offset)
|
350
|
+
ZONES << zone
|
351
|
+
ZONES_MAP[place] = zone
|
352
|
+
end
|
353
|
+
end
|
354
|
+
ZONES.sort!
|
355
|
+
ZONES.freeze
|
356
|
+
ZONES_MAP.freeze
|
357
|
+
|
358
|
+
US_ZONES = ZONES.find_all { |z| z.name =~ /US|Arizona|Indiana|Hawaii|Alaska/ }
|
359
|
+
US_ZONES.freeze
|
360
|
+
end
|
361
|
+
|
362
|
+
class << self
|
363
|
+
alias_method :create, :new
|
364
|
+
|
365
|
+
# Return a TimeZone instance with the given name, or +nil+ if no
|
366
|
+
# such TimeZone instance exists. (This exists to support the use of
|
367
|
+
# this class with the +composed_of+ macro.)
|
368
|
+
def new(name)
|
369
|
+
self[name]
|
370
|
+
end
|
371
|
+
|
372
|
+
# Return an array of all TimeZone objects. There are multiple
|
373
|
+
# TimeZone objects per time zone, in many cases, to make it easier
|
374
|
+
# for users to find their own time zone.
|
375
|
+
def all
|
376
|
+
ZONES
|
377
|
+
end
|
378
|
+
|
379
|
+
# Locate a specific time zone object. If the argument is a string, it
|
380
|
+
# is interpreted to mean the name of the timezone to locate. If it is a
|
381
|
+
# numeric value it is either the hour offset, or the second offset, of the
|
382
|
+
# timezone to find. (The first one with that offset will be returned.)
|
383
|
+
# Returns +nil+ if no such time zone is known to the system.
|
384
|
+
def [](arg)
|
385
|
+
case arg
|
386
|
+
when String
|
387
|
+
ZONES_MAP[arg]
|
388
|
+
when Numeric, ActiveSupport::Duration
|
389
|
+
arg *= 3600 if arg.abs <= 13
|
390
|
+
all.find { |z| z.utc_offset == arg.to_i }
|
391
|
+
else
|
392
|
+
raise ArgumentError, "invalid argument to TimeZone[]: #{arg.inspect}"
|
393
|
+
end
|
394
|
+
end
|
395
|
+
|
396
|
+
# A convenience method for returning a collection of TimeZone objects
|
397
|
+
# for time zones in the USA.
|
398
|
+
def us_zones
|
399
|
+
US_ZONES
|
400
|
+
end
|
401
|
+
end
|
402
|
+
end
|
403
|
+
end
|