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,58 @@
|
|
1
|
+
# Extensions to +nil+ which allow for more helpful error messages for people who
|
2
|
+
# are new to Rails.
|
3
|
+
#
|
4
|
+
# Ruby raises NoMethodError if you invoke a method on an object that does not
|
5
|
+
# respond to it:
|
6
|
+
#
|
7
|
+
# $ ruby -e nil.destroy
|
8
|
+
# -e:1: undefined method `destroy' for nil:NilClass (NoMethodError)
|
9
|
+
#
|
10
|
+
# With these extensions, if the method belongs to the public interface of the
|
11
|
+
# classes in NilClass::WHINERS the error message suggests which could be the
|
12
|
+
# actual intended class:
|
13
|
+
#
|
14
|
+
# $ script/runner nil.destroy
|
15
|
+
# ...
|
16
|
+
# You might have expected an instance of ActiveRecord::Base.
|
17
|
+
# ...
|
18
|
+
#
|
19
|
+
# NilClass#id exists in Ruby 1.8 (though it is deprecated). Since +id+ is a fundamental
|
20
|
+
# method of Active Record models NilClass#id is redefined as well to raise a RuntimeError
|
21
|
+
# and warn the user. She probably wanted a model database identifier and the 4
|
22
|
+
# returned by the original method could result in obscure bugs.
|
23
|
+
#
|
24
|
+
# The flag <tt>config.whiny_nils</tt> determines whether this feature is enabled.
|
25
|
+
# By default it is on in development and test modes, and it is off in production
|
26
|
+
# mode.
|
27
|
+
class NilClass
|
28
|
+
WHINERS = [::Array]
|
29
|
+
WHINERS << ::ActiveRecord::Base if defined? ::ActiveRecord
|
30
|
+
|
31
|
+
METHOD_CLASS_MAP = Hash.new
|
32
|
+
|
33
|
+
WHINERS.each do |klass|
|
34
|
+
methods = klass.public_instance_methods - public_instance_methods
|
35
|
+
class_name = klass.name
|
36
|
+
methods.each { |method| METHOD_CLASS_MAP[method.to_sym] = class_name }
|
37
|
+
end
|
38
|
+
|
39
|
+
# Raises a RuntimeError when you attempt to call +id+ on +nil+.
|
40
|
+
def id
|
41
|
+
raise RuntimeError, "Called id for nil, which would mistakenly be 4 -- if you really wanted the id of nil, use object_id", caller
|
42
|
+
end
|
43
|
+
|
44
|
+
private
|
45
|
+
def method_missing(method, *args, &block)
|
46
|
+
raise_nil_warning_for METHOD_CLASS_MAP[method], method, caller
|
47
|
+
end
|
48
|
+
|
49
|
+
# Raises a NoMethodError when you attempt to call a method on +nil+.
|
50
|
+
def raise_nil_warning_for(class_name = nil, selector = nil, with_caller = nil)
|
51
|
+
message = "You have a nil object when you didn't expect it!"
|
52
|
+
message << "\nYou might have expected an instance of #{class_name}." if class_name
|
53
|
+
message << "\nThe error occurred while evaluating nil.#{selector}" if selector
|
54
|
+
|
55
|
+
raise NoMethodError, message, with_caller || caller
|
56
|
+
end
|
57
|
+
end
|
58
|
+
|
@@ -0,0 +1 @@
|
|
1
|
+
require 'active_support'
|
@@ -0,0 +1,26 @@
|
|
1
|
+
Copyright (c) 2004 - 2005 Kirk Haines (khaines@enigo.com)
|
2
|
+
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
4
|
+
a copy of this software and associated documentation files (the
|
5
|
+
"Software"), to deal in the Software without restriction, including
|
6
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
7
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
8
|
+
permit persons to whom the Software is furnished to do so, subject to
|
9
|
+
the following conditions:
|
10
|
+
|
11
|
+
The above copyright notice and this permission notice shall be
|
12
|
+
included in all copies or substantial portions of the Software.
|
13
|
+
|
14
|
+
For details about the ISAAC algorithm itself, see:
|
15
|
+
|
16
|
+
http://burtleburtle.net/bob/rand/isaac.html
|
17
|
+
|
18
|
+
|
19
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
20
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
21
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
22
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
23
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
24
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
25
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
26
|
+
|
data/vendor/isaac/README
ADDED
@@ -0,0 +1,78 @@
|
|
1
|
+
Crypt::ISAAC README
|
2
|
+
============
|
3
|
+
|
4
|
+
ISAAC is a cryptographically secure PRNG for generating high quality random
|
5
|
+
numbers. Detailed information about the algorithm can be found at:
|
6
|
+
|
7
|
+
http://burtleburtle.net/bob/rand/isaac.html
|
8
|
+
|
9
|
+
This is a pure Ruby implementation of the algorithm. It is reasonably fast for
|
10
|
+
a pure Ruby implementation. On an 800Mhz PIII computer running Ruby 1.8.2,
|
11
|
+
and while the machine is also serving as general desktop, the library seems to
|
12
|
+
consistently generate between 15000 and 16000 random numbers per second.
|
13
|
+
|
14
|
+
Ruby uses the Mersenne Twister as its PRNG, and while this the Twister is
|
15
|
+
a fast PRNG that produces highly random numbers, it is not strong for
|
16
|
+
cryptographic purposes, nor is it suitable when one needs multiple
|
17
|
+
independent streams of random numbers. Crypt::ISAAC is suitable for either
|
18
|
+
purpose.
|
19
|
+
|
20
|
+
|
21
|
+
Requirements
|
22
|
+
------------
|
23
|
+
|
24
|
+
* Ruby 1.8 (should also run on 1.6.x)
|
25
|
+
|
26
|
+
|
27
|
+
Install
|
28
|
+
-------
|
29
|
+
|
30
|
+
If you have never installed Crypt::ISAAC, you may run the testsuite
|
31
|
+
to confirm that it works with:
|
32
|
+
|
33
|
+
# ruby setup.rb test
|
34
|
+
|
35
|
+
If you already have a version of Crypt::ISAAC installed, but want to
|
36
|
+
confirm this one before installing, run the test suite manually as
|
37
|
+
follows:
|
38
|
+
|
39
|
+
# ruby test/TC_ISAAC.rb local
|
40
|
+
|
41
|
+
When you are ready to install Crypt::ISAAC, type:
|
42
|
+
|
43
|
+
# ruby setup.rb install
|
44
|
+
|
45
|
+
This one step will install Crypt::ISAAC in your Ruby SITELIB. To test
|
46
|
+
the library after installation:
|
47
|
+
|
48
|
+
# ruby setup.rb test
|
49
|
+
|
50
|
+
Usage
|
51
|
+
-----
|
52
|
+
|
53
|
+
require 'crypt/ISAAC'
|
54
|
+
|
55
|
+
rng = Crypt::ISAAC.new
|
56
|
+
|
57
|
+
r1 = rng.rand() # returns a floating point between 0 and 1
|
58
|
+
r2 = rnd.rand(1000) # returns an integer between 0 and 999
|
59
|
+
|
60
|
+
rand() should work identically to the Kernel.rand().
|
61
|
+
|
62
|
+
Enjoy it. Let me know if you find anything that can be improved or that
|
63
|
+
needs to be fixed.
|
64
|
+
|
65
|
+
|
66
|
+
License
|
67
|
+
-------
|
68
|
+
|
69
|
+
The Crypt::ISAAC library is licensed with an MIT style licence.
|
70
|
+
See the LICENSE file for details. As for the ISAAC algorithm itself,
|
71
|
+
see:
|
72
|
+
|
73
|
+
http://burtleburtle.net/bob/rand/isaac.html
|
74
|
+
|
75
|
+
|
76
|
+
|
77
|
+
Kirk Haines
|
78
|
+
khaines@enigo.com
|
data/vendor/isaac/TODO
ADDED
@@ -0,0 +1,171 @@
|
|
1
|
+
module Crypt
|
2
|
+
|
3
|
+
# ISAAC is a fast, strong random number generator. Details on the
|
4
|
+
# algorithm can be found here: http://burtleburtle.net/bob/rand/isaac.html
|
5
|
+
# This provides a consistent and capable algorithm for producing
|
6
|
+
# independent streams of quality random numbers.
|
7
|
+
|
8
|
+
class ISAAC
|
9
|
+
|
10
|
+
attr_accessor :randrsl, :randcnt
|
11
|
+
attr_accessor :mm, :aa, :bb, :cc
|
12
|
+
|
13
|
+
# When a Crypt::ISAAC object is created, it needs to be seeded for
|
14
|
+
# random number generation. If the system has a /dev/urandom file,
|
15
|
+
# that will be used to do the seeding by default. If false is explictly
|
16
|
+
# passed when creating the object, it will instead use /dev/random to
|
17
|
+
# generate its seeds. Be warned that this may make for SLOW
|
18
|
+
# initialization.
|
19
|
+
# If the requested source (/dev/urandom or /dev/random) do not exist,
|
20
|
+
# the system will fall back to a simplistic initialization mechanism
|
21
|
+
# using the builtin Mersenne Twister PRNG.
|
22
|
+
|
23
|
+
def initialize(noblock = true)
|
24
|
+
@mm = []
|
25
|
+
@randrsl = []
|
26
|
+
# Best initialization of the generator would be by pulling
|
27
|
+
# numbers from /dev/random.
|
28
|
+
rnd_source = noblock ? '/dev/urandom' : '/dev/random'
|
29
|
+
if (FileTest.exist? rnd_source)
|
30
|
+
File.open(rnd_source,'r') do |r|
|
31
|
+
256.times do |t|
|
32
|
+
z = r.read(4)
|
33
|
+
x = z.unpack('V')[0]
|
34
|
+
@randrsl[t] = x
|
35
|
+
end
|
36
|
+
end
|
37
|
+
else
|
38
|
+
# If urandom isn't available, the standard Ruby PRNG makes an
|
39
|
+
# adequate fallback.
|
40
|
+
256.times do |t|
|
41
|
+
@randrsl[t] = Kernel.rand(4294967295)
|
42
|
+
end
|
43
|
+
end
|
44
|
+
randinit(true)
|
45
|
+
nil
|
46
|
+
end
|
47
|
+
|
48
|
+
# Works just like the standard rand() function. If called with an
|
49
|
+
# integer argument, rand() will return positive random number in
|
50
|
+
# the range of 0 to (argument - 1). If called without an integer
|
51
|
+
# argument, rand() returns a positive floating point number less than 1.
|
52
|
+
|
53
|
+
def rand(*num)
|
54
|
+
if (@randcnt == 1)
|
55
|
+
isaac
|
56
|
+
@randcnt = 256
|
57
|
+
end
|
58
|
+
@randcnt -= 1
|
59
|
+
if num[0].to_i > 0
|
60
|
+
@randrsl[@randcnt].modulo(num[0])
|
61
|
+
else
|
62
|
+
".#{@randrsl[@randcnt]}".to_f
|
63
|
+
end
|
64
|
+
end
|
65
|
+
|
66
|
+
def isaac
|
67
|
+
i = 0
|
68
|
+
x = 0
|
69
|
+
y = 0
|
70
|
+
|
71
|
+
@cc += 1
|
72
|
+
@bb += @cc
|
73
|
+
@bb & 0xffffffff
|
74
|
+
|
75
|
+
while (i < 256) do
|
76
|
+
x = @mm[i]
|
77
|
+
@aa = (@mm[(i + 128) & 255] + (@aa^(@aa << 13)) ) & 0xffffffff
|
78
|
+
@mm[i] = y = (@mm[(x>>2)&255] + @aa + @bb ) & 0xffffffff
|
79
|
+
@randrsl[i] = @bb = (@mm[(y>>10)&255] + x ) & 0xffffffff
|
80
|
+
i += 1
|
81
|
+
|
82
|
+
x = @mm[i]
|
83
|
+
@aa = (@mm[(i+128)&255] + (@aa^(0x03ffffff & (@aa >> 6))) ) & 0xffffffff
|
84
|
+
@mm[i] = y = (@mm[(x>>2)&255] + @aa + @bb ) & 0xffffffff
|
85
|
+
@randrsl[i] = @bb = (@mm[(y>>10)&255] + x ) & 0xffffffff
|
86
|
+
i += 1
|
87
|
+
|
88
|
+
x = @mm[i]
|
89
|
+
@aa = (@mm[(i + 128)&255] + (@aa^(@aa << 2)) ) & 0xffffffff
|
90
|
+
@mm[i] = y = (@mm[(x>>2)&255] + @aa + @bb ) & 0xffffffff
|
91
|
+
@randrsl[i] = @bb = (@mm[(y>>10)&255] + x ) & 0xffffffff
|
92
|
+
i += 1
|
93
|
+
|
94
|
+
x = @mm[i]
|
95
|
+
@aa = (@mm[(i+128)&255] + (@aa^(0x0000ffff & (@aa >> 16))) ) & 0xffffffff
|
96
|
+
@mm[i] = y = (@mm[(x>>2)&255] + @aa + @bb ) & 0xffffffff
|
97
|
+
@randrsl[i] = @bb = (@mm[(y>>10)&255] + x ) & 0xffffffff
|
98
|
+
i += 1
|
99
|
+
end
|
100
|
+
end
|
101
|
+
|
102
|
+
def randinit(flag)
|
103
|
+
i = 0
|
104
|
+
a = 0
|
105
|
+
b = 0
|
106
|
+
c = 0
|
107
|
+
d = 0
|
108
|
+
e = 0
|
109
|
+
f = 0
|
110
|
+
g = 0
|
111
|
+
@aa = @bb = @cc = 0
|
112
|
+
a = b = c = d = e = f = g = h = 0x9e3779b9
|
113
|
+
|
114
|
+
while (i < 4) do
|
115
|
+
a ^= b<<1; d += a; b += c
|
116
|
+
b ^= 0x3fffffff & (c>>2); e += b; c += d
|
117
|
+
c ^= d << 8; f += c; d += e
|
118
|
+
d ^= 0x0000ffff & (e >> 16); g += d; e += f
|
119
|
+
e ^= f << 10; h += e; f += g
|
120
|
+
f ^= 0x0fffffff & (g >> 4); a += f; g += h
|
121
|
+
g ^= h << 8; b += g; h += a
|
122
|
+
h ^= 0x007fffff & (a >> 9); c += h; a += b
|
123
|
+
i += 1
|
124
|
+
end
|
125
|
+
|
126
|
+
i = 0
|
127
|
+
while (i < 256) do
|
128
|
+
if (flag)
|
129
|
+
a+=@randrsl[i ].to_i; b+=@randrsl[i+1].to_i;
|
130
|
+
c+=@randrsl[i+2]; d+=@randrsl[i+3];
|
131
|
+
e+=@randrsl[i+4]; f+=@randrsl[i+5];
|
132
|
+
g+=@randrsl[i+6]; h+=@randrsl[i+7];
|
133
|
+
end
|
134
|
+
|
135
|
+
a^=b<<11; d+=a; b+=c;
|
136
|
+
b^=0x3fffffff & (c>>2); e+=b; c+=d;
|
137
|
+
c^=d<<8; f+=c; d+=e;
|
138
|
+
d^=0x0000ffff & (e>>16); g+=d; e+=f;
|
139
|
+
e^=f<<10; h+=e; f+=g;
|
140
|
+
f^=0x0fffffff & (g>>4); a+=f; g+=h;
|
141
|
+
g^=h<<8; b+=g; h+=a;
|
142
|
+
h^=0x007fffff & (a>>9); c+=h; a+=b;
|
143
|
+
@mm[i]=a;@mm[i+1]=b; @mm[i+2]=c; @mm[i+3]=d;
|
144
|
+
@mm[i+4]=e; @mm[i+5]=f; @mm[i+6]=g; @mm[i+7]=h;
|
145
|
+
i += 8
|
146
|
+
end
|
147
|
+
|
148
|
+
if flag
|
149
|
+
i = 0
|
150
|
+
while (i < 256)
|
151
|
+
a+=@mm[i ]; b+=@mm[i+1]; c+=@mm[i+2]; d+=@mm[i+3];
|
152
|
+
e+=@mm[i+4]; f+=@mm[i+5]; g+=@mm[i+6]; h+=@mm[i+7];
|
153
|
+
a^=b<<11; d+=a; b+=c;
|
154
|
+
b^=0x3fffffff & (c>>2); e+=b; c+=d;
|
155
|
+
c^=d<<8; f+=c; d+=e;
|
156
|
+
d^=0x0000ffff & (e>>16); g+=d; e+=f;
|
157
|
+
e^=f<<10; h+=e; f+=g;
|
158
|
+
f^=0x0fffffff & (g>>4); a+=f; g+=h;
|
159
|
+
g^=h<<8; b+=g; h+=a;
|
160
|
+
h^=0x007fffff & (a>>9); c+=h; a+=b;
|
161
|
+
@mm[i ]=a; @mm[i+1]=b; @mm[i+2]=c; @mm[i+3]=d;
|
162
|
+
@mm[i+4]=e; @mm[i+5]=f; @mm[i+6]=g; @mm[i+7]=h;
|
163
|
+
i += 8
|
164
|
+
end
|
165
|
+
end
|
166
|
+
|
167
|
+
isaac()
|
168
|
+
@randcnt=256; # /* prepare to use the first set of results */
|
169
|
+
end
|
170
|
+
end
|
171
|
+
end
|
@@ -0,0 +1,39 @@
|
|
1
|
+
#####
|
2
|
+
# Crypt::ISAAC
|
3
|
+
# http://rubyforge.org/projects/crypt-isaac/
|
4
|
+
# Copyright 2004-2005 Kirk Haines
|
5
|
+
#
|
6
|
+
# Licensed under the Ruby License. See the README for details.
|
7
|
+
#
|
8
|
+
#####
|
9
|
+
|
10
|
+
spec = Gem::Specification.new do |s|
|
11
|
+
s.name = 'Crypt::ISAAC'
|
12
|
+
s.version = '0.9.1'
|
13
|
+
s.summary = %q(Ruby implementation of the ISAAC PRNG)
|
14
|
+
s.platform = Gem::Platform::RUBY
|
15
|
+
|
16
|
+
s.has_rdoc = true
|
17
|
+
s.rdoc_options = %w(--title Crypt::ISAAC --main README --line-numbers)
|
18
|
+
s.extra_rdoc_files = %w(README)
|
19
|
+
|
20
|
+
s.files = %w(README LICENSE TODO VERSIONS setup.rb isaac.gemspec test/TC_ISAAC.rb crypt/ISAAC.rb)
|
21
|
+
|
22
|
+
s.test_files = ['test/TC_ISAAC.rb']
|
23
|
+
|
24
|
+
s.require_paths = %w(crypt)
|
25
|
+
|
26
|
+
s.author = %q(Kirk Haines)
|
27
|
+
s.email = %q(khaines@enigo.com)
|
28
|
+
s.rubyforge_project = %q(crypt-isaac)
|
29
|
+
s.homepage = %q(http://rubyforge.org/projects/crypt-isaac)
|
30
|
+
description = []
|
31
|
+
File.open("README") do |file|
|
32
|
+
file.each do |line|
|
33
|
+
line.chomp!
|
34
|
+
break if line.empty?
|
35
|
+
description << "#{line.gsub(/\[\d\]/, '')}"
|
36
|
+
end
|
37
|
+
end
|
38
|
+
s.description = description[1..-1].join(" ")
|
39
|
+
end
|
@@ -0,0 +1,596 @@
|
|
1
|
+
require 'rbconfig'
|
2
|
+
require 'fileutils'
|
3
|
+
require 'pp'
|
4
|
+
require 'optparse'
|
5
|
+
require 'yaml'
|
6
|
+
|
7
|
+
module Package
|
8
|
+
|
9
|
+
class SpecificationError < StandardError; end
|
10
|
+
# forward declaration of the specification classes so we can keep all
|
11
|
+
# constants here
|
12
|
+
class PackageSpecification_1_0; end
|
13
|
+
# Default semantics
|
14
|
+
PackageSpecification = PackageSpecification_1_0
|
15
|
+
|
16
|
+
#TODO: could get this collected automatically with Class#inherited etc
|
17
|
+
SEMANTICS = { "1.0" => PackageSpecification_1_0 }
|
18
|
+
|
19
|
+
KINDS = [
|
20
|
+
:bin, :lib, :ext, :data, :conf, :doc
|
21
|
+
]
|
22
|
+
|
23
|
+
#{{{ list of files to be ignored stolen from setup.rb
|
24
|
+
mapping = { '.' => '\.', '$' => '\$', '#' => '\#', '*' => '.*' }
|
25
|
+
ignore_files = %w[core RCSLOG tags TAGS .make.state .nse_depinfo
|
26
|
+
#* .#* cvslog.* ,* .del-* *.olb *~ *.old *.bak *.BAK *.orig *.rej _$* *$
|
27
|
+
*.org *.in .* ]
|
28
|
+
#end of robbery
|
29
|
+
IGNORE_FILES = ignore_files.map do |x|
|
30
|
+
Regexp.new('\A' + x.gsub(/[\.\$\#\*]/){|c| mapping[c]} + '\z')
|
31
|
+
end
|
32
|
+
|
33
|
+
def self.config(name)
|
34
|
+
# XXX use pathname
|
35
|
+
prefix = Regexp.quote(Config::CONFIG["prefix"])
|
36
|
+
exec_prefix = Regexp.quote(Config::CONFIG["exec_prefix"])
|
37
|
+
Config::CONFIG[name].gsub(/\A\/?(#{prefix}|#{exec_prefix})\/?/, '')
|
38
|
+
end
|
39
|
+
|
40
|
+
SITE_DIRS = {
|
41
|
+
:bin => config("bindir"),
|
42
|
+
:lib => config("sitelibdir"),
|
43
|
+
:ext => config("sitearchdir"),
|
44
|
+
:data => config("datadir"),
|
45
|
+
:conf => config("sysconfdir"),
|
46
|
+
:doc => File.join(config("datadir"), "doc"),
|
47
|
+
}
|
48
|
+
|
49
|
+
VENDOR_DIRS = {
|
50
|
+
:bin => config("bindir"),
|
51
|
+
:lib => config("rubylibdir"),
|
52
|
+
:ext => config("archdir"),
|
53
|
+
:data => config("datadir"),
|
54
|
+
:conf => config("sysconfdir"),
|
55
|
+
:doc => File.join(config("datadir"), "doc"),
|
56
|
+
}
|
57
|
+
|
58
|
+
MODES = {
|
59
|
+
:bin => 0755,
|
60
|
+
:lib => 0644,
|
61
|
+
:ext => 0755, # was: 0555,
|
62
|
+
:data => 0644,
|
63
|
+
:conf => 0644,
|
64
|
+
:doc => 0644,
|
65
|
+
}
|
66
|
+
|
67
|
+
|
68
|
+
SETUP_OPTIONS = {:parse_cmdline => true, :load_conf => true, :run_tasks => true}
|
69
|
+
|
70
|
+
def self.setup(version, options = {}, &instructions)
|
71
|
+
prefixes = dirs = nil
|
72
|
+
options = SETUP_OPTIONS.dup.update(options)
|
73
|
+
|
74
|
+
if options[:load_conf] && File.exist?("config.save")
|
75
|
+
config = YAML.load_file "config.save"
|
76
|
+
prefixes = config[:prefixes]
|
77
|
+
dirs = config[:dirs]
|
78
|
+
end
|
79
|
+
|
80
|
+
pkg = package_specification_with_semantics(version).new(prefixes, dirs)
|
81
|
+
pkg.parse_command_line if options[:parse_cmdline]
|
82
|
+
pkg.instance_eval(&instructions)
|
83
|
+
|
84
|
+
pkg.run_tasks if options[:run_tasks]
|
85
|
+
|
86
|
+
# pkg.install
|
87
|
+
pkg
|
88
|
+
end
|
89
|
+
|
90
|
+
def self.package_specification_with_semantics(version)
|
91
|
+
#XXX: implement the full x.y(.z)? semantics
|
92
|
+
r = SEMANTICS[version]
|
93
|
+
raise SpecificationError, "Unknown version #{version}." unless r
|
94
|
+
r
|
95
|
+
end
|
96
|
+
|
97
|
+
|
98
|
+
module Actions
|
99
|
+
|
100
|
+
class InstallFile
|
101
|
+
|
102
|
+
attr_reader :source, :destination, :mode
|
103
|
+
|
104
|
+
def initialize(source, destination, mode, options)
|
105
|
+
@source = source
|
106
|
+
@destination = destination
|
107
|
+
@mode = mode
|
108
|
+
@options = options
|
109
|
+
end
|
110
|
+
|
111
|
+
def install
|
112
|
+
FileUtils.install @source, File.join(@options.destdir, @destination),
|
113
|
+
{:verbose => @options.verbose,
|
114
|
+
:noop => @options.noop, :mode => @mode }
|
115
|
+
end
|
116
|
+
|
117
|
+
def hash
|
118
|
+
[@source.hash, @destination.hash].hash
|
119
|
+
end
|
120
|
+
|
121
|
+
def eql?(other)
|
122
|
+
self.class == other.class &&
|
123
|
+
@source == other.source &&
|
124
|
+
@destination == other.destination &&
|
125
|
+
@mode == other.mode
|
126
|
+
end
|
127
|
+
|
128
|
+
def <=>(other)
|
129
|
+
FULL_ORDER[self, other] || self.destination <=> other.destination
|
130
|
+
end
|
131
|
+
end
|
132
|
+
|
133
|
+
class MkDir
|
134
|
+
|
135
|
+
attr_reader :directory
|
136
|
+
|
137
|
+
def initialize(directory, options)
|
138
|
+
@directory = directory
|
139
|
+
@options = options
|
140
|
+
end
|
141
|
+
|
142
|
+
def install
|
143
|
+
FileUtils.mkdir_p File.join(@options.destdir, @directory),
|
144
|
+
{:verbose => @options.verbose,
|
145
|
+
:noop => @options.noop }
|
146
|
+
end
|
147
|
+
|
148
|
+
def <=>(other)
|
149
|
+
FULL_ORDER[self, other] || self.directory <=> other.directory
|
150
|
+
end
|
151
|
+
end
|
152
|
+
|
153
|
+
class FixShebang
|
154
|
+
|
155
|
+
attr_reader :destination
|
156
|
+
|
157
|
+
def initialize(destination, options)
|
158
|
+
@options = options
|
159
|
+
@destination = destination
|
160
|
+
end
|
161
|
+
|
162
|
+
def install
|
163
|
+
path = File.join(@options.destdir, @destination)
|
164
|
+
fix_shebang(path)
|
165
|
+
end
|
166
|
+
|
167
|
+
# taken from rpa-base, originally based on setup.rb's
|
168
|
+
# modify: #!/usr/bin/ruby
|
169
|
+
# modify: #! /usr/bin/ruby
|
170
|
+
# modify: #!ruby
|
171
|
+
# not modify: #!/usr/bin/env ruby
|
172
|
+
SHEBANG_RE = /\A\#!\s*\S*ruby\S*/
|
173
|
+
|
174
|
+
#TODO allow the ruby-prog to be placed in the shebang line to be passed as
|
175
|
+
# an option
|
176
|
+
def fix_shebang(path)
|
177
|
+
tmpfile = path + '.tmp'
|
178
|
+
begin
|
179
|
+
#XXX: needed at all?
|
180
|
+
# it seems that FileUtils doesn't expose its default output
|
181
|
+
# @fileutils_output = $stderr
|
182
|
+
# we might want to allow this to be redirected.
|
183
|
+
$stderr.puts "shebang:open #{tmpfile}" if @options.verbose
|
184
|
+
unless @options.noop
|
185
|
+
File.open(path) do |r|
|
186
|
+
File.open(tmpfile, 'w', 0755) do |w|
|
187
|
+
first = r.gets
|
188
|
+
return unless SHEBANG_RE =~ first
|
189
|
+
w.print first.sub(SHEBANG_RE, '#!' + Config::CONFIG['ruby-prog'])
|
190
|
+
w.write r.read
|
191
|
+
end
|
192
|
+
end
|
193
|
+
end
|
194
|
+
FileUtils.mv(tmpfile, path, :verbose => @options.verbose,
|
195
|
+
:noop => @options.noop)
|
196
|
+
ensure
|
197
|
+
FileUtils.rm_f(tmpfile, :verbose => @options.verbose,
|
198
|
+
:noop => @options.noop)
|
199
|
+
end
|
200
|
+
end
|
201
|
+
|
202
|
+
def <=>(other)
|
203
|
+
FULL_ORDER[self, other] || self.destination <=> other.destination
|
204
|
+
end
|
205
|
+
|
206
|
+
def hash
|
207
|
+
@destination.hash
|
208
|
+
end
|
209
|
+
|
210
|
+
def eql?(other)
|
211
|
+
self.class == other.class && self.destination == other.destination
|
212
|
+
end
|
213
|
+
end
|
214
|
+
|
215
|
+
order = [MkDir, InstallFile, FixShebang]
|
216
|
+
FULL_ORDER = lambda do |me, other|
|
217
|
+
a, b = order.index(me.class), order.index(other.class)
|
218
|
+
if a && b
|
219
|
+
(r = a - b) == 0 ? nil : r
|
220
|
+
else
|
221
|
+
-1 # arbitrary
|
222
|
+
end
|
223
|
+
end
|
224
|
+
|
225
|
+
class ActionList < Array
|
226
|
+
|
227
|
+
def directories!(options)
|
228
|
+
dirnames = []
|
229
|
+
map! { |d|
|
230
|
+
if d.kind_of?(InstallFile) && !dirnames.include?(File.dirname(d.destination))
|
231
|
+
dirnames << File.dirname(d.destination)
|
232
|
+
[MkDir.new(File.dirname(d.destination), options), d]
|
233
|
+
else
|
234
|
+
d
|
235
|
+
end
|
236
|
+
}
|
237
|
+
flatten!
|
238
|
+
end
|
239
|
+
|
240
|
+
def run(task)
|
241
|
+
each { |action| action.__send__ task }
|
242
|
+
end
|
243
|
+
end
|
244
|
+
|
245
|
+
end # module Actions
|
246
|
+
|
247
|
+
Options = Struct.new(:noop, :verbose, :destdir)
|
248
|
+
|
249
|
+
class PackageSpecification_1_0
|
250
|
+
|
251
|
+
TASKS = %w[config setup install test show]
|
252
|
+
# default options for translate(foo => bar)
|
253
|
+
TRANSLATE_DEFAULT_OPTIONS = { :inherit => true }
|
254
|
+
|
255
|
+
def self.declare_file_type(args, &handle_arg)
|
256
|
+
str_arr_p = lambda{|x| Array === x && x.all?{|y| String === y}}
|
257
|
+
|
258
|
+
# strict type checking --- we don't want this to be extended arbitrarily
|
259
|
+
unless args.size == 1 && Hash === args.first &&
|
260
|
+
args.first.all?{|f,r| [Proc, String, NilClass].include?(r.class) &&
|
261
|
+
(String === f || str_arr_p[f])} or
|
262
|
+
args.all?{|x| String === x || str_arr_p[x]}
|
263
|
+
raise SpecificationError,
|
264
|
+
"Unspecified semantics for the given arguments: #{args.inspect}"
|
265
|
+
end
|
266
|
+
|
267
|
+
if args.size == 1 && Hash === args.first
|
268
|
+
args.first.to_a.each do |file, rename_info|
|
269
|
+
if Array === file
|
270
|
+
# ignoring boring files
|
271
|
+
handle_arg.call(file, true, rename_info)
|
272
|
+
else
|
273
|
+
# we do want "boring" files given explicitly
|
274
|
+
handle_arg.call([file], false, rename_info)
|
275
|
+
end
|
276
|
+
end
|
277
|
+
else
|
278
|
+
args.each do |a|
|
279
|
+
if Array === a
|
280
|
+
a.each{|file| handle_arg.call(file, true, nil)}
|
281
|
+
else
|
282
|
+
handle_arg.call(a, false, nil)
|
283
|
+
end
|
284
|
+
end
|
285
|
+
end
|
286
|
+
end
|
287
|
+
|
288
|
+
#{{{ define the file tagging methods
|
289
|
+
KINDS.each { |kind|
|
290
|
+
define_method(kind) { |*args| # if this were 1.9 we could also take a block
|
291
|
+
bin_callback = lambda do |kind_, type, dest, options|
|
292
|
+
next if kind_ != :bin || type == :dir
|
293
|
+
@actions << Actions::FixShebang.new(dest, options)
|
294
|
+
end
|
295
|
+
#TODO: refactor
|
296
|
+
self.class.declare_file_type(args) do |files, ignore_p, opt_rename_info|
|
297
|
+
files.each do |file|
|
298
|
+
next if ignore_p && IGNORE_FILES.any?{|re| re.match(file)}
|
299
|
+
add_file(kind, file, opt_rename_info, &bin_callback)
|
300
|
+
end
|
301
|
+
end
|
302
|
+
}
|
303
|
+
}
|
304
|
+
|
305
|
+
def unit_test(*files)
|
306
|
+
@unit_tests.concat files.flatten
|
307
|
+
end
|
308
|
+
|
309
|
+
attr_accessor :actions, :options
|
310
|
+
|
311
|
+
def self.metadata(name)
|
312
|
+
define_method(name) { |*args|
|
313
|
+
if args.size == 1
|
314
|
+
@metadata[name] = args.first
|
315
|
+
end
|
316
|
+
@metadata[name]
|
317
|
+
}
|
318
|
+
end
|
319
|
+
|
320
|
+
metadata :name
|
321
|
+
metadata :version
|
322
|
+
metadata :author
|
323
|
+
|
324
|
+
|
325
|
+
def translate_dir(kind, dir)
|
326
|
+
replaced_dir_parts = dir.split(%r{/})
|
327
|
+
kept_dir_parts = []
|
328
|
+
loop do
|
329
|
+
replaced_path = replaced_dir_parts.join("/")
|
330
|
+
target, options = @translate[kind][replaced_path]
|
331
|
+
options ||= TRANSLATE_DEFAULT_OPTIONS
|
332
|
+
if target && (replaced_path == dir || options[:inherit])
|
333
|
+
dir = (target != '' ? File.join(target, *kept_dir_parts) :
|
334
|
+
File.join(*kept_dir_parts))
|
335
|
+
break
|
336
|
+
end
|
337
|
+
break if replaced_dir_parts.empty?
|
338
|
+
kept_dir_parts.unshift replaced_dir_parts.pop
|
339
|
+
end
|
340
|
+
dir
|
341
|
+
end
|
342
|
+
|
343
|
+
def add_file(kind, filename, new_filename_info, &callback)
|
344
|
+
#TODO: refactor!!!
|
345
|
+
if File.directory? filename #XXX setup.rb and rpa-base defined File.dir?
|
346
|
+
# to cope with some win32 issue
|
347
|
+
dir = filename.sub(/\A\.\//, "").sub(/\/\z/, "")
|
348
|
+
dest = File.join(@prefixes[kind], @dirs[kind], translate_dir(kind, dir))
|
349
|
+
@actions << Actions::MkDir.new(dest, @options)
|
350
|
+
callback.call(kind, :dir, dest, @options) if block_given?
|
351
|
+
else
|
352
|
+
if new_filename_info
|
353
|
+
case new_filename_info
|
354
|
+
when Proc
|
355
|
+
dest_name = new_filename_info.call(filename.dup)
|
356
|
+
else
|
357
|
+
dest_name = new_filename_info.dup
|
358
|
+
end
|
359
|
+
else
|
360
|
+
dest_name = filename.dup
|
361
|
+
end
|
362
|
+
|
363
|
+
dirname = File.dirname(dest_name)
|
364
|
+
dirname = "" if dirname == "."
|
365
|
+
dest_name = File.join(translate_dir(kind, dirname), File.basename(dest_name))
|
366
|
+
|
367
|
+
dest = File.join(@prefixes[kind], @dirs[kind], dest_name)
|
368
|
+
@actions << Actions::InstallFile.new(filename, dest, MODES[kind], @options)
|
369
|
+
callback.call(kind, :file, dest, @options) if block_given?
|
370
|
+
end
|
371
|
+
end
|
372
|
+
|
373
|
+
def initialize(prefixes = nil, dirs = nil)
|
374
|
+
@prefix = Config::CONFIG["prefix"].gsub(/\A\//, '')
|
375
|
+
@translate = {}
|
376
|
+
@prefixes = (prefixes || {}).dup
|
377
|
+
KINDS.each { |kind|
|
378
|
+
@prefixes[kind] = @prefix unless prefixes
|
379
|
+
@translate[kind] = {}
|
380
|
+
}
|
381
|
+
|
382
|
+
@dirs = (dirs || {}).dup
|
383
|
+
@dirs.update SITE_DIRS unless dirs
|
384
|
+
|
385
|
+
@actions = Actions::ActionList.new
|
386
|
+
|
387
|
+
@metadata = {}
|
388
|
+
@unit_tests = []
|
389
|
+
|
390
|
+
@options = Options.new
|
391
|
+
@options.verbose = true
|
392
|
+
@options.noop = false # XXX for testing
|
393
|
+
@options.destdir = ''
|
394
|
+
|
395
|
+
@tasks = []
|
396
|
+
end
|
397
|
+
|
398
|
+
def aoki
|
399
|
+
(KINDS - [:ext]).each { |kind|
|
400
|
+
translate(kind, kind.to_s => "", :inherit => true)
|
401
|
+
__send__ kind, Dir["#{kind}/**/*"]
|
402
|
+
}
|
403
|
+
translate(:ext, "ext/*" => "", :inherit => true)
|
404
|
+
ext Dir["ext/**/*.#{Config::CONFIG['DLEXT']}"]
|
405
|
+
end
|
406
|
+
|
407
|
+
def install
|
408
|
+
puts "Installing #{name || "unknown package"} #{version}..." if options.verbose
|
409
|
+
|
410
|
+
actions.uniq!
|
411
|
+
actions.sort!
|
412
|
+
actions.directories!(options)
|
413
|
+
|
414
|
+
#pp self
|
415
|
+
|
416
|
+
actions.run :install
|
417
|
+
end
|
418
|
+
|
419
|
+
def test
|
420
|
+
unless @unit_tests.empty?
|
421
|
+
puts "Testing #{name || "unknown package"} #{version}..." if options.verbose
|
422
|
+
require 'test/unit'
|
423
|
+
unless options.noop
|
424
|
+
t = Test::Unit::AutoRunner.new(true)
|
425
|
+
t.process_args(@unit_tests)
|
426
|
+
t.run
|
427
|
+
end
|
428
|
+
end
|
429
|
+
end
|
430
|
+
|
431
|
+
def config
|
432
|
+
File.open("config.save", "w") { |f|
|
433
|
+
YAML.dump({:prefixes => @prefixes, :dirs => @dirs}, f)
|
434
|
+
}
|
435
|
+
end
|
436
|
+
|
437
|
+
def show
|
438
|
+
KINDS.each { |kind|
|
439
|
+
puts "#{kind}\t#{File.join(options.destdir, @prefixes[kind], @dirs[kind])}"
|
440
|
+
}
|
441
|
+
end
|
442
|
+
|
443
|
+
def translate(kind, additional_translations)
|
444
|
+
default_opts = TRANSLATE_DEFAULT_OPTIONS.dup
|
445
|
+
key_val_pairs = additional_translations.to_a
|
446
|
+
option_pairs = key_val_pairs.select{|(k,v)| Symbol === k}
|
447
|
+
default_opts.update(Hash[*option_pairs.flatten])
|
448
|
+
|
449
|
+
(key_val_pairs - option_pairs).each do |key, val|
|
450
|
+
add_translation(kind, key, val, default_opts)
|
451
|
+
end
|
452
|
+
end
|
453
|
+
|
454
|
+
def add_translation(kind, src, dest, options)
|
455
|
+
if is_glob?(src)
|
456
|
+
dirs = expand_dir_glob(src)
|
457
|
+
else
|
458
|
+
dirs = [src]
|
459
|
+
end
|
460
|
+
dirs.each do |dirname|
|
461
|
+
dirname = dirname.sub(%r{\A\./}, "").sub(%r{/\z}, "")
|
462
|
+
@translate[kind].update({dirname => [dest, options]})
|
463
|
+
end
|
464
|
+
end
|
465
|
+
|
466
|
+
def is_glob?(x)
|
467
|
+
/(^|[^\\])[*?{\[]/.match(x)
|
468
|
+
end
|
469
|
+
|
470
|
+
def expand_dir_glob(src)
|
471
|
+
Dir[src].select{|x| File.directory?(x)}
|
472
|
+
end
|
473
|
+
|
474
|
+
def clean_path(path)
|
475
|
+
path.gsub(/\A\//, '').gsub(/\/+\Z/, '').squeeze("/")
|
476
|
+
end
|
477
|
+
|
478
|
+
def parse_command_line
|
479
|
+
opts = OptionParser.new(nil, 24, ' ') { |opts|
|
480
|
+
opts.banner = "Usage: setup.rb [options] [task]"
|
481
|
+
|
482
|
+
opts.separator ""
|
483
|
+
opts.separator "Tasks:"
|
484
|
+
opts.separator " config configures paths"
|
485
|
+
opts.separator " show shows paths"
|
486
|
+
opts.separator " setup compiles ruby extentions and others XXX"
|
487
|
+
opts.separator " install installs files"
|
488
|
+
opts.separator " test runs unit tests"
|
489
|
+
|
490
|
+
|
491
|
+
opts.separator ""
|
492
|
+
opts.separator "Specific options:"
|
493
|
+
|
494
|
+
opts.on "--prefix=PREFIX",
|
495
|
+
"path prefix of target environment [#@prefix]" do |prefix|
|
496
|
+
@prefix.replace clean_path(prefix) # Shared!
|
497
|
+
end
|
498
|
+
|
499
|
+
opts.separator ""
|
500
|
+
|
501
|
+
KINDS.each { |kind|
|
502
|
+
opts.on "--#{kind}prefix=PREFIX",
|
503
|
+
"path prefix for #{kind} files [#{@prefixes[kind]}]" do |prefix|
|
504
|
+
@prefixes[kind] = clean_path(prefix)
|
505
|
+
end
|
506
|
+
}
|
507
|
+
|
508
|
+
opts.separator ""
|
509
|
+
|
510
|
+
KINDS.each { |kind|
|
511
|
+
opts.on "--#{kind}dir=PREFIX",
|
512
|
+
"directory for #{kind} files [#{@dirs[kind]}]" do |prefix|
|
513
|
+
@dirs[kind] = clean_path(prefix)
|
514
|
+
end
|
515
|
+
}
|
516
|
+
|
517
|
+
opts.separator ""
|
518
|
+
|
519
|
+
KINDS.each { |kind|
|
520
|
+
opts.on "--#{kind}=PREFIX",
|
521
|
+
"absolute directory for #{kind} files [#{File.join(@prefixes[kind], @dirs[kind])}]" do |prefix|
|
522
|
+
@prefixes[kind] = clean_path(prefix)
|
523
|
+
end
|
524
|
+
}
|
525
|
+
|
526
|
+
opts.separator ""
|
527
|
+
opts.separator "Predefined path configurations:"
|
528
|
+
opts.on "--site", "install into site-local directories (default)" do
|
529
|
+
@dirs.update SITE_DIRS
|
530
|
+
end
|
531
|
+
|
532
|
+
opts.on "--vendor", "install into distribution directories (for packagers)" do
|
533
|
+
@dirs.update VENDOR_DIRS
|
534
|
+
end
|
535
|
+
|
536
|
+
opts.separator ""
|
537
|
+
opts.separator "General options:"
|
538
|
+
|
539
|
+
opts.on "--destdir=DESTDIR",
|
540
|
+
"install all files relative to DESTDIR (/)" do |destdir|
|
541
|
+
@options.destdir = destdir
|
542
|
+
end
|
543
|
+
|
544
|
+
opts.on "--dry-run", "only display what to do if given [#{@options.noop}]" do
|
545
|
+
@options.noop = true
|
546
|
+
end
|
547
|
+
|
548
|
+
opts.on "--no-harm", "only display what to do if given" do
|
549
|
+
@options.noop = true
|
550
|
+
end
|
551
|
+
|
552
|
+
opts.on "--[no-]verbose", "output messages verbosely [#{@options.verbose}]" do |verbose|
|
553
|
+
@options.verbose = verbose
|
554
|
+
end
|
555
|
+
|
556
|
+
opts.on_tail("-h", "--help", "Show this message") do
|
557
|
+
puts opts
|
558
|
+
exit
|
559
|
+
end
|
560
|
+
}
|
561
|
+
|
562
|
+
opts.parse! ARGV
|
563
|
+
|
564
|
+
if (ARGV - TASKS).empty? # Only existing tasks?
|
565
|
+
@tasks = ARGV
|
566
|
+
@tasks = ["install"] if @tasks.empty?
|
567
|
+
else
|
568
|
+
abort "Unknown task(s) #{(ARGV-TASKS).join ", "}."
|
569
|
+
end
|
570
|
+
end
|
571
|
+
|
572
|
+
def run_tasks
|
573
|
+
@tasks.each { |task| __send__ task }
|
574
|
+
end
|
575
|
+
end
|
576
|
+
|
577
|
+
end # module Package
|
578
|
+
|
579
|
+
#XXX incomplete setup.rb support for the hooks
|
580
|
+
require 'rbconfig'
|
581
|
+
def config(x)
|
582
|
+
Config::CONFIG[x]
|
583
|
+
end
|
584
|
+
|
585
|
+
#{{{ small example
|
586
|
+
if $0 == __FILE__
|
587
|
+
Package.setup("1.0") {
|
588
|
+
name "Crypt::ISAAC"
|
589
|
+
|
590
|
+
lib "crypt/ISAAC.rb"
|
591
|
+
|
592
|
+
unit_test Dir["test/TC*.rb"]
|
593
|
+
}
|
594
|
+
end
|
595
|
+
|
596
|
+
# vim: sw=2 sts=2 et ts=8
|