auto_build 0.4.1 → 0.4.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -17,7 +17,7 @@ module AutoBuild
17
17
  end
18
18
 
19
19
  def code
20
- "self.build_#{association_name}"
20
+ "self.#{association_name} ||= build_#{association_name}"
21
21
  end
22
22
  end
23
23
  end
@@ -1,3 +1,3 @@
1
1
  module AutoBuild
2
- VERSION = "0.4.1"
2
+ VERSION = "0.4.2"
3
3
  end
@@ -47,4 +47,8 @@ class AutoBuildTest < ActiveSupport::TestCase
47
47
  end
48
48
  end
49
49
  end
50
+
51
+ test "has_one doesn't save the association, only builds it" do
52
+ assert !@user.address.persisted?
53
+ end
50
54
  end
@@ -33881,3 +33881,483 @@ Migrating to CreatePhones (20111211213814)
33881
33881
   (0.0ms) RELEASE SAVEPOINT active_record_1
33882
33882
   (0.0ms) SAVEPOINT active_record_1
33883
33883
   (0.0ms) RELEASE SAVEPOINT active_record_1
33884
+  (0.1ms) SAVEPOINT active_record_1
33885
+  (0.0ms) RELEASE SAVEPOINT active_record_1
33886
+  (0.1ms) SAVEPOINT active_record_1
33887
+  (0.0ms) RELEASE SAVEPOINT active_record_1
33888
+  (0.0ms) SAVEPOINT active_record_1
33889
+  (0.0ms) RELEASE SAVEPOINT active_record_1
33890
+  (0.0ms) SAVEPOINT active_record_1
33891
+  (0.0ms) RELEASE SAVEPOINT active_record_1
33892
+  (0.0ms) SAVEPOINT active_record_1
33893
+  (0.0ms) RELEASE SAVEPOINT active_record_1
33894
+  (0.0ms) SAVEPOINT active_record_1
33895
+  (0.0ms) RELEASE SAVEPOINT active_record_1
33896
+  (0.0ms) SAVEPOINT active_record_1
33897
+ SQL (45.6ms) INSERT INTO "addresses" ("city", "created_at", "street", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["city", nil], ["created_at", Fri, 23 Dec 2011 03:51:21 UTC +00:00], ["street", "Highway 61"], ["updated_at", Fri, 23 Dec 2011 03:51:21 UTC +00:00], ["user_id", nil]]
33898
+  (0.1ms) RELEASE SAVEPOINT active_record_1
33899
+  (0.1ms) SAVEPOINT active_record_1
33900
+  (0.0ms) RELEASE SAVEPOINT active_record_1
33901
+  (0.2ms) SAVEPOINT active_record_1
33902
+  (0.0ms) RELEASE SAVEPOINT active_record_1
33903
+  (0.0ms) SAVEPOINT active_record_1
33904
+  (0.0ms) RELEASE SAVEPOINT active_record_1
33905
+  (0.0ms) SAVEPOINT active_record_1
33906
+ SQL (0.7ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 23 Dec 2011 03:51:21 UTC +00:00], ["name", nil], ["updated_at", Fri, 23 Dec 2011 03:51:21 UTC +00:00]]
33907
+ SQL (0.4ms) INSERT INTO "addresses" ("city", "created_at", "street", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["city", nil], ["created_at", Fri, 23 Dec 2011 03:51:21 UTC +00:00], ["street", nil], ["updated_at", Fri, 23 Dec 2011 03:51:21 UTC +00:00], ["user_id", 1]]
33908
+ SQL (0.4ms) INSERT INTO "pictures" ("created_at", "path", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 23 Dec 2011 03:51:21 UTC +00:00], ["path", nil], ["updated_at", Fri, 23 Dec 2011 03:51:21 UTC +00:00], ["user_id", 1]]
33909
+ SQL (0.3ms) INSERT INTO "projects" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 23 Dec 2011 03:51:21 UTC +00:00], ["title", nil], ["updated_at", Fri, 23 Dec 2011 03:51:21 UTC +00:00], ["user_id", 1]]
33910
+ SQL (0.5ms) INSERT INTO "nicknames" ("created_at", "nick", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 23 Dec 2011 03:51:21 UTC +00:00], ["nick", nil], ["updated_at", Fri, 23 Dec 2011 03:51:21 UTC +00:00], ["user_id", 1]]
33911
+ SQL (0.2ms) INSERT INTO "nicknames" ("created_at", "nick", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 23 Dec 2011 03:51:21 UTC +00:00], ["nick", nil], ["updated_at", Fri, 23 Dec 2011 03:51:21 UTC +00:00], ["user_id", 1]]
33912
+ SQL (0.3ms) INSERT INTO "nicknames" ("created_at", "nick", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 23 Dec 2011 03:51:21 UTC +00:00], ["nick", nil], ["updated_at", Fri, 23 Dec 2011 03:51:21 UTC +00:00], ["user_id", 1]]
33913
+  (0.0ms) RELEASE SAVEPOINT active_record_1
33914
+ User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 1
33915
+ Address Load (0.1ms) SELECT "addresses".* FROM "addresses" WHERE "addresses"."user_id" = 1 LIMIT 1
33916
+  (0.0ms) SAVEPOINT active_record_1
33917
+  (0.1ms) UPDATE "addresses" SET "user_id" = NULL, "updated_at" = '2011-12-23 03:51:21.378266' WHERE "addresses"."id" = 2
33918
+  (0.0ms) RELEASE SAVEPOINT active_record_1
33919
+ Picture Load (0.1ms) SELECT "pictures".* FROM "pictures" WHERE "pictures"."user_id" = 1 LIMIT 1
33920
+  (0.0ms) SAVEPOINT active_record_1
33921
+  (0.1ms) UPDATE "pictures" SET "user_id" = NULL, "updated_at" = '2011-12-23 03:51:21.381339' WHERE "pictures"."id" = 1
33922
+  (0.0ms) RELEASE SAVEPOINT active_record_1
33923
+  (0.1ms) SELECT COUNT(*) FROM "projects" WHERE "projects"."user_id" = 1
33924
+  (0.1ms) SELECT COUNT(*) FROM "nicknames" WHERE "nicknames"."user_id" = 1
33925
+  (0.0ms) SAVEPOINT active_record_1
33926
+  (0.0ms) RELEASE SAVEPOINT active_record_1
33927
+  (0.0ms) SAVEPOINT active_record_1
33928
+  (0.0ms) RELEASE SAVEPOINT active_record_1
33929
+  (0.0ms) SAVEPOINT active_record_1
33930
+  (0.0ms) RELEASE SAVEPOINT active_record_1
33931
+  (0.0ms) SAVEPOINT active_record_1
33932
+  (0.0ms) RELEASE SAVEPOINT active_record_1
33933
+  (0.0ms) SAVEPOINT active_record_1
33934
+  (0.0ms) RELEASE SAVEPOINT active_record_1
33935
+  (0.0ms) SAVEPOINT active_record_1
33936
+  (0.0ms) RELEASE SAVEPOINT active_record_1
33937
+  (0.0ms) SAVEPOINT active_record_1
33938
+  (0.0ms) RELEASE SAVEPOINT active_record_1
33939
+  (0.0ms) SAVEPOINT active_record_1
33940
+  (0.0ms) RELEASE SAVEPOINT active_record_1
33941
+  (0.0ms) SAVEPOINT active_record_1
33942
+ SQL (0.6ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 23 Dec 2011 03:51:21 UTC +00:00], ["name", nil], ["updated_at", Fri, 23 Dec 2011 03:51:21 UTC +00:00]]
33943
+ SQL (0.4ms) INSERT INTO "addresses" ("city", "created_at", "street", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["city", nil], ["created_at", Fri, 23 Dec 2011 03:51:21 UTC +00:00], ["street", nil], ["updated_at", Fri, 23 Dec 2011 03:51:21 UTC +00:00], ["user_id", 1]]
33944
+ SQL (0.2ms) INSERT INTO "pictures" ("created_at", "path", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 23 Dec 2011 03:51:21 UTC +00:00], ["path", nil], ["updated_at", Fri, 23 Dec 2011 03:51:21 UTC +00:00], ["user_id", 1]]
33945
+ SQL (0.3ms) INSERT INTO "projects" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 23 Dec 2011 03:51:21 UTC +00:00], ["title", nil], ["updated_at", Fri, 23 Dec 2011 03:51:21 UTC +00:00], ["user_id", 1]]
33946
+ SQL (0.3ms) INSERT INTO "nicknames" ("created_at", "nick", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 23 Dec 2011 03:51:21 UTC +00:00], ["nick", nil], ["updated_at", Fri, 23 Dec 2011 03:51:21 UTC +00:00], ["user_id", 1]]
33947
+ SQL (0.3ms) INSERT INTO "nicknames" ("created_at", "nick", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 23 Dec 2011 03:51:21 UTC +00:00], ["nick", nil], ["updated_at", Fri, 23 Dec 2011 03:51:21 UTC +00:00], ["user_id", 1]]
33948
+ SQL (0.2ms) INSERT INTO "nicknames" ("created_at", "nick", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 23 Dec 2011 03:51:21 UTC +00:00], ["nick", nil], ["updated_at", Fri, 23 Dec 2011 03:51:21 UTC +00:00], ["user_id", 1]]
33949
+  (0.1ms) RELEASE SAVEPOINT active_record_1
33950
+ User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 1
33951
+ Address Load (0.1ms) SELECT "addresses".* FROM "addresses" WHERE "addresses"."user_id" = 1 LIMIT 1
33952
+  (0.0ms) SAVEPOINT active_record_1
33953
+  (0.4ms) UPDATE "addresses" SET "user_id" = NULL, "updated_at" = '2011-12-23 03:51:21.404851' WHERE "addresses"."id" = 1
33954
+  (0.0ms) RELEASE SAVEPOINT active_record_1
33955
+ Picture Load (0.1ms) SELECT "pictures".* FROM "pictures" WHERE "pictures"."user_id" = 1 LIMIT 1
33956
+  (0.0ms) SAVEPOINT active_record_1
33957
+  (0.1ms) UPDATE "pictures" SET "user_id" = NULL, "updated_at" = '2011-12-23 03:51:21.407591' WHERE "pictures"."id" = 1
33958
+  (0.0ms) RELEASE SAVEPOINT active_record_1
33959
+  (0.1ms) SELECT COUNT(*) FROM "projects" WHERE "projects"."user_id" = 1
33960
+  (0.1ms) SELECT COUNT(*) FROM "nicknames" WHERE "nicknames"."user_id" = 1
33961
+  (0.1ms) SELECT COUNT(*) FROM "projects" WHERE "projects"."user_id" = 1
33962
+  (0.0ms) SAVEPOINT active_record_1
33963
+  (0.0ms) RELEASE SAVEPOINT active_record_1
33964
+  (0.0ms) SAVEPOINT active_record_1
33965
+  (0.0ms) RELEASE SAVEPOINT active_record_1
33966
+  (0.1ms) SAVEPOINT active_record_1
33967
+  (0.0ms) RELEASE SAVEPOINT active_record_1
33968
+  (0.1ms) SAVEPOINT active_record_1
33969
+  (0.0ms) RELEASE SAVEPOINT active_record_1
33970
+  (0.0ms) SAVEPOINT active_record_1
33971
+  (0.0ms) RELEASE SAVEPOINT active_record_1
33972
+  (0.0ms) SAVEPOINT active_record_1
33973
+  (0.0ms) RELEASE SAVEPOINT active_record_1
33974
+  (0.0ms) SAVEPOINT active_record_1
33975
+  (0.0ms) RELEASE SAVEPOINT active_record_1
33976
+  (0.0ms) SAVEPOINT active_record_1
33977
+  (0.0ms) RELEASE SAVEPOINT active_record_1
33978
+  (0.0ms) SAVEPOINT active_record_1
33979
+ SQL (42.8ms) INSERT INTO "addresses" ("city", "created_at", "street", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["city", nil], ["created_at", Fri, 23 Dec 2011 03:51:50 UTC +00:00], ["street", "Highway 61"], ["updated_at", Fri, 23 Dec 2011 03:51:50 UTC +00:00], ["user_id", nil]]
33980
+  (0.1ms) RELEASE SAVEPOINT active_record_1
33981
+  (0.0ms) SAVEPOINT active_record_1
33982
+  (0.0ms) RELEASE SAVEPOINT active_record_1
33983
+  (0.0ms) SAVEPOINT active_record_1
33984
+  (0.0ms) RELEASE SAVEPOINT active_record_1
33985
+  (0.0ms) SAVEPOINT active_record_1
33986
+ SQL (0.8ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 23 Dec 2011 03:51:50 UTC +00:00], ["name", nil], ["updated_at", Fri, 23 Dec 2011 03:51:50 UTC +00:00]]
33987
+  (0.2ms) UPDATE "addresses" SET "user_id" = 1, "updated_at" = '2011-12-23 03:51:50.990871' WHERE "addresses"."id" = 1
33988
+ SQL (0.5ms) INSERT INTO "pictures" ("created_at", "path", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 23 Dec 2011 03:51:50 UTC +00:00], ["path", nil], ["updated_at", Fri, 23 Dec 2011 03:51:50 UTC +00:00], ["user_id", 1]]
33989
+ SQL (0.5ms) INSERT INTO "projects" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 23 Dec 2011 03:51:50 UTC +00:00], ["title", nil], ["updated_at", Fri, 23 Dec 2011 03:51:50 UTC +00:00], ["user_id", 1]]
33990
+ SQL (0.6ms) INSERT INTO "nicknames" ("created_at", "nick", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 23 Dec 2011 03:51:50 UTC +00:00], ["nick", nil], ["updated_at", Fri, 23 Dec 2011 03:51:50 UTC +00:00], ["user_id", 1]]
33991
+ SQL (0.3ms) INSERT INTO "nicknames" ("created_at", "nick", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 23 Dec 2011 03:51:50 UTC +00:00], ["nick", nil], ["updated_at", Fri, 23 Dec 2011 03:51:50 UTC +00:00], ["user_id", 1]]
33992
+ SQL (0.3ms) INSERT INTO "nicknames" ("created_at", "nick", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 23 Dec 2011 03:51:51 UTC +00:00], ["nick", nil], ["updated_at", Fri, 23 Dec 2011 03:51:51 UTC +00:00], ["user_id", 1]]
33993
+  (0.1ms) RELEASE SAVEPOINT active_record_1
33994
+ User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 1
33995
+ Address Load (0.1ms) SELECT "addresses".* FROM "addresses" WHERE "addresses"."user_id" = 1 LIMIT 1
33996
+ Picture Load (0.1ms) SELECT "pictures".* FROM "pictures" WHERE "pictures"."user_id" = 1 LIMIT 1
33997
+  (0.1ms) SELECT COUNT(*) FROM "projects" WHERE "projects"."user_id" = 1
33998
+  (0.1ms) SELECT COUNT(*) FROM "nicknames" WHERE "nicknames"."user_id" = 1
33999
+  (0.1ms) SAVEPOINT active_record_1
34000
+  (0.0ms) RELEASE SAVEPOINT active_record_1
34001
+  (0.0ms) SAVEPOINT active_record_1
34002
+  (0.0ms) RELEASE SAVEPOINT active_record_1
34003
+  (0.0ms) SAVEPOINT active_record_1
34004
+  (0.0ms) RELEASE SAVEPOINT active_record_1
34005
+  (0.0ms) SAVEPOINT active_record_1
34006
+  (0.0ms) RELEASE SAVEPOINT active_record_1
34007
+  (0.0ms) SAVEPOINT active_record_1
34008
+  (0.0ms) RELEASE SAVEPOINT active_record_1
34009
+  (0.0ms) SAVEPOINT active_record_1
34010
+  (0.0ms) RELEASE SAVEPOINT active_record_1
34011
+  (0.0ms) SAVEPOINT active_record_1
34012
+  (0.0ms) RELEASE SAVEPOINT active_record_1
34013
+  (0.0ms) SAVEPOINT active_record_1
34014
+  (0.0ms) RELEASE SAVEPOINT active_record_1
34015
+  (0.0ms) SAVEPOINT active_record_1
34016
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 23 Dec 2011 03:51:51 UTC +00:00], ["name", nil], ["updated_at", Fri, 23 Dec 2011 03:51:51 UTC +00:00]]
34017
+ SQL (0.4ms) INSERT INTO "addresses" ("city", "created_at", "street", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["city", nil], ["created_at", Fri, 23 Dec 2011 03:51:51 UTC +00:00], ["street", nil], ["updated_at", Fri, 23 Dec 2011 03:51:51 UTC +00:00], ["user_id", 1]]
34018
+ SQL (0.3ms) INSERT INTO "pictures" ("created_at", "path", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 23 Dec 2011 03:51:51 UTC +00:00], ["path", nil], ["updated_at", Fri, 23 Dec 2011 03:51:51 UTC +00:00], ["user_id", 1]]
34019
+ SQL (0.3ms) INSERT INTO "projects" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 23 Dec 2011 03:51:51 UTC +00:00], ["title", nil], ["updated_at", Fri, 23 Dec 2011 03:51:51 UTC +00:00], ["user_id", 1]]
34020
+ SQL (0.4ms) INSERT INTO "nicknames" ("created_at", "nick", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 23 Dec 2011 03:51:51 UTC +00:00], ["nick", nil], ["updated_at", Fri, 23 Dec 2011 03:51:51 UTC +00:00], ["user_id", 1]]
34021
+ SQL (0.3ms) INSERT INTO "nicknames" ("created_at", "nick", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 23 Dec 2011 03:51:51 UTC +00:00], ["nick", nil], ["updated_at", Fri, 23 Dec 2011 03:51:51 UTC +00:00], ["user_id", 1]]
34022
+ SQL (0.3ms) INSERT INTO "nicknames" ("created_at", "nick", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 23 Dec 2011 03:51:51 UTC +00:00], ["nick", nil], ["updated_at", Fri, 23 Dec 2011 03:51:51 UTC +00:00], ["user_id", 1]]
34023
+  (0.1ms) RELEASE SAVEPOINT active_record_1
34024
+ User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 1
34025
+ Address Load (0.1ms) SELECT "addresses".* FROM "addresses" WHERE "addresses"."user_id" = 1 LIMIT 1
34026
+ Picture Load (0.1ms) SELECT "pictures".* FROM "pictures" WHERE "pictures"."user_id" = 1 LIMIT 1
34027
+  (0.1ms) SELECT COUNT(*) FROM "projects" WHERE "projects"."user_id" = 1
34028
+  (0.1ms) SELECT COUNT(*) FROM "nicknames" WHERE "nicknames"."user_id" = 1
34029
+  (0.1ms) SELECT COUNT(*) FROM "projects" WHERE "projects"."user_id" = 1
34030
+  (0.0ms) SAVEPOINT active_record_1
34031
+  (0.0ms) RELEASE SAVEPOINT active_record_1
34032
+  (0.0ms) SAVEPOINT active_record_1
34033
+  (0.0ms) RELEASE SAVEPOINT active_record_1
34034
+  (0.1ms) SAVEPOINT active_record_1
34035
+  (0.0ms) RELEASE SAVEPOINT active_record_1
34036
+  (0.0ms) SAVEPOINT active_record_1
34037
+  (0.0ms) RELEASE SAVEPOINT active_record_1
34038
+  (0.1ms) SAVEPOINT active_record_1
34039
+  (0.0ms) RELEASE SAVEPOINT active_record_1
34040
+  (0.0ms) SAVEPOINT active_record_1
34041
+  (0.0ms) RELEASE SAVEPOINT active_record_1
34042
+  (0.0ms) SAVEPOINT active_record_1
34043
+  (0.0ms) RELEASE SAVEPOINT active_record_1
34044
+  (0.0ms) SAVEPOINT active_record_1
34045
+  (0.0ms) RELEASE SAVEPOINT active_record_1
34046
+  (0.1ms) SAVEPOINT active_record_1
34047
+  (0.0ms) RELEASE SAVEPOINT active_record_1
34048
+  (0.0ms) SAVEPOINT active_record_1
34049
+  (0.0ms) RELEASE SAVEPOINT active_record_1
34050
+  (0.0ms) SAVEPOINT active_record_1
34051
+  (0.0ms) RELEASE SAVEPOINT active_record_1
34052
+  (0.0ms) SAVEPOINT active_record_1
34053
+  (0.0ms) RELEASE SAVEPOINT active_record_1
34054
+  (0.0ms) SAVEPOINT active_record_1
34055
+  (0.0ms) RELEASE SAVEPOINT active_record_1
34056
+  (0.0ms) SAVEPOINT active_record_1
34057
+  (0.0ms) RELEASE SAVEPOINT active_record_1
34058
+  (0.0ms) SAVEPOINT active_record_1
34059
+ SQL (8.3ms) INSERT INTO "addresses" ("city", "created_at", "street", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["city", nil], ["created_at", Fri, 23 Dec 2011 03:53:04 UTC +00:00], ["street", "Highway 61"], ["updated_at", Fri, 23 Dec 2011 03:53:04 UTC +00:00], ["user_id", nil]]
34060
+  (0.1ms) RELEASE SAVEPOINT active_record_1
34061
+  (0.0ms) SAVEPOINT active_record_1
34062
+  (0.0ms) RELEASE SAVEPOINT active_record_1
34063
+  (0.0ms) SAVEPOINT active_record_1
34064
+  (0.0ms) RELEASE SAVEPOINT active_record_1
34065
+  (0.0ms) SAVEPOINT active_record_1
34066
+  (0.0ms) RELEASE SAVEPOINT active_record_1
34067
+  (0.0ms) SAVEPOINT active_record_1
34068
+ SQL (0.7ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 23 Dec 2011 03:53:04 UTC +00:00], ["name", nil], ["updated_at", Fri, 23 Dec 2011 03:53:04 UTC +00:00]]
34069
+  (0.2ms) UPDATE "addresses" SET "user_id" = 1, "updated_at" = '2011-12-23 03:53:04.860417' WHERE "addresses"."id" = 1
34070
+ SQL (0.4ms) INSERT INTO "pictures" ("created_at", "path", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 23 Dec 2011 03:53:04 UTC +00:00], ["path", nil], ["updated_at", Fri, 23 Dec 2011 03:53:04 UTC +00:00], ["user_id", 1]]
34071
+ SQL (0.3ms) INSERT INTO "projects" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 23 Dec 2011 03:53:04 UTC +00:00], ["title", nil], ["updated_at", Fri, 23 Dec 2011 03:53:04 UTC +00:00], ["user_id", 1]]
34072
+ SQL (0.5ms) INSERT INTO "nicknames" ("created_at", "nick", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 23 Dec 2011 03:53:04 UTC +00:00], ["nick", nil], ["updated_at", Fri, 23 Dec 2011 03:53:04 UTC +00:00], ["user_id", 1]]
34073
+ SQL (0.3ms) INSERT INTO "nicknames" ("created_at", "nick", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 23 Dec 2011 03:53:04 UTC +00:00], ["nick", nil], ["updated_at", Fri, 23 Dec 2011 03:53:04 UTC +00:00], ["user_id", 1]]
34074
+ SQL (0.2ms) INSERT INTO "nicknames" ("created_at", "nick", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 23 Dec 2011 03:53:04 UTC +00:00], ["nick", nil], ["updated_at", Fri, 23 Dec 2011 03:53:04 UTC +00:00], ["user_id", 1]]
34075
+  (0.0ms) RELEASE SAVEPOINT active_record_1
34076
+ User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 1
34077
+ Address Load (0.1ms) SELECT "addresses".* FROM "addresses" WHERE "addresses"."user_id" = 1 LIMIT 1
34078
+ Picture Load (0.1ms) SELECT "pictures".* FROM "pictures" WHERE "pictures"."user_id" = 1 LIMIT 1
34079
+  (0.1ms) SELECT COUNT(*) FROM "projects" WHERE "projects"."user_id" = 1
34080
+  (0.1ms) SELECT COUNT(*) FROM "nicknames" WHERE "nicknames"."user_id" = 1
34081
+  (0.0ms) SAVEPOINT active_record_1
34082
+  (0.0ms) RELEASE SAVEPOINT active_record_1
34083
+  (0.0ms) SAVEPOINT active_record_1
34084
+  (0.0ms) RELEASE SAVEPOINT active_record_1
34085
+  (0.0ms) SAVEPOINT active_record_1
34086
+  (0.0ms) RELEASE SAVEPOINT active_record_1
34087
+  (0.0ms) SAVEPOINT active_record_1
34088
+  (0.0ms) RELEASE SAVEPOINT active_record_1
34089
+  (0.0ms) SAVEPOINT active_record_1
34090
+  (0.0ms) RELEASE SAVEPOINT active_record_1
34091
+  (0.0ms) SAVEPOINT active_record_1
34092
+  (0.1ms) RELEASE SAVEPOINT active_record_1
34093
+  (0.0ms) SAVEPOINT active_record_1
34094
+  (0.0ms) RELEASE SAVEPOINT active_record_1
34095
+  (0.0ms) SAVEPOINT active_record_1
34096
+  (0.0ms) RELEASE SAVEPOINT active_record_1
34097
+  (0.0ms) SAVEPOINT active_record_1
34098
+  (0.0ms) RELEASE SAVEPOINT active_record_1
34099
+  (0.0ms) SAVEPOINT active_record_1
34100
+  (0.0ms) RELEASE SAVEPOINT active_record_1
34101
+  (0.0ms) SAVEPOINT active_record_1
34102
+  (0.0ms) RELEASE SAVEPOINT active_record_1
34103
+  (0.0ms) SAVEPOINT active_record_1
34104
+  (0.0ms) RELEASE SAVEPOINT active_record_1
34105
+  (0.1ms) SAVEPOINT active_record_1
34106
+  (0.0ms) RELEASE SAVEPOINT active_record_1
34107
+  (0.0ms) SAVEPOINT active_record_1
34108
+  (0.0ms) RELEASE SAVEPOINT active_record_1
34109
+  (0.0ms) SAVEPOINT active_record_1
34110
+  (0.0ms) RELEASE SAVEPOINT active_record_1
34111
+  (0.0ms) SAVEPOINT active_record_1
34112
+  (0.0ms) RELEASE SAVEPOINT active_record_1
34113
+  (0.1ms) SAVEPOINT active_record_1
34114
+ SQL (0.6ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 23 Dec 2011 03:53:04 UTC +00:00], ["name", nil], ["updated_at", Fri, 23 Dec 2011 03:53:04 UTC +00:00]]
34115
+ SQL (0.4ms) INSERT INTO "addresses" ("city", "created_at", "street", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["city", nil], ["created_at", Fri, 23 Dec 2011 03:53:04 UTC +00:00], ["street", nil], ["updated_at", Fri, 23 Dec 2011 03:53:04 UTC +00:00], ["user_id", 1]]
34116
+ SQL (0.3ms) INSERT INTO "pictures" ("created_at", "path", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 23 Dec 2011 03:53:04 UTC +00:00], ["path", nil], ["updated_at", Fri, 23 Dec 2011 03:53:04 UTC +00:00], ["user_id", 1]]
34117
+ SQL (0.3ms) INSERT INTO "projects" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 23 Dec 2011 03:53:04 UTC +00:00], ["title", nil], ["updated_at", Fri, 23 Dec 2011 03:53:04 UTC +00:00], ["user_id", 1]]
34118
+ SQL (0.3ms) INSERT INTO "nicknames" ("created_at", "nick", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 23 Dec 2011 03:53:04 UTC +00:00], ["nick", nil], ["updated_at", Fri, 23 Dec 2011 03:53:04 UTC +00:00], ["user_id", 1]]
34119
+ SQL (0.2ms) INSERT INTO "nicknames" ("created_at", "nick", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 23 Dec 2011 03:53:04 UTC +00:00], ["nick", nil], ["updated_at", Fri, 23 Dec 2011 03:53:04 UTC +00:00], ["user_id", 1]]
34120
+ SQL (0.2ms) INSERT INTO "nicknames" ("created_at", "nick", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 23 Dec 2011 03:53:04 UTC +00:00], ["nick", nil], ["updated_at", Fri, 23 Dec 2011 03:53:04 UTC +00:00], ["user_id", 1]]
34121
+  (0.1ms) RELEASE SAVEPOINT active_record_1
34122
+ User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 1
34123
+ Address Load (0.1ms) SELECT "addresses".* FROM "addresses" WHERE "addresses"."user_id" = 1 LIMIT 1
34124
+ Picture Load (0.1ms) SELECT "pictures".* FROM "pictures" WHERE "pictures"."user_id" = 1 LIMIT 1
34125
+  (0.1ms) SELECT COUNT(*) FROM "projects" WHERE "projects"."user_id" = 1
34126
+  (0.1ms) SELECT COUNT(*) FROM "nicknames" WHERE "nicknames"."user_id" = 1
34127
+  (0.1ms) SELECT COUNT(*) FROM "projects" WHERE "projects"."user_id" = 1
34128
+  (0.0ms) SAVEPOINT active_record_1
34129
+  (0.0ms) RELEASE SAVEPOINT active_record_1
34130
+  (0.0ms) SAVEPOINT active_record_1
34131
+  (0.0ms) RELEASE SAVEPOINT active_record_1
34132
+  (0.0ms) SAVEPOINT active_record_1
34133
+  (0.0ms) RELEASE SAVEPOINT active_record_1
34134
+  (0.0ms) SAVEPOINT active_record_1
34135
+  (0.0ms) RELEASE SAVEPOINT active_record_1
34136
+  (0.0ms) SAVEPOINT active_record_1
34137
+  (0.0ms) RELEASE SAVEPOINT active_record_1
34138
+  (0.0ms) SAVEPOINT active_record_1
34139
+  (0.0ms) RELEASE SAVEPOINT active_record_1
34140
+  (0.0ms) SAVEPOINT active_record_1
34141
+  (0.0ms) RELEASE SAVEPOINT active_record_1
34142
+  (0.0ms) SAVEPOINT active_record_1
34143
+  (0.0ms) RELEASE SAVEPOINT active_record_1
34144
+  (0.1ms) SAVEPOINT active_record_1
34145
+  (0.0ms) RELEASE SAVEPOINT active_record_1
34146
+  (0.0ms) SAVEPOINT active_record_1
34147
+  (0.0ms) RELEASE SAVEPOINT active_record_1
34148
+  (0.1ms) SAVEPOINT active_record_1
34149
+  (0.0ms) RELEASE SAVEPOINT active_record_1
34150
+  (0.0ms) SAVEPOINT active_record_1
34151
+  (0.0ms) RELEASE SAVEPOINT active_record_1
34152
+  (0.0ms) SAVEPOINT active_record_1
34153
+  (0.0ms) RELEASE SAVEPOINT active_record_1
34154
+  (0.0ms) SAVEPOINT active_record_1
34155
+  (0.0ms) RELEASE SAVEPOINT active_record_1
34156
+  (0.0ms) SAVEPOINT active_record_1
34157
+  (0.0ms) RELEASE SAVEPOINT active_record_1
34158
+  (0.0ms) SAVEPOINT active_record_1
34159
+  (0.0ms) RELEASE SAVEPOINT active_record_1
34160
+  (0.0ms) SAVEPOINT active_record_1
34161
+  (0.0ms) RELEASE SAVEPOINT active_record_1
34162
+  (0.0ms) SAVEPOINT active_record_1
34163
+  (0.0ms) RELEASE SAVEPOINT active_record_1
34164
+  (0.0ms) SAVEPOINT active_record_1
34165
+  (0.0ms) RELEASE SAVEPOINT active_record_1
34166
+  (0.0ms) SAVEPOINT active_record_1
34167
+  (0.0ms) RELEASE SAVEPOINT active_record_1
34168
+  (0.0ms) SAVEPOINT active_record_1
34169
+ SQL (9.7ms) INSERT INTO "addresses" ("city", "created_at", "street", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["city", nil], ["created_at", Fri, 23 Dec 2011 03:53:18 UTC +00:00], ["street", "Highway 61"], ["updated_at", Fri, 23 Dec 2011 03:53:18 UTC +00:00], ["user_id", nil]]
34170
+  (0.1ms) RELEASE SAVEPOINT active_record_1
34171
+  (0.0ms) SAVEPOINT active_record_1
34172
+  (0.0ms) RELEASE SAVEPOINT active_record_1
34173
+  (0.0ms) SAVEPOINT active_record_1
34174
+  (0.0ms) RELEASE SAVEPOINT active_record_1
34175
+  (0.0ms) SAVEPOINT active_record_1
34176
+  (0.0ms) RELEASE SAVEPOINT active_record_1
34177
+  (0.0ms) SAVEPOINT active_record_1
34178
+ SQL (0.7ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 23 Dec 2011 03:53:18 UTC +00:00], ["name", nil], ["updated_at", Fri, 23 Dec 2011 03:53:18 UTC +00:00]]
34179
+  (0.2ms) UPDATE "addresses" SET "user_id" = 1, "updated_at" = '2011-12-23 03:53:18.971474' WHERE "addresses"."id" = 1
34180
+ SQL (0.4ms) INSERT INTO "pictures" ("created_at", "path", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 23 Dec 2011 03:53:18 UTC +00:00], ["path", nil], ["updated_at", Fri, 23 Dec 2011 03:53:18 UTC +00:00], ["user_id", 1]]
34181
+ SQL (0.3ms) INSERT INTO "projects" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 23 Dec 2011 03:53:18 UTC +00:00], ["title", nil], ["updated_at", Fri, 23 Dec 2011 03:53:18 UTC +00:00], ["user_id", 1]]
34182
+ SQL (0.5ms) INSERT INTO "nicknames" ("created_at", "nick", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 23 Dec 2011 03:53:18 UTC +00:00], ["nick", nil], ["updated_at", Fri, 23 Dec 2011 03:53:18 UTC +00:00], ["user_id", 1]]
34183
+ SQL (0.3ms) INSERT INTO "nicknames" ("created_at", "nick", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 23 Dec 2011 03:53:18 UTC +00:00], ["nick", nil], ["updated_at", Fri, 23 Dec 2011 03:53:18 UTC +00:00], ["user_id", 1]]
34184
+ SQL (0.3ms) INSERT INTO "nicknames" ("created_at", "nick", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 23 Dec 2011 03:53:18 UTC +00:00], ["nick", nil], ["updated_at", Fri, 23 Dec 2011 03:53:18 UTC +00:00], ["user_id", 1]]
34185
+  (0.1ms) RELEASE SAVEPOINT active_record_1
34186
+ User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 1
34187
+ Address Load (0.1ms) SELECT "addresses".* FROM "addresses" WHERE "addresses"."user_id" = 1 LIMIT 1
34188
+ Picture Load (0.1ms) SELECT "pictures".* FROM "pictures" WHERE "pictures"."user_id" = 1 LIMIT 1
34189
+  (0.1ms) SELECT COUNT(*) FROM "projects" WHERE "projects"."user_id" = 1
34190
+  (0.1ms) SELECT COUNT(*) FROM "nicknames" WHERE "nicknames"."user_id" = 1
34191
+  (0.0ms) SAVEPOINT active_record_1
34192
+  (0.0ms) RELEASE SAVEPOINT active_record_1
34193
+  (0.0ms) SAVEPOINT active_record_1
34194
+  (0.0ms) RELEASE SAVEPOINT active_record_1
34195
+  (0.0ms) SAVEPOINT active_record_1
34196
+  (0.0ms) RELEASE SAVEPOINT active_record_1
34197
+  (0.0ms) SAVEPOINT active_record_1
34198
+  (0.0ms) RELEASE SAVEPOINT active_record_1
34199
+  (0.0ms) SAVEPOINT active_record_1
34200
+  (0.0ms) RELEASE SAVEPOINT active_record_1
34201
+  (0.0ms) SAVEPOINT active_record_1
34202
+  (0.0ms) RELEASE SAVEPOINT active_record_1
34203
+  (0.1ms) SAVEPOINT active_record_1
34204
+  (0.0ms) RELEASE SAVEPOINT active_record_1
34205
+  (0.0ms) SAVEPOINT active_record_1
34206
+  (0.0ms) RELEASE SAVEPOINT active_record_1
34207
+  (0.0ms) SAVEPOINT active_record_1
34208
+  (0.0ms) RELEASE SAVEPOINT active_record_1
34209
+  (0.0ms) SAVEPOINT active_record_1
34210
+  (0.0ms) RELEASE SAVEPOINT active_record_1
34211
+  (0.0ms) SAVEPOINT active_record_1
34212
+  (0.0ms) RELEASE SAVEPOINT active_record_1
34213
+  (0.0ms) SAVEPOINT active_record_1
34214
+  (0.0ms) RELEASE SAVEPOINT active_record_1
34215
+  (0.0ms) SAVEPOINT active_record_1
34216
+  (0.0ms) RELEASE SAVEPOINT active_record_1
34217
+  (0.0ms) SAVEPOINT active_record_1
34218
+  (0.0ms) RELEASE SAVEPOINT active_record_1
34219
+  (0.0ms) SAVEPOINT active_record_1
34220
+  (0.0ms) RELEASE SAVEPOINT active_record_1
34221
+  (0.0ms) SAVEPOINT active_record_1
34222
+  (0.0ms) RELEASE SAVEPOINT active_record_1
34223
+  (0.0ms) SAVEPOINT active_record_1
34224
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 23 Dec 2011 03:53:19 UTC +00:00], ["name", nil], ["updated_at", Fri, 23 Dec 2011 03:53:19 UTC +00:00]]
34225
+ SQL (0.4ms) INSERT INTO "addresses" ("city", "created_at", "street", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["city", nil], ["created_at", Fri, 23 Dec 2011 03:53:19 UTC +00:00], ["street", nil], ["updated_at", Fri, 23 Dec 2011 03:53:19 UTC +00:00], ["user_id", 1]]
34226
+ SQL (0.3ms) INSERT INTO "pictures" ("created_at", "path", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 23 Dec 2011 03:53:19 UTC +00:00], ["path", nil], ["updated_at", Fri, 23 Dec 2011 03:53:19 UTC +00:00], ["user_id", 1]]
34227
+ SQL (0.3ms) INSERT INTO "projects" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 23 Dec 2011 03:53:19 UTC +00:00], ["title", nil], ["updated_at", Fri, 23 Dec 2011 03:53:19 UTC +00:00], ["user_id", 1]]
34228
+ SQL (0.3ms) INSERT INTO "nicknames" ("created_at", "nick", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 23 Dec 2011 03:53:19 UTC +00:00], ["nick", nil], ["updated_at", Fri, 23 Dec 2011 03:53:19 UTC +00:00], ["user_id", 1]]
34229
+ SQL (0.3ms) INSERT INTO "nicknames" ("created_at", "nick", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 23 Dec 2011 03:53:19 UTC +00:00], ["nick", nil], ["updated_at", Fri, 23 Dec 2011 03:53:19 UTC +00:00], ["user_id", 1]]
34230
+ SQL (0.5ms) INSERT INTO "nicknames" ("created_at", "nick", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 23 Dec 2011 03:53:19 UTC +00:00], ["nick", nil], ["updated_at", Fri, 23 Dec 2011 03:53:19 UTC +00:00], ["user_id", 1]]
34231
+  (0.1ms) RELEASE SAVEPOINT active_record_1
34232
+ User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 1
34233
+ Address Load (0.1ms) SELECT "addresses".* FROM "addresses" WHERE "addresses"."user_id" = 1 LIMIT 1
34234
+ Picture Load (0.1ms) SELECT "pictures".* FROM "pictures" WHERE "pictures"."user_id" = 1 LIMIT 1
34235
+  (0.1ms) SELECT COUNT(*) FROM "projects" WHERE "projects"."user_id" = 1
34236
+  (0.1ms) SELECT COUNT(*) FROM "nicknames" WHERE "nicknames"."user_id" = 1
34237
+  (0.1ms) SELECT COUNT(*) FROM "projects" WHERE "projects"."user_id" = 1
34238
+  (0.0ms) SAVEPOINT active_record_1
34239
+  (0.0ms) RELEASE SAVEPOINT active_record_1
34240
+  (0.0ms) SAVEPOINT active_record_1
34241
+  (0.0ms) RELEASE SAVEPOINT active_record_1
34242
+  (0.0ms) SAVEPOINT active_record_1
34243
+  (0.0ms) RELEASE SAVEPOINT active_record_1
34244
+  (0.0ms) SAVEPOINT active_record_1
34245
+  (0.0ms) RELEASE SAVEPOINT active_record_1
34246
+  (0.0ms) SAVEPOINT active_record_1
34247
+  (0.0ms) RELEASE SAVEPOINT active_record_1
34248
+  (0.0ms) SAVEPOINT active_record_1
34249
+  (0.0ms) RELEASE SAVEPOINT active_record_1
34250
+  (0.0ms) SAVEPOINT active_record_1
34251
+  (0.0ms) RELEASE SAVEPOINT active_record_1
34252
+  (0.0ms) SAVEPOINT active_record_1
34253
+  (0.0ms) RELEASE SAVEPOINT active_record_1
34254
+  (0.1ms) SAVEPOINT active_record_1
34255
+  (0.1ms) RELEASE SAVEPOINT active_record_1
34256
+  (0.0ms) SAVEPOINT active_record_1
34257
+  (0.0ms) RELEASE SAVEPOINT active_record_1
34258
+  (0.1ms) SAVEPOINT active_record_1
34259
+  (0.0ms) RELEASE SAVEPOINT active_record_1
34260
+  (0.0ms) SAVEPOINT active_record_1
34261
+  (0.0ms) RELEASE SAVEPOINT active_record_1
34262
+  (0.0ms) SAVEPOINT active_record_1
34263
+  (0.0ms) RELEASE SAVEPOINT active_record_1
34264
+  (0.0ms) SAVEPOINT active_record_1
34265
+  (0.0ms) RELEASE SAVEPOINT active_record_1
34266
+  (0.0ms) SAVEPOINT active_record_1
34267
+  (0.0ms) RELEASE SAVEPOINT active_record_1
34268
+  (0.0ms) SAVEPOINT active_record_1
34269
+  (0.0ms) RELEASE SAVEPOINT active_record_1
34270
+  (0.0ms) SAVEPOINT active_record_1
34271
+  (0.0ms) RELEASE SAVEPOINT active_record_1
34272
+  (0.0ms) SAVEPOINT active_record_1
34273
+  (0.0ms) RELEASE SAVEPOINT active_record_1
34274
+  (0.0ms) SAVEPOINT active_record_1
34275
+  (0.0ms) RELEASE SAVEPOINT active_record_1
34276
+  (0.0ms) SAVEPOINT active_record_1
34277
+  (0.0ms) RELEASE SAVEPOINT active_record_1
34278
+  (0.0ms) SAVEPOINT active_record_1
34279
+ SQL (8.2ms) INSERT INTO "addresses" ("city", "created_at", "street", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["city", nil], ["created_at", Fri, 23 Dec 2011 03:55:14 UTC +00:00], ["street", "Highway 61"], ["updated_at", Fri, 23 Dec 2011 03:55:14 UTC +00:00], ["user_id", nil]]
34280
+  (0.1ms) RELEASE SAVEPOINT active_record_1
34281
+  (0.0ms) SAVEPOINT active_record_1
34282
+  (0.0ms) RELEASE SAVEPOINT active_record_1
34283
+  (0.0ms) SAVEPOINT active_record_1
34284
+  (0.0ms) RELEASE SAVEPOINT active_record_1
34285
+  (0.0ms) SAVEPOINT active_record_1
34286
+  (0.0ms) RELEASE SAVEPOINT active_record_1
34287
+  (0.1ms) SAVEPOINT active_record_1
34288
+ SQL (0.8ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 23 Dec 2011 03:55:14 UTC +00:00], ["name", nil], ["updated_at", Fri, 23 Dec 2011 03:55:14 UTC +00:00]]
34289
+  (0.2ms) UPDATE "addresses" SET "user_id" = 1, "updated_at" = '2011-12-23 03:55:14.804707' WHERE "addresses"."id" = 1
34290
+ SQL (0.4ms) INSERT INTO "pictures" ("created_at", "path", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 23 Dec 2011 03:55:14 UTC +00:00], ["path", nil], ["updated_at", Fri, 23 Dec 2011 03:55:14 UTC +00:00], ["user_id", 1]]
34291
+ SQL (1.1ms) INSERT INTO "projects" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 23 Dec 2011 03:55:14 UTC +00:00], ["title", nil], ["updated_at", Fri, 23 Dec 2011 03:55:14 UTC +00:00], ["user_id", 1]]
34292
+ SQL (0.4ms) INSERT INTO "nicknames" ("created_at", "nick", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 23 Dec 2011 03:55:14 UTC +00:00], ["nick", nil], ["updated_at", Fri, 23 Dec 2011 03:55:14 UTC +00:00], ["user_id", 1]]
34293
+ SQL (0.2ms) INSERT INTO "nicknames" ("created_at", "nick", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 23 Dec 2011 03:55:14 UTC +00:00], ["nick", nil], ["updated_at", Fri, 23 Dec 2011 03:55:14 UTC +00:00], ["user_id", 1]]
34294
+ SQL (0.2ms) INSERT INTO "nicknames" ("created_at", "nick", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 23 Dec 2011 03:55:14 UTC +00:00], ["nick", nil], ["updated_at", Fri, 23 Dec 2011 03:55:14 UTC +00:00], ["user_id", 1]]
34295
+  (0.1ms) RELEASE SAVEPOINT active_record_1
34296
+ User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 1
34297
+ Address Load (0.1ms) SELECT "addresses".* FROM "addresses" WHERE "addresses"."user_id" = 1 LIMIT 1
34298
+ Picture Load (0.1ms) SELECT "pictures".* FROM "pictures" WHERE "pictures"."user_id" = 1 LIMIT 1
34299
+  (0.1ms) SELECT COUNT(*) FROM "projects" WHERE "projects"."user_id" = 1
34300
+  (0.1ms) SELECT COUNT(*) FROM "nicknames" WHERE "nicknames"."user_id" = 1
34301
+  (0.0ms) SAVEPOINT active_record_1
34302
+  (0.0ms) RELEASE SAVEPOINT active_record_1
34303
+  (0.0ms) SAVEPOINT active_record_1
34304
+  (0.0ms) RELEASE SAVEPOINT active_record_1
34305
+  (0.0ms) SAVEPOINT active_record_1
34306
+  (0.0ms) RELEASE SAVEPOINT active_record_1
34307
+  (0.0ms) SAVEPOINT active_record_1
34308
+  (0.0ms) RELEASE SAVEPOINT active_record_1
34309
+  (0.0ms) SAVEPOINT active_record_1
34310
+  (0.0ms) RELEASE SAVEPOINT active_record_1
34311
+  (0.0ms) SAVEPOINT active_record_1
34312
+  (0.0ms) RELEASE SAVEPOINT active_record_1
34313
+  (0.0ms) SAVEPOINT active_record_1
34314
+  (0.0ms) RELEASE SAVEPOINT active_record_1
34315
+  (0.0ms) SAVEPOINT active_record_1
34316
+  (0.0ms) RELEASE SAVEPOINT active_record_1
34317
+  (0.0ms) SAVEPOINT active_record_1
34318
+  (0.0ms) RELEASE SAVEPOINT active_record_1
34319
+  (0.0ms) SAVEPOINT active_record_1
34320
+  (0.0ms) RELEASE SAVEPOINT active_record_1
34321
+  (0.0ms) SAVEPOINT active_record_1
34322
+  (0.0ms) RELEASE SAVEPOINT active_record_1
34323
+  (0.0ms) SAVEPOINT active_record_1
34324
+  (0.0ms) RELEASE SAVEPOINT active_record_1
34325
+  (0.0ms) SAVEPOINT active_record_1
34326
+  (0.0ms) RELEASE SAVEPOINT active_record_1
34327
+  (0.0ms) SAVEPOINT active_record_1
34328
+  (0.0ms) RELEASE SAVEPOINT active_record_1
34329
+  (0.0ms) SAVEPOINT active_record_1
34330
+  (0.0ms) RELEASE SAVEPOINT active_record_1
34331
+  (0.0ms) SAVEPOINT active_record_1
34332
+  (0.0ms) RELEASE SAVEPOINT active_record_1
34333
+  (0.0ms) SAVEPOINT active_record_1
34334
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 23 Dec 2011 03:55:14 UTC +00:00], ["name", nil], ["updated_at", Fri, 23 Dec 2011 03:55:14 UTC +00:00]]
34335
+ SQL (0.4ms) INSERT INTO "addresses" ("city", "created_at", "street", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["city", nil], ["created_at", Fri, 23 Dec 2011 03:55:14 UTC +00:00], ["street", nil], ["updated_at", Fri, 23 Dec 2011 03:55:14 UTC +00:00], ["user_id", 1]]
34336
+ SQL (0.3ms) INSERT INTO "pictures" ("created_at", "path", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 23 Dec 2011 03:55:14 UTC +00:00], ["path", nil], ["updated_at", Fri, 23 Dec 2011 03:55:14 UTC +00:00], ["user_id", 1]]
34337
+ SQL (0.3ms) INSERT INTO "projects" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 23 Dec 2011 03:55:14 UTC +00:00], ["title", nil], ["updated_at", Fri, 23 Dec 2011 03:55:14 UTC +00:00], ["user_id", 1]]
34338
+ SQL (0.3ms) INSERT INTO "nicknames" ("created_at", "nick", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 23 Dec 2011 03:55:14 UTC +00:00], ["nick", nil], ["updated_at", Fri, 23 Dec 2011 03:55:14 UTC +00:00], ["user_id", 1]]
34339
+ SQL (0.2ms) INSERT INTO "nicknames" ("created_at", "nick", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 23 Dec 2011 03:55:14 UTC +00:00], ["nick", nil], ["updated_at", Fri, 23 Dec 2011 03:55:14 UTC +00:00], ["user_id", 1]]
34340
+ SQL (0.2ms) INSERT INTO "nicknames" ("created_at", "nick", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Fri, 23 Dec 2011 03:55:14 UTC +00:00], ["nick", nil], ["updated_at", Fri, 23 Dec 2011 03:55:14 UTC +00:00], ["user_id", 1]]
34341
+  (0.0ms) RELEASE SAVEPOINT active_record_1
34342
+ User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 1
34343
+ Address Load (0.1ms) SELECT "addresses".* FROM "addresses" WHERE "addresses"."user_id" = 1 LIMIT 1
34344
+ Picture Load (0.1ms) SELECT "pictures".* FROM "pictures" WHERE "pictures"."user_id" = 1 LIMIT 1
34345
+  (0.1ms) SELECT COUNT(*) FROM "projects" WHERE "projects"."user_id" = 1
34346
+  (0.1ms) SELECT COUNT(*) FROM "nicknames" WHERE "nicknames"."user_id" = 1
34347
+  (0.1ms) SELECT COUNT(*) FROM "projects" WHERE "projects"."user_id" = 1
34348
+  (0.0ms) SAVEPOINT active_record_1
34349
+  (0.0ms) RELEASE SAVEPOINT active_record_1
34350
+  (0.0ms) SAVEPOINT active_record_1
34351
+  (0.0ms) RELEASE SAVEPOINT active_record_1
34352
+  (0.0ms) SAVEPOINT active_record_1
34353
+  (0.0ms) RELEASE SAVEPOINT active_record_1
34354
+  (0.0ms) SAVEPOINT active_record_1
34355
+  (0.0ms) RELEASE SAVEPOINT active_record_1
34356
+  (0.0ms) SAVEPOINT active_record_1
34357
+  (0.0ms) RELEASE SAVEPOINT active_record_1
34358
+  (0.0ms) SAVEPOINT active_record_1
34359
+  (0.0ms) RELEASE SAVEPOINT active_record_1
34360
+  (0.0ms) SAVEPOINT active_record_1
34361
+  (0.0ms) RELEASE SAVEPOINT active_record_1
34362
+  (0.0ms) SAVEPOINT active_record_1
34363
+  (0.0ms) RELEASE SAVEPOINT active_record_1
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: auto_build
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.1
4
+ version: 0.4.2
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -14,7 +14,7 @@ default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: rails
17
- requirement: &2168926060 !ruby/object:Gem::Requirement
17
+ requirement: &2168685720 !ruby/object:Gem::Requirement
18
18
  none: false
19
19
  requirements:
20
20
  - - ~>
@@ -22,10 +22,10 @@ dependencies:
22
22
  version: 3.1.3
23
23
  type: :runtime
24
24
  prerelease: false
25
- version_requirements: *2168926060
25
+ version_requirements: *2168685720
26
26
  - !ruby/object:Gem::Dependency
27
27
  name: sqlite3
28
- requirement: &2168925640 !ruby/object:Gem::Requirement
28
+ requirement: &2168685300 !ruby/object:Gem::Requirement
29
29
  none: false
30
30
  requirements:
31
31
  - - ! '>='
@@ -33,7 +33,7 @@ dependencies:
33
33
  version: '0'
34
34
  type: :development
35
35
  prerelease: false
36
- version_requirements: *2168925640
36
+ version_requirements: *2168685300
37
37
  description: Automatically initialize associations in Rails models
38
38
  email:
39
39
  - federico.builes@gmail.com
@@ -124,7 +124,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
124
124
  version: '0'
125
125
  segments:
126
126
  - 0
127
- hash: -942506209396493694
127
+ hash: -1539135804312300733
128
128
  required_rubygems_version: !ruby/object:Gem::Requirement
129
129
  none: false
130
130
  requirements:
@@ -133,7 +133,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
133
133
  version: '0'
134
134
  segments:
135
135
  - 0
136
- hash: -942506209396493694
136
+ hash: -1539135804312300733
137
137
  requirements: []
138
138
  rubyforge_project:
139
139
  rubygems_version: 1.6.2