lazy_columns 0.5.4 → 0.5.5

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.
@@ -22,7 +22,11 @@ module LazyColumns
22
22
 
23
23
  def define_lazy_accessor_for(column)
24
24
  define_method column do
25
- self.reload(select: column) unless has_attribute?(column)
25
+ unless has_attribute?(column)
26
+ changes_before_reload = self.changes.clone
27
+ self.reload
28
+ changes_before_reload.each{|attribute_name, values| self.send("#{attribute_name}=", values[1])}
29
+ end
26
30
  read_attribute column
27
31
  end
28
32
  end
@@ -1,3 +1,3 @@
1
1
  module LazyColumns
2
- VERSION = "0.5.4"
2
+ VERSION = "0.5.5"
3
3
  end
@@ -1 +1,14 @@
1
1
  Connecting to database specified by database.yml
2
+ Connecting to database specified by database.yml
3
+ Connecting to database specified by database.yml
4
+  (0.1ms) select sqlite_version(*)
5
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
6
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
7
+  (1.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
8
+ Migrating to CreateActions (20130107093428)
9
+  (0.0ms) begin transaction
10
+  (0.4ms) CREATE TABLE "actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "comments" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
11
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130107093428')
12
+  (0.7ms) commit transaction
13
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
14
+ Connecting to database specified by database.yml
@@ -1429,3 +1429,568 @@ Connecting to database specified by database.yml
1429
1429
   (0.0ms) RELEASE SAVEPOINT active_record_1
1430
1430
  Action Load (0.0ms) SELECT actions.id, actions.title, actions.created_at, actions.updated_at FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 18]]
1431
1431
   (0.3ms) rollback transaction
1432
+ Connecting to database specified by database.yml
1433
+  (0.1ms) begin transaction
1434
+  (0.1ms) SAVEPOINT active_record_1
1435
+ SQL (7.5ms) INSERT INTO "actions" ("comments", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["comments", "some comments"], ["created_at", Sat, 23 Feb 2013 09:42:21 UTC +00:00], ["title", "some action"], ["updated_at", Sat, 23 Feb 2013 09:42:21 UTC +00:00]]
1436
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1437
+ Action Load (0.1ms) SELECT actions.id, actions.title, actions.created_at, actions.updated_at FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 18]]
1438
+  (0.4ms) rollback transaction
1439
+  (0.0ms) begin transaction
1440
+  (0.0ms) SAVEPOINT active_record_1
1441
+ SQL (0.4ms) INSERT INTO "actions" ("comments", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["comments", "some comments"], ["created_at", Sat, 23 Feb 2013 09:42:21 UTC +00:00], ["title", "some action"], ["updated_at", Sat, 23 Feb 2013 09:42:21 UTC +00:00]]
1442
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1443
+ Action Load (0.0ms) SELECT actions.id, actions.title, actions.created_at, actions.updated_at FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 18]]
1444
+ Action Load (0.1ms) SELECT actions.id, actions.title, actions.created_at, actions.updated_at, comments FROM "actions" LIMIT 1
1445
+  (0.3ms) rollback transaction
1446
+  (0.0ms) begin transaction
1447
+  (0.0ms) SAVEPOINT active_record_1
1448
+ SQL (0.4ms) INSERT INTO "actions" ("comments", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["comments", "some comments"], ["created_at", Sat, 23 Feb 2013 09:42:21 UTC +00:00], ["title", "some action"], ["updated_at", Sat, 23 Feb 2013 09:42:21 UTC +00:00]]
1449
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1450
+ Action Load (0.0ms) SELECT actions.id, actions.title, actions.created_at, actions.updated_at FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 18]]
1451
+  (0.0ms) SAVEPOINT active_record_1
1452
+  (0.3ms) UPDATE "actions" SET "comments" = 'some new comments', "updated_at" = '2013-02-23 09:42:21.288238' WHERE "actions"."id" = 18
1453
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1454
+  (0.6ms) rollback transaction
1455
+  (0.1ms) begin transaction
1456
+  (0.1ms) SAVEPOINT active_record_1
1457
+ SQL (0.6ms) INSERT INTO "actions" ("comments", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["comments", "some comments"], ["created_at", Sat, 23 Feb 2013 09:42:21 UTC +00:00], ["title", "some action"], ["updated_at", Sat, 23 Feb 2013 09:42:21 UTC +00:00]]
1458
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1459
+ Action Load (0.1ms) SELECT actions.id, actions.title, actions.created_at, actions.updated_at FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 18]]
1460
+ Action Load (0.1ms) SELECT comments FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 18]]
1461
+  (0.3ms) rollback transaction
1462
+  (0.0ms) begin transaction
1463
+  (0.0ms) SAVEPOINT active_record_1
1464
+ SQL (0.4ms) INSERT INTO "actions" ("comments", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["comments", "some comments"], ["created_at", Sat, 23 Feb 2013 09:42:21 UTC +00:00], ["title", "some action"], ["updated_at", Sat, 23 Feb 2013 09:42:21 UTC +00:00]]
1465
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1466
+ Action Load (0.0ms) SELECT actions.id, actions.title, actions.created_at, actions.updated_at FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 18]]
1467
+  (0.0ms) SAVEPOINT active_record_1
1468
+ SQL (0.4ms) INSERT INTO "actions" ("comments", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["comments", "some new comments"], ["created_at", Sat, 23 Feb 2013 09:42:21 UTC +00:00], ["title", nil], ["updated_at", Sat, 23 Feb 2013 09:42:21 UTC +00:00]]
1469
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1470
+  (0.3ms) rollback transaction
1471
+  (0.0ms) begin transaction
1472
+  (0.0ms) SAVEPOINT active_record_1
1473
+ SQL (0.4ms) INSERT INTO "actions" ("comments", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["comments", "some comments"], ["created_at", Sat, 23 Feb 2013 09:42:21 UTC +00:00], ["title", "some action"], ["updated_at", Sat, 23 Feb 2013 09:42:21 UTC +00:00]]
1474
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1475
+ Action Load (0.0ms) SELECT actions.id, actions.title, actions.created_at, actions.updated_at FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 18]]
1476
+  (0.0ms) SAVEPOINT active_record_1
1477
+ SQL (0.3ms) INSERT INTO "actions" ("comments", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["comments", "some comments"], ["created_at", Sat, 23 Feb 2013 09:42:21 UTC +00:00], ["title", "some action"], ["updated_at", Sat, 23 Feb 2013 09:42:21 UTC +00:00]]
1478
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1479
+ ActionWith2LazyColumns Load (0.1ms) SELECT actions.id, actions.created_at, actions.updated_at FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 19]]
1480
+ ActionWith2LazyColumns Load (0.1ms) SELECT title FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 19]]
1481
+ ActionWith2LazyColumns Load (0.0ms) SELECT comments FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 19]]
1482
+  (0.4ms) rollback transaction
1483
+  (0.0ms) begin transaction
1484
+  (0.0ms) SAVEPOINT active_record_1
1485
+ SQL (0.5ms) INSERT INTO "actions" ("comments", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["comments", "some comments"], ["created_at", Sat, 23 Feb 2013 09:42:21 UTC +00:00], ["title", "some action"], ["updated_at", Sat, 23 Feb 2013 09:42:21 UTC +00:00]]
1486
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1487
+ Action Load (0.0ms) SELECT actions.id, actions.title, actions.created_at, actions.updated_at FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 18]]
1488
+  (0.0ms) SAVEPOINT active_record_1
1489
+  (0.3ms) UPDATE "actions" SET "comments" = 'some new comments', "updated_at" = '2013-02-23 09:42:21.316958' WHERE "actions"."id" = 18
1490
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1491
+  (0.4ms) rollback transaction
1492
+  (0.0ms) begin transaction
1493
+  (0.0ms) SAVEPOINT active_record_1
1494
+ SQL (0.4ms) INSERT INTO "actions" ("comments", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["comments", "some comments"], ["created_at", Sat, 23 Feb 2013 09:42:21 UTC +00:00], ["title", "some action"], ["updated_at", Sat, 23 Feb 2013 09:42:21 UTC +00:00]]
1495
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1496
+ Action Load (0.0ms) SELECT actions.id, actions.title, actions.created_at, actions.updated_at FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 18]]
1497
+ Action Load (0.0ms) SELECT comments FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 18]]
1498
+  (0.2ms) rollback transaction
1499
+ Connecting to database specified by database.yml
1500
+  (0.1ms) begin transaction
1501
+  (0.1ms) SAVEPOINT active_record_1
1502
+ SQL (5.2ms) INSERT INTO "actions" ("comments", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["comments", "some comments"], ["created_at", Sun, 24 Feb 2013 09:02:34 UTC +00:00], ["title", "some action"], ["updated_at", Sun, 24 Feb 2013 09:02:34 UTC +00:00]]
1503
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1504
+ Action Load (0.1ms) SELECT actions.id, actions.title, actions.created_at, actions.updated_at FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 18]]
1505
+ Action Load (0.1ms) SELECT comments FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 18]]
1506
+  (0.4ms) rollback transaction
1507
+ Connecting to database specified by database.yml
1508
+  (0.1ms) begin transaction
1509
+  (0.0ms) SAVEPOINT active_record_1
1510
+ SQL (4.7ms) INSERT INTO "actions" ("comments", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["comments", "some comments"], ["created_at", Sun, 24 Feb 2013 09:03:06 UTC +00:00], ["title", "some action"], ["updated_at", Sun, 24 Feb 2013 09:03:06 UTC +00:00]]
1511
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1512
+ Action Load (0.1ms) SELECT actions.id, actions.title, actions.created_at, actions.updated_at FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 18]]
1513
+ Action Load (0.1ms) SELECT comments FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 18]]
1514
+  (0.6ms) rollback transaction
1515
+ Connecting to database specified by database.yml
1516
+  (0.1ms) begin transaction
1517
+  (0.0ms) SAVEPOINT active_record_1
1518
+ SQL (4.3ms) INSERT INTO "actions" ("comments", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["comments", "some comments"], ["created_at", Sun, 24 Feb 2013 09:03:45 UTC +00:00], ["title", "some action"], ["updated_at", Sun, 24 Feb 2013 09:03:45 UTC +00:00]]
1519
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1520
+ Action Load (0.1ms) SELECT actions.id, actions.title, actions.created_at, actions.updated_at FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 18]]
1521
+ Action Load (0.1ms) SELECT comments FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 18]]
1522
+  (1.4ms) rollback transaction
1523
+ Connecting to database specified by database.yml
1524
+  (0.1ms) begin transaction
1525
+  (0.1ms) SAVEPOINT active_record_1
1526
+ SQL (4.6ms) INSERT INTO "actions" ("comments", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["comments", "some comments"], ["created_at", Sun, 24 Feb 2013 09:04:01 UTC +00:00], ["title", "some action"], ["updated_at", Sun, 24 Feb 2013 09:04:01 UTC +00:00]]
1527
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1528
+ Action Load (0.4ms) SELECT actions.id, actions.title, actions.created_at, actions.updated_at FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 18]]
1529
+ Action Load (0.2ms) SELECT comments FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 18]]
1530
+  (0.2ms) rollback transaction
1531
+ Connecting to database specified by database.yml
1532
+  (0.1ms) begin transaction
1533
+  (0.1ms) SAVEPOINT active_record_1
1534
+ SQL (4.3ms) INSERT INTO "actions" ("comments", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["comments", "some comments"], ["created_at", Sun, 24 Feb 2013 09:05:27 UTC +00:00], ["title", "some action"], ["updated_at", Sun, 24 Feb 2013 09:05:27 UTC +00:00]]
1535
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1536
+ Action Load (0.1ms) SELECT actions.id, actions.title, actions.created_at, actions.updated_at FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 18]]
1537
+ Action Load (0.1ms) SELECT comments FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 18]]
1538
+  (1.6ms) rollback transaction
1539
+ Connecting to database specified by database.yml
1540
+  (0.1ms) begin transaction
1541
+  (0.1ms) SAVEPOINT active_record_1
1542
+ SQL (5.2ms) INSERT INTO "actions" ("comments", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["comments", "some comments"], ["created_at", Sun, 24 Feb 2013 09:05:40 UTC +00:00], ["title", "some action"], ["updated_at", Sun, 24 Feb 2013 09:05:40 UTC +00:00]]
1543
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1544
+ Action Load (0.2ms) SELECT actions.id, actions.title, actions.created_at, actions.updated_at FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 18]]
1545
+ Connecting to database specified by database.yml
1546
+  (0.1ms) begin transaction
1547
+  (0.0ms) SAVEPOINT active_record_1
1548
+ SQL (5047.5ms) INSERT INTO "actions" ("comments", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["comments", "some comments"], ["created_at", Sun, 24 Feb 2013 09:06:37 UTC +00:00], ["title", "some action"], ["updated_at", Sun, 24 Feb 2013 09:06:37 UTC +00:00]]
1549
+ SQLite3::BusyException: database is locked: INSERT INTO "actions" ("comments", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)
1550
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
1551
+  (0.0ms) rollback transaction
1552
+ Action Load (0.1ms) SELECT comments FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 18]]
1553
+  (0.1ms) rollback transaction
1554
+ Connecting to database specified by database.yml
1555
+  (0.1ms) begin transaction
1556
+  (0.1ms) SAVEPOINT active_record_1
1557
+ SQL (4.3ms) INSERT INTO "actions" ("comments", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["comments", "some comments"], ["created_at", Sun, 24 Feb 2013 09:06:54 UTC +00:00], ["title", "some action"], ["updated_at", Sun, 24 Feb 2013 09:06:54 UTC +00:00]]
1558
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1559
+ Action Load (0.1ms) SELECT actions.id, actions.title, actions.created_at, actions.updated_at FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 18]]
1560
+ Action Load (0.1ms) SELECT comments FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 18]]
1561
+  (2.1ms) rollback transaction
1562
+ Connecting to database specified by database.yml
1563
+  (0.1ms) begin transaction
1564
+  (0.0ms) SAVEPOINT active_record_1
1565
+ SQL (4.8ms) INSERT INTO "actions" ("comments", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["comments", "some comments"], ["created_at", Sun, 24 Feb 2013 09:08:02 UTC +00:00], ["title", "some action"], ["updated_at", Sun, 24 Feb 2013 09:08:02 UTC +00:00]]
1566
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1567
+ Action Load (0.1ms) SELECT actions.id, actions.title, actions.created_at, actions.updated_at FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 18]]
1568
+ Action Load (0.1ms) SELECT comments FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 18]]
1569
+  (0.0ms) SAVEPOINT active_record_1
1570
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1571
+ Action Load (0.1ms) SELECT "actions".* FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 18]]
1572
+  (1.6ms) rollback transaction
1573
+ Connecting to database specified by database.yml
1574
+  (0.1ms) begin transaction
1575
+  (0.0ms) SAVEPOINT active_record_1
1576
+ SQL (4.6ms) INSERT INTO "actions" ("comments", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["comments", "some comments"], ["created_at", Sun, 24 Feb 2013 09:08:24 UTC +00:00], ["title", "some action"], ["updated_at", Sun, 24 Feb 2013 09:08:24 UTC +00:00]]
1577
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1578
+ Action Load (0.1ms) SELECT actions.id, actions.title, actions.created_at, actions.updated_at FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 18]]
1579
+ Action Load (0.1ms) SELECT comments FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 18]]
1580
+  (0.0ms) SAVEPOINT active_record_1
1581
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1582
+ Action Load (0.1ms) SELECT "actions".* FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 18]]
1583
+  (1.5ms) rollback transaction
1584
+ Connecting to database specified by database.yml
1585
+  (0.1ms) begin transaction
1586
+  (0.1ms) SAVEPOINT active_record_1
1587
+ SQL (4.6ms) INSERT INTO "actions" ("comments", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["comments", "some comments"], ["created_at", Sun, 24 Feb 2013 09:09:15 UTC +00:00], ["title", "some action"], ["updated_at", Sun, 24 Feb 2013 09:09:15 UTC +00:00]]
1588
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1589
+ Action Load (0.2ms) SELECT actions.id, actions.title, actions.created_at, actions.updated_at FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 18]]
1590
+ Connecting to database specified by database.yml
1591
+  (0.1ms) begin transaction
1592
+  (0.1ms) SAVEPOINT active_record_1
1593
+ SQL (4.5ms) INSERT INTO "actions" ("comments", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["comments", "some comments"], ["created_at", Sun, 24 Feb 2013 09:10:16 UTC +00:00], ["title", "some action"], ["updated_at", Sun, 24 Feb 2013 09:10:16 UTC +00:00]]
1594
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1595
+ Action Load (0.3ms) SELECT actions.id, actions.title, actions.created_at, actions.updated_at FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 18]]
1596
+ Action Load (0.2ms) SELECT comments FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 18]]
1597
+  (0.1ms) SAVEPOINT active_record_1
1598
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1599
+ Action Load (0.1ms) SELECT "actions".* FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 18]]
1600
+  (0.2ms) rollback transaction
1601
+ Connecting to database specified by database.yml
1602
+  (0.1ms) begin transaction
1603
+  (0.0ms) SAVEPOINT active_record_1
1604
+ SQL (4.3ms) INSERT INTO "actions" ("comments", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["comments", "some comments"], ["created_at", Sun, 24 Feb 2013 09:12:07 UTC +00:00], ["title", "some action"], ["updated_at", Sun, 24 Feb 2013 09:12:07 UTC +00:00]]
1605
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1606
+ Action Load (0.1ms) SELECT actions.id, actions.title, actions.created_at, actions.updated_at FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 18]]
1607
+ Action Load (0.1ms) SELECT comments FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 18]]
1608
+  (0.0ms) SAVEPOINT active_record_1
1609
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1610
+ Action Load (0.1ms) SELECT "actions".* FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 18]]
1611
+  (1.8ms) rollback transaction
1612
+ Connecting to database specified by database.yml
1613
+  (0.1ms) begin transaction
1614
+  (0.0ms) SAVEPOINT active_record_1
1615
+ SQL (4.7ms) INSERT INTO "actions" ("comments", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["comments", "some comments"], ["created_at", Sun, 24 Feb 2013 09:12:41 UTC +00:00], ["title", "some action"], ["updated_at", Sun, 24 Feb 2013 09:12:41 UTC +00:00]]
1616
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1617
+ Action Load (0.1ms) SELECT actions.id, actions.title, actions.created_at, actions.updated_at FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 18]]
1618
+ Action Load (0.1ms) SELECT comments FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 18]]
1619
+  (0.0ms) SAVEPOINT active_record_1
1620
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1621
+ Action Load (0.1ms) SELECT "actions".* FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 18]]
1622
+  (1.8ms) rollback transaction
1623
+ Connecting to database specified by database.yml
1624
+  (0.0ms) begin transaction
1625
+  (0.0ms) SAVEPOINT active_record_1
1626
+ SQL (4.5ms) INSERT INTO "actions" ("comments", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["comments", "some comments"], ["created_at", Sun, 24 Feb 2013 09:12:52 UTC +00:00], ["title", "some action"], ["updated_at", Sun, 24 Feb 2013 09:12:52 UTC +00:00]]
1627
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1628
+ Action Load (0.1ms) SELECT actions.id, actions.title, actions.created_at, actions.updated_at FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 18]]
1629
+ Action Load (0.1ms) SELECT comments FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 18]]
1630
+  (0.0ms) SAVEPOINT active_record_1
1631
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1632
+ Action Load (0.1ms) SELECT "actions".* FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 18]]
1633
+  (1.6ms) rollback transaction
1634
+ Connecting to database specified by database.yml
1635
+  (0.1ms) begin transaction
1636
+  (0.1ms) SAVEPOINT active_record_1
1637
+ SQL (4.6ms) INSERT INTO "actions" ("comments", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["comments", "some comments"], ["created_at", Sun, 24 Feb 2013 09:12:55 UTC +00:00], ["title", "some action"], ["updated_at", Sun, 24 Feb 2013 09:12:55 UTC +00:00]]
1638
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1639
+ Action Load (0.2ms) SELECT actions.id, actions.title, actions.created_at, actions.updated_at FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 18]]
1640
+ Action Load (0.1ms) SELECT comments FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 18]]
1641
+  (0.1ms) SAVEPOINT active_record_1
1642
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1643
+ Action Load (0.2ms) SELECT "actions".* FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 18]]
1644
+  (2.1ms) rollback transaction
1645
+ Connecting to database specified by database.yml
1646
+  (0.1ms) begin transaction
1647
+  (0.1ms) SAVEPOINT active_record_1
1648
+ SQL (4.5ms) INSERT INTO "actions" ("comments", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["comments", "some comments"], ["created_at", Sun, 24 Feb 2013 09:13:20 UTC +00:00], ["title", "some action"], ["updated_at", Sun, 24 Feb 2013 09:13:20 UTC +00:00]]
1649
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1650
+ Action Load (0.2ms) SELECT actions.id, actions.title, actions.created_at, actions.updated_at FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 18]]
1651
+ Action Load (0.2ms) SELECT comments FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 18]]
1652
+  (0.1ms) SAVEPOINT active_record_1
1653
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1654
+ Action Load (0.2ms) SELECT "actions".* FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 18]]
1655
+  (0.8ms) rollback transaction
1656
+ Connecting to database specified by database.yml
1657
+  (0.2ms) begin transaction
1658
+  (0.1ms) SAVEPOINT active_record_1
1659
+ SQL (4.8ms) INSERT INTO "actions" ("comments", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["comments", "some comments"], ["created_at", Sun, 24 Feb 2013 09:13:48 UTC +00:00], ["title", "some action"], ["updated_at", Sun, 24 Feb 2013 09:13:48 UTC +00:00]]
1660
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1661
+ Action Load (0.2ms) SELECT actions.id, actions.title, actions.created_at, actions.updated_at FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 18]]
1662
+ Connecting to database specified by database.yml
1663
+  (0.1ms) begin transaction
1664
+  (0.0ms) SAVEPOINT active_record_1
1665
+ SQL (5052.8ms) INSERT INTO "actions" ("comments", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["comments", "some comments"], ["created_at", Sun, 24 Feb 2013 09:14:19 UTC +00:00], ["title", "some action"], ["updated_at", Sun, 24 Feb 2013 09:14:19 UTC +00:00]]
1666
+ SQLite3::BusyException: database is locked: INSERT INTO "actions" ("comments", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)
1667
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
1668
+  (0.0ms) rollback transaction
1669
+ Action Load (0.2ms) SELECT comments FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 18]]
1670
+  (0.0ms) SAVEPOINT active_record_1
1671
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1672
+ Action Load (0.2ms) SELECT "actions".* FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 18]]
1673
+  (0.2ms) rollback transaction
1674
+ Connecting to database specified by database.yml
1675
+  (0.1ms) begin transaction
1676
+  (0.1ms) SAVEPOINT active_record_1
1677
+ SQL (4.5ms) INSERT INTO "actions" ("comments", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["comments", "some comments"], ["created_at", Sun, 24 Feb 2013 09:14:31 UTC +00:00], ["title", "some action"], ["updated_at", Sun, 24 Feb 2013 09:14:31 UTC +00:00]]
1678
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1679
+ Action Load (0.1ms) SELECT actions.id, actions.title, actions.created_at, actions.updated_at FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 18]]
1680
+ Action Load (0.1ms) SELECT comments FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 18]]
1681
+  (0.0ms) SAVEPOINT active_record_1
1682
+  (0.2ms) UPDATE "actions" SET "title" = 'some action', "updated_at" = '2013-02-24 09:14:31.392781' WHERE "actions"."id" = 18
1683
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1684
+ Action Load (0.1ms) SELECT "actions".* FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 18]]
1685
+  (2.2ms) rollback transaction
1686
+ Connecting to database specified by database.yml
1687
+  (0.1ms) begin transaction
1688
+  (0.1ms) SAVEPOINT active_record_1
1689
+ SQL (4.7ms) INSERT INTO "actions" ("comments", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["comments", "some comments"], ["created_at", Sun, 24 Feb 2013 09:14:41 UTC +00:00], ["title", "some action"], ["updated_at", Sun, 24 Feb 2013 09:14:41 UTC +00:00]]
1690
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1691
+ Action Load (0.1ms) SELECT actions.id, actions.title, actions.created_at, actions.updated_at FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 18]]
1692
+ Action Load (0.1ms) SELECT comments FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 18]]
1693
+  (0.1ms) SAVEPOINT active_record_1
1694
+  (0.3ms) UPDATE "actions" SET "title" = 'some action', "updated_at" = '2013-02-24 09:15:30.828507' WHERE "actions"."id" = 18
1695
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1696
+ Action Load (0.2ms) SELECT "actions".* FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 18]]
1697
+  (0.2ms) rollback transaction
1698
+ Connecting to database specified by database.yml
1699
+  (0.1ms) begin transaction
1700
+  (0.0ms) SAVEPOINT active_record_1
1701
+ SQL (4.3ms) INSERT INTO "actions" ("comments", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["comments", "some comments"], ["created_at", Sun, 24 Feb 2013 09:15:48 UTC +00:00], ["title", "some action"], ["updated_at", Sun, 24 Feb 2013 09:15:48 UTC +00:00]]
1702
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1703
+ Action Load (0.1ms) SELECT actions.id, actions.title, actions.created_at, actions.updated_at FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 18]]
1704
+ Action Load (0.1ms) SELECT comments FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 18]]
1705
+  (0.0ms) SAVEPOINT active_record_1
1706
+  (0.2ms) UPDATE "actions" SET "title" = 'some action', "updated_at" = '2013-02-24 09:15:48.928815' WHERE "actions"."id" = 18
1707
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1708
+ Action Load (0.1ms) SELECT "actions".* FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 18]]
1709
+  (1.8ms) rollback transaction
1710
+ Connecting to database specified by database.yml
1711
+  (0.1ms) begin transaction
1712
+  (0.1ms) SAVEPOINT active_record_1
1713
+ SQL (4.3ms) INSERT INTO "actions" ("comments", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["comments", "some comments"], ["created_at", Sun, 24 Feb 2013 09:16:44 UTC +00:00], ["title", "some action"], ["updated_at", Sun, 24 Feb 2013 09:16:44 UTC +00:00]]
1714
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1715
+ Action Load (0.1ms) SELECT actions.id, actions.title, actions.created_at, actions.updated_at FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 18]]
1716
+ Action Load (0.1ms) SELECT comments FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 18]]
1717
+  (1.7ms) rollback transaction
1718
+ Connecting to database specified by database.yml
1719
+  (0.1ms) begin transaction
1720
+  (0.1ms) SAVEPOINT active_record_1
1721
+ SQL (4.3ms) INSERT INTO "actions" ("comments", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["comments", "some comments"], ["created_at", Sun, 24 Feb 2013 09:16:54 UTC +00:00], ["title", "some action"], ["updated_at", Sun, 24 Feb 2013 09:16:54 UTC +00:00]]
1722
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1723
+ Action Load (0.1ms) SELECT actions.id, actions.title, actions.created_at, actions.updated_at FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 18]]
1724
+ Action Load (0.1ms) SELECT comments FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 18]]
1725
+  (0.0ms) SAVEPOINT active_record_1
1726
+  (0.3ms) UPDATE "actions" SET "title" = 'some action', "updated_at" = '2013-02-24 09:16:54.993130' WHERE "actions"."id" = 18
1727
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1728
+ Action Load (0.1ms) SELECT "actions".* FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 18]]
1729
+  (1.8ms) rollback transaction
1730
+ Connecting to database specified by database.yml
1731
+  (0.1ms) begin transaction
1732
+  (0.1ms) SAVEPOINT active_record_1
1733
+ SQL (4.9ms) INSERT INTO "actions" ("comments", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["comments", "some comments"], ["created_at", Sun, 24 Feb 2013 09:18:24 UTC +00:00], ["title", "some action"], ["updated_at", Sun, 24 Feb 2013 09:18:24 UTC +00:00]]
1734
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1735
+ Action Load (0.1ms) SELECT actions.id, actions.title, actions.created_at, actions.updated_at FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 18]]
1736
+ Action Load (0.1ms) SELECT comments FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 18]]
1737
+  (0.1ms) SAVEPOINT active_record_1
1738
+  (0.3ms) UPDATE "actions" SET "title" = 'some action', "updated_at" = '2013-02-24 09:19:10.678842' WHERE "actions"."id" = 18
1739
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1740
+ Action Load (0.1ms) SELECT "actions".* FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 18]]
1741
+  (0.1ms) rollback transaction
1742
+ Connecting to database specified by database.yml
1743
+  (0.1ms) begin transaction
1744
+  (0.1ms) SAVEPOINT active_record_1
1745
+ SQL (4.6ms) INSERT INTO "actions" ("comments", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["comments", "some comments"], ["created_at", Sun, 24 Feb 2013 09:19:12 UTC +00:00], ["title", "some action"], ["updated_at", Sun, 24 Feb 2013 09:19:12 UTC +00:00]]
1746
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1747
+ Action Load (0.2ms) SELECT actions.id, actions.title, actions.created_at, actions.updated_at FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 18]]
1748
+ Action Load (0.1ms) SELECT comments FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 18]]
1749
+  (0.1ms) SAVEPOINT active_record_1
1750
+  (0.4ms) UPDATE "actions" SET "title" = 'some action', "updated_at" = '2013-02-24 09:19:51.358709' WHERE "actions"."id" = 18
1751
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1752
+ Action Load (0.1ms) SELECT "actions".* FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 18]]
1753
+  (0.2ms) rollback transaction
1754
+ Connecting to database specified by database.yml
1755
+  (0.1ms) begin transaction
1756
+  (0.1ms) SAVEPOINT active_record_1
1757
+ SQL (4.9ms) INSERT INTO "actions" ("comments", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["comments", "some comments"], ["created_at", Sun, 24 Feb 2013 09:19:53 UTC +00:00], ["title", "some action"], ["updated_at", Sun, 24 Feb 2013 09:19:53 UTC +00:00]]
1758
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1759
+ Action Load (0.1ms) SELECT actions.id, actions.title, actions.created_at, actions.updated_at FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 18]]
1760
+ Action Load (0.1ms) SELECT comments FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 18]]
1761
+ Connecting to database specified by database.yml
1762
+  (0.1ms) begin transaction
1763
+  (0.1ms) SAVEPOINT active_record_1
1764
+  (0.1ms) SAVEPOINT active_record_1
1765
+  (0.4ms) UPDATE "actions" SET "title" = 'some action', "updated_at" = '2013-02-24 09:21:18.724579' WHERE "actions"."id" = 18
1766
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1767
+ Action Load (0.1ms) SELECT "actions".* FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 18]]
1768
+  (0.2ms) rollback transaction
1769
+ SQL (3465.3ms) INSERT INTO "actions" ("comments", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["comments", "some comments"], ["created_at", Sun, 24 Feb 2013 09:21:15 UTC +00:00], ["title", "some action"], ["updated_at", Sun, 24 Feb 2013 09:21:15 UTC +00:00]]
1770
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1771
+ Action Load (0.2ms) SELECT actions.id, actions.title, actions.created_at, actions.updated_at FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 18]]
1772
+ Action Load (0.1ms) SELECT comments FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 18]]
1773
+  (0.0ms) SAVEPOINT active_record_1
1774
+  (0.3ms) UPDATE "actions" SET "title" = 'some action', "updated_at" = '2013-02-24 09:21:18.815707' WHERE "actions"."id" = 18
1775
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1776
+ Action Load (0.1ms) SELECT "actions".* FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 18]]
1777
+  (1.6ms) rollback transaction
1778
+ Connecting to database specified by database.yml
1779
+  (0.0ms) begin transaction
1780
+  (0.1ms) SAVEPOINT active_record_1
1781
+ SQL (4.5ms) INSERT INTO "actions" ("comments", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["comments", "some comments"], ["created_at", Sun, 24 Feb 2013 09:22:14 UTC +00:00], ["title", "some action"], ["updated_at", Sun, 24 Feb 2013 09:22:14 UTC +00:00]]
1782
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1783
+ Action Load (0.1ms) SELECT actions.id, actions.title, actions.created_at, actions.updated_at FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 18]]
1784
+ Action Load (0.1ms) SELECT comments FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 18]]
1785
+  (0.0ms) SAVEPOINT active_record_1
1786
+  (0.2ms) UPDATE "actions" SET "title" = 'some action', "updated_at" = '2013-02-24 09:22:14.913890' WHERE "actions"."id" = 18
1787
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1788
+ Action Load (0.1ms) SELECT "actions".* FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 18]]
1789
+  (1.9ms) rollback transaction
1790
+ Connecting to database specified by database.yml
1791
+  (0.1ms) begin transaction
1792
+  (0.1ms) SAVEPOINT active_record_1
1793
+ SQL (4.8ms) INSERT INTO "actions" ("comments", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["comments", "some comments"], ["created_at", Sun, 24 Feb 2013 09:23:36 UTC +00:00], ["title", "some action"], ["updated_at", Sun, 24 Feb 2013 09:23:36 UTC +00:00]]
1794
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1795
+ Action Load (0.2ms) SELECT actions.id, actions.title, actions.created_at, actions.updated_at FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 18]]
1796
+ Connecting to database specified by database.yml
1797
+  (0.1ms) begin transaction
1798
+  (0.1ms) SAVEPOINT active_record_1
1799
+ SQL (4.4ms) INSERT INTO "actions" ("comments", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["comments", "some comments"], ["created_at", Sun, 24 Feb 2013 09:24:19 UTC +00:00], ["title", "some action"], ["updated_at", Sun, 24 Feb 2013 09:24:19 UTC +00:00]]
1800
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1801
+ Action Load (0.1ms) SELECT actions.id, actions.title, actions.created_at, actions.updated_at FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 18]]
1802
+ Action Load (0.2ms) SELECT comments FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 18]]
1803
+ Connecting to database specified by database.yml
1804
+  (0.1ms) begin transaction
1805
+  (0.1ms) SAVEPOINT active_record_1
1806
+ SQL (4.5ms) INSERT INTO "actions" ("comments", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["comments", "some comments"], ["created_at", Sun, 24 Feb 2013 09:24:35 UTC +00:00], ["title", "some action"], ["updated_at", Sun, 24 Feb 2013 09:24:35 UTC +00:00]]
1807
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1808
+ Action Load (0.1ms) SELECT actions.id, actions.title, actions.created_at, actions.updated_at FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 18]]
1809
+ Action Load (0.1ms) SELECT comments FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 18]]
1810
+ Connecting to database specified by database.yml
1811
+  (0.1ms) begin transaction
1812
+  (0.1ms) SAVEPOINT active_record_1
1813
+ SQL (4.6ms) INSERT INTO "actions" ("comments", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["comments", "some comments"], ["created_at", Sun, 24 Feb 2013 09:25:14 UTC +00:00], ["title", "some action"], ["updated_at", Sun, 24 Feb 2013 09:25:14 UTC +00:00]]
1814
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1815
+ Action Load (0.2ms) SELECT actions.id, actions.title, actions.created_at, actions.updated_at FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 18]]
1816
+ Connecting to database specified by database.yml
1817
+  (0.1ms) begin transaction
1818
+  (0.0ms) SAVEPOINT active_record_1
1819
+ SQL (5055.3ms) INSERT INTO "actions" ("comments", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["comments", "some comments"], ["created_at", Sun, 24 Feb 2013 09:27:41 UTC +00:00], ["title", "some action"], ["updated_at", Sun, 24 Feb 2013 09:27:41 UTC +00:00]]
1820
+ SQLite3::BusyException: database is locked: INSERT INTO "actions" ("comments", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)
1821
+  (0.5ms) ROLLBACK TO SAVEPOINT active_record_1
1822
+  (0.0ms) rollback transaction
1823
+ Action Load (0.1ms) SELECT comments FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 18]]
1824
+  (0.0ms) SAVEPOINT active_record_1
1825
+  (0.3ms) UPDATE "actions" SET "title" = 'some action', "updated_at" = '2013-02-24 09:27:52.606055' WHERE "actions"."id" = 18
1826
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1827
+ Action Load (0.1ms) SELECT "actions".* FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 18]]
1828
+  (0.1ms) rollback transaction
1829
+ Connecting to database specified by database.yml
1830
+  (0.1ms) begin transaction
1831
+  (0.1ms) SAVEPOINT active_record_1
1832
+ SQL (4.3ms) INSERT INTO "actions" ("comments", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["comments", "some comments"], ["created_at", Sun, 24 Feb 2013 09:27:56 UTC +00:00], ["title", "some action"], ["updated_at", Sun, 24 Feb 2013 09:27:56 UTC +00:00]]
1833
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1834
+ Action Load (0.1ms) SELECT actions.id, actions.title, actions.created_at, actions.updated_at FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 18]]
1835
+ Action Load (0.1ms) SELECT comments FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 18]]
1836
+  (0.0ms) SAVEPOINT active_record_1
1837
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1838
+ Action Load (0.1ms) SELECT "actions".* FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 18]]
1839
+  (2.3ms) rollback transaction
1840
+ Connecting to database specified by database.yml
1841
+  (0.1ms) begin transaction
1842
+  (0.1ms) SAVEPOINT active_record_1
1843
+ SQL (4.5ms) INSERT INTO "actions" ("comments", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["comments", "some comments"], ["created_at", Sun, 24 Feb 2013 09:28:32 UTC +00:00], ["title", "some action"], ["updated_at", Sun, 24 Feb 2013 09:28:32 UTC +00:00]]
1844
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1845
+ Action Load (0.1ms) SELECT actions.id, actions.title, actions.created_at, actions.updated_at FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 18]]
1846
+ Action Load (0.1ms) SELECT comments FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 18]]
1847
+  (0.1ms) SAVEPOINT active_record_1
1848
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1849
+ Action Load (0.2ms) SELECT "actions".* FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 18]]
1850
+  (0.2ms) rollback transaction
1851
+ Connecting to database specified by database.yml
1852
+  (0.1ms) begin transaction
1853
+  (0.1ms) SAVEPOINT active_record_1
1854
+ SQL (4.5ms) INSERT INTO "actions" ("comments", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["comments", "some comments"], ["created_at", Sun, 24 Feb 2013 09:29:09 UTC +00:00], ["title", "some action"], ["updated_at", Sun, 24 Feb 2013 09:29:09 UTC +00:00]]
1855
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1856
+ Action Load (0.2ms) SELECT actions.id, actions.title, actions.created_at, actions.updated_at FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 18]]
1857
+ Action Load (0.1ms) SELECT comments FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 18]]
1858
+  (0.1ms) SAVEPOINT active_record_1
1859
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1860
+ Action Load (0.2ms) SELECT "actions".* FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 18]]
1861
+  (0.2ms) rollback transaction
1862
+ Connecting to database specified by database.yml
1863
+  (0.1ms) begin transaction
1864
+  (0.0ms) SAVEPOINT active_record_1
1865
+ SQL (4.6ms) INSERT INTO "actions" ("comments", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["comments", "some comments"], ["created_at", Sun, 24 Feb 2013 09:30:19 UTC +00:00], ["title", "some action"], ["updated_at", Sun, 24 Feb 2013 09:30:19 UTC +00:00]]
1866
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1867
+ Action Load (0.1ms) SELECT actions.id, actions.title, actions.created_at, actions.updated_at FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 18]]
1868
+ Action Load (0.1ms) SELECT comments FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 18]]
1869
+  (0.0ms) SAVEPOINT active_record_1
1870
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1871
+ Action Load (0.1ms) SELECT "actions".* FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 18]]
1872
+  (1.8ms) rollback transaction
1873
+ Connecting to database specified by database.yml
1874
+  (0.1ms) begin transaction
1875
+  (0.1ms) SAVEPOINT active_record_1
1876
+ SQL (4.8ms) INSERT INTO "actions" ("comments", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["comments", "some comments"], ["created_at", Sun, 24 Feb 2013 09:30:24 UTC +00:00], ["title", "some action"], ["updated_at", Sun, 24 Feb 2013 09:30:24 UTC +00:00]]
1877
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1878
+ Action Load (0.1ms) SELECT actions.id, actions.title, actions.created_at, actions.updated_at FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 18]]
1879
+ Action Load (0.1ms) SELECT comments FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 18]]
1880
+  (0.1ms) SAVEPOINT active_record_1
1881
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1882
+ Action Load (0.1ms) SELECT "actions".* FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 18]]
1883
+ Connecting to database specified by database.yml
1884
+  (0.1ms) begin transaction
1885
+  (0.1ms) SAVEPOINT active_record_1
1886
+ Action Load (0.1ms) SELECT "actions".* FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 18]]
1887
+ SQL (2764.1ms) INSERT INTO "actions" ("comments", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["comments", "some comments"], ["created_at", Sun, 24 Feb 2013 09:32:49 UTC +00:00], ["title", "some action"], ["updated_at", Sun, 24 Feb 2013 09:32:49 UTC +00:00]]
1888
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1889
+ Action Load (0.1ms) SELECT actions.id, actions.title, actions.created_at, actions.updated_at FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 18]]
1890
+ Action Load (0.1ms) SELECT "actions".* FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 18]]
1891
+  (0.0ms) SAVEPOINT active_record_1
1892
+  (0.3ms) UPDATE "actions" SET "title" = 'some new title', "updated_at" = '2013-02-24 09:32:52.460648' WHERE "actions"."id" = 18
1893
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1894
+ Action Load (0.0ms) SELECT "actions".* FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 18]]
1895
+  (1.6ms) rollback transaction
1896
+ Connecting to database specified by database.yml
1897
+  (0.1ms) begin transaction
1898
+  (0.0ms) SAVEPOINT active_record_1
1899
+ SQL (4.4ms) INSERT INTO "actions" ("comments", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["comments", "some comments"], ["created_at", Sun, 24 Feb 2013 09:33:11 UTC +00:00], ["title", "some action"], ["updated_at", Sun, 24 Feb 2013 09:33:11 UTC +00:00]]
1900
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1901
+ Action Load (0.1ms) SELECT actions.id, actions.title, actions.created_at, actions.updated_at FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 18]]
1902
+ Action Load (0.1ms) SELECT "actions".* FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 18]]
1903
+  (0.0ms) SAVEPOINT active_record_1
1904
+  (0.3ms) UPDATE "actions" SET "title" = 'some new title', "updated_at" = '2013-02-24 09:33:11.053956' WHERE "actions"."id" = 18
1905
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1906
+ Action Load (0.0ms) SELECT "actions".* FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 18]]
1907
+  (1.8ms) rollback transaction
1908
+ Connecting to database specified by database.yml
1909
+  (0.1ms) begin transaction
1910
+  (0.1ms) SAVEPOINT active_record_1
1911
+ SQL (4.5ms) INSERT INTO "actions" ("comments", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["comments", "some comments"], ["created_at", Sun, 24 Feb 2013 09:33:35 UTC +00:00], ["title", "some action"], ["updated_at", Sun, 24 Feb 2013 09:33:35 UTC +00:00]]
1912
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1913
+ Action Load (0.1ms) SELECT actions.id, actions.title, actions.created_at, actions.updated_at FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 18]]
1914
+ Action Load (0.1ms) SELECT "actions".* FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 18]]
1915
+  (0.0ms) SAVEPOINT active_record_1
1916
+  (0.2ms) UPDATE "actions" SET "title" = 'some new title', "updated_at" = '2013-02-24 09:33:35.675178' WHERE "actions"."id" = 18
1917
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1918
+ Action Load (0.0ms) SELECT "actions".* FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 18]]
1919
+  (2.3ms) rollback transaction
1920
+ Connecting to database specified by database.yml
1921
+  (0.1ms) begin transaction
1922
+  (0.0ms) SAVEPOINT active_record_1
1923
+ SQL (4.6ms) INSERT INTO "actions" ("comments", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["comments", "some comments"], ["created_at", Sun, 24 Feb 2013 09:34:05 UTC +00:00], ["title", "some action"], ["updated_at", Sun, 24 Feb 2013 09:34:05 UTC +00:00]]
1924
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1925
+ Action Load (0.1ms) SELECT actions.id, actions.title, actions.created_at, actions.updated_at FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 18]]
1926
+ Action Load (0.1ms) SELECT "actions".* FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 18]]
1927
+  (0.0ms) SAVEPOINT active_record_1
1928
+  (0.2ms) UPDATE "actions" SET "title" = 'some new title', "updated_at" = '2013-02-24 09:34:05.677441' WHERE "actions"."id" = 18
1929
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1930
+ Action Load (0.0ms) SELECT "actions".* FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 18]]
1931
+  (1.7ms) rollback transaction
1932
+  (0.1ms) begin transaction
1933
+  (0.0ms) SAVEPOINT active_record_1
1934
+ SQL (0.4ms) INSERT INTO "actions" ("comments", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["comments", "some comments"], ["created_at", Sun, 24 Feb 2013 09:34:05 UTC +00:00], ["title", "some action"], ["updated_at", Sun, 24 Feb 2013 09:34:05 UTC +00:00]]
1935
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1936
+ Action Load (0.0ms) SELECT actions.id, actions.title, actions.created_at, actions.updated_at FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 18]]
1937
+ Action Load (0.0ms) SELECT "actions".* FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 18]]
1938
+  (0.3ms) rollback transaction
1939
+  (0.0ms) begin transaction
1940
+  (0.0ms) SAVEPOINT active_record_1
1941
+ SQL (0.3ms) INSERT INTO "actions" ("comments", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["comments", "some comments"], ["created_at", Sun, 24 Feb 2013 09:34:05 UTC +00:00], ["title", "some action"], ["updated_at", Sun, 24 Feb 2013 09:34:05 UTC +00:00]]
1942
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1943
+ Action Load (0.0ms) SELECT actions.id, actions.title, actions.created_at, actions.updated_at FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 18]]
1944
+  (0.0ms) SAVEPOINT active_record_1
1945
+  (0.3ms) UPDATE "actions" SET "comments" = 'some new comments', "updated_at" = '2013-02-24 09:34:05.688053' WHERE "actions"."id" = 18
1946
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1947
+  (0.3ms) rollback transaction
1948
+  (0.1ms) begin transaction
1949
+  (0.0ms) SAVEPOINT active_record_1
1950
+ SQL (0.4ms) INSERT INTO "actions" ("comments", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["comments", "some comments"], ["created_at", Sun, 24 Feb 2013 09:34:05 UTC +00:00], ["title", "some action"], ["updated_at", Sun, 24 Feb 2013 09:34:05 UTC +00:00]]
1951
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1952
+ Action Load (0.0ms) SELECT actions.id, actions.title, actions.created_at, actions.updated_at FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 18]]
1953
+ Action Load (0.0ms) SELECT "actions".* FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 18]]
1954
+  (0.2ms) rollback transaction
1955
+  (0.0ms) begin transaction
1956
+  (0.0ms) SAVEPOINT active_record_1
1957
+ SQL (0.6ms) INSERT INTO "actions" ("comments", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["comments", "some comments"], ["created_at", Sun, 24 Feb 2013 09:34:05 UTC +00:00], ["title", "some action"], ["updated_at", Sun, 24 Feb 2013 09:34:05 UTC +00:00]]
1958
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1959
+ Action Load (0.1ms) SELECT actions.id, actions.title, actions.created_at, actions.updated_at FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 18]]
1960
+  (0.0ms) SAVEPOINT active_record_1
1961
+ SQL (0.4ms) INSERT INTO "actions" ("comments", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["comments", "some comments"], ["created_at", Sun, 24 Feb 2013 09:34:05 UTC +00:00], ["title", "some action"], ["updated_at", Sun, 24 Feb 2013 09:34:05 UTC +00:00]]
1962
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1963
+ ActionWith2LazyColumns Load (0.1ms) SELECT actions.id, actions.created_at, actions.updated_at FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 19]]
1964
+ ActionWith2LazyColumns Load (0.1ms) SELECT "actions".* FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 19]]
1965
+  (0.3ms) rollback transaction
1966
+  (0.0ms) begin transaction
1967
+  (0.0ms) SAVEPOINT active_record_1
1968
+ SQL (0.3ms) INSERT INTO "actions" ("comments", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["comments", "some comments"], ["created_at", Sun, 24 Feb 2013 09:34:05 UTC +00:00], ["title", "some action"], ["updated_at", Sun, 24 Feb 2013 09:34:05 UTC +00:00]]
1969
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1970
+ Action Load (0.0ms) SELECT actions.id, actions.title, actions.created_at, actions.updated_at FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 18]]
1971
+  (0.4ms) rollback transaction
1972
+  (0.0ms) begin transaction
1973
+  (0.0ms) SAVEPOINT active_record_1
1974
+ SQL (0.4ms) INSERT INTO "actions" ("comments", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["comments", "some comments"], ["created_at", Sun, 24 Feb 2013 09:34:05 UTC +00:00], ["title", "some action"], ["updated_at", Sun, 24 Feb 2013 09:34:05 UTC +00:00]]
1975
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1976
+ Action Load (0.1ms) SELECT actions.id, actions.title, actions.created_at, actions.updated_at FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 18]]
1977
+  (0.0ms) SAVEPOINT active_record_1
1978
+ SQL (0.5ms) INSERT INTO "actions" ("comments", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["comments", "some new comments"], ["created_at", Sun, 24 Feb 2013 09:34:05 UTC +00:00], ["title", nil], ["updated_at", Sun, 24 Feb 2013 09:34:05 UTC +00:00]]
1979
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1980
+  (0.4ms) rollback transaction
1981
+  (0.0ms) begin transaction
1982
+  (0.0ms) SAVEPOINT active_record_1
1983
+ SQL (0.4ms) INSERT INTO "actions" ("comments", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["comments", "some comments"], ["created_at", Sun, 24 Feb 2013 09:34:05 UTC +00:00], ["title", "some action"], ["updated_at", Sun, 24 Feb 2013 09:34:05 UTC +00:00]]
1984
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1985
+ Action Load (0.0ms) SELECT actions.id, actions.title, actions.created_at, actions.updated_at FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 18]]
1986
+  (0.0ms) SAVEPOINT active_record_1
1987
+  (0.3ms) UPDATE "actions" SET "comments" = 'some new comments', "updated_at" = '2013-02-24 09:34:05.737432' WHERE "actions"."id" = 18
1988
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1989
+  (0.3ms) rollback transaction
1990
+  (0.0ms) begin transaction
1991
+  (0.0ms) SAVEPOINT active_record_1
1992
+ SQL (0.4ms) INSERT INTO "actions" ("comments", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["comments", "some comments"], ["created_at", Sun, 24 Feb 2013 09:34:05 UTC +00:00], ["title", "some action"], ["updated_at", Sun, 24 Feb 2013 09:34:05 UTC +00:00]]
1993
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1994
+ Action Load (0.0ms) SELECT actions.id, actions.title, actions.created_at, actions.updated_at FROM "actions" WHERE "actions"."id" = ? LIMIT 1 [["id", 18]]
1995
+ Action Load (0.1ms) SELECT actions.id, actions.title, actions.created_at, actions.updated_at, comments FROM "actions" LIMIT 1
1996
+  (0.3ms) rollback transaction
@@ -20,7 +20,7 @@ describe LazyColumns::ActsAsLazyColumnLoader do
20
20
  @action.comments
21
21
  end
22
22
 
23
- it "should not reload the object if after the column was fetched" do
23
+ it "should not reload the object after the column was fetched" do
24
24
  @action.comments
25
25
  @action.should_not_receive :reload
26
26
  @action.comments
@@ -48,6 +48,13 @@ describe LazyColumns::ActsAsLazyColumnLoader do
48
48
  @action.title.should == "some action"
49
49
  @action.comments.should == "some comments"
50
50
  end
51
+
52
+ it "should let you modify normal attributes" do
53
+ @action.title = 'some new title'
54
+ @action.comments
55
+ @action.save!
56
+ @action.reload.title.should == 'some new title'
57
+ end
51
58
  end
52
59
 
53
60
  def create_and_reload_action_from_db(klass=Action)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: lazy_columns
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.4
4
+ version: 0.5.5
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-01-13 00:00:00.000000000 Z
12
+ date: 2013-02-24 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rails
@@ -112,6 +112,7 @@ files:
112
112
  - spec/dummy/config/locales/en.yml
113
113
  - spec/dummy/config/routes.rb
114
114
  - spec/dummy/config.ru
115
+ - spec/dummy/db/development.sqlite3
115
116
  - spec/dummy/db/migrate/20130107093428_create_actions.rb
116
117
  - spec/dummy/db/schema.rb
117
118
  - spec/dummy/db/test.sqlite3
@@ -141,7 +142,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
141
142
  version: '0'
142
143
  segments:
143
144
  - 0
144
- hash: 1385215812568397296
145
+ hash: 3751127418290046231
145
146
  required_rubygems_version: !ruby/object:Gem::Requirement
146
147
  none: false
147
148
  requirements:
@@ -150,10 +151,10 @@ required_rubygems_version: !ruby/object:Gem::Requirement
150
151
  version: '0'
151
152
  segments:
152
153
  - 0
153
- hash: 1385215812568397296
154
+ hash: 3751127418290046231
154
155
  requirements: []
155
156
  rubyforge_project:
156
- rubygems_version: 1.8.24
157
+ rubygems_version: 1.8.23
157
158
  signing_key:
158
159
  specification_version: 3
159
160
  summary: Rails plugin that let you configure ActiveRecord columns to be loaded lazily
@@ -180,6 +181,7 @@ test_files:
180
181
  - spec/dummy/config/locales/en.yml
181
182
  - spec/dummy/config/routes.rb
182
183
  - spec/dummy/config.ru
184
+ - spec/dummy/db/development.sqlite3
183
185
  - spec/dummy/db/migrate/20130107093428_create_actions.rb
184
186
  - spec/dummy/db/schema.rb
185
187
  - spec/dummy/db/test.sqlite3