mack-active_record 0.8.1 → 0.8.2
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/gems/activerecord-2.2.2/lib/active_record/aggregations.rb +261 -0
- data/lib/gems/activerecord-2.2.2/lib/active_record/association_preload.rb +374 -0
- data/lib/gems/activerecord-2.2.2/lib/active_record/associations/association_collection.rb +453 -0
- data/lib/gems/activerecord-2.2.2/lib/active_record/associations/association_proxy.rb +272 -0
- data/lib/gems/activerecord-2.2.2/lib/active_record/associations/belongs_to_association.rb +58 -0
- data/lib/gems/activerecord-2.2.2/lib/active_record/associations/belongs_to_polymorphic_association.rb +49 -0
- data/lib/gems/activerecord-2.2.2/lib/active_record/associations/has_and_belongs_to_many_association.rb +121 -0
- data/lib/gems/activerecord-2.2.2/lib/active_record/associations/has_many_association.rb +121 -0
- data/lib/gems/activerecord-2.2.2/lib/active_record/associations/has_many_through_association.rb +256 -0
- data/lib/gems/activerecord-2.2.2/lib/active_record/associations/has_one_association.rb +115 -0
- data/lib/gems/activerecord-2.2.2/lib/active_record/associations/has_one_through_association.rb +31 -0
- data/lib/gems/activerecord-2.2.2/lib/active_record/associations.rb +2227 -0
- data/lib/gems/activerecord-2.2.2/lib/active_record/attribute_methods.rb +387 -0
- data/lib/gems/activerecord-2.2.2/lib/active_record/base.rb +2967 -0
- data/lib/gems/activerecord-2.2.2/lib/active_record/calculations.rb +299 -0
- data/lib/gems/activerecord-2.2.2/lib/active_record/callbacks.rb +331 -0
- data/lib/gems/activerecord-2.2.2/lib/active_record/connection_adapters/abstract/connection_pool.rb +355 -0
- data/lib/gems/activerecord-2.2.2/lib/active_record/connection_adapters/abstract/connection_specification.rb +136 -0
- data/lib/gems/activerecord-2.2.2/lib/active_record/connection_adapters/abstract/database_statements.rb +201 -0
- data/lib/gems/activerecord-2.2.2/lib/active_record/connection_adapters/abstract/query_cache.rb +94 -0
- data/lib/gems/activerecord-2.2.2/lib/active_record/connection_adapters/abstract/quoting.rb +69 -0
- data/lib/gems/activerecord-2.2.2/lib/active_record/connection_adapters/abstract/schema_definitions.rb +705 -0
- data/lib/gems/activerecord-2.2.2/lib/active_record/connection_adapters/abstract/schema_statements.rb +434 -0
- data/lib/gems/activerecord-2.2.2/lib/active_record/connection_adapters/abstract_adapter.rb +210 -0
- data/lib/gems/activerecord-2.2.2/lib/active_record/connection_adapters/mysql_adapter.rb +585 -0
- data/lib/gems/activerecord-2.2.2/lib/active_record/connection_adapters/postgresql_adapter.rb +1065 -0
- data/lib/gems/activerecord-2.2.2/lib/active_record/connection_adapters/sqlite3_adapter.rb +34 -0
- data/lib/gems/activerecord-2.2.2/lib/active_record/connection_adapters/sqlite_adapter.rb +418 -0
- data/lib/gems/activerecord-2.2.2/lib/active_record/dirty.rb +183 -0
- data/lib/gems/activerecord-2.2.2/lib/active_record/dynamic_finder_match.rb +41 -0
- data/lib/gems/activerecord-2.2.2/lib/active_record/fixtures.rb +998 -0
- data/lib/gems/activerecord-2.2.2/lib/active_record/i18n_interpolation_deprecation.rb +26 -0
- data/lib/gems/activerecord-2.2.2/lib/active_record/locale/en.yml +54 -0
- data/lib/gems/activerecord-2.2.2/lib/active_record/locking/optimistic.rb +148 -0
- data/lib/gems/activerecord-2.2.2/lib/active_record/locking/pessimistic.rb +77 -0
- data/lib/gems/activerecord-2.2.2/lib/active_record/migration.rb +560 -0
- data/lib/gems/activerecord-2.2.2/lib/active_record/named_scope.rb +181 -0
- data/lib/gems/activerecord-2.2.2/lib/active_record/observer.rb +197 -0
- data/lib/gems/activerecord-2.2.2/lib/active_record/query_cache.rb +21 -0
- data/lib/gems/activerecord-2.2.2/lib/active_record/reflection.rb +307 -0
- data/lib/gems/activerecord-2.2.2/lib/active_record/schema.rb +51 -0
- data/lib/gems/activerecord-2.2.2/lib/active_record/schema_dumper.rb +177 -0
- data/lib/gems/activerecord-2.2.2/lib/active_record/serialization.rb +98 -0
- data/lib/gems/activerecord-2.2.2/lib/active_record/serializers/json_serializer.rb +80 -0
- data/lib/gems/activerecord-2.2.2/lib/active_record/serializers/xml_serializer.rb +338 -0
- data/lib/gems/activerecord-2.2.2/lib/active_record/test_case.rb +60 -0
- data/lib/gems/activerecord-2.2.2/lib/active_record/timestamp.rb +41 -0
- data/lib/gems/activerecord-2.2.2/lib/active_record/transactions.rb +185 -0
- data/lib/gems/activerecord-2.2.2/lib/active_record/validations.rb +1061 -0
- data/lib/gems/activerecord-2.2.2/lib/active_record/version.rb +9 -0
- data/lib/gems/activerecord-2.2.2/lib/active_record.rb +81 -0
- data/lib/gems/activerecord-2.2.2/lib/activerecord.rb +1 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/base64.rb +33 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/basic_object.rb +24 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/buffered_logger.rb +122 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/cache/compressed_mem_cache_store.rb +20 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/cache/drb_store.rb +15 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/cache/file_store.rb +72 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/cache/mem_cache_store.rb +127 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/cache/memory_store.rb +52 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/cache/synchronized_memory_store.rb +47 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/cache.rb +223 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/callbacks.rb +280 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/core_ext/array/access.rb +53 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/core_ext/array/conversions.rb +183 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/core_ext/array/extract_options.rb +20 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/core_ext/array/grouping.rb +106 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/core_ext/array/random_access.rb +12 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/core_ext/array.rb +13 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/core_ext/base64/encoding.rb +16 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/core_ext/base64.rb +4 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/core_ext/benchmark.rb +12 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/core_ext/bigdecimal/conversions.rb +37 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/core_ext/bigdecimal.rb +6 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/core_ext/blank.rb +58 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/core_ext/cgi/escape_skipping_slashes.rb +14 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/core_ext/cgi.rb +5 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/core_ext/class/attribute_accessors.rb +54 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/core_ext/class/delegating_attributes.rb +46 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/core_ext/class/inheritable_attributes.rb +140 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/core_ext/class/removal.rb +50 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/core_ext/class.rb +4 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/core_ext/date/behavior.rb +42 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/core_ext/date/calculations.rb +230 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/core_ext/date/conversions.rb +107 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/core_ext/date.rb +10 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/core_ext/date_time/calculations.rb +126 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/core_ext/date_time/conversions.rb +96 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/core_ext/date_time.rb +12 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/core_ext/duplicable.rb +43 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/core_ext/enumerable.rb +107 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/core_ext/exception.rb +41 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/core_ext/file/atomic.rb +46 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/core_ext/file.rb +5 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/core_ext/float/rounding.rb +24 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/core_ext/float/time.rb +27 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/core_ext/float.rb +7 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/core_ext/hash/conversions.rb +259 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/core_ext/hash/deep_merge.rb +23 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/core_ext/hash/diff.rb +19 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/core_ext/hash/except.rb +25 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/core_ext/hash/indifferent_access.rb +137 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/core_ext/hash/keys.rb +52 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/core_ext/hash/reverse_merge.rb +35 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/core_ext/hash/slice.rb +33 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/core_ext/hash.rb +14 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/core_ext/integer/even_odd.rb +29 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/core_ext/integer/inflections.rb +20 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/core_ext/integer/time.rb +45 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/core_ext/integer.rb +9 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/core_ext/kernel/agnostics.rb +11 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/core_ext/kernel/daemonizing.rb +7 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/core_ext/kernel/debugger.rb +13 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/core_ext/kernel/reporting.rb +59 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/core_ext/kernel/requires.rb +24 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/core_ext/kernel.rb +5 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/core_ext/load_error.rb +38 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/core_ext/logger.rb +143 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/core_ext/module/aliasing.rb +74 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/core_ext/module/attr_accessor_with_default.rb +31 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/core_ext/module/attr_internal.rb +32 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/core_ext/module/attribute_accessors.rb +58 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/core_ext/module/delegation.rb +95 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/core_ext/module/inclusion.rb +30 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/core_ext/module/introspection.rb +90 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/core_ext/module/loading.rb +23 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/core_ext/module/model_naming.rb +23 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/core_ext/module/synchronization.rb +39 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/core_ext/module.rb +23 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/core_ext/name_error.rb +17 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/core_ext/numeric/bytes.rb +44 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/core_ext/numeric/conversions.rb +19 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/core_ext/numeric/time.rb +81 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/core_ext/numeric.rb +9 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/core_ext/object/conversions.rb +14 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/core_ext/object/extending.rb +80 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/core_ext/object/instance_variables.rb +74 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/core_ext/object/metaclass.rb +13 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/core_ext/object/misc.rb +74 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/core_ext/object.rb +5 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/core_ext/pathname/clean_within.rb +14 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/core_ext/pathname.rb +7 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/core_ext/proc.rb +12 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/core_ext/process/daemon.rb +25 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/core_ext/process.rb +1 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/core_ext/range/blockless_step.rb +32 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/core_ext/range/conversions.rb +27 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/core_ext/range/include_range.rb +30 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/core_ext/range/overlaps.rb +15 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/core_ext/range.rb +11 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/core_ext/rexml.rb +36 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/core_ext/string/access.rb +82 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/core_ext/string/behavior.rb +13 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/core_ext/string/conversions.rb +28 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/core_ext/string/filters.rb +26 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/core_ext/string/inflections.rb +167 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/core_ext/string/iterators.rb +21 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/core_ext/string/multibyte.rb +81 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/core_ext/string/starts_ends_with.rb +35 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/core_ext/string/xchar.rb +11 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/core_ext/string.rb +22 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/core_ext/symbol.rb +14 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/core_ext/time/behavior.rb +13 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/core_ext/time/calculations.rb +303 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/core_ext/time/conversions.rb +90 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/core_ext/time/zones.rb +86 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/core_ext/time.rb +42 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/core_ext.rb +4 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/dependencies.rb +621 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/deprecation.rb +243 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/duration.rb +96 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/gzip.rb +25 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/inflections.rb +55 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/inflector.rb +397 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/json/decoding.rb +63 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/json/encoders/date.rb +21 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/json/encoders/date_time.rb +21 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/json/encoders/enumerable.rb +12 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/json/encoders/false_class.rb +5 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/json/encoders/hash.rb +47 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/json/encoders/nil_class.rb +5 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/json/encoders/numeric.rb +5 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/json/encoders/object.rb +6 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/json/encoders/regexp.rb +5 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/json/encoders/string.rb +36 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/json/encoders/symbol.rb +5 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/json/encoders/time.rb +21 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/json/encoders/true_class.rb +5 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/json/encoding.rb +37 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/json/variable.rb +10 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/json.rb +23 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/locale/en.yml +32 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/memoizable.rb +82 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/multibyte/chars.rb +679 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/multibyte/exceptions.rb +8 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/multibyte/unicode_database.rb +71 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/multibyte.rb +33 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/option_merger.rb +17 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/ordered_hash.rb +58 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/ordered_options.rb +19 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/rescuable.rb +108 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/secure_random.rb +197 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/string_inquirer.rb +21 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/test_case.rb +24 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/testing/core_ext/test/unit/assertions.rb +72 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/testing/core_ext/test.rb +6 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/testing/default.rb +9 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/testing/performance.rb +452 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/testing/setup_and_teardown.rb +120 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/time_with_zone.rb +328 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/values/time_zone.rb +403 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/values/unicode_tables.dat +0 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/builder-2.1.2/blankslate.rb +113 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/builder-2.1.2/builder/blankslate.rb +20 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/builder-2.1.2/builder/css.rb +250 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/builder-2.1.2/builder/xchar.rb +115 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/builder-2.1.2/builder/xmlbase.rb +139 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/builder-2.1.2/builder/xmlevents.rb +63 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/builder-2.1.2/builder/xmlmarkup.rb +328 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/builder-2.1.2/builder.rb +13 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/i18n-0.0.1/i18n/backend/simple.rb +216 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/i18n-0.0.1/i18n/exceptions.rb +53 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/i18n-0.0.1/i18n.rb +194 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/memcache-client-1.5.1/memcache.rb +849 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/data_timezone.rb +47 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/data_timezone_info.rb +228 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Africa/Algiers.rb +55 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Africa/Cairo.rb +219 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Africa/Casablanca.rb +40 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Africa/Harare.rb +18 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Africa/Johannesburg.rb +25 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Africa/Monrovia.rb +22 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Africa/Nairobi.rb +23 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Argentina/Buenos_Aires.rb +166 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Argentina/San_Juan.rb +86 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Bogota.rb +23 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Caracas.rb +23 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Chicago.rb +283 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Chihuahua.rb +136 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Denver.rb +204 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Godthab.rb +161 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Guatemala.rb +27 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Halifax.rb +274 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Indiana/Indianapolis.rb +149 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Juneau.rb +194 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/La_Paz.rb +22 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Lima.rb +35 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Los_Angeles.rb +232 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Mazatlan.rb +139 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Mexico_City.rb +144 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Monterrey.rb +131 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/New_York.rb +282 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Phoenix.rb +30 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Regina.rb +74 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Santiago.rb +205 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Sao_Paulo.rb +171 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/St_Johns.rb +288 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Tijuana.rb +196 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Almaty.rb +67 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Baghdad.rb +73 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Baku.rb +161 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Bangkok.rb +20 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Chongqing.rb +33 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Colombo.rb +30 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Dhaka.rb +27 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Hong_Kong.rb +87 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Irkutsk.rb +165 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Jakarta.rb +30 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Jerusalem.rb +163 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Kabul.rb +20 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Kamchatka.rb +163 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Karachi.rb +30 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Katmandu.rb +20 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Kolkata.rb +25 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Krasnoyarsk.rb +163 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Kuala_Lumpur.rb +31 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Kuwait.rb +18 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Magadan.rb +163 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Muscat.rb +18 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Novosibirsk.rb +164 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Rangoon.rb +24 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Riyadh.rb +18 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Seoul.rb +34 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Shanghai.rb +35 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Singapore.rb +33 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Taipei.rb +59 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Tashkent.rb +47 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Tbilisi.rb +78 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Tehran.rb +121 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Tokyo.rb +30 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Ulaanbaatar.rb +65 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Urumqi.rb +33 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Vladivostok.rb +164 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Yakutsk.rb +163 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Yekaterinburg.rb +165 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Yerevan.rb +165 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Atlantic/Azores.rb +270 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Atlantic/Cape_Verde.rb +23 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Atlantic/South_Georgia.rb +18 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Australia/Adelaide.rb +187 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Australia/Brisbane.rb +35 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Australia/Darwin.rb +29 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Australia/Hobart.rb +193 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Australia/Melbourne.rb +185 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Australia/Perth.rb +37 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Australia/Sydney.rb +185 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Etc/UTC.rb +16 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Amsterdam.rb +228 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Athens.rb +185 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Belgrade.rb +163 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Berlin.rb +188 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Bratislava.rb +13 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Brussels.rb +232 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Bucharest.rb +181 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Budapest.rb +197 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Copenhagen.rb +179 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Dublin.rb +276 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Helsinki.rb +163 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Istanbul.rb +218 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Kiev.rb +168 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Lisbon.rb +268 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Ljubljana.rb +13 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/London.rb +288 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Madrid.rb +211 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Minsk.rb +170 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Moscow.rb +181 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Paris.rb +232 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Prague.rb +187 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Riga.rb +176 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Rome.rb +215 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Sarajevo.rb +13 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Skopje.rb +13 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Sofia.rb +173 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Stockholm.rb +165 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Tallinn.rb +172 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Vienna.rb +183 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Vilnius.rb +170 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Warsaw.rb +212 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Zagreb.rb +13 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Auckland.rb +202 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Fiji.rb +23 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Guam.rb +22 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Honolulu.rb +28 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Majuro.rb +20 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Midway.rb +25 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Noumea.rb +25 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Pago_Pago.rb +26 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Port_Moresby.rb +20 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Tongatapu.rb +27 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/info_timezone.rb +52 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/linked_timezone.rb +51 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/linked_timezone_info.rb +44 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/offset_rationals.rb +98 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/ruby_core_support.rb +56 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/time_or_datetime.rb +292 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/timezone.rb +508 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/timezone_definition.rb +56 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/timezone_info.rb +40 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/timezone_offset_info.rb +94 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/timezone_period.rb +198 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/timezone_transition_info.rb +129 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/tzinfo-0.3.12/tzinfo.rb +33 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor/xml-simple-1.0.11/xmlsimple.rb +1021 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/vendor.rb +34 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/version.rb +9 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support/whiny_nil.rb +58 -0
- data/lib/gems/activesupport-2.2.2/lib/active_support.rb +61 -0
- data/lib/gems/activesupport-2.2.2/lib/activesupport.rb +1 -0
- data/lib/gems.rb +13 -0
- data/lib/mack-active_record/database.rb +4 -4
- data/lib/mack-active_record/migration_generator/migration_generator.rb +6 -2
- data/lib/mack-active_record/model_generator/manifest.yml +3 -3
- data/lib/mack-active_record/model_generator/model_generator.rb +8 -1
- data/lib/mack-active_record/model_generator/templates/model.rb.template +1 -1
- data/lib/mack-active_record/model_generator/templates/rspec.rb.template +1 -1
- data/lib/mack-active_record/model_generator/templates/test.rb.template +1 -1
- data/lib/mack-active_record.rb +3 -1
- data/lib/mack-active_record_tasks.rb +3 -0
- metadata +457 -16
@@ -0,0 +1,34 @@
|
|
1
|
+
require 'active_record/connection_adapters/sqlite_adapter'
|
2
|
+
|
3
|
+
module ActiveRecord
|
4
|
+
class Base
|
5
|
+
# sqlite3 adapter reuses sqlite_connection.
|
6
|
+
def self.sqlite3_connection(config) # :nodoc:
|
7
|
+
parse_sqlite_config!(config)
|
8
|
+
|
9
|
+
unless self.class.const_defined?(:SQLite3)
|
10
|
+
require_library_or_gem(config[:adapter])
|
11
|
+
end
|
12
|
+
|
13
|
+
db = SQLite3::Database.new(
|
14
|
+
config[:database],
|
15
|
+
:results_as_hash => true,
|
16
|
+
:type_translation => false
|
17
|
+
)
|
18
|
+
|
19
|
+
db.busy_timeout(config[:timeout]) unless config[:timeout].nil?
|
20
|
+
|
21
|
+
ConnectionAdapters::SQLite3Adapter.new(db, logger)
|
22
|
+
end
|
23
|
+
end
|
24
|
+
|
25
|
+
module ConnectionAdapters #:nodoc:
|
26
|
+
class SQLite3Adapter < SQLiteAdapter # :nodoc:
|
27
|
+
def table_structure(table_name)
|
28
|
+
returning structure = @connection.table_info(quote_table_name(table_name)) do
|
29
|
+
raise(ActiveRecord::StatementInvalid, "Could not find table '#{table_name}'") if structure.empty?
|
30
|
+
end
|
31
|
+
end
|
32
|
+
end
|
33
|
+
end
|
34
|
+
end
|
@@ -0,0 +1,418 @@
|
|
1
|
+
require 'active_record/connection_adapters/abstract_adapter'
|
2
|
+
|
3
|
+
module ActiveRecord
|
4
|
+
class Base
|
5
|
+
class << self
|
6
|
+
# Establishes a connection to the database that's used by all Active Record objects
|
7
|
+
def sqlite_connection(config) # :nodoc:
|
8
|
+
parse_sqlite_config!(config)
|
9
|
+
|
10
|
+
unless self.class.const_defined?(:SQLite)
|
11
|
+
require_library_or_gem(config[:adapter])
|
12
|
+
|
13
|
+
db = SQLite::Database.new(config[:database], 0)
|
14
|
+
db.show_datatypes = "ON" if !defined? SQLite::Version
|
15
|
+
db.results_as_hash = true if defined? SQLite::Version
|
16
|
+
db.type_translation = false
|
17
|
+
|
18
|
+
# "Downgrade" deprecated sqlite API
|
19
|
+
if SQLite.const_defined?(:Version)
|
20
|
+
ConnectionAdapters::SQLite2Adapter.new(db, logger)
|
21
|
+
else
|
22
|
+
ConnectionAdapters::DeprecatedSQLiteAdapter.new(db, logger)
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
26
|
+
|
27
|
+
private
|
28
|
+
def parse_sqlite_config!(config)
|
29
|
+
config[:database] ||= config[:dbfile]
|
30
|
+
# Require database.
|
31
|
+
unless config[:database]
|
32
|
+
raise ArgumentError, "No database file specified. Missing argument: database"
|
33
|
+
end
|
34
|
+
|
35
|
+
# Allow database path relative to RAILS_ROOT, but only if
|
36
|
+
# the database path is not the special path that tells
|
37
|
+
# Sqlite to build a database only in memory.
|
38
|
+
if Object.const_defined?(:RAILS_ROOT) && ':memory:' != config[:database]
|
39
|
+
config[:database] = File.expand_path(config[:database], RAILS_ROOT)
|
40
|
+
end
|
41
|
+
end
|
42
|
+
end
|
43
|
+
end
|
44
|
+
|
45
|
+
module ConnectionAdapters #:nodoc:
|
46
|
+
class SQLiteColumn < Column #:nodoc:
|
47
|
+
class << self
|
48
|
+
def string_to_binary(value)
|
49
|
+
value.gsub(/\0|\%/n) do |b|
|
50
|
+
case b
|
51
|
+
when "\0" then "%00"
|
52
|
+
when "%" then "%25"
|
53
|
+
end
|
54
|
+
end
|
55
|
+
end
|
56
|
+
|
57
|
+
def binary_to_string(value)
|
58
|
+
value.gsub(/%00|%25/n) do |b|
|
59
|
+
case b
|
60
|
+
when "%00" then "\0"
|
61
|
+
when "%25" then "%"
|
62
|
+
end
|
63
|
+
end
|
64
|
+
end
|
65
|
+
end
|
66
|
+
end
|
67
|
+
|
68
|
+
# The SQLite adapter works with both the 2.x and 3.x series of SQLite with the sqlite-ruby drivers (available both as gems and
|
69
|
+
# from http://rubyforge.org/projects/sqlite-ruby/).
|
70
|
+
#
|
71
|
+
# Options:
|
72
|
+
#
|
73
|
+
# * <tt>:database</tt> - Path to the database file.
|
74
|
+
class SQLiteAdapter < AbstractAdapter
|
75
|
+
def adapter_name #:nodoc:
|
76
|
+
'SQLite'
|
77
|
+
end
|
78
|
+
|
79
|
+
def supports_migrations? #:nodoc:
|
80
|
+
true
|
81
|
+
end
|
82
|
+
|
83
|
+
def requires_reloading?
|
84
|
+
true
|
85
|
+
end
|
86
|
+
|
87
|
+
def disconnect!
|
88
|
+
super
|
89
|
+
@connection.close rescue nil
|
90
|
+
end
|
91
|
+
|
92
|
+
def supports_count_distinct? #:nodoc:
|
93
|
+
sqlite_version >= '3.2.6'
|
94
|
+
end
|
95
|
+
|
96
|
+
def supports_autoincrement? #:nodoc:
|
97
|
+
sqlite_version >= '3.1.0'
|
98
|
+
end
|
99
|
+
|
100
|
+
def native_database_types #:nodoc:
|
101
|
+
{
|
102
|
+
:primary_key => default_primary_key_type,
|
103
|
+
:string => { :name => "varchar", :limit => 255 },
|
104
|
+
:text => { :name => "text" },
|
105
|
+
:integer => { :name => "integer" },
|
106
|
+
:float => { :name => "float" },
|
107
|
+
:decimal => { :name => "decimal" },
|
108
|
+
:datetime => { :name => "datetime" },
|
109
|
+
:timestamp => { :name => "datetime" },
|
110
|
+
:time => { :name => "time" },
|
111
|
+
:date => { :name => "date" },
|
112
|
+
:binary => { :name => "blob" },
|
113
|
+
:boolean => { :name => "boolean" }
|
114
|
+
}
|
115
|
+
end
|
116
|
+
|
117
|
+
|
118
|
+
# QUOTING ==================================================
|
119
|
+
|
120
|
+
def quote_string(s) #:nodoc:
|
121
|
+
@connection.class.quote(s)
|
122
|
+
end
|
123
|
+
|
124
|
+
def quote_column_name(name) #:nodoc:
|
125
|
+
%Q("#{name}")
|
126
|
+
end
|
127
|
+
|
128
|
+
|
129
|
+
# DATABASE STATEMENTS ======================================
|
130
|
+
|
131
|
+
def execute(sql, name = nil) #:nodoc:
|
132
|
+
catch_schema_changes { log(sql, name) { @connection.execute(sql) } }
|
133
|
+
end
|
134
|
+
|
135
|
+
def update_sql(sql, name = nil) #:nodoc:
|
136
|
+
super
|
137
|
+
@connection.changes
|
138
|
+
end
|
139
|
+
|
140
|
+
def delete_sql(sql, name = nil) #:nodoc:
|
141
|
+
sql += " WHERE 1=1" unless sql =~ /WHERE/i
|
142
|
+
super sql, name
|
143
|
+
end
|
144
|
+
|
145
|
+
def insert_sql(sql, name = nil, pk = nil, id_value = nil, sequence_name = nil) #:nodoc:
|
146
|
+
super || @connection.last_insert_row_id
|
147
|
+
end
|
148
|
+
|
149
|
+
def select_rows(sql, name = nil)
|
150
|
+
execute(sql, name).map do |row|
|
151
|
+
(0...(row.size / 2)).map { |i| row[i] }
|
152
|
+
end
|
153
|
+
end
|
154
|
+
|
155
|
+
def begin_db_transaction #:nodoc:
|
156
|
+
catch_schema_changes { @connection.transaction }
|
157
|
+
end
|
158
|
+
|
159
|
+
def commit_db_transaction #:nodoc:
|
160
|
+
catch_schema_changes { @connection.commit }
|
161
|
+
end
|
162
|
+
|
163
|
+
def rollback_db_transaction #:nodoc:
|
164
|
+
catch_schema_changes { @connection.rollback }
|
165
|
+
end
|
166
|
+
|
167
|
+
|
168
|
+
# SELECT ... FOR UPDATE is redundant since the table is locked.
|
169
|
+
def add_lock!(sql, options) #:nodoc:
|
170
|
+
sql
|
171
|
+
end
|
172
|
+
|
173
|
+
|
174
|
+
# SCHEMA STATEMENTS ========================================
|
175
|
+
|
176
|
+
def tables(name = nil) #:nodoc:
|
177
|
+
sql = <<-SQL
|
178
|
+
SELECT name
|
179
|
+
FROM sqlite_master
|
180
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
181
|
+
SQL
|
182
|
+
|
183
|
+
execute(sql, name).map do |row|
|
184
|
+
row[0]
|
185
|
+
end
|
186
|
+
end
|
187
|
+
|
188
|
+
def columns(table_name, name = nil) #:nodoc:
|
189
|
+
table_structure(table_name).map do |field|
|
190
|
+
SQLiteColumn.new(field['name'], field['dflt_value'], field['type'], field['notnull'] == "0")
|
191
|
+
end
|
192
|
+
end
|
193
|
+
|
194
|
+
def indexes(table_name, name = nil) #:nodoc:
|
195
|
+
execute("PRAGMA index_list(#{quote_table_name(table_name)})", name).map do |row|
|
196
|
+
index = IndexDefinition.new(table_name, row['name'])
|
197
|
+
index.unique = row['unique'] != '0'
|
198
|
+
index.columns = execute("PRAGMA index_info('#{index.name}')").map { |col| col['name'] }
|
199
|
+
index
|
200
|
+
end
|
201
|
+
end
|
202
|
+
|
203
|
+
def primary_key(table_name) #:nodoc:
|
204
|
+
column = table_structure(table_name).find {|field| field['pk'].to_i == 1}
|
205
|
+
column ? column['name'] : nil
|
206
|
+
end
|
207
|
+
|
208
|
+
def remove_index(table_name, options={}) #:nodoc:
|
209
|
+
execute "DROP INDEX #{quote_column_name(index_name(table_name, options))}"
|
210
|
+
end
|
211
|
+
|
212
|
+
def rename_table(name, new_name)
|
213
|
+
execute "ALTER TABLE #{name} RENAME TO #{new_name}"
|
214
|
+
end
|
215
|
+
|
216
|
+
def add_column(table_name, column_name, type, options = {}) #:nodoc:
|
217
|
+
if @connection.respond_to?(:transaction_active?) && @connection.transaction_active?
|
218
|
+
raise StatementInvalid, 'Cannot add columns to a SQLite database while inside a transaction'
|
219
|
+
end
|
220
|
+
|
221
|
+
super(table_name, column_name, type, options)
|
222
|
+
# See last paragraph on http://www.sqlite.org/lang_altertable.html
|
223
|
+
execute "VACUUM"
|
224
|
+
end
|
225
|
+
|
226
|
+
def remove_column(table_name, *column_names) #:nodoc:
|
227
|
+
column_names.flatten.each do |column_name|
|
228
|
+
alter_table(table_name) do |definition|
|
229
|
+
definition.columns.delete(definition[column_name])
|
230
|
+
end
|
231
|
+
end
|
232
|
+
end
|
233
|
+
alias :remove_columns :remove_column
|
234
|
+
|
235
|
+
def change_column_default(table_name, column_name, default) #:nodoc:
|
236
|
+
alter_table(table_name) do |definition|
|
237
|
+
definition[column_name].default = default
|
238
|
+
end
|
239
|
+
end
|
240
|
+
|
241
|
+
def change_column_null(table_name, column_name, null, default = nil)
|
242
|
+
unless null || default.nil?
|
243
|
+
execute("UPDATE #{quote_table_name(table_name)} SET #{quote_column_name(column_name)}=#{quote(default)} WHERE #{quote_column_name(column_name)} IS NULL")
|
244
|
+
end
|
245
|
+
alter_table(table_name) do |definition|
|
246
|
+
definition[column_name].null = null
|
247
|
+
end
|
248
|
+
end
|
249
|
+
|
250
|
+
def change_column(table_name, column_name, type, options = {}) #:nodoc:
|
251
|
+
alter_table(table_name) do |definition|
|
252
|
+
include_default = options_include_default?(options)
|
253
|
+
definition[column_name].instance_eval do
|
254
|
+
self.type = type
|
255
|
+
self.limit = options[:limit] if options.include?(:limit)
|
256
|
+
self.default = options[:default] if include_default
|
257
|
+
self.null = options[:null] if options.include?(:null)
|
258
|
+
end
|
259
|
+
end
|
260
|
+
end
|
261
|
+
|
262
|
+
def rename_column(table_name, column_name, new_column_name) #:nodoc:
|
263
|
+
unless columns(table_name).detect{|c| c.name == column_name.to_s }
|
264
|
+
raise ActiveRecord::ActiveRecordError, "Missing column #{table_name}.#{column_name}"
|
265
|
+
end
|
266
|
+
alter_table(table_name, :rename => {column_name.to_s => new_column_name.to_s})
|
267
|
+
end
|
268
|
+
|
269
|
+
def empty_insert_statement(table_name)
|
270
|
+
"INSERT INTO #{table_name} VALUES(NULL)"
|
271
|
+
end
|
272
|
+
|
273
|
+
protected
|
274
|
+
def select(sql, name = nil) #:nodoc:
|
275
|
+
execute(sql, name).map do |row|
|
276
|
+
record = {}
|
277
|
+
row.each_key do |key|
|
278
|
+
if key.is_a?(String)
|
279
|
+
record[key.sub(/^"?\w+"?\./, '')] = row[key]
|
280
|
+
end
|
281
|
+
end
|
282
|
+
record
|
283
|
+
end
|
284
|
+
end
|
285
|
+
|
286
|
+
def table_structure(table_name)
|
287
|
+
returning structure = execute("PRAGMA table_info(#{quote_table_name(table_name)})") do
|
288
|
+
raise(ActiveRecord::StatementInvalid, "Could not find table '#{table_name}'") if structure.empty?
|
289
|
+
end
|
290
|
+
end
|
291
|
+
|
292
|
+
def alter_table(table_name, options = {}) #:nodoc:
|
293
|
+
altered_table_name = "altered_#{table_name}"
|
294
|
+
caller = lambda {|definition| yield definition if block_given?}
|
295
|
+
|
296
|
+
transaction do
|
297
|
+
move_table(table_name, altered_table_name,
|
298
|
+
options.merge(:temporary => true))
|
299
|
+
move_table(altered_table_name, table_name, &caller)
|
300
|
+
end
|
301
|
+
end
|
302
|
+
|
303
|
+
def move_table(from, to, options = {}, &block) #:nodoc:
|
304
|
+
copy_table(from, to, options, &block)
|
305
|
+
drop_table(from)
|
306
|
+
end
|
307
|
+
|
308
|
+
def copy_table(from, to, options = {}) #:nodoc:
|
309
|
+
options = options.merge(:id => !columns(from).detect{|c| c.name == 'id'}.nil?)
|
310
|
+
create_table(to, options) do |definition|
|
311
|
+
@definition = definition
|
312
|
+
columns(from).each do |column|
|
313
|
+
column_name = options[:rename] ?
|
314
|
+
(options[:rename][column.name] ||
|
315
|
+
options[:rename][column.name.to_sym] ||
|
316
|
+
column.name) : column.name
|
317
|
+
|
318
|
+
@definition.column(column_name, column.type,
|
319
|
+
:limit => column.limit, :default => column.default,
|
320
|
+
:null => column.null)
|
321
|
+
end
|
322
|
+
@definition.primary_key(primary_key(from)) if primary_key(from)
|
323
|
+
yield @definition if block_given?
|
324
|
+
end
|
325
|
+
|
326
|
+
copy_table_indexes(from, to, options[:rename] || {})
|
327
|
+
copy_table_contents(from, to,
|
328
|
+
@definition.columns.map {|column| column.name},
|
329
|
+
options[:rename] || {})
|
330
|
+
end
|
331
|
+
|
332
|
+
def copy_table_indexes(from, to, rename = {}) #:nodoc:
|
333
|
+
indexes(from).each do |index|
|
334
|
+
name = index.name
|
335
|
+
if to == "altered_#{from}"
|
336
|
+
name = "temp_#{name}"
|
337
|
+
elsif from == "altered_#{to}"
|
338
|
+
name = name[5..-1]
|
339
|
+
end
|
340
|
+
|
341
|
+
to_column_names = columns(to).map(&:name)
|
342
|
+
columns = index.columns.map {|c| rename[c] || c }.select do |column|
|
343
|
+
to_column_names.include?(column)
|
344
|
+
end
|
345
|
+
|
346
|
+
unless columns.empty?
|
347
|
+
# index name can't be the same
|
348
|
+
opts = { :name => name.gsub(/_(#{from})_/, "_#{to}_") }
|
349
|
+
opts[:unique] = true if index.unique
|
350
|
+
add_index(to, columns, opts)
|
351
|
+
end
|
352
|
+
end
|
353
|
+
end
|
354
|
+
|
355
|
+
def copy_table_contents(from, to, columns, rename = {}) #:nodoc:
|
356
|
+
column_mappings = Hash[*columns.map {|name| [name, name]}.flatten]
|
357
|
+
rename.inject(column_mappings) {|map, a| map[a.last] = a.first; map}
|
358
|
+
from_columns = columns(from).collect {|col| col.name}
|
359
|
+
columns = columns.find_all{|col| from_columns.include?(column_mappings[col])}
|
360
|
+
quoted_columns = columns.map { |col| quote_column_name(col) } * ','
|
361
|
+
|
362
|
+
quoted_to = quote_table_name(to)
|
363
|
+
@connection.execute "SELECT * FROM #{quote_table_name(from)}" do |row|
|
364
|
+
sql = "INSERT INTO #{quoted_to} (#{quoted_columns}) VALUES ("
|
365
|
+
sql << columns.map {|col| quote row[column_mappings[col]]} * ', '
|
366
|
+
sql << ')'
|
367
|
+
@connection.execute sql
|
368
|
+
end
|
369
|
+
end
|
370
|
+
|
371
|
+
def catch_schema_changes
|
372
|
+
return yield
|
373
|
+
rescue ActiveRecord::StatementInvalid => exception
|
374
|
+
if exception.message =~ /database schema has changed/
|
375
|
+
reconnect!
|
376
|
+
retry
|
377
|
+
else
|
378
|
+
raise
|
379
|
+
end
|
380
|
+
end
|
381
|
+
|
382
|
+
def sqlite_version
|
383
|
+
@sqlite_version ||= select_value('select sqlite_version(*)')
|
384
|
+
end
|
385
|
+
|
386
|
+
def default_primary_key_type
|
387
|
+
if supports_autoincrement?
|
388
|
+
'INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL'.freeze
|
389
|
+
else
|
390
|
+
'INTEGER PRIMARY KEY NOT NULL'.freeze
|
391
|
+
end
|
392
|
+
end
|
393
|
+
end
|
394
|
+
|
395
|
+
class SQLite2Adapter < SQLiteAdapter # :nodoc:
|
396
|
+
def supports_count_distinct? #:nodoc:
|
397
|
+
false
|
398
|
+
end
|
399
|
+
|
400
|
+
def rename_table(name, new_name)
|
401
|
+
move_table(name, new_name)
|
402
|
+
end
|
403
|
+
|
404
|
+
def add_column(table_name, column_name, type, options = {}) #:nodoc:
|
405
|
+
alter_table(table_name) do |definition|
|
406
|
+
definition.column(column_name, type, options)
|
407
|
+
end
|
408
|
+
end
|
409
|
+
end
|
410
|
+
|
411
|
+
class DeprecatedSQLiteAdapter < SQLite2Adapter # :nodoc:
|
412
|
+
def insert(sql, name = nil, pk = nil, id_value = nil)
|
413
|
+
execute(sql, name = nil)
|
414
|
+
id_value || @connection.last_insert_rowid
|
415
|
+
end
|
416
|
+
end
|
417
|
+
end
|
418
|
+
end
|
@@ -0,0 +1,183 @@
|
|
1
|
+
module ActiveRecord
|
2
|
+
# Track unsaved attribute changes.
|
3
|
+
#
|
4
|
+
# A newly instantiated object is unchanged:
|
5
|
+
# person = Person.find_by_name('uncle bob')
|
6
|
+
# person.changed? # => false
|
7
|
+
#
|
8
|
+
# Change the name:
|
9
|
+
# person.name = 'Bob'
|
10
|
+
# person.changed? # => true
|
11
|
+
# person.name_changed? # => true
|
12
|
+
# person.name_was # => 'uncle bob'
|
13
|
+
# person.name_change # => ['uncle bob', 'Bob']
|
14
|
+
# person.name = 'Bill'
|
15
|
+
# person.name_change # => ['uncle bob', 'Bill']
|
16
|
+
#
|
17
|
+
# Save the changes:
|
18
|
+
# person.save
|
19
|
+
# person.changed? # => false
|
20
|
+
# person.name_changed? # => false
|
21
|
+
#
|
22
|
+
# Assigning the same value leaves the attribute unchanged:
|
23
|
+
# person.name = 'Bill'
|
24
|
+
# person.name_changed? # => false
|
25
|
+
# person.name_change # => nil
|
26
|
+
#
|
27
|
+
# Which attributes have changed?
|
28
|
+
# person.name = 'bob'
|
29
|
+
# person.changed # => ['name']
|
30
|
+
# person.changes # => { 'name' => ['Bill', 'bob'] }
|
31
|
+
#
|
32
|
+
# Before modifying an attribute in-place:
|
33
|
+
# person.name_will_change!
|
34
|
+
# person.name << 'by'
|
35
|
+
# person.name_change # => ['uncle bob', 'uncle bobby']
|
36
|
+
module Dirty
|
37
|
+
DIRTY_SUFFIXES = ['_changed?', '_change', '_will_change!', '_was']
|
38
|
+
|
39
|
+
def self.included(base)
|
40
|
+
base.attribute_method_suffix *DIRTY_SUFFIXES
|
41
|
+
base.alias_method_chain :write_attribute, :dirty
|
42
|
+
base.alias_method_chain :save, :dirty
|
43
|
+
base.alias_method_chain :save!, :dirty
|
44
|
+
base.alias_method_chain :update, :dirty
|
45
|
+
base.alias_method_chain :reload, :dirty
|
46
|
+
|
47
|
+
base.superclass_delegating_accessor :partial_updates
|
48
|
+
base.partial_updates = true
|
49
|
+
|
50
|
+
base.send(:extend, ClassMethods)
|
51
|
+
end
|
52
|
+
|
53
|
+
# Do any attributes have unsaved changes?
|
54
|
+
# person.changed? # => false
|
55
|
+
# person.name = 'bob'
|
56
|
+
# person.changed? # => true
|
57
|
+
def changed?
|
58
|
+
!changed_attributes.empty?
|
59
|
+
end
|
60
|
+
|
61
|
+
# List of attributes with unsaved changes.
|
62
|
+
# person.changed # => []
|
63
|
+
# person.name = 'bob'
|
64
|
+
# person.changed # => ['name']
|
65
|
+
def changed
|
66
|
+
changed_attributes.keys
|
67
|
+
end
|
68
|
+
|
69
|
+
# Map of changed attrs => [original value, new value].
|
70
|
+
# person.changes # => {}
|
71
|
+
# person.name = 'bob'
|
72
|
+
# person.changes # => { 'name' => ['bill', 'bob'] }
|
73
|
+
def changes
|
74
|
+
changed.inject({}) { |h, attr| h[attr] = attribute_change(attr); h }
|
75
|
+
end
|
76
|
+
|
77
|
+
# Attempts to +save+ the record and clears changed attributes if successful.
|
78
|
+
def save_with_dirty(*args) #:nodoc:
|
79
|
+
if status = save_without_dirty(*args)
|
80
|
+
changed_attributes.clear
|
81
|
+
end
|
82
|
+
status
|
83
|
+
end
|
84
|
+
|
85
|
+
# Attempts to <tt>save!</tt> the record and clears changed attributes if successful.
|
86
|
+
def save_with_dirty!(*args) #:nodoc:
|
87
|
+
status = save_without_dirty!(*args)
|
88
|
+
changed_attributes.clear
|
89
|
+
status
|
90
|
+
end
|
91
|
+
|
92
|
+
# <tt>reload</tt> the record and clears changed attributes.
|
93
|
+
def reload_with_dirty(*args) #:nodoc:
|
94
|
+
record = reload_without_dirty(*args)
|
95
|
+
changed_attributes.clear
|
96
|
+
record
|
97
|
+
end
|
98
|
+
|
99
|
+
private
|
100
|
+
# Map of change <tt>attr => original value</tt>.
|
101
|
+
def changed_attributes
|
102
|
+
@changed_attributes ||= {}
|
103
|
+
end
|
104
|
+
|
105
|
+
# Handle <tt>*_changed?</tt> for +method_missing+.
|
106
|
+
def attribute_changed?(attr)
|
107
|
+
changed_attributes.include?(attr)
|
108
|
+
end
|
109
|
+
|
110
|
+
# Handle <tt>*_change</tt> for +method_missing+.
|
111
|
+
def attribute_change(attr)
|
112
|
+
[changed_attributes[attr], __send__(attr)] if attribute_changed?(attr)
|
113
|
+
end
|
114
|
+
|
115
|
+
# Handle <tt>*_was</tt> for +method_missing+.
|
116
|
+
def attribute_was(attr)
|
117
|
+
attribute_changed?(attr) ? changed_attributes[attr] : __send__(attr)
|
118
|
+
end
|
119
|
+
|
120
|
+
# Handle <tt>*_will_change!</tt> for +method_missing+.
|
121
|
+
def attribute_will_change!(attr)
|
122
|
+
changed_attributes[attr] = clone_attribute_value(:read_attribute, attr)
|
123
|
+
end
|
124
|
+
|
125
|
+
# Wrap write_attribute to remember original attribute value.
|
126
|
+
def write_attribute_with_dirty(attr, value)
|
127
|
+
attr = attr.to_s
|
128
|
+
|
129
|
+
# The attribute already has an unsaved change.
|
130
|
+
if changed_attributes.include?(attr)
|
131
|
+
old = changed_attributes[attr]
|
132
|
+
changed_attributes.delete(attr) unless field_changed?(attr, old, value)
|
133
|
+
else
|
134
|
+
old = clone_attribute_value(:read_attribute, attr)
|
135
|
+
changed_attributes[attr] = old if field_changed?(attr, old, value)
|
136
|
+
end
|
137
|
+
|
138
|
+
# Carry on.
|
139
|
+
write_attribute_without_dirty(attr, value)
|
140
|
+
end
|
141
|
+
|
142
|
+
def update_with_dirty
|
143
|
+
if partial_updates?
|
144
|
+
# Serialized attributes should always be written in case they've been
|
145
|
+
# changed in place.
|
146
|
+
update_without_dirty(changed | self.class.serialized_attributes.keys)
|
147
|
+
else
|
148
|
+
update_without_dirty
|
149
|
+
end
|
150
|
+
end
|
151
|
+
|
152
|
+
def field_changed?(attr, old, value)
|
153
|
+
if column = column_for_attribute(attr)
|
154
|
+
if column.type == :integer && column.null && (old.nil? || old == 0)
|
155
|
+
# For nullable integer columns, NULL gets stored in database for blank (i.e. '') values.
|
156
|
+
# Hence we don't record it as a change if the value changes from nil to ''.
|
157
|
+
# If an old value of 0 is set to '' we want this to get changed to nil as otherwise it'll
|
158
|
+
# be typecast back to 0 (''.to_i => 0)
|
159
|
+
value = nil if value.blank?
|
160
|
+
else
|
161
|
+
value = column.type_cast(value)
|
162
|
+
end
|
163
|
+
end
|
164
|
+
|
165
|
+
old != value
|
166
|
+
end
|
167
|
+
|
168
|
+
module ClassMethods
|
169
|
+
def self.extended(base)
|
170
|
+
base.metaclass.alias_method_chain(:alias_attribute, :dirty)
|
171
|
+
end
|
172
|
+
|
173
|
+
def alias_attribute_with_dirty(new_name, old_name)
|
174
|
+
alias_attribute_without_dirty(new_name, old_name)
|
175
|
+
DIRTY_SUFFIXES.each do |suffix|
|
176
|
+
module_eval <<-STR, __FILE__, __LINE__+1
|
177
|
+
def #{new_name}#{suffix}; self.#{old_name}#{suffix}; end
|
178
|
+
STR
|
179
|
+
end
|
180
|
+
end
|
181
|
+
end
|
182
|
+
end
|
183
|
+
end
|
@@ -0,0 +1,41 @@
|
|
1
|
+
module ActiveRecord
|
2
|
+
class DynamicFinderMatch
|
3
|
+
def self.match(method)
|
4
|
+
df_match = self.new(method)
|
5
|
+
df_match.finder ? df_match : nil
|
6
|
+
end
|
7
|
+
|
8
|
+
def initialize(method)
|
9
|
+
@finder = :first
|
10
|
+
case method.to_s
|
11
|
+
when /^find_(all_by|last_by|by)_([_a-zA-Z]\w*)$/
|
12
|
+
@finder = :last if $1 == 'last_by'
|
13
|
+
@finder = :all if $1 == 'all_by'
|
14
|
+
names = $2
|
15
|
+
when /^find_by_([_a-zA-Z]\w*)\!$/
|
16
|
+
@bang = true
|
17
|
+
names = $1
|
18
|
+
when /^find_or_(initialize|create)_by_([_a-zA-Z]\w*)$/
|
19
|
+
@instantiator = $1 == 'initialize' ? :new : :create
|
20
|
+
names = $2
|
21
|
+
else
|
22
|
+
@finder = nil
|
23
|
+
end
|
24
|
+
@attribute_names = names && names.split('_and_')
|
25
|
+
end
|
26
|
+
|
27
|
+
attr_reader :finder, :attribute_names, :instantiator
|
28
|
+
|
29
|
+
def finder?
|
30
|
+
!@finder.nil? && @instantiator.nil?
|
31
|
+
end
|
32
|
+
|
33
|
+
def instantiator?
|
34
|
+
@finder == :first && !@instantiator.nil?
|
35
|
+
end
|
36
|
+
|
37
|
+
def bang?
|
38
|
+
@bang
|
39
|
+
end
|
40
|
+
end
|
41
|
+
end
|