activerecord 1.15.3 → 1.15.4
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 +29 -0
- data/Rakefile +1 -1
- data/lib/active_record/acts/list.rb +9 -0
- data/lib/active_record/acts/tree.rb +7 -0
- data/lib/active_record/associations.rb +21 -9
- data/lib/active_record/associations/has_many_association.rb +2 -2
- data/lib/active_record/associations/has_many_through_association.rb +10 -0
- data/lib/active_record/base.rb +12 -3
- data/lib/active_record/calculations.rb +2 -2
- data/lib/active_record/connection_adapters/abstract/quoting.rb +1 -1
- data/lib/active_record/connection_adapters/oracle_adapter.rb +1 -0
- data/lib/active_record/connection_adapters/sqlite_adapter.rb +2 -2
- data/lib/active_record/deprecated_finders.rb +3 -3
- data/lib/active_record/fixtures.rb +1 -1
- data/lib/active_record/timestamp.rb +0 -9
- data/lib/active_record/version.rb +1 -1
- data/test/associations/eager_test.rb +13 -0
- data/test/associations/join_model_test.rb +10 -1
- data/test/associations_test.rb +24 -3
- data/test/base_test.rb +17 -4
- data/test/fixtures/author.rb +1 -0
- data/test/fixtures/binaries.yml +437 -0
- data/test/fixtures_test.rb +9 -5
- data/test/migration_test.rb +9 -10
- metadata +146 -145
data/test/fixtures_test.rb
CHANGED
@@ -12,13 +12,15 @@ class FixturesTest < Test::Unit::TestCase
|
|
12
12
|
self.use_instantiated_fixtures = true
|
13
13
|
self.use_transactional_fixtures = false
|
14
14
|
|
15
|
-
fixtures :topics, :developers, :accounts, :tasks, :categories, :funny_jokes
|
15
|
+
fixtures :topics, :developers, :accounts, :tasks, :categories, :funny_jokes, :binaries
|
16
16
|
|
17
|
-
FIXTURES = %w( accounts companies customers
|
17
|
+
FIXTURES = %w( accounts binaries companies customers
|
18
18
|
developers developers_projects entrants
|
19
19
|
movies projects subscribers topics tasks )
|
20
20
|
MATCH_ATTRIBUTE_NAME = /[a-zA-Z][-_\w]*/
|
21
21
|
|
22
|
+
BINARY_FIXTURE_PATH = File.dirname(__FILE__) + '/fixtures/flowers.jpg'
|
23
|
+
|
22
24
|
def test_clean_fixtures
|
23
25
|
FIXTURES.each do |name|
|
24
26
|
fixtures = nil
|
@@ -100,7 +102,6 @@ class FixturesTest < Test::Unit::TestCase
|
|
100
102
|
assert first
|
101
103
|
end
|
102
104
|
|
103
|
-
|
104
105
|
def test_bad_format
|
105
106
|
path = File.join(File.dirname(__FILE__), 'fixtures', 'bad_fixtures')
|
106
107
|
Dir.entries(path).each do |file|
|
@@ -174,7 +175,6 @@ class FixturesTest < Test::Unit::TestCase
|
|
174
175
|
end
|
175
176
|
end
|
176
177
|
|
177
|
-
|
178
178
|
def test_yml_file_in_subdirectory
|
179
179
|
assert_equal(categories(:sub_special_1).name, "A special category in a subdir file")
|
180
180
|
assert_equal(categories(:sub_special_1).class, SpecialCategory)
|
@@ -185,7 +185,11 @@ class FixturesTest < Test::Unit::TestCase
|
|
185
185
|
assert_equal(categories(:sub_special_3).class, SpecialCategory)
|
186
186
|
end
|
187
187
|
|
188
|
-
|
188
|
+
def test_binary_in_fixtures
|
189
|
+
assert_equal 1, @binaries.size
|
190
|
+
data = File.read(BINARY_FIXTURE_PATH).freeze
|
191
|
+
assert_equal data, @flowers.data
|
192
|
+
end
|
189
193
|
end
|
190
194
|
|
191
195
|
if Account.connection.respond_to?(:reset_pk_sequence!)
|
data/test/migration_test.rb
CHANGED
@@ -170,7 +170,7 @@ if ActiveRecord::Base.connection.supports_migrations?
|
|
170
170
|
# SQL Server and Sybase will not allow you to add a NOT NULL column
|
171
171
|
# to a table without specifying a default value, so the
|
172
172
|
# following test must be skipped
|
173
|
-
unless current_adapter?(:SQLServerAdapter, :SybaseAdapter)
|
173
|
+
unless current_adapter?(:SQLServerAdapter, :SybaseAdapter, :SQLiteAdapter)
|
174
174
|
def test_add_column_not_null_without_default
|
175
175
|
Person.connection.create_table :testings do |t|
|
176
176
|
t.column :foo, :string
|
@@ -209,7 +209,7 @@ if ActiveRecord::Base.connection.supports_migrations?
|
|
209
209
|
def test_native_decimal_insert_manual_vs_automatic
|
210
210
|
# SQLite3 always uses float in violation of SQL
|
211
211
|
# 16 decimal places
|
212
|
-
correct_value =
|
212
|
+
correct_value = '0012345678901234567890.0123456789'.to_d
|
213
213
|
|
214
214
|
Person.delete_all
|
215
215
|
Person.connection.add_column "people", "wealth", :decimal, :precision => '30', :scale => '10'
|
@@ -227,8 +227,9 @@ if ActiveRecord::Base.connection.supports_migrations?
|
|
227
227
|
assert_kind_of BigDecimal, row.wealth
|
228
228
|
|
229
229
|
# If this assert fails, that means the SELECT is broken!
|
230
|
-
|
231
|
-
|
230
|
+
unless current_adapter?(:SQLite3Adapter)
|
231
|
+
assert_equal correct_value, row.wealth
|
232
|
+
end
|
232
233
|
# Reset to old state
|
233
234
|
Person.delete_all
|
234
235
|
|
@@ -240,8 +241,9 @@ if ActiveRecord::Base.connection.supports_migrations?
|
|
240
241
|
assert_kind_of BigDecimal, row.wealth
|
241
242
|
|
242
243
|
# If these asserts fail, that means the INSERT (create function, or cast to SQL) is broken!
|
243
|
-
|
244
|
-
|
244
|
+
unless current_adapter?(:SQLite3Adapter)
|
245
|
+
assert_equal correct_value, row.wealth
|
246
|
+
end
|
245
247
|
# Reset to old state
|
246
248
|
Person.connection.del_column "people", "wealth" rescue nil
|
247
249
|
Person.reset_column_information
|
@@ -267,10 +269,7 @@ if ActiveRecord::Base.connection.supports_migrations?
|
|
267
269
|
|
268
270
|
# Test for 30 significent digits (beyond the 16 of float), 10 of them
|
269
271
|
# after the decimal place.
|
270
|
-
|
271
|
-
# SQLite3 uses float in violation of SQL. Test for 16 decimal places.
|
272
|
-
assert_equal BigDecimal.new('0.123456789012346E20'), bob.wealth
|
273
|
-
else
|
272
|
+
unless current_adapter?(:SQLite3Adapter)
|
274
273
|
assert_equal BigDecimal.new("0012345678901234567890.0123456789"), bob.wealth
|
275
274
|
end
|
276
275
|
|
metadata
CHANGED
@@ -1,10 +1,10 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
|
-
rubygems_version: 0.9.
|
2
|
+
rubygems_version: 0.9.4
|
3
3
|
specification_version: 1
|
4
4
|
name: activerecord
|
5
5
|
version: !ruby/object:Gem::Version
|
6
|
-
version: 1.15.
|
7
|
-
date: 2007-
|
6
|
+
version: 1.15.4
|
7
|
+
date: 2007-10-04 00:00:00 -05:00
|
8
8
|
summary: Implements the ActiveRecord pattern for ORM.
|
9
9
|
require_paths:
|
10
10
|
- lib
|
@@ -35,37 +35,12 @@ files:
|
|
35
35
|
- RUNNING_UNIT_TESTS
|
36
36
|
- CHANGELOG
|
37
37
|
- lib/active_record
|
38
|
-
- lib/active_record.rb
|
39
38
|
- lib/active_record/acts
|
40
|
-
- lib/active_record/aggregations.rb
|
41
|
-
- lib/active_record/associations
|
42
|
-
- lib/active_record/associations.rb
|
43
|
-
- lib/active_record/attribute_methods.rb
|
44
|
-
- lib/active_record/base.rb
|
45
|
-
- lib/active_record/calculations.rb
|
46
|
-
- lib/active_record/callbacks.rb
|
47
|
-
- lib/active_record/connection_adapters
|
48
|
-
- lib/active_record/deprecated_associations.rb
|
49
|
-
- lib/active_record/deprecated_finders.rb
|
50
|
-
- lib/active_record/fixtures.rb
|
51
|
-
- lib/active_record/locking
|
52
|
-
- lib/active_record/migration.rb
|
53
|
-
- lib/active_record/observer.rb
|
54
|
-
- lib/active_record/query_cache.rb
|
55
|
-
- lib/active_record/reflection.rb
|
56
|
-
- lib/active_record/schema.rb
|
57
|
-
- lib/active_record/schema_dumper.rb
|
58
|
-
- lib/active_record/timestamp.rb
|
59
|
-
- lib/active_record/transactions.rb
|
60
|
-
- lib/active_record/validations.rb
|
61
|
-
- lib/active_record/vendor
|
62
|
-
- lib/active_record/version.rb
|
63
|
-
- lib/active_record/wrappers
|
64
|
-
- lib/active_record/wrappings.rb
|
65
|
-
- lib/active_record/xml_serialization.rb
|
66
39
|
- lib/active_record/acts/list.rb
|
67
40
|
- lib/active_record/acts/nested_set.rb
|
68
41
|
- lib/active_record/acts/tree.rb
|
42
|
+
- lib/active_record/aggregations.rb
|
43
|
+
- lib/active_record/associations
|
69
44
|
- lib/active_record/associations/association_collection.rb
|
70
45
|
- lib/active_record/associations/association_proxy.rb
|
71
46
|
- lib/active_record/associations/belongs_to_association.rb
|
@@ -74,7 +49,18 @@ files:
|
|
74
49
|
- lib/active_record/associations/has_many_association.rb
|
75
50
|
- lib/active_record/associations/has_many_through_association.rb
|
76
51
|
- lib/active_record/associations/has_one_association.rb
|
52
|
+
- lib/active_record/associations.rb
|
53
|
+
- lib/active_record/attribute_methods.rb
|
54
|
+
- lib/active_record/base.rb
|
55
|
+
- lib/active_record/calculations.rb
|
56
|
+
- lib/active_record/callbacks.rb
|
57
|
+
- lib/active_record/connection_adapters
|
77
58
|
- lib/active_record/connection_adapters/abstract
|
59
|
+
- lib/active_record/connection_adapters/abstract/connection_specification.rb
|
60
|
+
- lib/active_record/connection_adapters/abstract/database_statements.rb
|
61
|
+
- lib/active_record/connection_adapters/abstract/quoting.rb
|
62
|
+
- lib/active_record/connection_adapters/abstract/schema_definitions.rb
|
63
|
+
- lib/active_record/connection_adapters/abstract/schema_statements.rb
|
78
64
|
- lib/active_record/connection_adapters/abstract_adapter.rb
|
79
65
|
- lib/active_record/connection_adapters/db2_adapter.rb
|
80
66
|
- lib/active_record/connection_adapters/firebird_adapter.rb
|
@@ -86,17 +72,31 @@ files:
|
|
86
72
|
- lib/active_record/connection_adapters/sqlite_adapter.rb
|
87
73
|
- lib/active_record/connection_adapters/sqlserver_adapter.rb
|
88
74
|
- lib/active_record/connection_adapters/sybase_adapter.rb
|
89
|
-
- lib/active_record/
|
90
|
-
- lib/active_record/
|
91
|
-
- lib/active_record/
|
92
|
-
- lib/active_record/
|
93
|
-
- lib/active_record/connection_adapters/abstract/schema_statements.rb
|
75
|
+
- lib/active_record/deprecated_associations.rb
|
76
|
+
- lib/active_record/deprecated_finders.rb
|
77
|
+
- lib/active_record/fixtures.rb
|
78
|
+
- lib/active_record/locking
|
94
79
|
- lib/active_record/locking/optimistic.rb
|
95
80
|
- lib/active_record/locking/pessimistic.rb
|
81
|
+
- lib/active_record/migration.rb
|
82
|
+
- lib/active_record/observer.rb
|
83
|
+
- lib/active_record/query_cache.rb
|
84
|
+
- lib/active_record/reflection.rb
|
85
|
+
- lib/active_record/schema.rb
|
86
|
+
- lib/active_record/schema_dumper.rb
|
87
|
+
- lib/active_record/timestamp.rb
|
88
|
+
- lib/active_record/transactions.rb
|
89
|
+
- lib/active_record/validations.rb
|
90
|
+
- lib/active_record/vendor
|
96
91
|
- lib/active_record/vendor/db2.rb
|
97
92
|
- lib/active_record/vendor/mysql.rb
|
98
93
|
- lib/active_record/vendor/simple.rb
|
94
|
+
- lib/active_record/version.rb
|
95
|
+
- lib/active_record/wrappers
|
99
96
|
- lib/active_record/wrappers/yaml_wrapper.rb
|
97
|
+
- lib/active_record/wrappings.rb
|
98
|
+
- lib/active_record/xml_serialization.rb
|
99
|
+
- lib/active_record.rb
|
100
100
|
- test/aaa_create_tables_test.rb
|
101
101
|
- test/abstract_unit.rb
|
102
102
|
- test/active_schema_test_mysql.rb
|
@@ -107,6 +107,11 @@ files:
|
|
107
107
|
- test/ar_schema_test.rb
|
108
108
|
- test/association_inheritance_reload.rb
|
109
109
|
- test/associations
|
110
|
+
- test/associations/callbacks_test.rb
|
111
|
+
- test/associations/cascaded_eager_loading_test.rb
|
112
|
+
- test/associations/eager_test.rb
|
113
|
+
- test/associations/extension_test.rb
|
114
|
+
- test/associations/join_model_test.rb
|
110
115
|
- test/associations_test.rb
|
111
116
|
- test/attribute_methods_test.rb
|
112
117
|
- test/base_test.rb
|
@@ -117,77 +122,57 @@ files:
|
|
117
122
|
- test/column_alias_test.rb
|
118
123
|
- test/connection_test_firebird.rb
|
119
124
|
- test/connections
|
120
|
-
- test/copy_table_sqlite.rb
|
121
|
-
- test/datatype_test_postgresql.rb
|
122
|
-
- test/default_test_firebird.rb
|
123
|
-
- test/defaults_test.rb
|
124
|
-
- test/deprecated_associations_test.rb
|
125
|
-
- test/deprecated_finder_test.rb
|
126
|
-
- test/empty_date_time_test.rb
|
127
|
-
- test/finder_test.rb
|
128
|
-
- test/fixtures
|
129
|
-
- test/fixtures_test.rb
|
130
|
-
- test/inheritance_test.rb
|
131
|
-
- test/lifecycle_test.rb
|
132
|
-
- test/locking_test.rb
|
133
|
-
- test/method_scoping_test.rb
|
134
|
-
- test/migration_test.rb
|
135
|
-
- test/migration_test_firebird.rb
|
136
|
-
- test/mixin_nested_set_test.rb
|
137
|
-
- test/mixin_test.rb
|
138
|
-
- test/modules_test.rb
|
139
|
-
- test/multiple_db_test.rb
|
140
|
-
- test/pk_test.rb
|
141
|
-
- test/readonly_test.rb
|
142
|
-
- test/reflection_test.rb
|
143
|
-
- test/schema_authorization_test_postgresql.rb
|
144
|
-
- test/schema_dumper_test.rb
|
145
|
-
- test/schema_test_postgresql.rb
|
146
|
-
- test/synonym_test_oracle.rb
|
147
|
-
- test/table_name_test_sqlserver.rb
|
148
|
-
- test/threaded_connections_test.rb
|
149
|
-
- test/transactions_test.rb
|
150
|
-
- test/unconnected_test.rb
|
151
|
-
- test/validations_test.rb
|
152
|
-
- test/xml_serialization_test.rb
|
153
|
-
- test/associations/callbacks_test.rb
|
154
|
-
- test/associations/cascaded_eager_loading_test.rb
|
155
|
-
- test/associations/eager_test.rb
|
156
|
-
- test/associations/extension_test.rb
|
157
|
-
- test/associations/join_model_test.rb
|
158
125
|
- test/connections/native_db2
|
159
|
-
- test/connections/native_firebird
|
160
|
-
- test/connections/native_frontbase
|
161
|
-
- test/connections/native_mysql
|
162
|
-
- test/connections/native_openbase
|
163
|
-
- test/connections/native_oracle
|
164
|
-
- test/connections/native_postgresql
|
165
|
-
- test/connections/native_sqlite
|
166
|
-
- test/connections/native_sqlite3
|
167
|
-
- test/connections/native_sqlserver
|
168
|
-
- test/connections/native_sqlserver_odbc
|
169
|
-
- test/connections/native_sybase
|
170
126
|
- test/connections/native_db2/connection.rb
|
127
|
+
- test/connections/native_firebird
|
171
128
|
- test/connections/native_firebird/connection.rb
|
129
|
+
- test/connections/native_frontbase
|
172
130
|
- test/connections/native_frontbase/connection.rb
|
131
|
+
- test/connections/native_mysql
|
173
132
|
- test/connections/native_mysql/connection.rb
|
133
|
+
- test/connections/native_openbase
|
174
134
|
- test/connections/native_openbase/connection.rb
|
135
|
+
- test/connections/native_oracle
|
175
136
|
- test/connections/native_oracle/connection.rb
|
137
|
+
- test/connections/native_postgresql
|
176
138
|
- test/connections/native_postgresql/connection.rb
|
139
|
+
- test/connections/native_sqlite
|
177
140
|
- test/connections/native_sqlite/connection.rb
|
141
|
+
- test/connections/native_sqlite3
|
178
142
|
- test/connections/native_sqlite3/connection.rb
|
179
143
|
- test/connections/native_sqlite3/in_memory_connection.rb
|
144
|
+
- test/connections/native_sqlserver
|
180
145
|
- test/connections/native_sqlserver/connection.rb
|
146
|
+
- test/connections/native_sqlserver_odbc
|
181
147
|
- test/connections/native_sqlserver_odbc/connection.rb
|
148
|
+
- test/connections/native_sybase
|
182
149
|
- test/connections/native_sybase/connection.rb
|
150
|
+
- test/copy_table_sqlite.rb
|
151
|
+
- test/datatype_test_postgresql.rb
|
152
|
+
- test/default_test_firebird.rb
|
153
|
+
- test/defaults_test.rb
|
154
|
+
- test/deprecated_associations_test.rb
|
155
|
+
- test/deprecated_finder_test.rb
|
156
|
+
- test/empty_date_time_test.rb
|
157
|
+
- test/finder_test.rb
|
158
|
+
- test/fixtures
|
183
159
|
- test/fixtures/accounts.yml
|
184
160
|
- test/fixtures/author.rb
|
185
161
|
- test/fixtures/author_favorites.yml
|
186
162
|
- test/fixtures/authors.yml
|
187
163
|
- test/fixtures/auto_id.rb
|
188
164
|
- test/fixtures/bad_fixtures
|
165
|
+
- test/fixtures/bad_fixtures/attr_with_numeric_first_char
|
166
|
+
- test/fixtures/bad_fixtures/attr_with_spaces
|
167
|
+
- test/fixtures/bad_fixtures/blank_line
|
168
|
+
- test/fixtures/bad_fixtures/duplicate_attributes
|
169
|
+
- test/fixtures/bad_fixtures/missing_value
|
170
|
+
- test/fixtures/binaries.yml
|
189
171
|
- test/fixtures/binary.rb
|
190
172
|
- test/fixtures/categories
|
173
|
+
- test/fixtures/categories/special_categories.yml
|
174
|
+
- test/fixtures/categories/subsubdir
|
175
|
+
- test/fixtures/categories/subsubdir/arbitrary_filename.yml
|
191
176
|
- test/fixtures/categories.yml
|
192
177
|
- test/fixtures/categories_ordered.yml
|
193
178
|
- test/fixtures/categories_posts.yml
|
@@ -207,65 +192,6 @@ files:
|
|
207
192
|
- test/fixtures/customer.rb
|
208
193
|
- test/fixtures/customers.yml
|
209
194
|
- test/fixtures/db_definitions
|
210
|
-
- test/fixtures/default.rb
|
211
|
-
- test/fixtures/developer.rb
|
212
|
-
- test/fixtures/developers.yml
|
213
|
-
- test/fixtures/developers_projects
|
214
|
-
- test/fixtures/developers_projects.yml
|
215
|
-
- test/fixtures/edge.rb
|
216
|
-
- test/fixtures/edges.yml
|
217
|
-
- test/fixtures/entrant.rb
|
218
|
-
- test/fixtures/entrants.yml
|
219
|
-
- test/fixtures/fk_test_has_fk.yml
|
220
|
-
- test/fixtures/fk_test_has_pk.yml
|
221
|
-
- test/fixtures/flowers.jpg
|
222
|
-
- test/fixtures/funny_jokes.yml
|
223
|
-
- test/fixtures/joke.rb
|
224
|
-
- test/fixtures/keyboard.rb
|
225
|
-
- test/fixtures/legacy_thing.rb
|
226
|
-
- test/fixtures/legacy_things.yml
|
227
|
-
- test/fixtures/migrations
|
228
|
-
- test/fixtures/migrations_with_decimal
|
229
|
-
- test/fixtures/migrations_with_duplicate
|
230
|
-
- test/fixtures/migrations_with_missing_versions
|
231
|
-
- test/fixtures/mixed_case_monkey.rb
|
232
|
-
- test/fixtures/mixed_case_monkeys.yml
|
233
|
-
- test/fixtures/mixin.rb
|
234
|
-
- test/fixtures/mixins.yml
|
235
|
-
- test/fixtures/movie.rb
|
236
|
-
- test/fixtures/movies.yml
|
237
|
-
- test/fixtures/naked
|
238
|
-
- test/fixtures/order.rb
|
239
|
-
- test/fixtures/people.yml
|
240
|
-
- test/fixtures/person.rb
|
241
|
-
- test/fixtures/post.rb
|
242
|
-
- test/fixtures/posts.yml
|
243
|
-
- test/fixtures/project.rb
|
244
|
-
- test/fixtures/projects.yml
|
245
|
-
- test/fixtures/reader.rb
|
246
|
-
- test/fixtures/readers.yml
|
247
|
-
- test/fixtures/reply.rb
|
248
|
-
- test/fixtures/subject.rb
|
249
|
-
- test/fixtures/subscriber.rb
|
250
|
-
- test/fixtures/subscribers
|
251
|
-
- test/fixtures/tag.rb
|
252
|
-
- test/fixtures/tagging.rb
|
253
|
-
- test/fixtures/taggings.yml
|
254
|
-
- test/fixtures/tags.yml
|
255
|
-
- test/fixtures/task.rb
|
256
|
-
- test/fixtures/tasks.yml
|
257
|
-
- test/fixtures/topic.rb
|
258
|
-
- test/fixtures/topics.yml
|
259
|
-
- test/fixtures/vertex.rb
|
260
|
-
- test/fixtures/vertices.yml
|
261
|
-
- test/fixtures/bad_fixtures/attr_with_numeric_first_char
|
262
|
-
- test/fixtures/bad_fixtures/attr_with_spaces
|
263
|
-
- test/fixtures/bad_fixtures/blank_line
|
264
|
-
- test/fixtures/bad_fixtures/duplicate_attributes
|
265
|
-
- test/fixtures/bad_fixtures/missing_value
|
266
|
-
- test/fixtures/categories/special_categories.yml
|
267
|
-
- test/fixtures/categories/subsubdir
|
268
|
-
- test/fixtures/categories/subsubdir/arbitrary_filename.yml
|
269
195
|
- test/fixtures/db_definitions/db2.drop.sql
|
270
196
|
- test/fixtures/db_definitions/db2.sql
|
271
197
|
- test/fixtures/db_definitions/db22.drop.sql
|
@@ -307,29 +233,104 @@ files:
|
|
307
233
|
- test/fixtures/db_definitions/sybase.sql
|
308
234
|
- test/fixtures/db_definitions/sybase2.drop.sql
|
309
235
|
- test/fixtures/db_definitions/sybase2.sql
|
236
|
+
- test/fixtures/default.rb
|
237
|
+
- test/fixtures/developer.rb
|
238
|
+
- test/fixtures/developers.yml
|
239
|
+
- test/fixtures/developers_projects
|
310
240
|
- test/fixtures/developers_projects/david_action_controller
|
311
241
|
- test/fixtures/developers_projects/david_active_record
|
312
242
|
- test/fixtures/developers_projects/jamis_active_record
|
243
|
+
- test/fixtures/developers_projects.yml
|
244
|
+
- test/fixtures/edge.rb
|
245
|
+
- test/fixtures/edges.yml
|
246
|
+
- test/fixtures/entrant.rb
|
247
|
+
- test/fixtures/entrants.yml
|
248
|
+
- test/fixtures/fk_test_has_fk.yml
|
249
|
+
- test/fixtures/fk_test_has_pk.yml
|
250
|
+
- test/fixtures/flowers.jpg
|
251
|
+
- test/fixtures/funny_jokes.yml
|
252
|
+
- test/fixtures/joke.rb
|
253
|
+
- test/fixtures/keyboard.rb
|
254
|
+
- test/fixtures/legacy_thing.rb
|
255
|
+
- test/fixtures/legacy_things.yml
|
256
|
+
- test/fixtures/migrations
|
313
257
|
- test/fixtures/migrations/1_people_have_last_names.rb
|
314
258
|
- test/fixtures/migrations/2_we_need_reminders.rb
|
315
259
|
- test/fixtures/migrations/3_innocent_jointable.rb
|
260
|
+
- test/fixtures/migrations_with_decimal
|
316
261
|
- test/fixtures/migrations_with_decimal/1_give_me_big_numbers.rb
|
262
|
+
- test/fixtures/migrations_with_duplicate
|
317
263
|
- test/fixtures/migrations_with_duplicate/1_people_have_last_names.rb
|
318
264
|
- test/fixtures/migrations_with_duplicate/2_we_need_reminders.rb
|
319
265
|
- test/fixtures/migrations_with_duplicate/3_foo.rb
|
320
266
|
- test/fixtures/migrations_with_duplicate/3_innocent_jointable.rb
|
267
|
+
- test/fixtures/migrations_with_missing_versions
|
321
268
|
- test/fixtures/migrations_with_missing_versions/1000_people_have_middle_names.rb
|
322
269
|
- test/fixtures/migrations_with_missing_versions/1_people_have_last_names.rb
|
323
270
|
- test/fixtures/migrations_with_missing_versions/3_we_need_reminders.rb
|
324
271
|
- test/fixtures/migrations_with_missing_versions/4_innocent_jointable.rb
|
272
|
+
- test/fixtures/mixed_case_monkey.rb
|
273
|
+
- test/fixtures/mixed_case_monkeys.yml
|
274
|
+
- test/fixtures/mixin.rb
|
275
|
+
- test/fixtures/mixins.yml
|
276
|
+
- test/fixtures/movie.rb
|
277
|
+
- test/fixtures/movies.yml
|
278
|
+
- test/fixtures/naked
|
325
279
|
- test/fixtures/naked/csv
|
326
|
-
- test/fixtures/naked/yml
|
327
280
|
- test/fixtures/naked/csv/accounts.csv
|
281
|
+
- test/fixtures/naked/yml
|
328
282
|
- test/fixtures/naked/yml/accounts.yml
|
329
283
|
- test/fixtures/naked/yml/companies.yml
|
330
284
|
- test/fixtures/naked/yml/courses.yml
|
285
|
+
- test/fixtures/order.rb
|
286
|
+
- test/fixtures/people.yml
|
287
|
+
- test/fixtures/person.rb
|
288
|
+
- test/fixtures/post.rb
|
289
|
+
- test/fixtures/posts.yml
|
290
|
+
- test/fixtures/project.rb
|
291
|
+
- test/fixtures/projects.yml
|
292
|
+
- test/fixtures/reader.rb
|
293
|
+
- test/fixtures/readers.yml
|
294
|
+
- test/fixtures/reply.rb
|
295
|
+
- test/fixtures/subject.rb
|
296
|
+
- test/fixtures/subscriber.rb
|
297
|
+
- test/fixtures/subscribers
|
331
298
|
- test/fixtures/subscribers/first
|
332
299
|
- test/fixtures/subscribers/second
|
300
|
+
- test/fixtures/tag.rb
|
301
|
+
- test/fixtures/tagging.rb
|
302
|
+
- test/fixtures/taggings.yml
|
303
|
+
- test/fixtures/tags.yml
|
304
|
+
- test/fixtures/task.rb
|
305
|
+
- test/fixtures/tasks.yml
|
306
|
+
- test/fixtures/topic.rb
|
307
|
+
- test/fixtures/topics.yml
|
308
|
+
- test/fixtures/vertex.rb
|
309
|
+
- test/fixtures/vertices.yml
|
310
|
+
- test/fixtures_test.rb
|
311
|
+
- test/inheritance_test.rb
|
312
|
+
- test/lifecycle_test.rb
|
313
|
+
- test/locking_test.rb
|
314
|
+
- test/method_scoping_test.rb
|
315
|
+
- test/migration_test.rb
|
316
|
+
- test/migration_test_firebird.rb
|
317
|
+
- test/mixin_nested_set_test.rb
|
318
|
+
- test/mixin_test.rb
|
319
|
+
- test/modules_test.rb
|
320
|
+
- test/multiple_db_test.rb
|
321
|
+
- test/pk_test.rb
|
322
|
+
- test/readonly_test.rb
|
323
|
+
- test/reflection_test.rb
|
324
|
+
- test/schema_authorization_test_postgresql.rb
|
325
|
+
- test/schema_dumper_test.rb
|
326
|
+
- test/schema_test_postgresql.rb
|
327
|
+
- test/synonym_test_oracle.rb
|
328
|
+
- test/table_name_test_sqlserver.rb
|
329
|
+
- test/threaded_connections_test.rb
|
330
|
+
- test/transactions_test.rb
|
331
|
+
- test/unconnected_test.rb
|
332
|
+
- test/validations_test.rb
|
333
|
+
- test/xml_serialization_test.rb
|
333
334
|
- examples/associations.png
|
334
335
|
- examples/associations.rb
|
335
336
|
- examples/shared_setup.rb
|
@@ -355,5 +356,5 @@ dependencies:
|
|
355
356
|
requirements:
|
356
357
|
- - "="
|
357
358
|
- !ruby/object:Gem::Version
|
358
|
-
version: 1.4.
|
359
|
+
version: 1.4.3
|
359
360
|
version:
|