activerecord 2.0.5 → 2.1.0
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of activerecord might be problematic. Click here for more details.
- data/CHANGELOG +168 -6
- data/README +27 -22
- data/RUNNING_UNIT_TESTS +7 -4
- data/Rakefile +22 -25
- data/lib/active_record.rb +8 -2
- data/lib/active_record/aggregations.rb +21 -12
- data/lib/active_record/association_preload.rb +277 -0
- data/lib/active_record/associations.rb +481 -295
- data/lib/active_record/associations/association_collection.rb +162 -37
- data/lib/active_record/associations/association_proxy.rb +71 -7
- data/lib/active_record/associations/belongs_to_association.rb +5 -3
- data/lib/active_record/associations/belongs_to_polymorphic_association.rb +5 -6
- data/lib/active_record/associations/has_and_belongs_to_many_association.rb +12 -64
- data/lib/active_record/associations/has_many_association.rb +8 -73
- data/lib/active_record/associations/has_many_through_association.rb +68 -117
- data/lib/active_record/associations/has_one_association.rb +7 -5
- data/lib/active_record/associations/has_one_through_association.rb +28 -0
- data/lib/active_record/attribute_methods.rb +69 -19
- data/lib/active_record/base.rb +496 -275
- data/lib/active_record/calculations.rb +28 -21
- data/lib/active_record/callbacks.rb +9 -38
- data/lib/active_record/connection_adapters/abstract/connection_specification.rb +3 -2
- data/lib/active_record/connection_adapters/abstract/database_statements.rb +2 -2
- data/lib/active_record/connection_adapters/abstract/query_cache.rb +6 -0
- data/lib/active_record/connection_adapters/abstract/schema_definitions.rb +232 -45
- data/lib/active_record/connection_adapters/abstract/schema_statements.rb +141 -27
- data/lib/active_record/connection_adapters/abstract_adapter.rb +9 -13
- data/lib/active_record/connection_adapters/mysql_adapter.rb +57 -24
- data/lib/active_record/connection_adapters/postgresql_adapter.rb +143 -42
- data/lib/active_record/connection_adapters/sqlite3_adapter.rb +1 -1
- data/lib/active_record/connection_adapters/sqlite_adapter.rb +18 -10
- data/lib/active_record/dirty.rb +158 -0
- data/lib/active_record/fixtures.rb +121 -156
- data/lib/active_record/locking/optimistic.rb +14 -11
- data/lib/active_record/locking/pessimistic.rb +2 -2
- data/lib/active_record/migration.rb +157 -77
- data/lib/active_record/named_scope.rb +163 -0
- data/lib/active_record/observer.rb +19 -5
- data/lib/active_record/reflection.rb +34 -14
- data/lib/active_record/schema.rb +7 -14
- data/lib/active_record/schema_dumper.rb +4 -4
- data/lib/active_record/serialization.rb +5 -5
- data/lib/active_record/serializers/json_serializer.rb +37 -28
- data/lib/active_record/serializers/xml_serializer.rb +52 -29
- data/lib/active_record/test_case.rb +36 -0
- data/lib/active_record/timestamp.rb +4 -4
- data/lib/active_record/transactions.rb +3 -3
- data/lib/active_record/validations.rb +182 -248
- data/lib/active_record/version.rb +2 -2
- data/test/{fixtures → assets}/example.log +0 -0
- data/test/{fixtures → assets}/flowers.jpg +0 -0
- data/test/cases/aaa_create_tables_test.rb +24 -0
- data/test/cases/active_schema_test_mysql.rb +95 -0
- data/test/cases/active_schema_test_postgresql.rb +24 -0
- data/test/{adapter_test.rb → cases/adapter_test.rb} +15 -14
- data/test/{adapter_test_sqlserver.rb → cases/adapter_test_sqlserver.rb} +95 -95
- data/test/{aggregations_test.rb → cases/aggregations_test.rb} +20 -20
- data/test/{ar_schema_test.rb → cases/ar_schema_test.rb} +6 -6
- data/test/cases/associations/belongs_to_associations_test.rb +412 -0
- data/test/{associations → cases/associations}/callbacks_test.rb +24 -10
- data/test/{associations → cases/associations}/cascaded_eager_loading_test.rb +18 -17
- data/test/cases/associations/eager_load_nested_include_test.rb +83 -0
- data/test/{associations → cases/associations}/eager_singularization_test.rb +5 -5
- data/test/{associations → cases/associations}/eager_test.rb +216 -51
- data/test/{associations → cases/associations}/extension_test.rb +8 -8
- data/test/cases/associations/has_and_belongs_to_many_associations_test.rb +684 -0
- data/test/cases/associations/has_many_associations_test.rb +932 -0
- data/test/cases/associations/has_many_through_associations_test.rb +190 -0
- data/test/cases/associations/has_one_associations_test.rb +323 -0
- data/test/cases/associations/has_one_through_associations_test.rb +74 -0
- data/test/{associations → cases/associations}/inner_join_association_test.rb +20 -20
- data/test/{associations → cases/associations}/join_model_test.rb +175 -35
- data/test/cases/associations_test.rb +262 -0
- data/test/{attribute_methods_test.rb → cases/attribute_methods_test.rb} +103 -11
- data/test/{base_test.rb → cases/base_test.rb} +338 -191
- data/test/{binary_test.rb → cases/binary_test.rb} +6 -4
- data/test/{calculations_test.rb → cases/calculations_test.rb} +35 -23
- data/test/{callbacks_test.rb → cases/callbacks_test.rb} +7 -7
- data/test/{class_inheritable_attributes_test.rb → cases/class_inheritable_attributes_test.rb} +3 -3
- data/test/{column_alias_test.rb → cases/column_alias_test.rb} +3 -3
- data/test/{connection_test_firebird.rb → cases/connection_test_firebird.rb} +2 -2
- data/test/{connection_test_mysql.rb → cases/connection_test_mysql.rb} +2 -2
- data/test/{copy_table_test_sqlite.rb → cases/copy_table_test_sqlite.rb} +13 -13
- data/test/{datatype_test_postgresql.rb → cases/datatype_test_postgresql.rb} +8 -8
- data/test/{date_time_test.rb → cases/date_time_test.rb} +5 -5
- data/test/{default_test_firebird.rb → cases/default_test_firebird.rb} +3 -3
- data/test/{defaults_test.rb → cases/defaults_test.rb} +8 -6
- data/test/{deprecated_finder_test.rb → cases/deprecated_finder_test.rb} +3 -3
- data/test/cases/dirty_test.rb +163 -0
- data/test/cases/finder_respond_to_test.rb +76 -0
- data/test/{finder_test.rb → cases/finder_test.rb} +266 -33
- data/test/{fixtures_test.rb → cases/fixtures_test.rb} +88 -72
- data/test/cases/helper.rb +47 -0
- data/test/{inheritance_test.rb → cases/inheritance_test.rb} +61 -17
- data/test/cases/invalid_date_test.rb +24 -0
- data/test/{json_serialization_test.rb → cases/json_serialization_test.rb} +36 -11
- data/test/{lifecycle_test.rb → cases/lifecycle_test.rb} +16 -13
- data/test/{locking_test.rb → cases/locking_test.rb} +17 -10
- data/test/{method_scoping_test.rb → cases/method_scoping_test.rb} +75 -39
- data/test/{migration_test.rb → cases/migration_test.rb} +420 -80
- data/test/{migration_test_firebird.rb → cases/migration_test_firebird.rb} +3 -3
- data/test/{mixin_test.rb → cases/mixin_test.rb} +7 -6
- data/test/{modules_test.rb → cases/modules_test.rb} +11 -6
- data/test/{multiple_db_test.rb → cases/multiple_db_test.rb} +5 -5
- data/test/cases/named_scope_test.rb +157 -0
- data/test/{pk_test.rb → cases/pk_test.rb} +10 -10
- data/test/{query_cache_test.rb → cases/query_cache_test.rb} +12 -10
- data/test/{readonly_test.rb → cases/readonly_test.rb} +11 -11
- data/test/{reflection_test.rb → cases/reflection_test.rb} +15 -14
- data/test/{reserved_word_test_mysql.rb → cases/reserved_word_test_mysql.rb} +4 -5
- data/test/{schema_authorization_test_postgresql.rb → cases/schema_authorization_test_postgresql.rb} +5 -5
- data/test/cases/schema_dumper_test.rb +138 -0
- data/test/cases/schema_test_postgresql.rb +102 -0
- data/test/{serialization_test.rb → cases/serialization_test.rb} +7 -7
- data/test/{synonym_test_oracle.rb → cases/synonym_test_oracle.rb} +5 -5
- data/test/{table_name_test_sqlserver.rb → cases/table_name_test_sqlserver.rb} +3 -3
- data/test/{threaded_connections_test.rb → cases/threaded_connections_test.rb} +7 -7
- data/test/{transactions_test.rb → cases/transactions_test.rb} +31 -5
- data/test/{unconnected_test.rb → cases/unconnected_test.rb} +2 -2
- data/test/{validations_test.rb → cases/validations_test.rb} +141 -39
- data/test/{xml_serialization_test.rb → cases/xml_serialization_test.rb} +12 -12
- data/test/config.rb +5 -0
- data/test/connections/native_db2/connection.rb +1 -1
- data/test/connections/native_firebird/connection.rb +1 -1
- data/test/connections/native_frontbase/connection.rb +1 -1
- data/test/connections/native_mysql/connection.rb +1 -1
- data/test/connections/native_openbase/connection.rb +1 -1
- data/test/connections/native_oracle/connection.rb +1 -1
- data/test/connections/native_postgresql/connection.rb +1 -3
- data/test/connections/native_sqlite/connection.rb +2 -2
- data/test/connections/native_sqlite3/connection.rb +2 -2
- data/test/connections/native_sqlite3/in_memory_connection.rb +3 -3
- data/test/connections/native_sybase/connection.rb +1 -1
- data/test/fixtures/author_addresses.yml +5 -0
- data/test/fixtures/authors.yml +2 -0
- data/test/fixtures/clubs.yml +6 -0
- data/test/fixtures/jobs.yml +7 -0
- data/test/fixtures/members.yml +4 -0
- data/test/fixtures/memberships.yml +20 -0
- data/test/fixtures/owners.yml +7 -0
- data/test/fixtures/people.yml +4 -1
- data/test/fixtures/pets.yml +14 -0
- data/test/fixtures/posts.yml +1 -0
- data/test/fixtures/price_estimates.yml +7 -0
- data/test/fixtures/readers.yml +5 -0
- data/test/fixtures/references.yml +17 -0
- data/test/fixtures/sponsors.yml +9 -0
- data/test/fixtures/subscribers.yml +7 -0
- data/test/fixtures/subscriptions.yml +12 -0
- data/test/fixtures/taggings.yml +4 -1
- data/test/fixtures/topics.yml +22 -2
- data/test/fixtures/warehouse-things.yml +3 -0
- data/test/{fixtures/migrations_with_decimal → migrations/decimal}/1_give_me_big_numbers.rb +0 -0
- data/test/{fixtures/migrations_with_duplicate → migrations/duplicate}/1_people_have_last_names.rb +1 -1
- data/test/{fixtures/migrations_with_duplicate → migrations/duplicate}/2_we_need_reminders.rb +1 -1
- data/test/{fixtures/migrations_with_duplicate → migrations/duplicate}/3_foo.rb +0 -0
- data/test/{fixtures/migrations → migrations/duplicate}/3_innocent_jointable.rb +0 -0
- data/test/migrations/duplicate_names/20080507052938_chunky.rb +7 -0
- data/test/migrations/duplicate_names/20080507053028_chunky.rb +7 -0
- data/test/{fixtures/migrations_with_duplicate → migrations/interleaved/pass_1}/3_innocent_jointable.rb +0 -0
- data/test/{fixtures/migrations → migrations/interleaved/pass_2}/1_people_have_last_names.rb +1 -1
- data/test/{fixtures/migrations_with_missing_versions/4_innocent_jointable.rb → migrations/interleaved/pass_2/3_innocent_jointable.rb} +0 -0
- data/test/{fixtures/migrations_with_missing_versions → migrations/interleaved/pass_3}/1_people_have_last_names.rb +1 -1
- data/test/migrations/interleaved/pass_3/2_i_raise_on_down.rb +8 -0
- data/test/migrations/interleaved/pass_3/3_innocent_jointable.rb +12 -0
- data/test/{fixtures/migrations_with_missing_versions → migrations/missing}/1000_people_have_middle_names.rb +1 -1
- data/test/migrations/missing/1_people_have_last_names.rb +9 -0
- data/test/{fixtures/migrations_with_missing_versions → migrations/missing}/3_we_need_reminders.rb +1 -1
- data/test/migrations/missing/4_innocent_jointable.rb +12 -0
- data/test/migrations/valid/1_people_have_last_names.rb +9 -0
- data/test/{fixtures/migrations → migrations/valid}/2_we_need_reminders.rb +1 -1
- data/test/migrations/valid/3_innocent_jointable.rb +12 -0
- data/test/{fixtures → models}/author.rb +28 -4
- data/test/{fixtures → models}/auto_id.rb +0 -0
- data/test/{fixtures → models}/binary.rb +0 -0
- data/test/{fixtures → models}/book.rb +0 -0
- data/test/{fixtures → models}/categorization.rb +0 -0
- data/test/{fixtures → models}/category.rb +8 -5
- data/test/{fixtures → models}/citation.rb +0 -0
- data/test/models/club.rb +7 -0
- data/test/{fixtures → models}/column_name.rb +0 -0
- data/test/{fixtures → models}/comment.rb +5 -3
- data/test/{fixtures → models}/company.rb +15 -6
- data/test/{fixtures → models}/company_in_module.rb +5 -3
- data/test/{fixtures → models}/computer.rb +0 -1
- data/test/{fixtures → models}/contact.rb +1 -1
- data/test/{fixtures → models}/course.rb +0 -0
- data/test/{fixtures → models}/customer.rb +8 -8
- data/test/{fixtures → models}/default.rb +0 -0
- data/test/{fixtures → models}/developer.rb +14 -10
- data/test/{fixtures → models}/edge.rb +0 -0
- data/test/{fixtures → models}/entrant.rb +0 -0
- data/test/models/guid.rb +2 -0
- data/test/{fixtures → models}/item.rb +0 -0
- data/test/models/job.rb +5 -0
- data/test/{fixtures → models}/joke.rb +0 -0
- data/test/{fixtures → models}/keyboard.rb +0 -0
- data/test/{fixtures → models}/legacy_thing.rb +0 -0
- data/test/{fixtures → models}/matey.rb +0 -0
- data/test/models/member.rb +9 -0
- data/test/models/membership.rb +9 -0
- data/test/{fixtures → models}/minimalistic.rb +0 -0
- data/test/{fixtures → models}/mixed_case_monkey.rb +0 -0
- data/test/{fixtures → models}/movie.rb +0 -0
- data/test/{fixtures → models}/order.rb +2 -2
- data/test/models/owner.rb +4 -0
- data/test/{fixtures → models}/parrot.rb +0 -0
- data/test/models/person.rb +10 -0
- data/test/models/pet.rb +4 -0
- data/test/models/pirate.rb +9 -0
- data/test/{fixtures → models}/post.rb +23 -2
- data/test/models/price_estimate.rb +3 -0
- data/test/{fixtures → models}/project.rb +1 -0
- data/test/{fixtures → models}/reader.rb +0 -0
- data/test/models/reference.rb +4 -0
- data/test/{fixtures → models}/reply.rb +7 -5
- data/test/{fixtures → models}/ship.rb +0 -0
- data/test/models/sponsor.rb +4 -0
- data/test/{fixtures → models}/subject.rb +0 -0
- data/test/{fixtures → models}/subscriber.rb +2 -0
- data/test/models/subscription.rb +4 -0
- data/test/{fixtures → models}/tag.rb +0 -0
- data/test/{fixtures → models}/tagging.rb +0 -0
- data/test/{fixtures → models}/task.rb +0 -0
- data/test/{fixtures → models}/topic.rb +32 -4
- data/test/{fixtures → models}/treasure.rb +2 -0
- data/test/{fixtures → models}/vertex.rb +0 -0
- data/test/models/warehouse_thing.rb +5 -0
- data/test/schema/mysql_specific_schema.rb +12 -0
- data/test/schema/postgresql_specific_schema.rb +103 -0
- data/test/schema/schema.rb +421 -0
- data/test/schema/schema2.rb +6 -0
- data/test/schema/sqlite_specific_schema.rb +25 -0
- data/test/schema/sqlserver_specific_schema.rb +5 -0
- metadata +192 -176
- data/test/aaa_create_tables_test.rb +0 -72
- data/test/abstract_unit.rb +0 -84
- data/test/active_schema_test_mysql.rb +0 -46
- data/test/all.sh +0 -8
- data/test/association_inheritance_reload.rb +0 -14
- data/test/associations_test.rb +0 -2177
- data/test/fixtures/bad_fixtures/attr_with_numeric_first_char +0 -1
- data/test/fixtures/bad_fixtures/attr_with_spaces +0 -1
- data/test/fixtures/bad_fixtures/blank_line +0 -3
- data/test/fixtures/bad_fixtures/duplicate_attributes +0 -3
- data/test/fixtures/bad_fixtures/missing_value +0 -1
- data/test/fixtures/db_definitions/db2.drop.sql +0 -33
- data/test/fixtures/db_definitions/db2.sql +0 -235
- data/test/fixtures/db_definitions/db22.drop.sql +0 -2
- data/test/fixtures/db_definitions/db22.sql +0 -5
- data/test/fixtures/db_definitions/firebird.drop.sql +0 -65
- data/test/fixtures/db_definitions/firebird.sql +0 -310
- data/test/fixtures/db_definitions/firebird2.drop.sql +0 -2
- data/test/fixtures/db_definitions/firebird2.sql +0 -6
- data/test/fixtures/db_definitions/frontbase.drop.sql +0 -33
- data/test/fixtures/db_definitions/frontbase.sql +0 -273
- data/test/fixtures/db_definitions/frontbase2.drop.sql +0 -1
- data/test/fixtures/db_definitions/frontbase2.sql +0 -4
- data/test/fixtures/db_definitions/openbase.drop.sql +0 -2
- data/test/fixtures/db_definitions/openbase.sql +0 -318
- data/test/fixtures/db_definitions/openbase2.drop.sql +0 -2
- data/test/fixtures/db_definitions/openbase2.sql +0 -7
- data/test/fixtures/db_definitions/oracle.drop.sql +0 -67
- data/test/fixtures/db_definitions/oracle.sql +0 -330
- data/test/fixtures/db_definitions/oracle2.drop.sql +0 -2
- data/test/fixtures/db_definitions/oracle2.sql +0 -6
- data/test/fixtures/db_definitions/postgresql.drop.sql +0 -44
- data/test/fixtures/db_definitions/postgresql.sql +0 -292
- data/test/fixtures/db_definitions/postgresql2.drop.sql +0 -2
- data/test/fixtures/db_definitions/postgresql2.sql +0 -4
- data/test/fixtures/db_definitions/schema.rb +0 -354
- data/test/fixtures/db_definitions/schema2.rb +0 -11
- data/test/fixtures/db_definitions/sqlite.drop.sql +0 -33
- data/test/fixtures/db_definitions/sqlite.sql +0 -219
- data/test/fixtures/db_definitions/sqlite2.drop.sql +0 -2
- data/test/fixtures/db_definitions/sqlite2.sql +0 -5
- data/test/fixtures/db_definitions/sybase.drop.sql +0 -35
- data/test/fixtures/db_definitions/sybase.sql +0 -222
- data/test/fixtures/db_definitions/sybase2.drop.sql +0 -4
- data/test/fixtures/db_definitions/sybase2.sql +0 -5
- data/test/fixtures/developers_projects/david_action_controller +0 -3
- data/test/fixtures/developers_projects/david_active_record +0 -3
- data/test/fixtures/developers_projects/jamis_active_record +0 -2
- data/test/fixtures/person.rb +0 -4
- data/test/fixtures/pirate.rb +0 -5
- data/test/fixtures/subscribers/first +0 -2
- data/test/fixtures/subscribers/second +0 -2
- data/test/schema_dumper_test.rb +0 -131
- data/test/schema_test_postgresql.rb +0 -64
@@ -0,0 +1,25 @@
|
|
1
|
+
ActiveRecord::Schema.define do
|
2
|
+
# For sqlite 3.1.0+, make a table with a autoincrement column
|
3
|
+
if supports_autoincrement?
|
4
|
+
create_table :table_with_autoincrement, :force => true do |t|
|
5
|
+
t.column :name, :string
|
6
|
+
end
|
7
|
+
end
|
8
|
+
|
9
|
+
execute "DROP TABLE fk_test_has_fk" rescue nil
|
10
|
+
execute "DROP TABLE fk_test_has_pk" rescue nil
|
11
|
+
execute <<_SQL
|
12
|
+
CREATE TABLE 'fk_test_has_pk' (
|
13
|
+
'id' INTEGER NOT NULL PRIMARY KEY
|
14
|
+
);
|
15
|
+
_SQL
|
16
|
+
|
17
|
+
execute <<_SQL
|
18
|
+
CREATE TABLE 'fk_test_has_fk' (
|
19
|
+
'id' INTEGER NOT NULL PRIMARY KEY,
|
20
|
+
'fk_id' INTEGER NOT NULL,
|
21
|
+
|
22
|
+
FOREIGN KEY ('fk_id') REFERENCES 'fk_test_has_pk'('id')
|
23
|
+
);
|
24
|
+
_SQL
|
25
|
+
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: activerecord
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.0
|
4
|
+
version: 2.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- David Heinemeier Hansson
|
@@ -9,18 +9,17 @@ autorequire: active_record
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2008-
|
12
|
+
date: 2008-05-31 00:00:00 -07:00
|
13
13
|
default_executable:
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: activesupport
|
17
|
-
type: :runtime
|
18
17
|
version_requirement:
|
19
18
|
version_requirements: !ruby/object:Gem::Requirement
|
20
19
|
requirements:
|
21
20
|
- - "="
|
22
21
|
- !ruby/object:Gem::Version
|
23
|
-
version: 2.0
|
22
|
+
version: 2.1.0
|
24
23
|
version:
|
25
24
|
description: Implements the ActiveRecord pattern (Fowler, PoEAA) for ORM. It ties database tables and classes together for business objects, like Customer or Subscription, that can find, save, and destroy themselves without resorting to manual SQL.
|
26
25
|
email: david@loudthinking.com
|
@@ -38,6 +37,7 @@ files:
|
|
38
37
|
- CHANGELOG
|
39
38
|
- lib/active_record
|
40
39
|
- lib/active_record/aggregations.rb
|
40
|
+
- lib/active_record/association_preload.rb
|
41
41
|
- lib/active_record/associations
|
42
42
|
- lib/active_record/associations/association_collection.rb
|
43
43
|
- lib/active_record/associations/association_proxy.rb
|
@@ -47,6 +47,7 @@ files:
|
|
47
47
|
- lib/active_record/associations/has_many_association.rb
|
48
48
|
- lib/active_record/associations/has_many_through_association.rb
|
49
49
|
- lib/active_record/associations/has_one_association.rb
|
50
|
+
- lib/active_record/associations/has_one_through_association.rb
|
50
51
|
- lib/active_record/associations.rb
|
51
52
|
- lib/active_record/attribute_methods.rb
|
52
53
|
- lib/active_record/base.rb
|
@@ -65,11 +66,13 @@ files:
|
|
65
66
|
- lib/active_record/connection_adapters/postgresql_adapter.rb
|
66
67
|
- lib/active_record/connection_adapters/sqlite3_adapter.rb
|
67
68
|
- lib/active_record/connection_adapters/sqlite_adapter.rb
|
69
|
+
- lib/active_record/dirty.rb
|
68
70
|
- lib/active_record/fixtures.rb
|
69
71
|
- lib/active_record/locking
|
70
72
|
- lib/active_record/locking/optimistic.rb
|
71
73
|
- lib/active_record/locking/pessimistic.rb
|
72
74
|
- lib/active_record/migration.rb
|
75
|
+
- lib/active_record/named_scope.rb
|
73
76
|
- lib/active_record/observer.rb
|
74
77
|
- lib/active_record/query_cache.rb
|
75
78
|
- lib/active_record/reflection.rb
|
@@ -79,6 +82,7 @@ files:
|
|
79
82
|
- lib/active_record/serializers
|
80
83
|
- lib/active_record/serializers/json_serializer.rb
|
81
84
|
- lib/active_record/serializers/xml_serializer.rb
|
85
|
+
- lib/active_record/test_case.rb
|
82
86
|
- lib/active_record/timestamp.rb
|
83
87
|
- lib/active_record/transactions.rb
|
84
88
|
- lib/active_record/validations.rb
|
@@ -88,33 +92,82 @@ files:
|
|
88
92
|
- lib/active_record/version.rb
|
89
93
|
- lib/active_record.rb
|
90
94
|
- lib/activerecord.rb
|
91
|
-
- test/
|
92
|
-
- test/
|
93
|
-
- test/
|
94
|
-
- test/
|
95
|
-
- test/
|
96
|
-
- test/
|
97
|
-
- test/
|
98
|
-
- test/
|
99
|
-
- test/
|
100
|
-
- test/
|
101
|
-
- test/
|
102
|
-
- test/associations
|
103
|
-
- test/associations/
|
104
|
-
- test/associations/
|
105
|
-
- test/associations/
|
106
|
-
- test/associations/
|
107
|
-
- test/associations/
|
108
|
-
- test/
|
109
|
-
- test/
|
110
|
-
- test/
|
111
|
-
- test/
|
112
|
-
- test/
|
113
|
-
- test/
|
114
|
-
- test/
|
115
|
-
- test/
|
116
|
-
- test/
|
117
|
-
- test/
|
95
|
+
- test/assets
|
96
|
+
- test/assets/example.log
|
97
|
+
- test/assets/flowers.jpg
|
98
|
+
- test/cases
|
99
|
+
- test/cases/aaa_create_tables_test.rb
|
100
|
+
- test/cases/active_schema_test_mysql.rb
|
101
|
+
- test/cases/active_schema_test_postgresql.rb
|
102
|
+
- test/cases/adapter_test.rb
|
103
|
+
- test/cases/adapter_test_sqlserver.rb
|
104
|
+
- test/cases/aggregations_test.rb
|
105
|
+
- test/cases/ar_schema_test.rb
|
106
|
+
- test/cases/associations
|
107
|
+
- test/cases/associations/belongs_to_associations_test.rb
|
108
|
+
- test/cases/associations/callbacks_test.rb
|
109
|
+
- test/cases/associations/cascaded_eager_loading_test.rb
|
110
|
+
- test/cases/associations/eager_load_nested_include_test.rb
|
111
|
+
- test/cases/associations/eager_singularization_test.rb
|
112
|
+
- test/cases/associations/eager_test.rb
|
113
|
+
- test/cases/associations/extension_test.rb
|
114
|
+
- test/cases/associations/has_and_belongs_to_many_associations_test.rb
|
115
|
+
- test/cases/associations/has_many_associations_test.rb
|
116
|
+
- test/cases/associations/has_many_through_associations_test.rb
|
117
|
+
- test/cases/associations/has_one_associations_test.rb
|
118
|
+
- test/cases/associations/has_one_through_associations_test.rb
|
119
|
+
- test/cases/associations/inner_join_association_test.rb
|
120
|
+
- test/cases/associations/join_model_test.rb
|
121
|
+
- test/cases/associations_test.rb
|
122
|
+
- test/cases/attribute_methods_test.rb
|
123
|
+
- test/cases/base_test.rb
|
124
|
+
- test/cases/binary_test.rb
|
125
|
+
- test/cases/calculations_test.rb
|
126
|
+
- test/cases/callbacks_test.rb
|
127
|
+
- test/cases/class_inheritable_attributes_test.rb
|
128
|
+
- test/cases/column_alias_test.rb
|
129
|
+
- test/cases/connection_test_firebird.rb
|
130
|
+
- test/cases/connection_test_mysql.rb
|
131
|
+
- test/cases/copy_table_test_sqlite.rb
|
132
|
+
- test/cases/datatype_test_postgresql.rb
|
133
|
+
- test/cases/date_time_test.rb
|
134
|
+
- test/cases/default_test_firebird.rb
|
135
|
+
- test/cases/defaults_test.rb
|
136
|
+
- test/cases/deprecated_finder_test.rb
|
137
|
+
- test/cases/dirty_test.rb
|
138
|
+
- test/cases/finder_respond_to_test.rb
|
139
|
+
- test/cases/finder_test.rb
|
140
|
+
- test/cases/fixtures_test.rb
|
141
|
+
- test/cases/helper.rb
|
142
|
+
- test/cases/inheritance_test.rb
|
143
|
+
- test/cases/invalid_date_test.rb
|
144
|
+
- test/cases/json_serialization_test.rb
|
145
|
+
- test/cases/lifecycle_test.rb
|
146
|
+
- test/cases/locking_test.rb
|
147
|
+
- test/cases/method_scoping_test.rb
|
148
|
+
- test/cases/migration_test.rb
|
149
|
+
- test/cases/migration_test_firebird.rb
|
150
|
+
- test/cases/mixin_test.rb
|
151
|
+
- test/cases/modules_test.rb
|
152
|
+
- test/cases/multiple_db_test.rb
|
153
|
+
- test/cases/named_scope_test.rb
|
154
|
+
- test/cases/pk_test.rb
|
155
|
+
- test/cases/query_cache_test.rb
|
156
|
+
- test/cases/readonly_test.rb
|
157
|
+
- test/cases/reflection_test.rb
|
158
|
+
- test/cases/reserved_word_test_mysql.rb
|
159
|
+
- test/cases/schema_authorization_test_postgresql.rb
|
160
|
+
- test/cases/schema_dumper_test.rb
|
161
|
+
- test/cases/schema_test_postgresql.rb
|
162
|
+
- test/cases/serialization_test.rb
|
163
|
+
- test/cases/synonym_test_oracle.rb
|
164
|
+
- test/cases/table_name_test_sqlserver.rb
|
165
|
+
- test/cases/threaded_connections_test.rb
|
166
|
+
- test/cases/transactions_test.rb
|
167
|
+
- test/cases/unconnected_test.rb
|
168
|
+
- test/cases/validations_test.rb
|
169
|
+
- test/cases/xml_serialization_test.rb
|
170
|
+
- test/config.rb
|
118
171
|
- test/connections
|
119
172
|
- test/connections/native_db2
|
120
173
|
- test/connections/native_db2/connection.rb
|
@@ -137,32 +190,16 @@ files:
|
|
137
190
|
- test/connections/native_sqlite3/in_memory_connection.rb
|
138
191
|
- test/connections/native_sybase
|
139
192
|
- test/connections/native_sybase/connection.rb
|
140
|
-
- test/copy_table_test_sqlite.rb
|
141
|
-
- test/datatype_test_postgresql.rb
|
142
|
-
- test/date_time_test.rb
|
143
|
-
- test/default_test_firebird.rb
|
144
|
-
- test/defaults_test.rb
|
145
|
-
- test/deprecated_finder_test.rb
|
146
|
-
- test/finder_test.rb
|
147
193
|
- test/fixtures
|
148
194
|
- test/fixtures/accounts.yml
|
149
195
|
- test/fixtures/all
|
150
196
|
- test/fixtures/all/developers.yml
|
151
197
|
- test/fixtures/all/people.csv
|
152
198
|
- test/fixtures/all/tasks.yml
|
153
|
-
- test/fixtures/
|
199
|
+
- test/fixtures/author_addresses.yml
|
154
200
|
- test/fixtures/author_favorites.yml
|
155
201
|
- test/fixtures/authors.yml
|
156
|
-
- test/fixtures/auto_id.rb
|
157
|
-
- test/fixtures/bad_fixtures
|
158
|
-
- test/fixtures/bad_fixtures/attr_with_numeric_first_char
|
159
|
-
- test/fixtures/bad_fixtures/attr_with_spaces
|
160
|
-
- test/fixtures/bad_fixtures/blank_line
|
161
|
-
- test/fixtures/bad_fixtures/duplicate_attributes
|
162
|
-
- test/fixtures/bad_fixtures/missing_value
|
163
202
|
- test/fixtures/binaries.yml
|
164
|
-
- test/fixtures/binary.rb
|
165
|
-
- test/fixtures/book.rb
|
166
203
|
- test/fixtures/books.yml
|
167
204
|
- test/fixtures/categories
|
168
205
|
- test/fixtures/categories/special_categories.yml
|
@@ -171,105 +208,29 @@ files:
|
|
171
208
|
- test/fixtures/categories.yml
|
172
209
|
- test/fixtures/categories_ordered.yml
|
173
210
|
- test/fixtures/categories_posts.yml
|
174
|
-
- test/fixtures/categorization.rb
|
175
211
|
- test/fixtures/categorizations.yml
|
176
|
-
- test/fixtures/
|
177
|
-
- test/fixtures/citation.rb
|
178
|
-
- test/fixtures/column_name.rb
|
179
|
-
- test/fixtures/comment.rb
|
212
|
+
- test/fixtures/clubs.yml
|
180
213
|
- test/fixtures/comments.yml
|
181
214
|
- test/fixtures/companies.yml
|
182
|
-
- test/fixtures/company.rb
|
183
|
-
- test/fixtures/company_in_module.rb
|
184
|
-
- test/fixtures/computer.rb
|
185
215
|
- test/fixtures/computers.yml
|
186
|
-
- test/fixtures/contact.rb
|
187
|
-
- test/fixtures/course.rb
|
188
216
|
- test/fixtures/courses.yml
|
189
|
-
- test/fixtures/customer.rb
|
190
217
|
- test/fixtures/customers.yml
|
191
|
-
- test/fixtures/db_definitions
|
192
|
-
- test/fixtures/db_definitions/db2.drop.sql
|
193
|
-
- test/fixtures/db_definitions/db2.sql
|
194
|
-
- test/fixtures/db_definitions/db22.drop.sql
|
195
|
-
- test/fixtures/db_definitions/db22.sql
|
196
|
-
- test/fixtures/db_definitions/firebird.drop.sql
|
197
|
-
- test/fixtures/db_definitions/firebird.sql
|
198
|
-
- test/fixtures/db_definitions/firebird2.drop.sql
|
199
|
-
- test/fixtures/db_definitions/firebird2.sql
|
200
|
-
- test/fixtures/db_definitions/frontbase.drop.sql
|
201
|
-
- test/fixtures/db_definitions/frontbase.sql
|
202
|
-
- test/fixtures/db_definitions/frontbase2.drop.sql
|
203
|
-
- test/fixtures/db_definitions/frontbase2.sql
|
204
|
-
- test/fixtures/db_definitions/openbase.drop.sql
|
205
|
-
- test/fixtures/db_definitions/openbase.sql
|
206
|
-
- test/fixtures/db_definitions/openbase2.drop.sql
|
207
|
-
- test/fixtures/db_definitions/openbase2.sql
|
208
|
-
- test/fixtures/db_definitions/oracle.drop.sql
|
209
|
-
- test/fixtures/db_definitions/oracle.sql
|
210
|
-
- test/fixtures/db_definitions/oracle2.drop.sql
|
211
|
-
- test/fixtures/db_definitions/oracle2.sql
|
212
|
-
- test/fixtures/db_definitions/postgresql.drop.sql
|
213
|
-
- test/fixtures/db_definitions/postgresql.sql
|
214
|
-
- test/fixtures/db_definitions/postgresql2.drop.sql
|
215
|
-
- test/fixtures/db_definitions/postgresql2.sql
|
216
|
-
- test/fixtures/db_definitions/schema.rb
|
217
|
-
- test/fixtures/db_definitions/schema2.rb
|
218
|
-
- test/fixtures/db_definitions/sqlite.drop.sql
|
219
|
-
- test/fixtures/db_definitions/sqlite.sql
|
220
|
-
- test/fixtures/db_definitions/sqlite2.drop.sql
|
221
|
-
- test/fixtures/db_definitions/sqlite2.sql
|
222
|
-
- test/fixtures/db_definitions/sybase.drop.sql
|
223
|
-
- test/fixtures/db_definitions/sybase.sql
|
224
|
-
- test/fixtures/db_definitions/sybase2.drop.sql
|
225
|
-
- test/fixtures/db_definitions/sybase2.sql
|
226
|
-
- test/fixtures/default.rb
|
227
|
-
- test/fixtures/developer.rb
|
228
218
|
- test/fixtures/developers.yml
|
229
|
-
- test/fixtures/developers_projects
|
230
|
-
- test/fixtures/developers_projects/david_action_controller
|
231
|
-
- test/fixtures/developers_projects/david_active_record
|
232
|
-
- test/fixtures/developers_projects/jamis_active_record
|
233
219
|
- test/fixtures/developers_projects.yml
|
234
|
-
- test/fixtures/edge.rb
|
235
220
|
- test/fixtures/edges.yml
|
236
|
-
- test/fixtures/entrant.rb
|
237
221
|
- test/fixtures/entrants.yml
|
238
|
-
- test/fixtures/example.log
|
239
222
|
- test/fixtures/fk_test_has_fk.yml
|
240
223
|
- test/fixtures/fk_test_has_pk.yml
|
241
|
-
- test/fixtures/flowers.jpg
|
242
224
|
- test/fixtures/funny_jokes.yml
|
243
|
-
- test/fixtures/item.rb
|
244
225
|
- test/fixtures/items.yml
|
245
|
-
- test/fixtures/
|
246
|
-
- test/fixtures/keyboard.rb
|
247
|
-
- test/fixtures/legacy_thing.rb
|
226
|
+
- test/fixtures/jobs.yml
|
248
227
|
- test/fixtures/legacy_things.yml
|
249
|
-
- test/fixtures/matey.rb
|
250
228
|
- test/fixtures/mateys.yml
|
251
|
-
- test/fixtures/
|
252
|
-
- test/fixtures/
|
253
|
-
- test/fixtures/migrations/2_we_need_reminders.rb
|
254
|
-
- test/fixtures/migrations/3_innocent_jointable.rb
|
255
|
-
- test/fixtures/migrations_with_decimal
|
256
|
-
- test/fixtures/migrations_with_decimal/1_give_me_big_numbers.rb
|
257
|
-
- test/fixtures/migrations_with_duplicate
|
258
|
-
- test/fixtures/migrations_with_duplicate/1_people_have_last_names.rb
|
259
|
-
- test/fixtures/migrations_with_duplicate/2_we_need_reminders.rb
|
260
|
-
- test/fixtures/migrations_with_duplicate/3_foo.rb
|
261
|
-
- test/fixtures/migrations_with_duplicate/3_innocent_jointable.rb
|
262
|
-
- test/fixtures/migrations_with_missing_versions
|
263
|
-
- test/fixtures/migrations_with_missing_versions/1000_people_have_middle_names.rb
|
264
|
-
- test/fixtures/migrations_with_missing_versions/1_people_have_last_names.rb
|
265
|
-
- test/fixtures/migrations_with_missing_versions/3_we_need_reminders.rb
|
266
|
-
- test/fixtures/migrations_with_missing_versions/4_innocent_jointable.rb
|
267
|
-
- test/fixtures/minimalistic.rb
|
229
|
+
- test/fixtures/members.yml
|
230
|
+
- test/fixtures/memberships.yml
|
268
231
|
- test/fixtures/minimalistics.yml
|
269
|
-
- test/fixtures/mixed_case_monkey.rb
|
270
232
|
- test/fixtures/mixed_case_monkeys.yml
|
271
233
|
- test/fixtures/mixins.yml
|
272
|
-
- test/fixtures/movie.rb
|
273
234
|
- test/fixtures/movies.yml
|
274
235
|
- test/fixtures/naked
|
275
236
|
- test/fixtures/naked/csv
|
@@ -278,73 +239,128 @@ files:
|
|
278
239
|
- test/fixtures/naked/yml/accounts.yml
|
279
240
|
- test/fixtures/naked/yml/companies.yml
|
280
241
|
- test/fixtures/naked/yml/courses.yml
|
281
|
-
- test/fixtures/
|
282
|
-
- test/fixtures/parrot.rb
|
242
|
+
- test/fixtures/owners.yml
|
283
243
|
- test/fixtures/parrots.yml
|
284
244
|
- test/fixtures/parrots_pirates.yml
|
285
245
|
- test/fixtures/people.yml
|
286
|
-
- test/fixtures/
|
287
|
-
- test/fixtures/pirate.rb
|
246
|
+
- test/fixtures/pets.yml
|
288
247
|
- test/fixtures/pirates.yml
|
289
|
-
- test/fixtures/post.rb
|
290
248
|
- test/fixtures/posts.yml
|
291
|
-
- test/fixtures/
|
249
|
+
- test/fixtures/price_estimates.yml
|
292
250
|
- test/fixtures/projects.yml
|
293
|
-
- test/fixtures/reader.rb
|
294
251
|
- test/fixtures/readers.yml
|
295
|
-
- test/fixtures/
|
252
|
+
- test/fixtures/references.yml
|
296
253
|
- test/fixtures/reserved_words
|
297
254
|
- test/fixtures/reserved_words/distinct.yml
|
298
255
|
- test/fixtures/reserved_words/distincts_selects.yml
|
299
256
|
- test/fixtures/reserved_words/group.yml
|
300
257
|
- test/fixtures/reserved_words/select.yml
|
301
258
|
- test/fixtures/reserved_words/values.yml
|
302
|
-
- test/fixtures/ship.rb
|
303
259
|
- test/fixtures/ships.yml
|
304
|
-
- test/fixtures/
|
305
|
-
- test/fixtures/
|
306
|
-
- test/fixtures/
|
307
|
-
- test/fixtures/subscribers/first
|
308
|
-
- test/fixtures/subscribers/second
|
309
|
-
- test/fixtures/tag.rb
|
310
|
-
- test/fixtures/tagging.rb
|
260
|
+
- test/fixtures/sponsors.yml
|
261
|
+
- test/fixtures/subscribers.yml
|
262
|
+
- test/fixtures/subscriptions.yml
|
311
263
|
- test/fixtures/taggings.yml
|
312
264
|
- test/fixtures/tags.yml
|
313
|
-
- test/fixtures/task.rb
|
314
265
|
- test/fixtures/tasks.yml
|
315
|
-
- test/fixtures/topic.rb
|
316
266
|
- test/fixtures/topics.yml
|
317
|
-
- test/fixtures/treasure.rb
|
318
267
|
- test/fixtures/treasures.yml
|
319
|
-
- test/fixtures/vertex.rb
|
320
268
|
- test/fixtures/vertices.yml
|
321
|
-
- test/
|
322
|
-
- test/
|
323
|
-
- test/
|
324
|
-
- test/
|
325
|
-
- test/
|
326
|
-
- test/
|
327
|
-
- test/
|
328
|
-
- test/
|
329
|
-
- test/
|
330
|
-
- test/
|
331
|
-
- test/
|
332
|
-
- test/
|
333
|
-
- test/
|
334
|
-
- test/
|
335
|
-
- test/
|
336
|
-
- test/
|
337
|
-
- test/
|
338
|
-
- test/
|
339
|
-
- test/
|
340
|
-
- test/
|
341
|
-
- test/
|
342
|
-
- test/
|
343
|
-
- test/
|
344
|
-
- test/
|
345
|
-
- test/
|
346
|
-
- test/
|
347
|
-
- test/
|
269
|
+
- test/fixtures/warehouse-things.yml
|
270
|
+
- test/migrations
|
271
|
+
- test/migrations/decimal
|
272
|
+
- test/migrations/decimal/1_give_me_big_numbers.rb
|
273
|
+
- test/migrations/duplicate
|
274
|
+
- test/migrations/duplicate/1_people_have_last_names.rb
|
275
|
+
- test/migrations/duplicate/2_we_need_reminders.rb
|
276
|
+
- test/migrations/duplicate/3_foo.rb
|
277
|
+
- test/migrations/duplicate/3_innocent_jointable.rb
|
278
|
+
- test/migrations/duplicate_names
|
279
|
+
- test/migrations/duplicate_names/20080507052938_chunky.rb
|
280
|
+
- test/migrations/duplicate_names/20080507053028_chunky.rb
|
281
|
+
- test/migrations/interleaved
|
282
|
+
- test/migrations/interleaved/pass_1
|
283
|
+
- test/migrations/interleaved/pass_1/3_innocent_jointable.rb
|
284
|
+
- test/migrations/interleaved/pass_2
|
285
|
+
- test/migrations/interleaved/pass_2/1_people_have_last_names.rb
|
286
|
+
- test/migrations/interleaved/pass_2/3_innocent_jointable.rb
|
287
|
+
- test/migrations/interleaved/pass_3
|
288
|
+
- test/migrations/interleaved/pass_3/1_people_have_last_names.rb
|
289
|
+
- test/migrations/interleaved/pass_3/2_i_raise_on_down.rb
|
290
|
+
- test/migrations/interleaved/pass_3/3_innocent_jointable.rb
|
291
|
+
- test/migrations/missing
|
292
|
+
- test/migrations/missing/1000_people_have_middle_names.rb
|
293
|
+
- test/migrations/missing/1_people_have_last_names.rb
|
294
|
+
- test/migrations/missing/3_we_need_reminders.rb
|
295
|
+
- test/migrations/missing/4_innocent_jointable.rb
|
296
|
+
- test/migrations/valid
|
297
|
+
- test/migrations/valid/1_people_have_last_names.rb
|
298
|
+
- test/migrations/valid/2_we_need_reminders.rb
|
299
|
+
- test/migrations/valid/3_innocent_jointable.rb
|
300
|
+
- test/models
|
301
|
+
- test/models/author.rb
|
302
|
+
- test/models/auto_id.rb
|
303
|
+
- test/models/binary.rb
|
304
|
+
- test/models/book.rb
|
305
|
+
- test/models/categorization.rb
|
306
|
+
- test/models/category.rb
|
307
|
+
- test/models/citation.rb
|
308
|
+
- test/models/club.rb
|
309
|
+
- test/models/column_name.rb
|
310
|
+
- test/models/comment.rb
|
311
|
+
- test/models/company.rb
|
312
|
+
- test/models/company_in_module.rb
|
313
|
+
- test/models/computer.rb
|
314
|
+
- test/models/contact.rb
|
315
|
+
- test/models/course.rb
|
316
|
+
- test/models/customer.rb
|
317
|
+
- test/models/default.rb
|
318
|
+
- test/models/developer.rb
|
319
|
+
- test/models/edge.rb
|
320
|
+
- test/models/entrant.rb
|
321
|
+
- test/models/guid.rb
|
322
|
+
- test/models/item.rb
|
323
|
+
- test/models/job.rb
|
324
|
+
- test/models/joke.rb
|
325
|
+
- test/models/keyboard.rb
|
326
|
+
- test/models/legacy_thing.rb
|
327
|
+
- test/models/matey.rb
|
328
|
+
- test/models/member.rb
|
329
|
+
- test/models/membership.rb
|
330
|
+
- test/models/minimalistic.rb
|
331
|
+
- test/models/mixed_case_monkey.rb
|
332
|
+
- test/models/movie.rb
|
333
|
+
- test/models/order.rb
|
334
|
+
- test/models/owner.rb
|
335
|
+
- test/models/parrot.rb
|
336
|
+
- test/models/person.rb
|
337
|
+
- test/models/pet.rb
|
338
|
+
- test/models/pirate.rb
|
339
|
+
- test/models/post.rb
|
340
|
+
- test/models/price_estimate.rb
|
341
|
+
- test/models/project.rb
|
342
|
+
- test/models/reader.rb
|
343
|
+
- test/models/reference.rb
|
344
|
+
- test/models/reply.rb
|
345
|
+
- test/models/ship.rb
|
346
|
+
- test/models/sponsor.rb
|
347
|
+
- test/models/subject.rb
|
348
|
+
- test/models/subscriber.rb
|
349
|
+
- test/models/subscription.rb
|
350
|
+
- test/models/tag.rb
|
351
|
+
- test/models/tagging.rb
|
352
|
+
- test/models/task.rb
|
353
|
+
- test/models/topic.rb
|
354
|
+
- test/models/treasure.rb
|
355
|
+
- test/models/vertex.rb
|
356
|
+
- test/models/warehouse_thing.rb
|
357
|
+
- test/schema
|
358
|
+
- test/schema/mysql_specific_schema.rb
|
359
|
+
- test/schema/postgresql_specific_schema.rb
|
360
|
+
- test/schema/schema.rb
|
361
|
+
- test/schema/schema2.rb
|
362
|
+
- test/schema/sqlite_specific_schema.rb
|
363
|
+
- test/schema/sqlserver_specific_schema.rb
|
348
364
|
- examples/associations.png
|
349
365
|
has_rdoc: true
|
350
366
|
homepage: http://www.rubyonrails.org
|
@@ -369,7 +385,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
369
385
|
requirements: []
|
370
386
|
|
371
387
|
rubyforge_project: activerecord
|
372
|
-
rubygems_version: 1.
|
388
|
+
rubygems_version: 1.0.1
|
373
389
|
signing_key:
|
374
390
|
specification_version: 2
|
375
391
|
summary: Implements the ActiveRecord pattern for ORM.
|