active_record_date_formatted 0.0.5 → 0.0.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 8973583011042a3fd42717df41e053284ebcacfe
4
- data.tar.gz: 4d30f24dfd5ffa5c2df10b7266aacf1251dabb15
3
+ metadata.gz: 74779fb56c06dab2e86a349c0513c45db934633e
4
+ data.tar.gz: b043ec3b7d133201ed01ef8719331a51efeb691a
5
5
  SHA512:
6
- metadata.gz: 7d6631aea6a3b9aaea5833890fda71c1837b024b852cff03c65193a19806602f7a746add57c2eb06344f74c3a196ba8cdfee345fdeeb1036a7ded2de8a5c6f2c
7
- data.tar.gz: fb4b5e6b50404dec5bb6e80c24b97c7d2713cc5e22e5020dca13339dbc0de680ac1184bb26b8fe5c7591fc928e3fa45652c1b200176aaf9dfd37753df231b222
6
+ metadata.gz: 3d6e5dde9de15420ad38cbb60d242a16800a9e83bd84363e0143eb8512502e111b069f4568a6a0e36378e1c64e5b46554a6da941a8c787144f6cda3a17663c97
7
+ data.tar.gz: 6b3ede959bd381de1bd33e181c14e4a33f32dceae874e3774e0f3478d8b48ab4b673aa05abd47a1226d98819ba8c0c8d7dc8c42b3d1eb4ad5595c8d15efea78a
data/Rakefile CHANGED
@@ -8,17 +8,17 @@ Rake::TestTask.new(:test) do |t|
8
8
  end
9
9
 
10
10
  desc "Bump the patch version, tag and release gem"
11
- task :release_patch do
11
+ task :release_patch => :test do
12
12
  system "gem bump --version patch --tag --release"
13
13
  end
14
14
 
15
15
  desc "Bump the minor version, tag and release gem"
16
- task :release_minor do
16
+ task :release_minor => :test do
17
17
  system "gem bump --version minor --tag --release"
18
18
  end
19
19
 
20
20
  desc "Bump the major version, tag and release gem"
21
- task :release_major do
21
+ task :release_major => :test do
22
22
  system "gem bump --version major --tag --release"
23
23
  end
24
24
 
@@ -5,7 +5,7 @@ module ActiveRecordDateFormatted
5
5
 
6
6
  def inherited(subclass)
7
7
  super
8
- subclass.add_date_formatted_methods
8
+ subclass.add_date_formatted_methods unless subclass == ActiveRecord::SchemaMigration
9
9
  end
10
10
 
11
11
  def add_date_formatted_methods
@@ -1,3 +1,3 @@
1
1
  module ActiveRecordDateFormatted
2
- VERSION = "0.0.5"
2
+ VERSION = "0.0.6"
3
3
  end
@@ -1,972 +1,92 @@
1
-  (2.0ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "birth_date" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
2
-  (1.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1
+  (1.0ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "birth_date" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
2
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
3
3
   (0.1ms) select sqlite_version(*)
4
-  (1.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
4
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
5
5
   (0.1ms) SELECT version FROM "schema_migrations"
6
-  (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20150911135550')
6
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150911135550')
7
7
  ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
8
8
   (0.1ms) begin transaction
9
- -------------------------------
10
- DateFormattedTest: test_defined
11
- -------------------------------
12
-  (0.0ms) rollback transaction
13
-  (0.0ms) begin transaction
14
- ---------------------------------------------
15
- DateFormattedTest: test_date_formatted_setter
16
- ---------------------------------------------
17
-  (0.0ms) rollback transaction
18
-  (0.1ms) begin transaction
19
- ---------------------------------------------
20
- DateFormattedTest: test_date_formatted_getter
21
- ---------------------------------------------
22
-  (0.0ms) rollback transaction
23
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
24
-  (0.1ms) begin transaction
25
- ---------------------------------------------
26
- DateFormattedTest: test_date_formatted_setter
27
- ---------------------------------------------
28
-  (0.0ms) rollback transaction
29
-  (0.1ms) begin transaction
30
- ---------------------------------------------
31
- DateFormattedTest: test_date_formatted_getter
32
- ---------------------------------------------
33
-  (0.1ms) SAVEPOINT active_record_1
34
- SQL (0.4ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 13:58:00.632848"], ["updated_at", "2015-09-11 13:58:00.632848"]]
35
-  (0.1ms) RELEASE SAVEPOINT active_record_1
36
-  (1.1ms) rollback transaction
37
-  (0.1ms) begin transaction
38
- -------------------------------
39
- DateFormattedTest: test_defined
40
- -------------------------------
41
-  (0.0ms) rollback transaction
42
- ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
43
-  (0.1ms) begin transaction
44
- -------------------------------
45
- DateFormattedTest: test_defined
46
- -------------------------------
47
-  (0.0ms) rollback transaction
48
-  (0.0ms) begin transaction
49
- ---------------------------------------------
50
- DateFormattedTest: test_date_formatted_setter
51
- ---------------------------------------------
52
-  (0.0ms) rollback transaction
53
-  (0.1ms) begin transaction
54
- ---------------------------------------------
55
- DateFormattedTest: test_date_formatted_getter
56
- ---------------------------------------------
57
-  (0.0ms) SAVEPOINT active_record_1
58
- SQL (0.4ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 13:58:25.638739"], ["updated_at", "2015-09-11 13:58:25.638739"]]
59
-  (0.0ms) RELEASE SAVEPOINT active_record_1
60
- Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
61
-  (1.4ms) rollback transaction
62
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
63
-  (0.2ms) begin transaction
64
- ---------------------------------------------
65
- DateFormattedTest: test_date_formatted_getter
66
- ---------------------------------------------
67
-  (0.1ms) SAVEPOINT active_record_1
68
- SQL (0.4ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 14:02:44.339353"], ["updated_at", "2015-09-11 14:02:44.339353"]]
69
-  (0.1ms) RELEASE SAVEPOINT active_record_1
70
- Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
71
-  (1.3ms) rollback transaction
72
-  (0.1ms) begin transaction
73
- ---------------------------------------------
74
- DateFormattedTest: test_date_formatted_setter
75
- ---------------------------------------------
76
-  (0.0ms) rollback transaction
77
-  (0.1ms) begin transaction
78
- -------------------------------
79
- DateFormattedTest: test_defined
80
- -------------------------------
81
-  (0.0ms) rollback transaction
82
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
83
-  (0.1ms) begin transaction
84
- -------------------------------
85
- DateFormattedTest: test_defined
86
- -------------------------------
87
-  (0.0ms) rollback transaction
88
-  (0.0ms) begin transaction
89
- ---------------------------------------------
90
- DateFormattedTest: test_date_formatted_getter
91
- ---------------------------------------------
92
-  (0.1ms) SAVEPOINT active_record_1
93
- SQL (0.5ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 14:10:30.062118"], ["updated_at", "2015-09-11 14:10:30.062118"]]
94
-  (0.1ms) RELEASE SAVEPOINT active_record_1
95
- Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
96
-  (1.4ms) rollback transaction
97
-  (0.1ms) begin transaction
98
- ---------------------------------------------
99
- DateFormattedTest: test_date_formatted_setter
100
- ---------------------------------------------
101
-  (0.0ms) rollback transaction
102
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
103
-  (0.1ms) begin transaction
104
- ---------------------------------------------
105
- DateFormattedTest: test_date_formatted_getter
106
- ---------------------------------------------
107
-  (0.1ms) SAVEPOINT active_record_1
108
- SQL (0.7ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 14:10:48.289034"], ["updated_at", "2015-09-11 14:10:48.289034"]]
109
-  (0.1ms) RELEASE SAVEPOINT active_record_1
110
- Person Load (0.4ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
111
-  (1.5ms) rollback transaction
112
-  (0.1ms) begin transaction
113
- ---------------------------------------------
114
- DateFormattedTest: test_date_formatted_setter
115
- ---------------------------------------------
116
-  (0.0ms) rollback transaction
117
-  (0.0ms) begin transaction
118
- -------------------------------
119
- DateFormattedTest: test_defined
120
- -------------------------------
121
-  (0.0ms) rollback transaction
122
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
123
-  (0.1ms) begin transaction
124
- ---------------------------------------------
125
- DateFormattedTest: test_date_formatted_getter
126
- ---------------------------------------------
127
-  (0.1ms) SAVEPOINT active_record_1
128
- SQL (0.4ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 14:13:19.876257"], ["updated_at", "2015-09-11 14:13:19.876257"]]
129
-  (0.0ms) RELEASE SAVEPOINT active_record_1
130
- Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
131
-  (1.4ms) rollback transaction
132
-  (0.1ms) begin transaction
133
- ---------------------------------------------
134
- DateFormattedTest: test_date_formatted_setter
135
- ---------------------------------------------
136
-  (0.0ms) rollback transaction
137
-  (0.0ms) begin transaction
138
- -------------------------------
139
- DateFormattedTest: test_defined
140
- -------------------------------
141
-  (0.0ms) rollback transaction
142
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
143
-  (0.2ms) begin transaction
144
- ---------------------------------------------
145
- DateFormattedTest: test_date_formatted_setter
146
- ---------------------------------------------
147
-  (0.1ms) rollback transaction
148
-  (0.1ms) begin transaction
149
- ---------------------------------------------
150
- DateFormattedTest: test_date_formatted_getter
151
- ---------------------------------------------
152
-  (0.1ms) rollback transaction
153
-  (0.0ms) begin transaction
154
- -------------------------------
155
- DateFormattedTest: test_defined
156
- -------------------------------
157
-  (0.0ms) rollback transaction
158
- ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
159
-  (0.1ms) begin transaction
160
- ---------------------------------------------
161
- DateFormattedTest: test_date_formatted_getter
162
- ---------------------------------------------
163
-  (0.1ms) rollback transaction
164
-  (0.0ms) begin transaction
165
- ---------------------------------------------
166
- DateFormattedTest: test_date_formatted_setter
167
- ---------------------------------------------
168
-  (0.0ms) rollback transaction
169
-  (0.1ms) begin transaction
170
- -------------------------------
171
- DateFormattedTest: test_defined
172
- -------------------------------
173
-  (0.0ms) rollback transaction
174
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
175
-  (0.1ms) begin transaction
176
- ---------------------------------------------
177
- DateFormattedTest: test_date_formatted_setter
178
- ---------------------------------------------
179
-  (0.0ms) rollback transaction
180
-  (0.1ms) begin transaction
181
- -------------------------------
182
- DateFormattedTest: test_defined
183
- -------------------------------
184
-  (0.0ms) rollback transaction
185
-  (0.0ms) begin transaction
186
- ---------------------------------------------
187
- DateFormattedTest: test_date_formatted_getter
188
- ---------------------------------------------
189
-  (0.1ms) rollback transaction
190
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
191
-  (0.1ms) begin transaction
192
- ---------------------------------------------
193
- DateFormattedTest: test_date_formatted_getter
194
- ---------------------------------------------
195
-  (0.1ms) SAVEPOINT active_record_1
196
- SQL (0.4ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 14:22:27.514492"], ["updated_at", "2015-09-11 14:22:27.514492"]]
197
-  (0.0ms) RELEASE SAVEPOINT active_record_1
198
- Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
199
-  (1.3ms) rollback transaction
200
-  (0.1ms) begin transaction
201
- ---------------------------------------------
202
- DateFormattedTest: test_date_formatted_setter
203
- ---------------------------------------------
204
-  (0.0ms) rollback transaction
205
-  (0.1ms) begin transaction
206
- -------------------------------
207
- DateFormattedTest: test_defined
208
- -------------------------------
209
-  (0.0ms) rollback transaction
210
- ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
211
-  (0.1ms) begin transaction
212
- ---------------------------------------------
213
- DateFormattedTest: test_date_formatted_getter
214
- ---------------------------------------------
215
-  (0.1ms) SAVEPOINT active_record_1
216
- SQL (0.4ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 14:23:59.716864"], ["updated_at", "2015-09-11 14:23:59.716864"]]
217
-  (0.0ms) RELEASE SAVEPOINT active_record_1
218
- Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
219
-  (1.3ms) rollback transaction
220
-  (0.1ms) begin transaction
221
- -------------------------------
222
- DateFormattedTest: test_defined
223
- -------------------------------
224
-  (0.0ms) rollback transaction
225
-  (0.1ms) begin transaction
226
- ---------------------------------------------
227
- DateFormattedTest: test_date_formatted_setter
228
- ---------------------------------------------
229
-  (0.3ms) rollback transaction
230
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
231
-  (0.1ms) begin transaction
232
- ---------------------------------------------
233
- DateFormattedTest: test_date_formatted_getter
234
- ---------------------------------------------
235
-  (0.0ms) SAVEPOINT active_record_1
236
- SQL (0.6ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 14:27:03.147912"], ["updated_at", "2015-09-11 14:27:03.147912"]]
237
-  (0.2ms) RELEASE SAVEPOINT active_record_1
238
- Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
239
-  (1.3ms) rollback transaction
240
-  (0.1ms) begin transaction
241
- ----------------------------------------------------
242
- DateFormattedTest: test_date_formatted_getter_german
243
- ----------------------------------------------------
244
-  (0.0ms) SAVEPOINT active_record_1
245
- SQL (0.4ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 14:27:03.160758"], ["updated_at", "2015-09-11 14:27:03.160758"]]
246
-  (0.1ms) RELEASE SAVEPOINT active_record_1
247
- Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
248
-  (1.0ms) rollback transaction
249
-  (0.5ms) begin transaction
250
- ---------------------------------------------
251
- DateFormattedTest: test_date_formatted_setter
252
- ---------------------------------------------
253
-  (0.1ms) rollback transaction
254
-  (0.0ms) begin transaction
255
- -------------------------------
256
- DateFormattedTest: test_defined
257
- -------------------------------
258
-  (0.0ms) rollback transaction
259
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
260
-  (0.1ms) begin transaction
261
- ---------------------------------------------
262
- DateFormattedTest: test_date_formatted_setter
263
- ---------------------------------------------
264
-  (0.1ms) rollback transaction
265
-  (0.1ms) begin transaction
266
- -------------------------------
267
- DateFormattedTest: test_defined
268
- -------------------------------
269
-  (0.0ms) rollback transaction
270
-  (0.0ms) begin transaction
271
- ----------------------------------------------------
272
- DateFormattedTest: test_date_formatted_getter_german
273
- ----------------------------------------------------
274
-  (0.1ms) SAVEPOINT active_record_1
275
- SQL (0.4ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 14:27:42.100399"], ["updated_at", "2015-09-11 14:27:42.100399"]]
276
-  (0.0ms) RELEASE SAVEPOINT active_record_1
277
- Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
278
-  (1.0ms) rollback transaction
279
-  (0.1ms) begin transaction
280
- ---------------------------------------------
281
- DateFormattedTest: test_date_formatted_getter
282
- ---------------------------------------------
283
-  (0.0ms) SAVEPOINT active_record_1
284
- SQL (0.3ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 14:27:42.121625"], ["updated_at", "2015-09-11 14:27:42.121625"]]
285
-  (0.0ms) RELEASE SAVEPOINT active_record_1
286
- Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
287
-  (0.9ms) rollback transaction
288
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
289
-  (0.1ms) begin transaction
290
- ---------------------------------------------
291
- DateFormattedTest: test_date_formatted_getter
292
- ---------------------------------------------
293
-  (0.1ms) SAVEPOINT active_record_1
294
- SQL (0.4ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 14:28:00.470455"], ["updated_at", "2015-09-11 14:28:00.470455"]]
295
-  (0.1ms) RELEASE SAVEPOINT active_record_1
296
- Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
297
-  (1.6ms) rollback transaction
298
-  (0.1ms) begin transaction
299
- ----------------------------------------------------
300
- DateFormattedTest: test_date_formatted_getter_german
301
- ----------------------------------------------------
302
-  (0.0ms) SAVEPOINT active_record_1
303
- SQL (0.5ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 14:28:00.481127"], ["updated_at", "2015-09-11 14:28:00.481127"]]
304
-  (0.4ms) RELEASE SAVEPOINT active_record_1
305
- Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
306
-  (1.6ms) rollback transaction
307
-  (0.1ms) begin transaction
308
- -------------------------------
309
- DateFormattedTest: test_defined
310
- -------------------------------
311
-  (0.0ms) rollback transaction
312
-  (0.0ms) begin transaction
313
- ---------------------------------------------
314
- DateFormattedTest: test_date_formatted_setter
315
- ---------------------------------------------
316
-  (0.0ms) rollback transaction
317
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
318
-  (0.1ms) begin transaction
319
- -------------------------------
320
- DateFormattedTest: test_defined
321
- -------------------------------
322
-  (0.0ms) rollback transaction
323
-  (0.1ms) begin transaction
324
- ----------------------------------------------------
325
- DateFormattedTest: test_date_formatted_getter_german
326
- ----------------------------------------------------
327
-  (0.1ms) SAVEPOINT active_record_1
328
- SQL (0.6ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 14:28:18.484623"], ["updated_at", "2015-09-11 14:28:18.484623"]]
329
-  (0.1ms) RELEASE SAVEPOINT active_record_1
330
- Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
331
-  (1.4ms) rollback transaction
332
-  (0.1ms) begin transaction
333
- ---------------------------------------------
334
- DateFormattedTest: test_date_formatted_setter
335
- ---------------------------------------------
336
-  (0.0ms) rollback transaction
337
-  (0.1ms) begin transaction
338
- ---------------------------------------------
339
- DateFormattedTest: test_date_formatted_getter
340
- ---------------------------------------------
341
-  (0.0ms) SAVEPOINT active_record_1
342
- SQL (0.4ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 14:28:18.497782"], ["updated_at", "2015-09-11 14:28:18.497782"]]
343
-  (0.2ms) RELEASE SAVEPOINT active_record_1
344
- Person Load (0.4ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
345
-  (1.4ms) rollback transaction
346
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
347
-  (0.1ms) begin transaction
348
- ---------------------------------------------
349
- DateFormattedTest: test_date_formatted_getter
350
- ---------------------------------------------
351
-  (0.1ms) SAVEPOINT active_record_1
352
- SQL (1.1ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 14:28:32.756218"], ["updated_at", "2015-09-11 14:28:32.756218"]]
353
-  (0.1ms) RELEASE SAVEPOINT active_record_1
354
- Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
355
-  (1.5ms) rollback transaction
356
-  (0.1ms) begin transaction
357
- ---------------------------------------------
358
- DateFormattedTest: test_date_formatted_setter
359
- ---------------------------------------------
360
-  (0.0ms) rollback transaction
361
-  (0.1ms) begin transaction
362
- ----------------------------------------------------
363
- DateFormattedTest: test_date_formatted_getter_german
364
- ----------------------------------------------------
365
-  (0.0ms) SAVEPOINT active_record_1
366
- SQL (0.4ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 14:28:32.768272"], ["updated_at", "2015-09-11 14:28:32.768272"]]
367
-  (0.1ms) RELEASE SAVEPOINT active_record_1
368
- Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
369
-  (1.4ms) rollback transaction
370
-  (0.1ms) begin transaction
371
- -------------------------------
372
- DateFormattedTest: test_defined
373
- -------------------------------
374
-  (0.0ms) rollback transaction
375
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
376
-  (0.1ms) begin transaction
377
- ---------------------------------------------
378
- DateFormattedTest: test_date_formatted_getter
379
- ---------------------------------------------
380
-  (0.1ms) SAVEPOINT active_record_1
381
- SQL (0.5ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 14:30:30.978058"], ["updated_at", "2015-09-11 14:30:30.978058"]]
382
-  (0.1ms) RELEASE SAVEPOINT active_record_1
383
- Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
384
-  (1.3ms) rollback transaction
385
-  (0.1ms) begin transaction
386
- --------------------------------------
387
- DateFormattedTest: test_module_defined
388
- --------------------------------------
389
-  (0.0ms) SAVEPOINT active_record_1
390
- SQL (0.4ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 14:30:30.990492"], ["updated_at", "2015-09-11 14:30:30.990492"]]
391
-  (0.1ms) RELEASE SAVEPOINT active_record_1
392
-  (1.4ms) rollback transaction
393
-  (0.1ms) begin transaction
394
- ----------------------------------------------------
395
- DateFormattedTest: test_date_formatted_setter_german
396
- ----------------------------------------------------
397
-  (0.0ms) SAVEPOINT active_record_1
398
- SQL (0.3ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 14:30:30.994172"], ["updated_at", "2015-09-11 14:30:30.994172"]]
399
-  (0.1ms) RELEASE SAVEPOINT active_record_1
400
- Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
401
-  (0.1ms) SAVEPOINT active_record_1
402
- SQL (0.8ms) UPDATE "people" SET "birth_date" = ?, "updated_at" = ? WHERE "people"."id" = ? [["birth_date", "1971-02-24"], ["updated_at", "2015-09-11 14:30:30.998365"], ["id", 1]]
403
-  (0.1ms) RELEASE SAVEPOINT active_record_1
404
- Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
405
- Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
406
-  (1.6ms) rollback transaction
407
-  (0.1ms) begin transaction
408
- ----------------------------------------------------
409
- DateFormattedTest: test_date_formatted_getter_german
410
- ----------------------------------------------------
411
-  (0.0ms) SAVEPOINT active_record_1
412
- SQL (0.3ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 14:30:31.012738"], ["updated_at", "2015-09-11 14:30:31.012738"]]
413
-  (0.0ms) RELEASE SAVEPOINT active_record_1
414
- Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
415
-  (1.3ms) rollback transaction
416
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
417
-  (0.1ms) begin transaction
418
- ---------------------------------------------
419
- DateFormattedTest: test_date_formatted_getter
420
- ---------------------------------------------
421
-  (0.6ms) SAVEPOINT active_record_1
422
- SQL (0.5ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 14:42:42.864111"], ["updated_at", "2015-09-11 14:42:42.864111"]]
423
-  (0.1ms) RELEASE SAVEPOINT active_record_1
424
- Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
425
- Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
426
-  (1.2ms) rollback transaction
427
-  (0.1ms) begin transaction
428
- --------------------------------------
429
- DateFormattedTest: test_module_defined
430
- --------------------------------------
431
-  (0.0ms) SAVEPOINT active_record_1
432
- SQL (0.4ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 14:42:42.875533"], ["updated_at", "2015-09-11 14:42:42.875533"]]
433
-  (0.0ms) RELEASE SAVEPOINT active_record_1
434
-  (1.5ms) rollback transaction
435
-  (0.1ms) begin transaction
436
- ----------------------------------------------------
437
- DateFormattedTest: test_date_formatted_getter_german
438
- ----------------------------------------------------
439
-  (0.0ms) SAVEPOINT active_record_1
440
- SQL (0.3ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 14:42:42.879067"], ["updated_at", "2015-09-11 14:42:42.879067"]]
441
-  (0.0ms) RELEASE SAVEPOINT active_record_1
442
- Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
443
- Person Load (0.0ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
444
-  (1.3ms) rollback transaction
445
-  (0.1ms) begin transaction
446
- ----------------------------------------------------
447
- DateFormattedTest: test_date_formatted_setter_german
448
- ----------------------------------------------------
449
-  (0.0ms) SAVEPOINT active_record_1
450
- SQL (0.3ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 14:42:42.883047"], ["updated_at", "2015-09-11 14:42:42.883047"]]
451
-  (0.0ms) RELEASE SAVEPOINT active_record_1
452
- Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
453
-  (0.0ms) SAVEPOINT active_record_1
454
- SQL (0.6ms) UPDATE "people" SET "birth_date" = ?, "updated_at" = ? WHERE "people"."id" = ? [["birth_date", "1971-02-24"], ["updated_at", "2015-09-11 14:42:42.885477"], ["id", 1]]
455
-  (0.1ms) RELEASE SAVEPOINT active_record_1
456
- Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
457
- Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
458
-  (1.8ms) rollback transaction
459
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
460
-  (0.1ms) begin transaction
461
- --------------------------------------
462
- DateFormattedTest: test_module_defined
463
- --------------------------------------
464
-  (0.3ms) SAVEPOINT active_record_1
465
- SQL (0.4ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 14:46:41.703162"], ["updated_at", "2015-09-11 14:46:41.703162"]]
466
-  (0.0ms) RELEASE SAVEPOINT active_record_1
467
-  (1.3ms) rollback transaction
468
-  (0.1ms) begin transaction
469
- ----------------------------------------------------
470
- DateFormattedTest: test_date_formatted_getter_german
471
- ----------------------------------------------------
472
-  (0.0ms) SAVEPOINT active_record_1
473
- SQL (0.3ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 14:46:41.708818"], ["updated_at", "2015-09-11 14:46:41.708818"]]
474
-  (0.0ms) RELEASE SAVEPOINT active_record_1
475
- Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
476
- Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
477
-  (1.3ms) rollback transaction
478
-  (0.1ms) begin transaction
479
- ---------------------------------------------
480
- DateFormattedTest: test_date_formatted_getter
481
- ---------------------------------------------
482
-  (0.0ms) SAVEPOINT active_record_1
483
- SQL (0.3ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 14:46:41.717829"], ["updated_at", "2015-09-11 14:46:41.717829"]]
484
-  (0.0ms) RELEASE SAVEPOINT active_record_1
485
- Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
486
-  (1.3ms) rollback transaction
487
-  (0.1ms) begin transaction
488
- ----------------------------------------------------
489
- DateFormattedTest: test_date_formatted_setter_german
490
- ----------------------------------------------------
491
-  (0.0ms) SAVEPOINT active_record_1
492
- SQL (0.4ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 14:46:41.721582"], ["updated_at", "2015-09-11 14:46:41.721582"]]
493
-  (0.0ms) RELEASE SAVEPOINT active_record_1
494
- Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
495
-  (0.0ms) SAVEPOINT active_record_1
496
- SQL (0.6ms) UPDATE "people" SET "birth_date" = ?, "updated_at" = ? WHERE "people"."id" = ? [["birth_date", "1971-02-24"], ["updated_at", "2015-09-11 14:46:41.723594"], ["id", 1]]
497
-  (0.1ms) RELEASE SAVEPOINT active_record_1
498
- Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
499
- Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
500
-  (1.5ms) rollback transaction
501
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
502
-  (0.1ms) begin transaction
503
- ----------------------------------------------------
504
- DateFormattedTest: test_date_formatted_getter_german
505
- ----------------------------------------------------
506
-  (0.1ms) SAVEPOINT active_record_1
507
- SQL (0.4ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 14:47:05.270825"], ["updated_at", "2015-09-11 14:47:05.270825"]]
508
-  (0.0ms) RELEASE SAVEPOINT active_record_1
509
- Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
510
- Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
511
-  (1.3ms) rollback transaction
512
-  (0.1ms) begin transaction
513
- ---------------------------------------------
514
- DateFormattedTest: test_date_formatted_getter
515
- ---------------------------------------------
516
-  (0.0ms) SAVEPOINT active_record_1
517
- SQL (0.3ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 14:47:05.281499"], ["updated_at", "2015-09-11 14:47:05.281499"]]
518
-  (0.0ms) RELEASE SAVEPOINT active_record_1
519
- Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
520
-  (1.4ms) rollback transaction
521
-  (0.1ms) begin transaction
522
- ----------------------------------------------------
523
- DateFormattedTest: test_date_formatted_setter_german
524
- ----------------------------------------------------
525
-  (0.0ms) SAVEPOINT active_record_1
526
- SQL (0.4ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 14:47:05.285563"], ["updated_at", "2015-09-11 14:47:05.285563"]]
527
-  (0.1ms) RELEASE SAVEPOINT active_record_1
528
- Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
529
-  (0.0ms) SAVEPOINT active_record_1
530
- SQL (0.5ms) UPDATE "people" SET "birth_date" = ?, "updated_at" = ? WHERE "people"."id" = ? [["birth_date", "1971-02-24"], ["updated_at", "2015-09-11 14:47:05.287741"], ["id", 1]]
531
-  (0.1ms) RELEASE SAVEPOINT active_record_1
532
- Person Load (0.4ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
533
- Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
534
-  (1.5ms) rollback transaction
535
-  (0.1ms) begin transaction
536
- --------------------------------------
537
- DateFormattedTest: test_module_defined
538
- --------------------------------------
539
-  (0.1ms) SAVEPOINT active_record_1
540
- SQL (3.4ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 14:47:05.296775"], ["updated_at", "2015-09-11 14:47:05.296775"]]
541
-  (0.1ms) RELEASE SAVEPOINT active_record_1
542
-  (1.3ms) rollback transaction
543
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
544
-  (0.1ms) begin transaction
545
- ---------------------------------------------
546
- DateFormattedTest: test_date_formatted_getter
547
- ---------------------------------------------
548
-  (0.1ms) SAVEPOINT active_record_1
549
- SQL (0.6ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 14:47:46.879176"], ["updated_at", "2015-09-11 14:47:46.879176"]]
550
-  (0.1ms) RELEASE SAVEPOINT active_record_1
551
- Person Load (0.2ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
552
- Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
553
-  (1.3ms) rollback transaction
554
-  (0.1ms) begin transaction
555
- ----------------------------------------------------
556
- DateFormattedTest: test_date_formatted_setter_german
557
- ----------------------------------------------------
558
-  (0.0ms) SAVEPOINT active_record_1
559
- SQL (0.3ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 14:47:46.888209"], ["updated_at", "2015-09-11 14:47:46.888209"]]
560
-  (0.1ms) RELEASE SAVEPOINT active_record_1
561
- Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
562
-  (0.0ms) SAVEPOINT active_record_1
563
- SQL (0.4ms) UPDATE "people" SET "birth_date" = ?, "updated_at" = ? WHERE "people"."id" = ? [["birth_date", "1971-02-24"], ["updated_at", "2015-09-11 14:47:46.890489"], ["id", 1]]
564
-  (0.0ms) RELEASE SAVEPOINT active_record_1
565
- Person Load (0.3ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
566
- Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
567
-  (1.4ms) rollback transaction
568
-  (0.1ms) begin transaction
569
- --------------------------------------
570
- DateFormattedTest: test_module_defined
571
- --------------------------------------
9
+ --------------------------------------------------
10
+ ActiveRecordDateFormattedTest: test_module_defined
11
+ --------------------------------------------------
572
12
   (0.0ms) SAVEPOINT active_record_1
573
- SQL (0.4ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 14:47:46.898542"], ["updated_at", "2015-09-11 14:47:46.898542"]]
574
-  (0.0ms) RELEASE SAVEPOINT active_record_1
575
-  (1.4ms) rollback transaction
576
-  (0.1ms) begin transaction
577
- ----------------------------------------------------
578
- DateFormattedTest: test_date_formatted_getter_german
579
- ----------------------------------------------------
580
-  (0.1ms) SAVEPOINT active_record_1
581
- SQL (0.5ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 14:47:46.902611"], ["updated_at", "2015-09-11 14:47:46.902611"]]
582
-  (0.0ms) RELEASE SAVEPOINT active_record_1
583
- Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
584
- Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
585
-  (1.2ms) rollback transaction
586
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
587
-  (0.1ms) begin transaction
588
- ----------------------------------------------------
589
- DateFormattedTest: test_date_formatted_setter_german
590
- ----------------------------------------------------
591
-  (0.1ms) SAVEPOINT active_record_1
592
- SQL (0.4ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 14:48:42.302362"], ["updated_at", "2015-09-11 14:48:42.302362"]]
593
-  (0.1ms) RELEASE SAVEPOINT active_record_1
594
- Person Load (0.2ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
595
-  (0.1ms) SAVEPOINT active_record_1
596
- SQL (0.6ms) UPDATE "people" SET "birth_date" = ?, "updated_at" = ? WHERE "people"."id" = ? [["birth_date", "1971-02-24"], ["updated_at", "2015-09-11 14:48:42.308508"], ["id", 1]]
597
-  (0.3ms) RELEASE SAVEPOINT active_record_1
598
- Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
599
- Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
600
-  (1.5ms) rollback transaction
601
-  (0.1ms) begin transaction
602
- ---------------------------------------------
603
- DateFormattedTest: test_date_formatted_getter
604
- ---------------------------------------------
605
-  (0.0ms) SAVEPOINT active_record_1
606
- SQL (0.3ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 14:48:42.318781"], ["updated_at", "2015-09-11 14:48:42.318781"]]
607
-  (0.0ms) RELEASE SAVEPOINT active_record_1
608
- Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
609
- Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
610
-  (1.5ms) rollback transaction
611
-  (0.1ms) begin transaction
612
- ----------------------------------------------------
613
- DateFormattedTest: test_date_formatted_getter_german
614
- ----------------------------------------------------
615
-  (0.1ms) SAVEPOINT active_record_1
616
- SQL (0.4ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 14:48:42.323964"], ["updated_at", "2015-09-11 14:48:42.323964"]]
13
+ SQL (0.4ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-12 14:45:15.842897"], ["updated_at", "2015-09-12 14:45:15.842897"]]
617
14
   (0.0ms) RELEASE SAVEPOINT active_record_1
618
- Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
619
- Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
620
-  (1.2ms) rollback transaction
15
+  (1.1ms) rollback transaction
621
16
   (0.0ms) begin transaction
622
- --------------------------------------
623
- DateFormattedTest: test_module_defined
624
- --------------------------------------
625
-  (0.0ms) SAVEPOINT active_record_1
626
- SQL (0.3ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 14:48:42.328273"], ["updated_at", "2015-09-11 14:48:42.328273"]]
627
-  (0.0ms) RELEASE SAVEPOINT active_record_1
628
-  (1.0ms) rollback transaction
629
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
630
-  (0.1ms) begin transaction
631
- ---------------------------------------------
632
- DateFormattedTest: test_date_formatted_getter
633
- ---------------------------------------------
634
-  (0.1ms) SAVEPOINT active_record_1
635
- SQL (0.4ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 14:48:54.841583"], ["updated_at", "2015-09-11 14:48:54.841583"]]
636
-  (0.1ms) RELEASE SAVEPOINT active_record_1
637
- Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
638
- Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
639
-  (1.3ms) rollback transaction
640
-  (0.1ms) begin transaction
641
- --------------------------------------
642
- DateFormattedTest: test_module_defined
643
- --------------------------------------
644
-  (0.1ms) SAVEPOINT active_record_1
645
- SQL (0.4ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 14:48:54.849819"], ["updated_at", "2015-09-11 14:48:54.849819"]]
646
-  (0.0ms) RELEASE SAVEPOINT active_record_1
647
-  (1.3ms) rollback transaction
648
-  (0.4ms) begin transaction
649
- ----------------------------------------------------
650
- DateFormattedTest: test_date_formatted_setter_german
651
- ----------------------------------------------------
652
-  (0.0ms) SAVEPOINT active_record_1
653
- SQL (0.8ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 14:48:54.853620"], ["updated_at", "2015-09-11 14:48:54.853620"]]
654
-  (0.1ms) RELEASE SAVEPOINT active_record_1
655
- Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
656
-  (0.1ms) SAVEPOINT active_record_1
657
- SQL (1.0ms) UPDATE "people" SET "birth_date" = ?, "updated_at" = ? WHERE "people"."id" = ? [["birth_date", "1971-02-24"], ["updated_at", "2015-09-11 14:48:54.857005"], ["id", 1]]
658
-  (0.1ms) RELEASE SAVEPOINT active_record_1
659
- Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
660
- Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
661
-  (1.6ms) rollback transaction
662
-  (0.1ms) begin transaction
663
- ----------------------------------------------------
664
- DateFormattedTest: test_date_formatted_getter_german
665
- ----------------------------------------------------
666
-  (0.0ms) SAVEPOINT active_record_1
667
- SQL (0.4ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 14:48:54.868427"], ["updated_at", "2015-09-11 14:48:54.868427"]]
668
-  (0.1ms) RELEASE SAVEPOINT active_record_1
669
- Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
670
- Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
671
-  (1.4ms) rollback transaction
672
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
673
-  (0.1ms) begin transaction
674
- ---------------------------------------------
675
- DateFormattedTest: test_date_formatted_getter
676
- ---------------------------------------------
677
-  (0.1ms) SAVEPOINT active_record_1
678
- SQL (0.4ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 14:49:14.064156"], ["updated_at", "2015-09-11 14:49:14.064156"]]
679
-  (0.0ms) RELEASE SAVEPOINT active_record_1
680
- Person Load (0.2ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
681
- Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
682
-  (1.9ms) rollback transaction
683
-  (0.1ms) begin transaction
684
- --------------------------------------
685
- DateFormattedTest: test_module_defined
686
- --------------------------------------
687
-  (0.0ms) SAVEPOINT active_record_1
688
- SQL (0.3ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 14:49:14.073721"], ["updated_at", "2015-09-11 14:49:14.073721"]]
689
-  (0.0ms) RELEASE SAVEPOINT active_record_1
690
-  (1.2ms) rollback transaction
691
-  (0.1ms) begin transaction
692
- ----------------------------------------------------
693
- DateFormattedTest: test_date_formatted_setter_german
694
- ----------------------------------------------------
695
-  (0.1ms) SAVEPOINT active_record_1
696
- SQL (0.3ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 14:49:14.077494"], ["updated_at", "2015-09-11 14:49:14.077494"]]
697
-  (0.0ms) RELEASE SAVEPOINT active_record_1
698
- Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
699
-  (0.0ms) SAVEPOINT active_record_1
700
- SQL (0.5ms) UPDATE "people" SET "birth_date" = ?, "updated_at" = ? WHERE "people"."id" = ? [["birth_date", "1971-02-24"], ["updated_at", "2015-09-11 14:49:14.079869"], ["id", 1]]
701
-  (0.1ms) RELEASE SAVEPOINT active_record_1
702
- Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
703
- Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
704
-  (1.7ms) rollback transaction
705
-  (0.1ms) begin transaction
706
- ----------------------------------------------------
707
- DateFormattedTest: test_date_formatted_getter_german
708
- ----------------------------------------------------
709
-  (0.1ms) SAVEPOINT active_record_1
710
- SQL (0.4ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 14:49:14.089117"], ["updated_at", "2015-09-11 14:49:14.089117"]]
711
-  (0.1ms) RELEASE SAVEPOINT active_record_1
712
- Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
713
- Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
714
-  (1.4ms) rollback transaction
715
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
716
-  (0.1ms) begin transaction
717
- --------------------------------------
718
- DateFormattedTest: test_module_defined
719
- --------------------------------------
720
-  (0.1ms) SAVEPOINT active_record_1
721
- SQL (1.1ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 14:49:30.953707"], ["updated_at", "2015-09-11 14:49:30.953707"]]
722
-  (0.1ms) RELEASE SAVEPOINT active_record_1
723
-  (1.3ms) rollback transaction
724
-  (0.1ms) begin transaction
725
- ----------------------------------------------------
726
- DateFormattedTest: test_date_formatted_getter_german
727
- ----------------------------------------------------
17
+ ----------------------------------------------------------------
18
+ ActiveRecordDateFormattedTest: test_date_formatted_getter_german
19
+ ----------------------------------------------------------------
728
20
   (0.0ms) SAVEPOINT active_record_1
729
- SQL (0.3ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 14:49:30.960127"], ["updated_at", "2015-09-11 14:49:30.960127"]]
21
+ SQL (0.2ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-12 14:45:15.848052"], ["updated_at", "2015-09-12 14:45:15.848052"]]
730
22
   (0.0ms) RELEASE SAVEPOINT active_record_1
731
23
  Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
732
24
  Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
733
-  (1.3ms) rollback transaction
734
-  (0.1ms) begin transaction
735
- ----------------------------------------------------
736
- DateFormattedTest: test_date_formatted_setter_german
737
- ----------------------------------------------------
25
+  (0.3ms) rollback transaction
26
+  (0.0ms) begin transaction
27
+ ----------------------------------------------------------------
28
+ ActiveRecordDateFormattedTest: test_date_formatted_setter_german
29
+ ----------------------------------------------------------------
738
30
   (0.0ms) SAVEPOINT active_record_1
739
- SQL (0.7ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 14:49:30.965924"], ["updated_at", "2015-09-11 14:49:30.965924"]]
31
+ SQL (0.2ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-12 14:45:15.851348"], ["updated_at", "2015-09-12 14:45:15.851348"]]
740
32
   (0.0ms) RELEASE SAVEPOINT active_record_1
741
33
  Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
742
34
   (0.0ms) SAVEPOINT active_record_1
743
- SQL (0.5ms) UPDATE "people" SET "birth_date" = ?, "updated_at" = ? WHERE "people"."id" = ? [["birth_date", "1971-02-24"], ["updated_at", "2015-09-11 14:49:30.968083"], ["id", 1]]
35
+ SQL (1.3ms) UPDATE "people" SET "birth_date" = ?, "updated_at" = ? WHERE "people"."id" = ? [["birth_date", "1971-02-24"], ["updated_at", "2015-09-12 14:45:15.853452"], ["id", 1]]
744
36
   (0.0ms) RELEASE SAVEPOINT active_record_1
745
- Person Load (0.4ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
746
- Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
747
-  (1.6ms) rollback transaction
748
-  (0.1ms) begin transaction
749
- ---------------------------------------------
750
- DateFormattedTest: test_date_formatted_getter
751
- ---------------------------------------------
752
-  (0.1ms) SAVEPOINT active_record_1
753
- SQL (0.5ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 14:49:30.977008"], ["updated_at", "2015-09-11 14:49:30.977008"]]
754
-  (0.1ms) RELEASE SAVEPOINT active_record_1
755
- Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
756
37
  Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
757
-  (1.2ms) rollback transaction
758
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
759
-  (0.1ms) begin transaction
760
- --------------------------------------
761
- DateFormattedTest: test_module_defined
762
- --------------------------------------
763
-  (0.1ms) SAVEPOINT active_record_1
764
- SQL (0.4ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 14:49:47.142800"], ["updated_at", "2015-09-11 14:49:47.142800"]]
765
-  (0.1ms) RELEASE SAVEPOINT active_record_1
766
-  (1.3ms) rollback transaction
767
-  (0.1ms) begin transaction
768
- ----------------------------------------------------
769
- DateFormattedTest: test_date_formatted_getter_german
770
- ----------------------------------------------------
771
-  (0.2ms) SAVEPOINT active_record_1
772
- SQL (0.3ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 14:49:47.148488"], ["updated_at", "2015-09-11 14:49:47.148488"]]
773
-  (0.0ms) RELEASE SAVEPOINT active_record_1
774
- Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
775
- Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
776
-  (1.3ms) rollback transaction
777
-  (0.1ms) begin transaction
778
- ----------------------------------------------------
779
- DateFormattedTest: test_date_formatted_setter_german
780
- ----------------------------------------------------
781
-  (0.0ms) SAVEPOINT active_record_1
782
- SQL (0.4ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 14:49:47.153966"], ["updated_at", "2015-09-11 14:49:47.153966"]]
783
-  (0.1ms) RELEASE SAVEPOINT active_record_1
784
- Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
785
-  (0.0ms) SAVEPOINT active_record_1
786
- SQL (0.4ms) UPDATE "people" SET "birth_date" = ?, "updated_at" = ? WHERE "people"."id" = ? [["birth_date", "1971-02-24"], ["updated_at", "2015-09-11 14:49:47.156296"], ["id", 1]]
787
-  (0.1ms) RELEASE SAVEPOINT active_record_1
788
- Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
789
- Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
790
-  (1.9ms) rollback transaction
791
-  (0.1ms) begin transaction
792
- ---------------------------------------------
793
- DateFormattedTest: test_date_formatted_getter
794
- ---------------------------------------------
795
-  (0.1ms) SAVEPOINT active_record_1
796
- SQL (0.6ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 14:49:47.165721"], ["updated_at", "2015-09-11 14:49:47.165721"]]
797
-  (0.1ms) RELEASE SAVEPOINT active_record_1
798
- Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
799
- Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
800
-  (1.2ms) rollback transaction
801
- ActiveRecord::SchemaMigration Load (1.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
802
-  (0.1ms) begin transaction
803
- ----------------------------------------------------------------
804
- ActiveRecordDateFormattedTest: test_date_formatted_getter_german
805
- ----------------------------------------------------------------
806
-  (0.1ms) SAVEPOINT active_record_1
807
- SQL (1.9ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 15:23:00.079508"], ["updated_at", "2015-09-11 15:23:00.079508"]]
808
-  (0.1ms) RELEASE SAVEPOINT active_record_1
809
- Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
810
- Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
811
-  (1.3ms) rollback transaction
812
-  (0.1ms) begin transaction
38
+ Person Load (0.0ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
39
+  (0.5ms) rollback transaction
40
+  (0.0ms) begin transaction
813
41
  ---------------------------------------------------------
814
42
  ActiveRecordDateFormattedTest: test_date_formatted_getter
815
43
  ---------------------------------------------------------
816
44
   (0.0ms) SAVEPOINT active_record_1
817
- SQL (0.3ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 15:23:00.089724"], ["updated_at", "2015-09-11 15:23:00.089724"]]
818
-  (0.1ms) RELEASE SAVEPOINT active_record_1
819
- Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
820
- Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
821
-  (1.3ms) rollback transaction
822
-  (0.1ms) begin transaction
823
- --------------------------------------------------
824
- ActiveRecordDateFormattedTest: test_module_defined
825
- --------------------------------------------------
826
-  (0.0ms) SAVEPOINT active_record_1
827
- SQL (0.6ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 15:23:00.094466"], ["updated_at", "2015-09-11 15:23:00.094466"]]
828
-  (0.2ms) RELEASE SAVEPOINT active_record_1
829
-  (1.4ms) rollback transaction
830
-  (0.1ms) begin transaction
831
- ----------------------------------------------------------------
832
- ActiveRecordDateFormattedTest: test_date_formatted_setter_german
833
- ----------------------------------------------------------------
834
-  (0.0ms) SAVEPOINT active_record_1
835
- SQL (0.4ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 15:23:00.100173"], ["updated_at", "2015-09-11 15:23:00.100173"]]
836
-  (0.1ms) RELEASE SAVEPOINT active_record_1
837
- Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
838
-  (0.0ms) SAVEPOINT active_record_1
839
- SQL (0.5ms) UPDATE "people" SET "birth_date" = ?, "updated_at" = ? WHERE "people"."id" = ? [["birth_date", "1971-02-24"], ["updated_at", "2015-09-11 15:23:00.102512"], ["id", 1]]
840
-  (0.1ms) RELEASE SAVEPOINT active_record_1
45
+ SQL (0.3ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-12 14:45:15.859699"], ["updated_at", "2015-09-12 14:45:15.859699"]]
46
+  (0.0ms) RELEASE SAVEPOINT active_record_1
841
47
  Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
842
48
  Person Load (0.0ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
843
-  (1.9ms) rollback transaction
49
+  (0.3ms) rollback transaction
844
50
  ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
845
51
   (0.1ms) begin transaction
846
- ---------------------------------------------------------
847
- ActiveRecordDateFormattedTest: test_date_formatted_getter
848
- ---------------------------------------------------------
849
-  (0.1ms) SAVEPOINT active_record_1
850
- SQL (0.4ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 15:23:24.682190"], ["updated_at", "2015-09-11 15:23:24.682190"]]
851
-  (0.0ms) RELEASE SAVEPOINT active_record_1
852
- Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
853
- Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
854
-  (1.3ms) rollback transaction
855
-  (0.1ms) begin transaction
856
- --------------------------------------------------
857
- ActiveRecordDateFormattedTest: test_module_defined
858
- --------------------------------------------------
859
-  (0.0ms) SAVEPOINT active_record_1
860
- SQL (0.4ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 15:23:24.690109"], ["updated_at", "2015-09-11 15:23:24.690109"]]
861
-  (0.0ms) RELEASE SAVEPOINT active_record_1
862
-  (1.5ms) rollback transaction
863
-  (0.1ms) begin transaction
864
52
  ----------------------------------------------------------------
865
53
  ActiveRecordDateFormattedTest: test_date_formatted_getter_german
866
54
  ----------------------------------------------------------------
867
55
   (0.0ms) SAVEPOINT active_record_1
868
- SQL (0.3ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 15:23:24.693843"], ["updated_at", "2015-09-11 15:23:24.693843"]]
56
+ SQL (0.8ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-12 14:45:27.075990"], ["updated_at", "2015-09-12 14:45:27.075990"]]
869
57
   (0.0ms) RELEASE SAVEPOINT active_record_1
870
58
  Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
871
- Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
872
-  (1.5ms) rollback transaction
59
+ Person Load (0.0ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
60
+  (8.3ms) rollback transaction
873
61
   (0.1ms) begin transaction
874
62
  ----------------------------------------------------------------
875
63
  ActiveRecordDateFormattedTest: test_date_formatted_setter_german
876
64
  ----------------------------------------------------------------
877
65
   (0.0ms) SAVEPOINT active_record_1
878
- SQL (0.3ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 15:23:24.698703"], ["updated_at", "2015-09-11 15:23:24.698703"]]
66
+ SQL (0.3ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-12 14:45:27.089165"], ["updated_at", "2015-09-12 14:45:27.089165"]]
879
67
   (0.0ms) RELEASE SAVEPOINT active_record_1
880
68
  Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
881
69
   (0.0ms) SAVEPOINT active_record_1
882
- SQL (0.7ms) UPDATE "people" SET "birth_date" = ?, "updated_at" = ? WHERE "people"."id" = ? [["birth_date", "1971-02-24"], ["updated_at", "2015-09-11 15:23:24.700716"], ["id", 1]]
883
-  (0.2ms) RELEASE SAVEPOINT active_record_1
884
- Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
885
- Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
886
-  (1.6ms) rollback transaction
887
- ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
888
-  (0.1ms) begin transaction
889
- ---------------------------------------------------------
890
- ActiveRecordDateFormattedTest: test_date_formatted_getter
891
- ---------------------------------------------------------
892
-  (0.0ms) SAVEPOINT active_record_1
893
- SQL (0.5ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 15:29:20.828114"], ["updated_at", "2015-09-11 15:29:20.828114"]]
894
-  (0.1ms) RELEASE SAVEPOINT active_record_1
895
- Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
896
- Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
897
-  (1.3ms) rollback transaction
898
-  (0.1ms) begin transaction
899
- --------------------------------------------------
900
- ActiveRecordDateFormattedTest: test_module_defined
901
- --------------------------------------------------
902
-  (0.0ms) SAVEPOINT active_record_1
903
- SQL (0.4ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 15:29:20.836436"], ["updated_at", "2015-09-11 15:29:20.836436"]]
904
-  (0.0ms) RELEASE SAVEPOINT active_record_1
905
-  (1.4ms) rollback transaction
906
-  (0.1ms) begin transaction
907
- ----------------------------------------------------------------
908
- ActiveRecordDateFormattedTest: test_date_formatted_setter_german
909
- ----------------------------------------------------------------
910
-  (0.0ms) SAVEPOINT active_record_1
911
- SQL (0.7ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 15:29:20.840114"], ["updated_at", "2015-09-11 15:29:20.840114"]]
912
-  (0.1ms) RELEASE SAVEPOINT active_record_1
913
- Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
914
-  (0.0ms) SAVEPOINT active_record_1
915
- SQL (0.3ms) UPDATE "people" SET "birth_date" = ?, "updated_at" = ? WHERE "people"."id" = ? [["birth_date", "1971-02-24"], ["updated_at", "2015-09-11 15:29:20.842607"], ["id", 1]]
916
-  (0.0ms) RELEASE SAVEPOINT active_record_1
917
- Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
918
- Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
919
-  (1.9ms) rollback transaction
920
-  (0.1ms) begin transaction
921
- ----------------------------------------------------------------
922
- ActiveRecordDateFormattedTest: test_date_formatted_getter_german
923
- ----------------------------------------------------------------
924
-  (0.0ms) SAVEPOINT active_record_1
925
- SQL (0.4ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 15:29:20.850886"], ["updated_at", "2015-09-11 15:29:20.850886"]]
70
+ SQL (0.8ms) UPDATE "people" SET "birth_date" = ?, "updated_at" = ? WHERE "people"."id" = ? [["birth_date", "1971-02-24"], ["updated_at", "2015-09-12 14:45:27.091130"], ["id", 1]]
926
71
   (0.0ms) RELEASE SAVEPOINT active_record_1
927
72
  Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
928
- Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
929
-  (1.4ms) rollback transaction
930
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
931
-  (0.1ms) begin transaction
73
+ Person Load (0.0ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
74
+  (0.6ms) rollback transaction
75
+  (0.0ms) begin transaction
932
76
  ---------------------------------------------------------
933
77
  ActiveRecordDateFormattedTest: test_date_formatted_getter
934
78
  ---------------------------------------------------------
935
-  (0.1ms) SAVEPOINT active_record_1
936
- SQL (0.5ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 15:56:41.132420"], ["updated_at", "2015-09-11 15:56:41.132420"]]
79
+  (0.0ms) SAVEPOINT active_record_1
80
+ SQL (0.1ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-12 14:45:27.096561"], ["updated_at", "2015-09-12 14:45:27.096561"]]
937
81
   (0.0ms) RELEASE SAVEPOINT active_record_1
938
- Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
939
- Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
940
-  (1.4ms) rollback transaction
941
-  (0.1ms) begin transaction
82
+ Person Load (0.0ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
83
+ Person Load (0.0ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
84
+  (0.3ms) rollback transaction
85
+  (0.0ms) begin transaction
942
86
  --------------------------------------------------
943
87
  ActiveRecordDateFormattedTest: test_module_defined
944
88
  --------------------------------------------------
945
89
   (0.0ms) SAVEPOINT active_record_1
946
- SQL (0.3ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 15:56:41.142590"], ["updated_at", "2015-09-11 15:56:41.142590"]]
90
+ SQL (0.1ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-12 14:45:27.098284"], ["updated_at", "2015-09-12 14:45:27.098284"]]
947
91
   (0.0ms) RELEASE SAVEPOINT active_record_1
948
-  (1.3ms) rollback transaction
949
-  (0.1ms) begin transaction
950
- ----------------------------------------------------------------
951
- ActiveRecordDateFormattedTest: test_date_formatted_getter_german
952
- ----------------------------------------------------------------
953
-  (0.0ms) SAVEPOINT active_record_1
954
- SQL (0.3ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 15:56:41.146012"], ["updated_at", "2015-09-11 15:56:41.146012"]]
955
-  (0.1ms) RELEASE SAVEPOINT active_record_1
956
- Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
957
- Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
958
-  (1.5ms) rollback transaction
959
-  (0.1ms) begin transaction
960
- ----------------------------------------------------------------
961
- ActiveRecordDateFormattedTest: test_date_formatted_setter_german
962
- ----------------------------------------------------------------
963
-  (0.1ms) SAVEPOINT active_record_1
964
- SQL (0.4ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 15:56:41.151047"], ["updated_at", "2015-09-11 15:56:41.151047"]]
965
-  (0.1ms) RELEASE SAVEPOINT active_record_1
966
- Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
967
-  (0.0ms) SAVEPOINT active_record_1
968
- SQL (0.4ms) UPDATE "people" SET "birth_date" = ?, "updated_at" = ? WHERE "people"."id" = ? [["birth_date", "1971-02-24"], ["updated_at", "2015-09-11 15:56:41.153683"], ["id", 1]]
969
-  (0.0ms) RELEASE SAVEPOINT active_record_1
970
- Person Load (0.3ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
971
- Person Load (0.1ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
972
-  (1.5ms) rollback transaction
92
+  (0.2ms) rollback transaction
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: active_record_date_formatted
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.5
4
+ version: 0.0.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Igor Jancev
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-09-11 00:00:00.000000000 Z
11
+ date: 2015-09-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -98,11 +98,9 @@ files:
98
98
  - test/dummy/config/locales/en.yml
99
99
  - test/dummy/config/routes.rb
100
100
  - test/dummy/config/secrets.yml
101
- - test/dummy/db/development.sqlite3
102
101
  - test/dummy/db/migrate/20150911135550_create_people.rb
103
102
  - test/dummy/db/schema.rb
104
103
  - test/dummy/db/test.sqlite3
105
- - test/dummy/log/development.log
106
104
  - test/dummy/log/test.log
107
105
  - test/dummy/public/404.html
108
106
  - test/dummy/public/422.html
@@ -131,7 +129,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
131
129
  version: '0'
132
130
  requirements: []
133
131
  rubyforge_project:
134
- rubygems_version: 2.4.5
132
+ rubygems_version: 2.2.2
135
133
  signing_key:
136
134
  specification_version: 4
137
135
  summary: Adds *_formatted and *_formatted= methods to all rails model's date attributes
@@ -167,11 +165,9 @@ test_files:
167
165
  - test/dummy/config/routes.rb
168
166
  - test/dummy/config/secrets.yml
169
167
  - test/dummy/config.ru
170
- - test/dummy/db/development.sqlite3
171
168
  - test/dummy/db/migrate/20150911135550_create_people.rb
172
169
  - test/dummy/db/schema.rb
173
170
  - test/dummy/db/test.sqlite3
174
- - test/dummy/log/development.log
175
171
  - test/dummy/log/test.log
176
172
  - test/dummy/public/404.html
177
173
  - test/dummy/public/422.html
Binary file
@@ -1,31 +0,0 @@
1
-  (2.2ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
2
-  (0.1ms) select sqlite_version(*)
3
-  (3.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
4
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
5
- Migrating to CreatePeople (20150911135550)
6
-  (0.1ms) begin transaction
7
-  (0.5ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "birth_date" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
8
- SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150911135550"]]
9
-  (1.6ms) commit transaction
10
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
11
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
12
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
13
-  (2.2ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "birth_date" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
14
-  (1.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
15
-  (0.1ms) select sqlite_version(*)
16
-  (2.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
17
-  (0.1ms) SELECT version FROM "schema_migrations"
18
-  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20150911135550')
19
-  (2.0ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "birth_date" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
20
-  (1.7ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
21
-  (0.1ms) select sqlite_version(*)
22
-  (2.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
23
-  (0.1ms) SELECT version FROM "schema_migrations"
24
-  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150911135550')
25
-  (0.1ms) begin transaction
26
- SQL (0.4ms) INSERT INTO "people" ("birth_date", "created_at", "updated_at") VALUES (?, ?, ?) [["birth_date", "1971-02-18"], ["created_at", "2015-09-11 14:20:55.125294"], ["updated_at", "2015-09-11 14:20:55.125294"]]
27
-  (1.6ms) commit transaction
28
- Person Load (0.2ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
29
- Person Load (0.3ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
30
- Person Load (0.3ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1
31
- Person Load (0.4ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1