activerecord 3.2.22.2 → 3.2.22.3

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.

Files changed (3) hide show
  1. checksums.yaml +7 -0
  2. data/lib/active_record/version.rb +1 -1
  3. metadata +29 -41
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 944f4330364b01c79c3347ce26f08d6adbd90561
4
+ data.tar.gz: fff1a54aba583217663f6b1216cdb03f76ed71eb
5
+ SHA512:
6
+ metadata.gz: 222225f4d8eead4647d50d1a876c3e7baa2d673b5b0e97e83c4eede20867fc59b6b0c51ad37895910a3a945fe0f352a5b664bc30ae2ece508c7ea8e1bf4c9a76
7
+ data.tar.gz: '0861b12ee97b13a3ce80810474a3d75c72495201a38572346648290108001fd52fa0034c310871e31e3bdc31e5935f777ef3a98cdd6d05a9b7597443d6af86b7'
@@ -3,7 +3,7 @@ module ActiveRecord
3
3
  MAJOR = 3
4
4
  MINOR = 2
5
5
  TINY = 22
6
- PRE = "2"
6
+ PRE = "3"
7
7
 
8
8
  STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.')
9
9
  end
metadata CHANGED
@@ -1,78 +1,69 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: activerecord
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.2.22.2
5
- prerelease:
4
+ version: 3.2.22.3
6
5
  platform: ruby
7
6
  authors:
8
7
  - David Heinemeier Hansson
9
8
  autorequire:
10
9
  bindir: bin
11
10
  cert_chain: []
12
- date: 2016-02-29 00:00:00.000000000 Z
11
+ date: 2016-08-10 00:00:00.000000000 Z
13
12
  dependencies:
14
13
  - !ruby/object:Gem::Dependency
15
14
  name: activesupport
16
15
  requirement: !ruby/object:Gem::Requirement
17
- none: false
18
16
  requirements:
19
17
  - - '='
20
18
  - !ruby/object:Gem::Version
21
- version: 3.2.22.2
19
+ version: 3.2.22.3
22
20
  type: :runtime
23
21
  prerelease: false
24
22
  version_requirements: !ruby/object:Gem::Requirement
25
- none: false
26
23
  requirements:
27
24
  - - '='
28
25
  - !ruby/object:Gem::Version
29
- version: 3.2.22.2
26
+ version: 3.2.22.3
30
27
  - !ruby/object:Gem::Dependency
31
28
  name: activemodel
32
29
  requirement: !ruby/object:Gem::Requirement
33
- none: false
34
30
  requirements:
35
31
  - - '='
36
32
  - !ruby/object:Gem::Version
37
- version: 3.2.22.2
33
+ version: 3.2.22.3
38
34
  type: :runtime
39
35
  prerelease: false
40
36
  version_requirements: !ruby/object:Gem::Requirement
41
- none: false
42
37
  requirements:
43
38
  - - '='
44
39
  - !ruby/object:Gem::Version
45
- version: 3.2.22.2
40
+ version: 3.2.22.3
46
41
  - !ruby/object:Gem::Dependency
47
42
  name: arel
48
43
  requirement: !ruby/object:Gem::Requirement
49
- none: false
50
44
  requirements:
51
- - - ~>
45
+ - - "~>"
52
46
  - !ruby/object:Gem::Version
53
47
  version: 3.0.2
54
48
  type: :runtime
55
49
  prerelease: false
56
50
  version_requirements: !ruby/object:Gem::Requirement
57
- none: false
58
51
  requirements:
59
- - - ~>
52
+ - - "~>"
60
53
  - !ruby/object:Gem::Version
61
54
  version: 3.0.2
62
55
  - !ruby/object:Gem::Dependency
63
56
  name: tzinfo
64
57
  requirement: !ruby/object:Gem::Requirement
65
- none: false
66
58
  requirements:
67
- - - ~>
59
+ - - "~>"
68
60
  - !ruby/object:Gem::Version
69
61
  version: 0.3.29
70
62
  type: :runtime
71
63
  prerelease: false
72
64
  version_requirements: !ruby/object:Gem::Requirement
73
- none: false
74
65
  requirements:
75
- - - ~>
66
+ - - "~>"
76
67
  - !ruby/object:Gem::Version
77
68
  version: 0.3.29
78
69
  description: Databases on Rails. Build a persistent domain model by mapping database
@@ -90,7 +81,9 @@ files:
90
81
  - examples/associations.png
91
82
  - examples/performance.rb
92
83
  - examples/simple.rb
84
+ - lib/active_record.rb
93
85
  - lib/active_record/aggregations.rb
86
+ - lib/active_record/associations.rb
94
87
  - lib/active_record/associations/alias_tracker.rb
95
88
  - lib/active_record/associations/association.rb
96
89
  - lib/active_record/associations/association_scope.rb
@@ -110,11 +103,12 @@ files:
110
103
  - lib/active_record/associations/has_many_through_association.rb
111
104
  - lib/active_record/associations/has_one_association.rb
112
105
  - lib/active_record/associations/has_one_through_association.rb
106
+ - lib/active_record/associations/join_dependency.rb
113
107
  - lib/active_record/associations/join_dependency/join_association.rb
114
108
  - lib/active_record/associations/join_dependency/join_base.rb
115
109
  - lib/active_record/associations/join_dependency/join_part.rb
116
- - lib/active_record/associations/join_dependency.rb
117
110
  - lib/active_record/associations/join_helper.rb
111
+ - lib/active_record/associations/preloader.rb
118
112
  - lib/active_record/associations/preloader/association.rb
119
113
  - lib/active_record/associations/preloader/belongs_to.rb
120
114
  - lib/active_record/associations/preloader/collection_association.rb
@@ -125,11 +119,10 @@ files:
125
119
  - lib/active_record/associations/preloader/has_one_through.rb
126
120
  - lib/active_record/associations/preloader/singular_association.rb
127
121
  - lib/active_record/associations/preloader/through_association.rb
128
- - lib/active_record/associations/preloader.rb
129
122
  - lib/active_record/associations/singular_association.rb
130
123
  - lib/active_record/associations/through_association.rb
131
- - lib/active_record/associations.rb
132
124
  - lib/active_record/attribute_assignment.rb
125
+ - lib/active_record/attribute_methods.rb
133
126
  - lib/active_record/attribute_methods/before_type_cast.rb
134
127
  - lib/active_record/attribute_methods/deprecated_underscore_read.rb
135
128
  - lib/active_record/attribute_methods/dirty.rb
@@ -139,7 +132,6 @@ files:
139
132
  - lib/active_record/attribute_methods/serialization.rb
140
133
  - lib/active_record/attribute_methods/time_zone_conversion.rb
141
134
  - lib/active_record/attribute_methods/write.rb
142
- - lib/active_record/attribute_methods.rb
143
135
  - lib/active_record/autosave_association.rb
144
136
  - lib/active_record/base.rb
145
137
  - lib/active_record/callbacks.rb
@@ -169,8 +161,8 @@ files:
169
161
  - lib/active_record/errors.rb
170
162
  - lib/active_record/explain.rb
171
163
  - lib/active_record/explain_subscriber.rb
172
- - lib/active_record/fixtures/file.rb
173
164
  - lib/active_record/fixtures.rb
165
+ - lib/active_record/fixtures/file.rb
174
166
  - lib/active_record/identity_map.rb
175
167
  - lib/active_record/inheritance.rb
176
168
  - lib/active_record/integration.rb
@@ -178,8 +170,8 @@ files:
178
170
  - lib/active_record/locking/optimistic.rb
179
171
  - lib/active_record/locking/pessimistic.rb
180
172
  - lib/active_record/log_subscriber.rb
181
- - lib/active_record/migration/command_recorder.rb
182
173
  - lib/active_record/migration.rb
174
+ - lib/active_record/migration/command_recorder.rb
183
175
  - lib/active_record/model_schema.rb
184
176
  - lib/active_record/nested_attributes.rb
185
177
  - lib/active_record/observer.rb
@@ -193,6 +185,7 @@ files:
193
185
  - lib/active_record/railties/jdbcmysql_error.rb
194
186
  - lib/active_record/readonly_attributes.rb
195
187
  - lib/active_record/reflection.rb
188
+ - lib/active_record/relation.rb
196
189
  - lib/active_record/relation/batches.rb
197
190
  - lib/active_record/relation/calculations.rb
198
191
  - lib/active_record/relation/delegation.rb
@@ -200,14 +193,13 @@ files:
200
193
  - lib/active_record/relation/predicate_builder.rb
201
194
  - lib/active_record/relation/query_methods.rb
202
195
  - lib/active_record/relation/spawn_methods.rb
203
- - lib/active_record/relation.rb
204
196
  - lib/active_record/result.rb
205
197
  - lib/active_record/sanitization.rb
206
198
  - lib/active_record/schema.rb
207
199
  - lib/active_record/schema_dumper.rb
200
+ - lib/active_record/scoping.rb
208
201
  - lib/active_record/scoping/default.rb
209
202
  - lib/active_record/scoping/named.rb
210
- - lib/active_record/scoping.rb
211
203
  - lib/active_record/serialization.rb
212
204
  - lib/active_record/serializers/xml_serializer.rb
213
205
  - lib/active_record/session_store.rb
@@ -216,14 +208,14 @@ files:
216
208
  - lib/active_record/timestamp.rb
217
209
  - lib/active_record/transactions.rb
218
210
  - lib/active_record/translation.rb
211
+ - lib/active_record/validations.rb
219
212
  - lib/active_record/validations/associated.rb
220
213
  - lib/active_record/validations/uniqueness.rb
221
- - lib/active_record/validations.rb
222
214
  - lib/active_record/version.rb
223
- - lib/active_record.rb
215
+ - lib/rails/generators/active_record.rb
216
+ - lib/rails/generators/active_record/migration.rb
224
217
  - lib/rails/generators/active_record/migration/migration_generator.rb
225
218
  - lib/rails/generators/active_record/migration/templates/migration.rb
226
- - lib/rails/generators/active_record/migration.rb
227
219
  - lib/rails/generators/active_record/model/model_generator.rb
228
220
  - lib/rails/generators/active_record/model/templates/migration.rb
229
221
  - lib/rails/generators/active_record/model/templates/model.rb
@@ -232,35 +224,31 @@ files:
232
224
  - lib/rails/generators/active_record/observer/templates/observer.rb
233
225
  - lib/rails/generators/active_record/session_migration/session_migration_generator.rb
234
226
  - lib/rails/generators/active_record/session_migration/templates/migration.rb
235
- - lib/rails/generators/active_record.rb
236
227
  homepage: http://www.rubyonrails.org
237
228
  licenses:
238
229
  - MIT
230
+ metadata: {}
239
231
  post_install_message:
240
232
  rdoc_options:
241
- - --main
233
+ - "--main"
242
234
  - README.rdoc
243
235
  require_paths:
244
236
  - lib
245
237
  required_ruby_version: !ruby/object:Gem::Requirement
246
- none: false
247
238
  requirements:
248
- - - ! '>='
239
+ - - ">="
249
240
  - !ruby/object:Gem::Version
250
241
  version: 1.8.7
251
242
  required_rubygems_version: !ruby/object:Gem::Requirement
252
- none: false
253
243
  requirements:
254
- - - ! '>='
244
+ - - ">="
255
245
  - !ruby/object:Gem::Version
256
246
  version: '0'
257
- segments:
258
- - 0
259
- hash: 1374331061943944725
260
247
  requirements: []
261
248
  rubyforge_project:
262
- rubygems_version: 1.8.23.2
249
+ rubygems_version: 2.6.6
263
250
  signing_key:
264
- specification_version: 3
251
+ specification_version: 4
265
252
  summary: Object-relational mapper framework (part of Rails).
266
253
  test_files: []
254
+ has_rdoc: