activerecord 4.0.4 → 4.0.5
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.md +5 -0
- data/lib/active_record/version.rb +1 -1
- metadata +36 -26
- checksums.yaml +0 -7
data/CHANGELOG.md
CHANGED
metadata
CHANGED
@@ -1,69 +1,78 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: activerecord
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 4.0.
|
4
|
+
version: 4.0.5
|
5
|
+
prerelease:
|
5
6
|
platform: ruby
|
6
7
|
authors:
|
7
8
|
- David Heinemeier Hansson
|
8
9
|
autorequire:
|
9
10
|
bindir: bin
|
10
11
|
cert_chain: []
|
11
|
-
date: 2014-
|
12
|
+
date: 2014-05-06 00:00:00.000000000 Z
|
12
13
|
dependencies:
|
13
14
|
- !ruby/object:Gem::Dependency
|
14
15
|
name: activesupport
|
15
16
|
requirement: !ruby/object:Gem::Requirement
|
17
|
+
none: false
|
16
18
|
requirements:
|
17
19
|
- - '='
|
18
20
|
- !ruby/object:Gem::Version
|
19
|
-
version: 4.0.
|
21
|
+
version: 4.0.5
|
20
22
|
type: :runtime
|
21
23
|
prerelease: false
|
22
24
|
version_requirements: !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
23
26
|
requirements:
|
24
27
|
- - '='
|
25
28
|
- !ruby/object:Gem::Version
|
26
|
-
version: 4.0.
|
29
|
+
version: 4.0.5
|
27
30
|
- !ruby/object:Gem::Dependency
|
28
31
|
name: activemodel
|
29
32
|
requirement: !ruby/object:Gem::Requirement
|
33
|
+
none: false
|
30
34
|
requirements:
|
31
35
|
- - '='
|
32
36
|
- !ruby/object:Gem::Version
|
33
|
-
version: 4.0.
|
37
|
+
version: 4.0.5
|
34
38
|
type: :runtime
|
35
39
|
prerelease: false
|
36
40
|
version_requirements: !ruby/object:Gem::Requirement
|
41
|
+
none: false
|
37
42
|
requirements:
|
38
43
|
- - '='
|
39
44
|
- !ruby/object:Gem::Version
|
40
|
-
version: 4.0.
|
45
|
+
version: 4.0.5
|
41
46
|
- !ruby/object:Gem::Dependency
|
42
47
|
name: arel
|
43
48
|
requirement: !ruby/object:Gem::Requirement
|
49
|
+
none: false
|
44
50
|
requirements:
|
45
|
-
- -
|
51
|
+
- - ~>
|
46
52
|
- !ruby/object:Gem::Version
|
47
53
|
version: 4.0.0
|
48
54
|
type: :runtime
|
49
55
|
prerelease: false
|
50
56
|
version_requirements: !ruby/object:Gem::Requirement
|
57
|
+
none: false
|
51
58
|
requirements:
|
52
|
-
- -
|
59
|
+
- - ~>
|
53
60
|
- !ruby/object:Gem::Version
|
54
61
|
version: 4.0.0
|
55
62
|
- !ruby/object:Gem::Dependency
|
56
63
|
name: activerecord-deprecated_finders
|
57
64
|
requirement: !ruby/object:Gem::Requirement
|
65
|
+
none: false
|
58
66
|
requirements:
|
59
|
-
- -
|
67
|
+
- - ~>
|
60
68
|
- !ruby/object:Gem::Version
|
61
69
|
version: 1.0.2
|
62
70
|
type: :runtime
|
63
71
|
prerelease: false
|
64
72
|
version_requirements: !ruby/object:Gem::Requirement
|
73
|
+
none: false
|
65
74
|
requirements:
|
66
|
-
- -
|
75
|
+
- - ~>
|
67
76
|
- !ruby/object:Gem::Version
|
68
77
|
version: 1.0.2
|
69
78
|
description: Databases on Rails. Build a persistent domain model by mapping database
|
@@ -80,10 +89,8 @@ files:
|
|
80
89
|
- README.rdoc
|
81
90
|
- examples/performance.rb
|
82
91
|
- examples/simple.rb
|
83
|
-
- lib/active_record.rb
|
84
92
|
- lib/active_record/aggregations.rb
|
85
93
|
- lib/active_record/association_relation.rb
|
86
|
-
- lib/active_record/associations.rb
|
87
94
|
- lib/active_record/associations/alias_tracker.rb
|
88
95
|
- lib/active_record/associations/association.rb
|
89
96
|
- lib/active_record/associations/association_scope.rb
|
@@ -103,12 +110,11 @@ files:
|
|
103
110
|
- lib/active_record/associations/has_many_through_association.rb
|
104
111
|
- lib/active_record/associations/has_one_association.rb
|
105
112
|
- lib/active_record/associations/has_one_through_association.rb
|
106
|
-
- lib/active_record/associations/join_dependency.rb
|
107
113
|
- lib/active_record/associations/join_dependency/join_association.rb
|
108
114
|
- lib/active_record/associations/join_dependency/join_base.rb
|
109
115
|
- lib/active_record/associations/join_dependency/join_part.rb
|
116
|
+
- lib/active_record/associations/join_dependency.rb
|
110
117
|
- lib/active_record/associations/join_helper.rb
|
111
|
-
- lib/active_record/associations/preloader.rb
|
112
118
|
- lib/active_record/associations/preloader/association.rb
|
113
119
|
- lib/active_record/associations/preloader/belongs_to.rb
|
114
120
|
- lib/active_record/associations/preloader/collection_association.rb
|
@@ -119,10 +125,11 @@ files:
|
|
119
125
|
- lib/active_record/associations/preloader/has_one_through.rb
|
120
126
|
- lib/active_record/associations/preloader/singular_association.rb
|
121
127
|
- lib/active_record/associations/preloader/through_association.rb
|
128
|
+
- lib/active_record/associations/preloader.rb
|
122
129
|
- lib/active_record/associations/singular_association.rb
|
123
130
|
- lib/active_record/associations/through_association.rb
|
131
|
+
- lib/active_record/associations.rb
|
124
132
|
- lib/active_record/attribute_assignment.rb
|
125
|
-
- lib/active_record/attribute_methods.rb
|
126
133
|
- lib/active_record/attribute_methods/before_type_cast.rb
|
127
134
|
- lib/active_record/attribute_methods/dirty.rb
|
128
135
|
- lib/active_record/attribute_methods/primary_key.rb
|
@@ -131,6 +138,7 @@ files:
|
|
131
138
|
- lib/active_record/attribute_methods/serialization.rb
|
132
139
|
- lib/active_record/attribute_methods/time_zone_conversion.rb
|
133
140
|
- lib/active_record/attribute_methods/write.rb
|
141
|
+
- lib/active_record/attribute_methods.rb
|
134
142
|
- lib/active_record/autosave_association.rb
|
135
143
|
- lib/active_record/base.rb
|
136
144
|
- lib/active_record/callbacks.rb
|
@@ -177,9 +185,9 @@ files:
|
|
177
185
|
- lib/active_record/locking/optimistic.rb
|
178
186
|
- lib/active_record/locking/pessimistic.rb
|
179
187
|
- lib/active_record/log_subscriber.rb
|
180
|
-
- lib/active_record/migration.rb
|
181
188
|
- lib/active_record/migration/command_recorder.rb
|
182
189
|
- lib/active_record/migration/join_table.rb
|
190
|
+
- lib/active_record/migration.rb
|
183
191
|
- lib/active_record/model_schema.rb
|
184
192
|
- lib/active_record/nested_attributes.rb
|
185
193
|
- lib/active_record/null_relation.rb
|
@@ -193,7 +201,6 @@ files:
|
|
193
201
|
- lib/active_record/railties/jdbcmysql_error.rb
|
194
202
|
- lib/active_record/readonly_attributes.rb
|
195
203
|
- lib/active_record/reflection.rb
|
196
|
-
- lib/active_record/relation.rb
|
197
204
|
- lib/active_record/relation/batches.rb
|
198
205
|
- lib/active_record/relation/calculations.rb
|
199
206
|
- lib/active_record/relation/delegation.rb
|
@@ -202,15 +209,16 @@ files:
|
|
202
209
|
- lib/active_record/relation/predicate_builder.rb
|
203
210
|
- lib/active_record/relation/query_methods.rb
|
204
211
|
- lib/active_record/relation/spawn_methods.rb
|
212
|
+
- lib/active_record/relation.rb
|
205
213
|
- lib/active_record/result.rb
|
206
214
|
- lib/active_record/runtime_registry.rb
|
207
215
|
- lib/active_record/sanitization.rb
|
208
216
|
- lib/active_record/schema.rb
|
209
217
|
- lib/active_record/schema_dumper.rb
|
210
218
|
- lib/active_record/schema_migration.rb
|
211
|
-
- lib/active_record/scoping.rb
|
212
219
|
- lib/active_record/scoping/default.rb
|
213
220
|
- lib/active_record/scoping/named.rb
|
221
|
+
- lib/active_record/scoping.rb
|
214
222
|
- lib/active_record/serialization.rb
|
215
223
|
- lib/active_record/serializers/xml_serializer.rb
|
216
224
|
- lib/active_record/statement_cache.rb
|
@@ -226,42 +234,44 @@ files:
|
|
226
234
|
- lib/active_record/timestamp.rb
|
227
235
|
- lib/active_record/transactions.rb
|
228
236
|
- lib/active_record/translation.rb
|
229
|
-
- lib/active_record/validations.rb
|
230
237
|
- lib/active_record/validations/associated.rb
|
231
238
|
- lib/active_record/validations/presence.rb
|
232
239
|
- lib/active_record/validations/uniqueness.rb
|
240
|
+
- lib/active_record/validations.rb
|
233
241
|
- lib/active_record/version.rb
|
234
|
-
- lib/
|
242
|
+
- lib/active_record.rb
|
235
243
|
- lib/rails/generators/active_record/migration/migration_generator.rb
|
236
244
|
- lib/rails/generators/active_record/migration/templates/create_table_migration.rb
|
237
245
|
- lib/rails/generators/active_record/migration/templates/migration.rb
|
238
246
|
- lib/rails/generators/active_record/model/model_generator.rb
|
239
247
|
- lib/rails/generators/active_record/model/templates/model.rb
|
240
248
|
- lib/rails/generators/active_record/model/templates/module.rb
|
249
|
+
- lib/rails/generators/active_record.rb
|
241
250
|
homepage: http://www.rubyonrails.org
|
242
251
|
licenses:
|
243
252
|
- MIT
|
244
|
-
metadata: {}
|
245
253
|
post_install_message:
|
246
254
|
rdoc_options:
|
247
|
-
-
|
255
|
+
- --main
|
248
256
|
- README.rdoc
|
249
257
|
require_paths:
|
250
258
|
- lib
|
251
259
|
required_ruby_version: !ruby/object:Gem::Requirement
|
260
|
+
none: false
|
252
261
|
requirements:
|
253
|
-
- -
|
262
|
+
- - ! '>='
|
254
263
|
- !ruby/object:Gem::Version
|
255
264
|
version: 1.9.3
|
256
265
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
266
|
+
none: false
|
257
267
|
requirements:
|
258
|
-
- -
|
268
|
+
- - ! '>='
|
259
269
|
- !ruby/object:Gem::Version
|
260
270
|
version: '0'
|
261
271
|
requirements: []
|
262
272
|
rubyforge_project:
|
263
|
-
rubygems_version:
|
273
|
+
rubygems_version: 1.8.23.2
|
264
274
|
signing_key:
|
265
|
-
specification_version:
|
275
|
+
specification_version: 3
|
266
276
|
summary: Object-relational mapper framework (part of Rails).
|
267
277
|
test_files: []
|
checksums.yaml
DELETED
@@ -1,7 +0,0 @@
|
|
1
|
-
---
|
2
|
-
SHA1:
|
3
|
-
metadata.gz: a00e234f51aee901f8536a245714e958a4711256
|
4
|
-
data.tar.gz: 66d271424952a222b921d799385cf27d401c6833
|
5
|
-
SHA512:
|
6
|
-
metadata.gz: 0fdb2eed264b5f1bc0323f93a7058b258e5cc2e3afb10213d4ecef93c33020ff9b79a0d5d96be0100afdeb0e0a4174f4018e5b198bb267952eeaa7c0e0c09ab2
|
7
|
-
data.tar.gz: 39ef3845f8e07a07e4f7e5cb5b5a1672e59bed103553b8c005dbbe1577afadb27996c7950b274f01800d97e62e029976d0bfc9bfb996519e4f32fb4aa2de1b47
|