easy_union_set 0.0.1 → 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 505c9515d5a7ebd4b5ca053729d4ce29e22fa838
4
- data.tar.gz: b593d5286d5ad9cb30e6af33bac0844f14514009
3
+ metadata.gz: f5a3773ff66fc517649dd1fb8a0b0f09d792f888
4
+ data.tar.gz: 61ad7c1382b018f72e23051fed4eb08ef2afa1cc
5
5
  SHA512:
6
- metadata.gz: 9bbe19f941b51adacbd142ca28e00449dd3d83f26e09c20e5cbb4ca5b6076d507c8939bfba5ed04b4e628492e5dd01d257b536ff008ee379f88e27286aa47b98
7
- data.tar.gz: 234e3d950bbaadeae9db49bcb7ba58c844367b93408a9a45da8551e960918270c9679ecc86ce27f077973f127c8c3324d0ba5064b3aa8f389c38149d712a57fd
6
+ metadata.gz: b9e5d3b6febfba4239b338c485c1765608a3fab1055470577b9440b1b3e829289932ec49f750dc237049758ea37e325c94741efa6592a3883492e53db66e5c9b
7
+ data.tar.gz: 273c88a7454da2489850d4596a9ee0b5dfea6bb4237c25c70598349a0086fcc37e1bf334d9a71f7dc3a3b8a984503faf273826d0f5bed6d9d9e4f0030f2c32f2
@@ -4,23 +4,29 @@ module EasyUnionSet
4
4
  module GroupMethods
5
5
 
6
6
  def & ar_rel
7
- set = self.intersect(ar_rel)
8
- table_alias = arel_table.create_table_alias(set, table_name)
9
-
10
- ancestors.first.from(table_alias)
7
+ case ar_rel
8
+ when ActiveRecord::Relation
9
+ set = self.intersect(ar_rel)
10
+ table_alias = arel_table.create_table_alias(set, table_name)
11
+
12
+ ancestors.first.from(table_alias)
13
+ else
14
+ super
15
+ end
11
16
  end
12
17
 
13
18
  def | ar_rel
14
- union = case ar_rel
15
- when ActiveRecord::Relation
16
- self.union(ar_rel)
17
- when Hash
18
- ar_rel.assert_valid_keys(:all)
19
- self.union(:all, ar_rel[:all])
20
- end
19
+ case ar_rel
20
+ when ActiveRecord::Relation
21
+ union = self.union(ar_rel)
22
+ when Hash
23
+ ar_rel.assert_valid_keys(:all)
24
+ union = self.union(:all, ar_rel[:all])
25
+ else
26
+ return super
27
+ end
21
28
 
22
29
  table_alias = arel_table.create_table_alias(union, table_name)
23
-
24
30
  ancestors.first.from(table_alias)
25
31
  end
26
32
  end
@@ -1,3 +1,3 @@
1
1
  module EasyUnionSet
2
- VERSION = "0.0.1"
2
+ VERSION = "1.0.0"
3
3
  end
@@ -0,0 +1,2 @@
1
+ class User < ActiveRecord::Base
2
+ end
Binary file
@@ -0,0 +1,9 @@
1
+ class CreateUsers < ActiveRecord::Migration
2
+ def change
3
+ create_table :users do |t|
4
+ t.string :name
5
+
6
+ t.timestamps
7
+ end
8
+ end
9
+ end
@@ -11,7 +11,7 @@
11
11
  #
12
12
  # It's strongly recommended that you check this file into your version control system.
13
13
 
14
- ActiveRecord::Schema.define(version: 20140804121508) do
14
+ ActiveRecord::Schema.define(version: 20140804181328) do
15
15
 
16
16
  create_table "projects", force: true do |t|
17
17
  t.string "title"
@@ -21,4 +21,10 @@ ActiveRecord::Schema.define(version: 20140804121508) do
21
21
  t.datetime "updated_at"
22
22
  end
23
23
 
24
+ create_table "users", force: true do |t|
25
+ t.string "name"
26
+ t.datetime "created_at"
27
+ t.datetime "updated_at"
28
+ end
29
+
24
30
  end
@@ -3897,3 +3897,661 @@ SQLite3::SQLException: near "NULL": syntax error: SELECT "projects".* FROM NULL
3897
3897
   (0.0ms) RELEASE SAVEPOINT active_record_1
3898
3898
   (0.3ms) SELECT COUNT(*) FROM ( SELECT "projects".* FROM ( SELECT "projects".* FROM "projects" WHERE (title LIKE '%proj%') INTERSECT SELECT "projects".* FROM "projects" WHERE (description LIKE '%proj%') ) "projects" INTERSECT SELECT "projects".* FROM "projects" WHERE (category LIKE 'blahblah') ) "projects"
3899
3899
   (0.4ms) rollback transaction
3900
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
3901
+  (0.1ms) begin transaction
3902
+  (0.1ms) rollback transaction
3903
+  (0.1ms) begin transaction
3904
+  (0.1ms) SAVEPOINT active_record_1
3905
+ SQL (1.2ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "implement world-class solutions"], ["created_at", "2014-08-04 14:54:31.580842"], ["description", "Atque qui sint sequi alias sit."], ["title", "array"], ["updated_at", "2014-08-04 14:54:31.580842"]]
3906
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3907
+  (0.1ms) SAVEPOINT active_record_1
3908
+ SQL (0.9ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "mesh ubiquitous architectures"], ["created_at", "2014-08-04 14:54:31.587769"], ["description", "Omnis eos quas quidem ut."], ["title", "firewall"], ["updated_at", "2014-08-04 14:54:31.587769"]]
3909
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3910
+  (0.0ms) SAVEPOINT active_record_1
3911
+ SQL (0.1ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "recontextualize e-business schemas"], ["created_at", "2014-08-04 14:54:31.590262"], ["description", "Animi nihil mollitia expedita."], ["title", "hard drive"], ["updated_at", "2014-08-04 14:54:31.590262"]]
3912
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3913
+  (0.1ms) SAVEPOINT active_record_1
3914
+ SQL (0.1ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "visualize back-end partnerships"], ["created_at", "2014-08-04 14:54:31.591478"], ["description", "Iure similique officiis quasi quia et qui."], ["title", "feed"], ["updated_at", "2014-08-04 14:54:31.591478"]]
3915
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3916
+  (0.0ms) SAVEPOINT active_record_1
3917
+ SQL (0.1ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "scale clicks-and-mortar e-markets"], ["created_at", "2014-08-04 14:54:31.592538"], ["description", "Magni nostrum voluptatum expedita ea quod vitae distinctio a."], ["title", "bandwidth"], ["updated_at", "2014-08-04 14:54:31.592538"]]
3918
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3919
+  (0.0ms) SAVEPOINT active_record_1
3920
+ SQL (0.1ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "orchestrate transparent models"], ["created_at", "2014-08-04 14:54:31.593527"], ["description", "Dolorum enim nihil amet eum vel nulla labore."], ["title", "program"], ["updated_at", "2014-08-04 14:54:31.593527"]]
3921
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3922
+  (0.1ms) SAVEPOINT active_record_1
3923
+ SQL (0.1ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "matrix world-class technologies"], ["created_at", "2014-08-04 14:54:31.594976"], ["description", "Iste sunt ullam sapiente atque ratione ipsa."], ["title", "application"], ["updated_at", "2014-08-04 14:54:31.594976"]]
3924
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3925
+  (0.1ms) SAVEPOINT active_record_1
3926
+ SQL (0.1ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "leverage clicks-and-mortar supply-chains"], ["created_at", "2014-08-04 14:54:31.596693"], ["description", "Error corrupti id porro est reiciendis."], ["title", "application"], ["updated_at", "2014-08-04 14:54:31.596693"]]
3927
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3928
+  (0.0ms) SAVEPOINT active_record_1
3929
+ SQL (0.1ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "seize ubiquitous technologies"], ["created_at", "2014-08-04 14:54:31.598018"], ["description", "Impedit qui corporis id expedita adipisci blanditiis."], ["title", "system"], ["updated_at", "2014-08-04 14:54:31.598018"]]
3930
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3931
+  (0.0ms) SAVEPOINT active_record_1
3932
+ SQL (0.1ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "mesh killer networks"], ["created_at", "2014-08-04 14:54:31.599172"], ["description", "Asperiores qui aut unde."], ["title", "alarm"], ["updated_at", "2014-08-04 14:54:31.599172"]]
3933
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3934
+  (0.6ms) rollback transaction
3935
+  (0.1ms) begin transaction
3936
+  (0.1ms) SAVEPOINT active_record_1
3937
+ SQL (0.3ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "deploy open-source ROI"], ["created_at", "2014-08-04 14:54:31.606603"], ["description", "Explicabo libero accusantium vel et."], ["title", "capacitor"], ["updated_at", "2014-08-04 14:54:31.606603"]]
3938
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3939
+  (0.1ms) SAVEPOINT active_record_1
3940
+ SQL (0.3ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "matrix open-source infomediaries"], ["created_at", "2014-08-04 14:54:31.608490"], ["description", "Exercitationem praesentium id quis nostrum tempora."], ["title", "array"], ["updated_at", "2014-08-04 14:54:31.608490"]]
3941
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3942
+  (0.0ms) SAVEPOINT active_record_1
3943
+ SQL (0.1ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "engage collaborative paradigms"], ["created_at", "2014-08-04 14:54:31.610085"], ["description", "Ex saepe est quo."], ["title", "card"], ["updated_at", "2014-08-04 14:54:31.610085"]]
3944
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3945
+  (0.0ms) SAVEPOINT active_record_1
3946
+ SQL (0.1ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "benchmark collaborative solutions"], ["created_at", "2014-08-04 14:54:31.611217"], ["description", "Optio inventore consequatur eos nobis aliquam expedita."], ["title", "panel"], ["updated_at", "2014-08-04 14:54:31.611217"]]
3947
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3948
+  (0.1ms) SAVEPOINT active_record_1
3949
+ SQL (0.1ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "visualize distributed channels"], ["created_at", "2014-08-04 14:54:31.612396"], ["description", "Ea et eos et accusantium modi."], ["title", "protocol"], ["updated_at", "2014-08-04 14:54:31.612396"]]
3950
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3951
+  (0.0ms) SAVEPOINT active_record_1
3952
+ SQL (0.1ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "matrix 24/365 eyeballs"], ["created_at", "2014-08-04 14:54:31.613609"], ["description", "Numquam rem quam est blanditiis labore."], ["title", "application"], ["updated_at", "2014-08-04 14:54:31.613609"]]
3953
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3954
+  (0.1ms) SAVEPOINT active_record_1
3955
+ SQL (0.0ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "innovate synergistic paradigms"], ["created_at", "2014-08-04 14:54:31.614636"], ["description", "Et quo mollitia fuga sapiente nesciunt saepe nihil."], ["title", "transmitter"], ["updated_at", "2014-08-04 14:54:31.614636"]]
3956
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3957
+  (0.1ms) SAVEPOINT active_record_1
3958
+ SQL (0.1ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "engage strategic systems"], ["created_at", "2014-08-04 14:54:31.615917"], ["description", "Beatae sed nemo error cupiditate laboriosam ipsum dolorum."], ["title", "protocol"], ["updated_at", "2014-08-04 14:54:31.615917"]]
3959
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3960
+  (0.1ms) SAVEPOINT active_record_1
3961
+ SQL (0.1ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "matrix global platforms"], ["created_at", "2014-08-04 14:54:31.617584"], ["description", "Id error consequatur nobis."], ["title", "alarm"], ["updated_at", "2014-08-04 14:54:31.617584"]]
3962
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3963
+  (0.0ms) SAVEPOINT active_record_1
3964
+ SQL (0.1ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "whiteboard collaborative mindshare"], ["created_at", "2014-08-04 14:54:31.619264"], ["description", "Ad harum cupiditate consectetur repellat pariatur atque."], ["title", "application"], ["updated_at", "2014-08-04 14:54:31.619264"]]
3965
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3966
+  (0.5ms) rollback transaction
3967
+  (0.1ms) begin transaction
3968
+  (0.1ms) SAVEPOINT active_record_1
3969
+ SQL (0.3ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "monetize virtual web-readiness"], ["created_at", "2014-08-04 14:54:31.623770"], ["description", "In illum at fugit sit."], ["title", "microchip"], ["updated_at", "2014-08-04 14:54:31.623770"]]
3970
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3971
+  (0.1ms) SAVEPOINT active_record_1
3972
+ SQL (0.3ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "enable distributed e-business"], ["created_at", "2014-08-04 14:54:31.626039"], ["description", "Voluptate ut eius et illo accusamus id nobis natus."], ["title", "application"], ["updated_at", "2014-08-04 14:54:31.626039"]]
3973
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3974
+  (0.1ms) SAVEPOINT active_record_1
3975
+ SQL (0.1ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "monetize extensible platforms"], ["created_at", "2014-08-04 14:54:31.627719"], ["description", "Sapiente corrupti repellendus quis aspernatur itaque sequi quaerat unde."], ["title", "pixel"], ["updated_at", "2014-08-04 14:54:31.627719"]]
3976
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3977
+  (0.1ms) SAVEPOINT active_record_1
3978
+ SQL (0.1ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "enable virtual convergence"], ["created_at", "2014-08-04 14:54:31.629114"], ["description", "Ut velit voluptatem a molestiae qui excepturi maxime quaerat."], ["title", "sensor"], ["updated_at", "2014-08-04 14:54:31.629114"]]
3979
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3980
+  (0.0ms) SAVEPOINT active_record_1
3981
+ SQL (0.1ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "morph leading-edge e-services"], ["created_at", "2014-08-04 14:54:31.630414"], ["description", "Sit eaque iusto est voluptatem."], ["title", "microchip"], ["updated_at", "2014-08-04 14:54:31.630414"]]
3982
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3983
+  (0.1ms) SAVEPOINT active_record_1
3984
+ SQL (0.1ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "innovate robust e-business"], ["created_at", "2014-08-04 14:54:31.631766"], ["description", "Facere fuga repellat deleniti quibusdam iusto accusamus."], ["title", "system"], ["updated_at", "2014-08-04 14:54:31.631766"]]
3985
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3986
+  (0.1ms) SAVEPOINT active_record_1
3987
+ SQL (0.1ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "transition killer networks"], ["created_at", "2014-08-04 14:54:31.633082"], ["description", "Pariatur qui et quia."], ["title", "card"], ["updated_at", "2014-08-04 14:54:31.633082"]]
3988
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3989
+  (0.0ms) SAVEPOINT active_record_1
3990
+ SQL (0.1ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "innovate ubiquitous infomediaries"], ["created_at", "2014-08-04 14:54:31.634289"], ["description", "Animi qui doloremque natus sed nostrum dolores."], ["title", "system"], ["updated_at", "2014-08-04 14:54:31.634289"]]
3991
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3992
+  (0.0ms) SAVEPOINT active_record_1
3993
+ SQL (0.1ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "recontextualize dot-com mindshare"], ["created_at", "2014-08-04 14:54:31.635333"], ["description", "Nihil est ut rem occaecati voluptas necessitatibus."], ["title", "card"], ["updated_at", "2014-08-04 14:54:31.635333"]]
3994
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3995
+  (0.0ms) SAVEPOINT active_record_1
3996
+ SQL (0.1ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "matrix front-end markets"], ["created_at", "2014-08-04 14:54:31.636366"], ["description", "Officiis ad autem ipsum quia aut natus saepe ab."], ["title", "system"], ["updated_at", "2014-08-04 14:54:31.636366"]]
3997
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3998
+  (0.1ms) SAVEPOINT active_record_1
3999
+ SQL (0.1ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "extend bricks-and-clicks eyeballs"], ["created_at", "2014-08-04 14:54:31.637811"], ["description", "Quod sunt laboriosam et ab vel unde qui consequatur."], ["title", "program"], ["updated_at", "2014-08-04 14:54:31.637811"]]
4000
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4001
+  (0.1ms) SAVEPOINT active_record_1
4002
+ SQL (0.2ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "repurpose efficient functionalities"], ["created_at", "2014-08-04 14:54:31.639753"], ["description", "Quo nesciunt veritatis quod quibusdam."], ["title", "system"], ["updated_at", "2014-08-04 14:54:31.639753"]]
4003
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4004
+  (0.1ms) SAVEPOINT active_record_1
4005
+ SQL (0.1ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "mesh e-business e-commerce"], ["created_at", "2014-08-04 14:54:31.642136"], ["description", "Provident quasi enim voluptatem mollitia consequuntur quidem."], ["title", "panel"], ["updated_at", "2014-08-04 14:54:31.642136"]]
4006
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4007
+  (0.0ms) SAVEPOINT active_record_1
4008
+ SQL (0.1ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "visualize back-end technologies"], ["created_at", "2014-08-04 14:54:31.643636"], ["description", "Ut qui quae ad recusandae voluptas a minus dolor."], ["title", "circuit"], ["updated_at", "2014-08-04 14:54:31.643636"]]
4009
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4010
+  (0.1ms) SAVEPOINT active_record_1
4011
+ SQL (0.1ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "whiteboard vertical applications"], ["created_at", "2014-08-04 14:54:31.644973"], ["description", "Praesentium doloremque dicta fuga quo harum pariatur magnam voluptate."], ["title", "circuit"], ["updated_at", "2014-08-04 14:54:31.644973"]]
4012
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4013
+  (0.1ms) SAVEPOINT active_record_1
4014
+ SQL (0.1ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "embrace sticky web services"], ["created_at", "2014-08-04 14:54:31.646444"], ["description", "Blanditiis et ullam laborum omnis sint animi et necessitatibus."], ["title", "monitor"], ["updated_at", "2014-08-04 14:54:31.646444"]]
4015
+  (0.0ms) RELEASE SAVEPOINT active_record_1
4016
+  (0.0ms) SAVEPOINT active_record_1
4017
+ SQL (0.1ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "deliver integrated networks"], ["created_at", "2014-08-04 14:54:31.647720"], ["description", "Minima occaecati accusantium voluptatem at id qui."], ["title", "port"], ["updated_at", "2014-08-04 14:54:31.647720"]]
4018
+  (0.0ms) RELEASE SAVEPOINT active_record_1
4019
+  (0.0ms) SAVEPOINT active_record_1
4020
+ SQL (0.1ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "productize frictionless paradigms"], ["created_at", "2014-08-04 14:54:31.648734"], ["description", "Et quos eius maiores dignissimos."], ["title", "hard drive"], ["updated_at", "2014-08-04 14:54:31.648734"]]
4021
+  (0.0ms) RELEASE SAVEPOINT active_record_1
4022
+  (0.1ms) SAVEPOINT active_record_1
4023
+ SQL (0.1ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "utilize ubiquitous partnerships"], ["created_at", "2014-08-04 14:54:31.649943"], ["description", "Quia commodi consequatur voluptatibus."], ["title", "bandwidth"], ["updated_at", "2014-08-04 14:54:31.649943"]]
4024
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4025
+  (0.1ms) SAVEPOINT active_record_1
4026
+ SQL (0.1ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "morph back-end networks"], ["created_at", "2014-08-04 14:54:31.651930"], ["description", "Consequatur ad rerum cum ex provident et fugiat."], ["title", "bus"], ["updated_at", "2014-08-04 14:54:31.651930"]]
4027
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4028
+  (0.5ms) rollback transaction
4029
+  (0.1ms) begin transaction
4030
+  (0.1ms) SAVEPOINT active_record_1
4031
+ SQL (0.2ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "projectile"], ["created_at", "2014-08-04 14:54:31.657776"], ["description", "some proj"], ["title", "George's project"], ["updated_at", "2014-08-04 14:54:31.657776"]]
4032
+  (0.0ms) RELEASE SAVEPOINT active_record_1
4033
+ Project Load (0.1ms) SELECT "projects".* FROM "projects" WHERE (title LIKE '%proj%')
4034
+ Project Load (0.1ms) SELECT "projects".* FROM "projects" WHERE (description LIKE '%proj%')
4035
+ Project Load (0.1ms) SELECT "projects".* FROM "projects" WHERE (category LIKE '%proj%')
4036
+  (0.4ms) rollback transaction
4037
+  (0.0ms) begin transaction
4038
+  (0.0ms) SAVEPOINT active_record_1
4039
+ SQL (0.2ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "synthesize frictionless eyeballs"], ["created_at", "2014-08-04 14:54:31.661372"], ["description", "Pariatur aperiam fuga eos iusto ut cupiditate."], ["title", "George's project"], ["updated_at", "2014-08-04 14:54:31.661372"]]
4040
+  (0.0ms) RELEASE SAVEPOINT active_record_1
4041
+  (0.0ms) SAVEPOINT active_record_1
4042
+ SQL (0.2ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "productize out-of-the-box channels"], ["created_at", "2014-08-04 14:54:31.662743"], ["description", "some proj"], ["title", "protocol"], ["updated_at", "2014-08-04 14:54:31.662743"]]
4043
+  (0.0ms) RELEASE SAVEPOINT active_record_1
4044
+  (0.0ms) SAVEPOINT active_record_1
4045
+ SQL (0.1ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "projectile"], ["created_at", "2014-08-04 14:54:31.663953"], ["description", "Dolores tempore cum ad qui."], ["title", "port"], ["updated_at", "2014-08-04 14:54:31.663953"]]
4046
+  (0.0ms) RELEASE SAVEPOINT active_record_1
4047
+ Project Load (0.3ms) SELECT "projects".* FROM ( SELECT "projects".* FROM ( SELECT "projects".* FROM "projects" WHERE (title LIKE '%proj%') UNION SELECT "projects".* FROM "projects" WHERE (description LIKE '%proj%') ) "projects" UNION SELECT "projects".* FROM "projects" WHERE (category LIKE '%proj%') ) "projects"
4048
+  (0.5ms) rollback transaction
4049
+  (0.1ms) begin transaction
4050
+  (0.1ms) SAVEPOINT active_record_1
4051
+ SQL (0.2ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "projectile"], ["created_at", "2014-08-04 14:54:31.667348"], ["description", "some proj"], ["title", "George's project"], ["updated_at", "2014-08-04 14:54:31.667348"]]
4052
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4053
+ Project Load (0.2ms) SELECT "projects".* FROM ( SELECT "projects".* FROM ( SELECT "projects".* FROM "projects" WHERE (title LIKE '%proj%') UNION ALL SELECT "projects".* FROM "projects" WHERE (description LIKE '%proj%') ) "projects" UNION ALL SELECT "projects".* FROM "projects" WHERE (category LIKE '%proj%') ) "projects"
4054
+  (0.2ms) SELECT COUNT(*) FROM ( SELECT "projects".* FROM ( SELECT "projects".* FROM "projects" WHERE (title LIKE '%proj%') UNION ALL SELECT "projects".* FROM "projects" WHERE (description LIKE '%proj%') ) "projects" UNION ALL SELECT "projects".* FROM "projects" WHERE (category LIKE '%proj%') ) "projects"
4055
+  (0.5ms) rollback transaction
4056
+  (0.1ms) begin transaction
4057
+  (0.1ms) SAVEPOINT active_record_1
4058
+ SQL (0.3ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "projectile"], ["created_at", "2014-08-04 14:54:31.674905"], ["description", "some proj"], ["title", "George's project"], ["updated_at", "2014-08-04 14:54:31.674905"]]
4059
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4060
+ Project Load (0.4ms) SELECT "projects".* FROM ( SELECT "projects".* FROM ( SELECT "projects".* FROM "projects" WHERE (title LIKE '%proj%') INTERSECT SELECT "projects".* FROM "projects" WHERE (description LIKE '%proj%') ) "projects" INTERSECT SELECT "projects".* FROM "projects" WHERE (category LIKE '%proj%') ) "projects"
4061
+  (0.4ms) rollback transaction
4062
+  (0.1ms) begin transaction
4063
+  (0.1ms) SAVEPOINT active_record_1
4064
+ SQL (0.3ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "projectile"], ["created_at", "2014-08-04 14:54:31.679809"], ["description", "some proj"], ["title", "George's project"], ["updated_at", "2014-08-04 14:54:31.679809"]]
4065
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4066
+  (0.4ms) SELECT COUNT(*) FROM ( SELECT "projects".* FROM ( SELECT "projects".* FROM "projects" WHERE (title LIKE '%proj%') INTERSECT SELECT "projects".* FROM "projects" WHERE (description LIKE '%proj%') ) "projects" INTERSECT SELECT "projects".* FROM "projects" WHERE (category LIKE 'blahblah') ) "projects"
4067
+  (0.4ms) rollback transaction
4068
+  (0.1ms) begin transaction
4069
+ SQL (0.4ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "orchestrate efficient channels"], ["created_at", "2014-08-04 14:55:28.752818"], ["description", "Rerum sequi rerum molestias asperiores ab amet unde voluptatibus."], ["title", "panel"], ["updated_at", "2014-08-04 14:55:28.752818"]]
4070
+  (9.1ms) commit transaction
4071
+  (0.1ms) begin transaction
4072
+ SQL (0.4ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "monetize B2C convergence"], ["created_at", "2014-08-04 14:55:28.766976"], ["description", "Reprehenderit dolores aspernatur a soluta perferendis libero occaecati non."], ["title", "pixel"], ["updated_at", "2014-08-04 14:55:28.766976"]]
4073
+  (1.1ms) commit transaction
4074
+  (0.1ms) begin transaction
4075
+ SQL (0.4ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "exploit wireless applications"], ["created_at", "2014-08-04 14:55:28.771780"], ["description", "Quia officia alias ducimus labore cumque."], ["title", "circuit"], ["updated_at", "2014-08-04 14:55:28.771780"]]
4076
+  (1.0ms) commit transaction
4077
+  (0.1ms) begin transaction
4078
+ SQL (0.3ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "innovate cutting-edge deliverables"], ["created_at", "2014-08-04 14:55:28.775345"], ["description", "Aut odio rerum possimus."], ["title", "application"], ["updated_at", "2014-08-04 14:55:28.775345"]]
4079
+  (0.9ms) commit transaction
4080
+  (0.1ms) begin transaction
4081
+ SQL (0.3ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "repurpose sexy content"], ["created_at", "2014-08-04 14:55:28.778696"], ["description", "Aut similique quae ipsa eum consectetur sed sint."], ["title", "bus"], ["updated_at", "2014-08-04 14:55:28.778696"]]
4082
+  (0.8ms) commit transaction
4083
+  (0.1ms) begin transaction
4084
+ SQL (0.3ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "productize front-end systems"], ["created_at", "2014-08-04 14:55:28.781851"], ["description", "Iusto saepe est debitis voluptate provident eos."], ["title", "bus"], ["updated_at", "2014-08-04 14:55:28.781851"]]
4085
+  (0.7ms) commit transaction
4086
+  (0.1ms) begin transaction
4087
+ SQL (0.4ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "leverage robust channels"], ["created_at", "2014-08-04 14:55:28.785244"], ["description", "Dignissimos alias ut unde quia."], ["title", "bandwidth"], ["updated_at", "2014-08-04 14:55:28.785244"]]
4088
+  (0.8ms) commit transaction
4089
+  (0.1ms) begin transaction
4090
+ SQL (0.4ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "unleash innovative applications"], ["created_at", "2014-08-04 14:55:28.788894"], ["description", "In voluptatibus aut natus quos in ut eos vel."], ["title", "hard drive"], ["updated_at", "2014-08-04 14:55:28.788894"]]
4091
+  (1.5ms) commit transaction
4092
+  (0.1ms) begin transaction
4093
+ SQL (0.3ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "drive next-generation e-commerce"], ["created_at", "2014-08-04 14:55:28.793197"], ["description", "Deleniti porro eos minima natus quia."], ["title", "firewall"], ["updated_at", "2014-08-04 14:55:28.793197"]]
4094
+  (0.8ms) commit transaction
4095
+  (0.1ms) begin transaction
4096
+ SQL (0.2ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "redefine dot-com functionalities"], ["created_at", "2014-08-04 14:55:28.796569"], ["description", "Ut similique dolorum expedita et suscipit voluptas eum."], ["title", "protocol"], ["updated_at", "2014-08-04 14:55:28.796569"]]
4097
+  (0.8ms) commit transaction
4098
+  (0.1ms) begin transaction
4099
+ SQL (0.2ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "leverage granular e-commerce"], ["created_at", "2014-08-04 14:55:28.799123"], ["description", "Aut et eius qui iste."], ["title", "bandwidth"], ["updated_at", "2014-08-04 14:55:28.799123"]]
4100
+  (0.7ms) commit transaction
4101
+  (0.1ms) begin transaction
4102
+ SQL (0.3ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "grow interactive mindshare"], ["created_at", "2014-08-04 14:55:28.801745"], ["description", "Animi ipsam et et similique omnis ut beatae."], ["title", "circuit"], ["updated_at", "2014-08-04 14:55:28.801745"]]
4103
+  (0.7ms) commit transaction
4104
+  (0.2ms) begin transaction
4105
+ SQL (0.6ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "iterate dynamic channels"], ["created_at", "2014-08-04 14:55:28.805894"], ["description", "Nesciunt doloremque aut sit."], ["title", "array"], ["updated_at", "2014-08-04 14:55:28.805894"]]
4106
+  (1.3ms) commit transaction
4107
+  (0.1ms) begin transaction
4108
+ SQL (0.5ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "generate B2B solutions"], ["created_at", "2014-08-04 14:55:28.811406"], ["description", "Nihil ducimus recusandae natus quia at veniam fugiat."], ["title", "driver"], ["updated_at", "2014-08-04 14:55:28.811406"]]
4109
+  (1.2ms) commit transaction
4110
+  (0.1ms) begin transaction
4111
+ SQL (0.2ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "revolutionize magnetic architectures"], ["created_at", "2014-08-04 14:55:28.815675"], ["description", "Velit odit ullam laboriosam cumque natus quae."], ["title", "system"], ["updated_at", "2014-08-04 14:55:28.815675"]]
4112
+  (0.8ms) commit transaction
4113
+  (0.1ms) begin transaction
4114
+ SQL (0.2ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "deliver proactive experiences"], ["created_at", "2014-08-04 14:55:28.818257"], ["description", "Sint rerum commodi libero nisi est quam suscipit."], ["title", "capacitor"], ["updated_at", "2014-08-04 14:55:28.818257"]]
4115
+  (0.7ms) commit transaction
4116
+  (0.1ms) begin transaction
4117
+ SQL (0.2ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "redefine extensible e-tailers"], ["created_at", "2014-08-04 14:55:28.820697"], ["description", "Voluptas quas eos veniam dolore enim ut."], ["title", "capacitor"], ["updated_at", "2014-08-04 14:55:28.820697"]]
4118
+  (0.8ms) commit transaction
4119
+  (0.1ms) begin transaction
4120
+ SQL (0.2ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "mesh one-to-one vortals"], ["created_at", "2014-08-04 14:55:28.823081"], ["description", "Culpa et velit ipsum expedita ut unde."], ["title", "firewall"], ["updated_at", "2014-08-04 14:55:28.823081"]]
4121
+  (0.7ms) commit transaction
4122
+  (0.1ms) begin transaction
4123
+ SQL (0.2ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "whiteboard virtual functionalities"], ["created_at", "2014-08-04 14:55:28.825585"], ["description", "Similique aut nesciunt non est deleniti."], ["title", "circuit"], ["updated_at", "2014-08-04 14:55:28.825585"]]
4124
+  (0.7ms) commit transaction
4125
+  (0.1ms) begin transaction
4126
+ SQL (0.4ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "optimize wireless markets"], ["created_at", "2014-08-04 14:55:28.828237"], ["description", "Doloremque similique nisi dolorem asperiores cumque occaecati et eum."], ["title", "interface"], ["updated_at", "2014-08-04 14:55:28.828237"]]
4127
+  (0.9ms) commit transaction
4128
+  (0.1ms) begin transaction
4129
+ SQL (0.3ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "streamline frictionless mindshare"], ["created_at", "2014-08-04 14:55:28.831813"], ["description", "Reprehenderit reiciendis est mollitia nemo aut rem sunt."], ["title", "capacitor"], ["updated_at", "2014-08-04 14:55:28.831813"]]
4130
+  (0.6ms) commit transaction
4131
+  (0.1ms) begin transaction
4132
+ SQL (0.3ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "enhance user-centric channels"], ["created_at", "2014-08-04 14:55:28.835249"], ["description", "Quae architecto mollitia consequuntur nisi."], ["title", "alarm"], ["updated_at", "2014-08-04 14:55:28.835249"]]
4133
+  (0.7ms) commit transaction
4134
+  (0.2ms) begin transaction
4135
+ SQL (0.4ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "matrix strategic synergies"], ["created_at", "2014-08-04 14:55:28.839559"], ["description", "Nihil molestiae distinctio consequuntur."], ["title", "driver"], ["updated_at", "2014-08-04 14:55:28.839559"]]
4136
+  (1.0ms) commit transaction
4137
+  (0.1ms) begin transaction
4138
+ SQL (0.4ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "innovate integrated e-tailers"], ["created_at", "2014-08-04 14:55:28.844282"], ["description", "Enim aut nobis ad aliquid excepturi eaque."], ["title", "system"], ["updated_at", "2014-08-04 14:55:28.844282"]]
4139
+  (0.9ms) commit transaction
4140
+  (0.1ms) begin transaction
4141
+ SQL (0.3ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "deploy rich metrics"], ["created_at", "2014-08-04 14:55:28.848715"], ["description", "Minus numquam sint minima nostrum omnis voluptatem vel."], ["title", "alarm"], ["updated_at", "2014-08-04 14:55:28.848715"]]
4142
+  (0.8ms) commit transaction
4143
+  (0.1ms) begin transaction
4144
+ SQL (0.3ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "monetize B2B metrics"], ["created_at", "2014-08-04 14:55:28.851871"], ["description", "Esse praesentium sed autem quia numquam tenetur."], ["title", "capacitor"], ["updated_at", "2014-08-04 14:55:28.851871"]]
4145
+  (0.8ms) commit transaction
4146
+  (0.1ms) begin transaction
4147
+ SQL (0.2ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "brand bleeding-edge infomediaries"], ["created_at", "2014-08-04 14:55:28.854920"], ["description", "Nesciunt eligendi sint voluptatem quas doloremque officiis."], ["title", "capacitor"], ["updated_at", "2014-08-04 14:55:28.854920"]]
4148
+  (0.8ms) commit transaction
4149
+  (0.1ms) begin transaction
4150
+ SQL (0.2ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "generate efficient web services"], ["created_at", "2014-08-04 14:55:28.857552"], ["description", "Sed natus eos numquam iusto."], ["title", "microchip"], ["updated_at", "2014-08-04 14:55:28.857552"]]
4151
+  (0.7ms) commit transaction
4152
+  (0.0ms) begin transaction
4153
+ SQL (0.3ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "optimize killer platforms"], ["created_at", "2014-08-04 14:55:28.860029"], ["description", "Cum aut ea asperiores occaecati rem et."], ["title", "array"], ["updated_at", "2014-08-04 14:55:28.860029"]]
4154
+  (0.7ms) commit transaction
4155
+  (0.1ms) begin transaction
4156
+ SQL (0.3ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "generate value-added eyeballs"], ["created_at", "2014-08-04 14:55:28.862751"], ["description", "Magni id suscipit dolores."], ["title", "hard drive"], ["updated_at", "2014-08-04 14:55:28.862751"]]
4157
+  (0.7ms) commit transaction
4158
+  (0.1ms) begin transaction
4159
+ SQL (0.3ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "cultivate e-business web services"], ["created_at", "2014-08-04 14:55:28.865826"], ["description", "Dolorum odio ex aut."], ["title", "circuit"], ["updated_at", "2014-08-04 14:55:28.865826"]]
4160
+  (0.6ms) commit transaction
4161
+  (0.1ms) begin transaction
4162
+ SQL (0.4ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "enable proactive supply-chains"], ["created_at", "2014-08-04 14:55:28.868715"], ["description", "Neque unde ad ratione reiciendis asperiores dolorem error."], ["title", "pixel"], ["updated_at", "2014-08-04 14:55:28.868715"]]
4163
+  (1.2ms) commit transaction
4164
+  (0.1ms) begin transaction
4165
+ SQL (0.3ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "disintermediate interactive portals"], ["created_at", "2014-08-04 14:55:28.873078"], ["description", "Voluptas qui repudiandae illo deleniti fuga assumenda rem."], ["title", "matrix"], ["updated_at", "2014-08-04 14:55:28.873078"]]
4166
+  (0.7ms) commit transaction
4167
+  (0.1ms) begin transaction
4168
+ SQL (0.3ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "recontextualize user-centric e-tailers"], ["created_at", "2014-08-04 14:55:28.876130"], ["description", "Est commodi nihil qui omnis est voluptatem voluptatem."], ["title", "alarm"], ["updated_at", "2014-08-04 14:55:28.876130"]]
4169
+  (0.7ms) commit transaction
4170
+  (0.1ms) begin transaction
4171
+ SQL (0.2ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "morph revolutionary mindshare"], ["created_at", "2014-08-04 14:55:28.878639"], ["description", "Expedita autem quo commodi."], ["title", "microchip"], ["updated_at", "2014-08-04 14:55:28.878639"]]
4172
+  (0.7ms) commit transaction
4173
+  (0.1ms) begin transaction
4174
+ SQL (0.2ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "maximize revolutionary synergies"], ["created_at", "2014-08-04 14:55:28.881097"], ["description", "Cum est quaerat aut et."], ["title", "panel"], ["updated_at", "2014-08-04 14:55:28.881097"]]
4175
+  (0.7ms) commit transaction
4176
+  (0.1ms) begin transaction
4177
+ SQL (0.2ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "cultivate best-of-breed deliverables"], ["created_at", "2014-08-04 14:55:28.883458"], ["description", "Corrupti aut ipsum quae aut facere ipsa eveniet unde."], ["title", "transmitter"], ["updated_at", "2014-08-04 14:55:28.883458"]]
4178
+  (0.7ms) commit transaction
4179
+  (0.1ms) begin transaction
4180
+ SQL (0.2ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "optimize clicks-and-mortar synergies"], ["created_at", "2014-08-04 14:55:28.886148"], ["description", "Qui voluptatem doloremque esse aliquid et."], ["title", "pixel"], ["updated_at", "2014-08-04 14:55:28.886148"]]
4181
+  (0.8ms) commit transaction
4182
+  (0.1ms) begin transaction
4183
+ SQL (0.4ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "grow web-enabled infomediaries"], ["created_at", "2014-08-04 14:55:28.889289"], ["description", "Autem delectus necessitatibus culpa."], ["title", "driver"], ["updated_at", "2014-08-04 14:55:28.889289"]]
4184
+  (1.2ms) commit transaction
4185
+  (0.1ms) begin transaction
4186
+ SQL (0.3ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "unleash bleeding-edge users"], ["created_at", "2014-08-04 14:55:28.895536"], ["description", "Et eos tenetur nisi dolore nam."], ["title", "circuit"], ["updated_at", "2014-08-04 14:55:28.895536"]]
4187
+  (1.2ms) commit transaction
4188
+  (0.1ms) begin transaction
4189
+ SQL (0.3ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "reintermediate front-end schemas"], ["created_at", "2014-08-04 14:55:28.899735"], ["description", "Voluptate eum exercitationem eum at autem odio labore."], ["title", "bus"], ["updated_at", "2014-08-04 14:55:28.899735"]]
4190
+  (0.8ms) commit transaction
4191
+  (0.1ms) begin transaction
4192
+ SQL (0.2ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "monetize intuitive web services"], ["created_at", "2014-08-04 14:55:28.902977"], ["description", "Et omnis incidunt inventore vel."], ["title", "feed"], ["updated_at", "2014-08-04 14:55:28.902977"]]
4193
+  (0.7ms) commit transaction
4194
+  (0.1ms) begin transaction
4195
+ SQL (0.3ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "engineer visionary action-items"], ["created_at", "2014-08-04 14:55:28.906034"], ["description", "Omnis quas aliquid deleniti."], ["title", "port"], ["updated_at", "2014-08-04 14:55:28.906034"]]
4196
+  (0.7ms) commit transaction
4197
+  (0.1ms) begin transaction
4198
+ SQL (0.4ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "strategize world-class e-business"], ["created_at", "2014-08-04 14:55:28.908924"], ["description", "Aspernatur sint qui quasi."], ["title", "feed"], ["updated_at", "2014-08-04 14:55:28.908924"]]
4199
+  (0.8ms) commit transaction
4200
+  (0.1ms) begin transaction
4201
+ SQL (0.3ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "engineer distributed networks"], ["created_at", "2014-08-04 14:55:28.912996"], ["description", "Omnis nostrum commodi iste quidem quasi repellat."], ["title", "interface"], ["updated_at", "2014-08-04 14:55:28.912996"]]
4202
+  (0.6ms) commit transaction
4203
+  (0.2ms) begin transaction
4204
+ SQL (0.3ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "visualize revolutionary initiatives"], ["created_at", "2014-08-04 14:55:28.916391"], ["description", "Tenetur dolores nemo dolore voluptas ut accusantium quaerat."], ["title", "bandwidth"], ["updated_at", "2014-08-04 14:55:28.916391"]]
4205
+  (0.8ms) commit transaction
4206
+  (0.1ms) begin transaction
4207
+ SQL (0.3ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "enable killer action-items"], ["created_at", "2014-08-04 14:55:28.919399"], ["description", "Eos sunt voluptatem quisquam tempora qui repellat deserunt."], ["title", "system"], ["updated_at", "2014-08-04 14:55:28.919399"]]
4208
+  (0.7ms) commit transaction
4209
+  (0.1ms) begin transaction
4210
+ SQL (0.6ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "leverage ubiquitous architectures"], ["created_at", "2014-08-04 14:55:28.922473"], ["description", "Quisquam illo nisi est rerum."], ["title", "program"], ["updated_at", "2014-08-04 14:55:28.922473"]]
4211
+  (1.1ms) commit transaction
4212
+  (0.1ms) begin transaction
4213
+ SQL (0.6ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "scale magnetic e-business"], ["created_at", "2014-08-04 14:55:28.927700"], ["description", "Enim odit aut laudantium dolor esse cupiditate."], ["title", "alarm"], ["updated_at", "2014-08-04 14:55:28.927700"]]
4214
+  (0.9ms) commit transaction
4215
+  (0.1ms) begin transaction
4216
+ SQL (0.4ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "expedite dot-com technologies"], ["created_at", "2014-08-04 14:55:28.931904"], ["description", "Nesciunt omnis enim earum."], ["title", "interface"], ["updated_at", "2014-08-04 14:55:28.931904"]]
4217
+  (1.0ms) commit transaction
4218
+ Project Load (0.2ms) SELECT "projects".* FROM ( SELECT "projects".* FROM "projects" WHERE (title LIKE '%a%') UNION SELECT "projects".* FROM "projects" HAVING LEN(description) > 10 ) "projects"
4219
+ SQLite3::SQLException: a GROUP BY clause is required before HAVING: SELECT "projects".* FROM ( SELECT "projects".* FROM "projects" WHERE (title LIKE '%a%') UNION SELECT "projects".* FROM "projects" HAVING LEN(description) > 10 ) "projects"
4220
+ Project Load (0.4ms) SELECT "projects".* FROM ( SELECT "projects".* FROM "projects" WHERE (title LIKE '%a%') UNION SELECT "projects".* FROM "projects" GROUP BY project_id HAVING LEN(description) > 10 ) "projects"
4221
+ SQLite3::SQLException: no such function: LEN: SELECT "projects".* FROM ( SELECT "projects".* FROM "projects" WHERE (title LIKE '%a%') UNION SELECT "projects".* FROM "projects" GROUP BY project_id HAVING LEN(description) > 10 ) "projects"
4222
+ Project Load (0.3ms) SELECT "projects".* FROM ( SELECT "projects".* FROM "projects" WHERE (title LIKE '%a%') UNION SELECT "projects".* FROM "projects" GROUP BY projeCHAR_ct_id HAVING LEN(description) > 10 ) "projects"
4223
+ SQLite3::SQLException: no such function: LEN: SELECT "projects".* FROM ( SELECT "projects".* FROM "projects" WHERE (title LIKE '%a%') UNION SELECT "projects".* FROM "projects" GROUP BY projeCHAR_ct_id HAVING LEN(description) > 10 ) "projects"
4224
+ Project Load (0.3ms) SELECT "projects".* FROM ( SELECT "projects".* FROM "projects" WHERE (title LIKE '%a%') UNION SELECT "projects".* FROM "projects" GROUP BY project_id HAVING CHAR_LENGTH(description) > 10 ) "projects"
4225
+ SQLite3::SQLException: no such function: CHAR_LENGTH: SELECT "projects".* FROM ( SELECT "projects".* FROM "projects" WHERE (title LIKE '%a%') UNION SELECT "projects".* FROM "projects" GROUP BY project_id HAVING CHAR_LENGTH(description) > 10 ) "projects"
4226
+ Project Load (8.7ms) SELECT "projects".* FROM ( SELECT "projects".* FROM "projects" WHERE (title LIKE '%a%') UNION SELECT "projects".* FROM "projects" GROUP BY project_id HAVING LENGTH(description) > 10 ) "projects"
4227
+ SQLite3::SQLException: no such column: project_id: SELECT "projects".* FROM ( SELECT "projects".* FROM "projects" WHERE (title LIKE '%a%') UNION SELECT "projects".* FROM "projects" GROUP BY project_id HAVING LENGTH(description) > 10 ) "projects"
4228
+ Project Load (0.9ms) SELECT "projects".* FROM ( SELECT "projects".* FROM "projects" WHERE (title LIKE '%a%') UNION SELECT "projects".* FROM "projects" GROUP BY id HAVING LENGTH(description) > 10 ) "projects"
4229
+ Project Load (0.8ms) SELECT "projects".* FROM ( SELECT "projects".* FROM "projects" WHERE (title LIKE '%a%') INTERSECT SELECT "projects".* FROM "projects" GROUP BY id HAVING LENGTH(description) > 10 ) "projects"
4230
+ Project Load (8.8ms) SELECT "projects".* FROM ( SELECT "projects".* FROM "projects" WHERE (title LIKE '%a%') UNION ALL SELECT "projects".* FROM "projects" GROUP BY id HAVING LENGTH(description) > 10 ) "projects"
4231
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
4232
+  (0.1ms) begin transaction
4233
+  (0.1ms) rollback transaction
4234
+  (0.1ms) begin transaction
4235
+  (0.1ms) SAVEPOINT active_record_1
4236
+ SQL (2.1ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "architect out-of-the-box metrics"], ["created_at", "2014-08-04 17:32:33.402989"], ["description", "Sit quod qui est ipsam inventore voluptates."], ["title", "firewall"], ["updated_at", "2014-08-04 17:32:33.402989"]]
4237
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4238
+  (0.0ms) SAVEPOINT active_record_1
4239
+ SQL (0.9ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "productize open-source action-items"], ["created_at", "2014-08-04 17:32:33.410236"], ["description", "Omnis sit culpa magnam et."], ["title", "transmitter"], ["updated_at", "2014-08-04 17:32:33.410236"]]
4240
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4241
+  (0.1ms) SAVEPOINT active_record_1
4242
+ SQL (0.1ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "streamline customized methodologies"], ["created_at", "2014-08-04 17:32:33.412778"], ["description", "Quo est et optio molestias natus assumenda laudantium."], ["title", "capacitor"], ["updated_at", "2014-08-04 17:32:33.412778"]]
4243
+  (0.0ms) RELEASE SAVEPOINT active_record_1
4244
+  (0.0ms) SAVEPOINT active_record_1
4245
+ SQL (0.0ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "revolutionize vertical initiatives"], ["created_at", "2014-08-04 17:32:33.413889"], ["description", "Fugit omnis amet earum ea qui vero quasi reprehenderit."], ["title", "system"], ["updated_at", "2014-08-04 17:32:33.413889"]]
4246
+  (0.0ms) RELEASE SAVEPOINT active_record_1
4247
+  (0.0ms) SAVEPOINT active_record_1
4248
+ SQL (0.0ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "incentivize magnetic experiences"], ["created_at", "2014-08-04 17:32:33.414900"], ["description", "Sint corrupti voluptates natus reiciendis sit."], ["title", "card"], ["updated_at", "2014-08-04 17:32:33.414900"]]
4249
+  (0.0ms) RELEASE SAVEPOINT active_record_1
4250
+  (0.0ms) SAVEPOINT active_record_1
4251
+ SQL (0.0ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "e-enable viral web services"], ["created_at", "2014-08-04 17:32:33.415876"], ["description", "Ex dolorum inventore atque similique quis voluptatem."], ["title", "monitor"], ["updated_at", "2014-08-04 17:32:33.415876"]]
4252
+  (0.0ms) RELEASE SAVEPOINT active_record_1
4253
+  (0.0ms) SAVEPOINT active_record_1
4254
+ SQL (0.1ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "iterate magnetic convergence"], ["created_at", "2014-08-04 17:32:33.416833"], ["description", "Dignissimos perferendis beatae pariatur veniam consequatur quo doloribus a."], ["title", "monitor"], ["updated_at", "2014-08-04 17:32:33.416833"]]
4255
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4256
+  (0.1ms) SAVEPOINT active_record_1
4257
+ SQL (0.1ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "engineer global mindshare"], ["created_at", "2014-08-04 17:32:33.418472"], ["description", "Ad est enim possimus sed voluptas."], ["title", "bandwidth"], ["updated_at", "2014-08-04 17:32:33.418472"]]
4258
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4259
+  (0.1ms) SAVEPOINT active_record_1
4260
+ SQL (0.1ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "reintermediate magnetic e-commerce"], ["created_at", "2014-08-04 17:32:33.421178"], ["description", "Quo omnis natus tenetur."], ["title", "pixel"], ["updated_at", "2014-08-04 17:32:33.421178"]]
4261
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4262
+  (0.0ms) SAVEPOINT active_record_1
4263
+ SQL (0.1ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "orchestrate dot-com portals"], ["created_at", "2014-08-04 17:32:33.422614"], ["description", "Possimus voluptas praesentium quo accusamus voluptatem."], ["title", "circuit"], ["updated_at", "2014-08-04 17:32:33.422614"]]
4264
+  (0.0ms) RELEASE SAVEPOINT active_record_1
4265
+  (0.6ms) rollback transaction
4266
+  (0.1ms) begin transaction
4267
+  (0.1ms) SAVEPOINT active_record_1
4268
+ SQL (0.4ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "harness end-to-end partnerships"], ["created_at", "2014-08-04 17:32:33.428560"], ["description", "Ut velit rerum ut cumque."], ["title", "card"], ["updated_at", "2014-08-04 17:32:33.428560"]]
4269
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4270
+  (0.1ms) SAVEPOINT active_record_1
4271
+ SQL (0.4ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "maximize granular technologies"], ["created_at", "2014-08-04 17:32:33.430978"], ["description", "Saepe consequatur ut deleniti quo sit."], ["title", "port"], ["updated_at", "2014-08-04 17:32:33.430978"]]
4272
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4273
+  (0.1ms) SAVEPOINT active_record_1
4274
+ SQL (0.1ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "expedite magnetic mindshare"], ["created_at", "2014-08-04 17:32:33.433237"], ["description", "Optio sunt impedit est soluta doloremque."], ["title", "panel"], ["updated_at", "2014-08-04 17:32:33.433237"]]
4275
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4276
+  (0.1ms) SAVEPOINT active_record_1
4277
+ SQL (0.1ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "orchestrate interactive e-services"], ["created_at", "2014-08-04 17:32:33.435288"], ["description", "Nobis est accusantium ea quis sint non earum."], ["title", "array"], ["updated_at", "2014-08-04 17:32:33.435288"]]
4278
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4279
+  (0.2ms) SAVEPOINT active_record_1
4280
+ SQL (0.1ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "grow end-to-end action-items"], ["created_at", "2014-08-04 17:32:33.437325"], ["description", "Quo necessitatibus voluptas ipsum quasi mollitia dolorem qui corporis."], ["title", "array"], ["updated_at", "2014-08-04 17:32:33.437325"]]
4281
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4282
+  (0.0ms) SAVEPOINT active_record_1
4283
+ SQL (0.1ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "expedite B2C e-tailers"], ["created_at", "2014-08-04 17:32:33.439074"], ["description", "Ab perferendis corrupti rerum in dicta."], ["title", "bus"], ["updated_at", "2014-08-04 17:32:33.439074"]]
4284
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4285
+  (0.1ms) SAVEPOINT active_record_1
4286
+ SQL (0.1ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "brand turn-key relationships"], ["created_at", "2014-08-04 17:32:33.440380"], ["description", "Ea sunt rerum deserunt consequatur."], ["title", "matrix"], ["updated_at", "2014-08-04 17:32:33.440380"]]
4287
+  (0.0ms) RELEASE SAVEPOINT active_record_1
4288
+  (0.0ms) SAVEPOINT active_record_1
4289
+ SQL (0.1ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "aggregate best-of-breed e-services"], ["created_at", "2014-08-04 17:32:33.441465"], ["description", "Doloremque est sed qui."], ["title", "application"], ["updated_at", "2014-08-04 17:32:33.441465"]]
4290
+  (0.0ms) RELEASE SAVEPOINT active_record_1
4291
+  (0.0ms) SAVEPOINT active_record_1
4292
+ SQL (0.0ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "matrix strategic deliverables"], ["created_at", "2014-08-04 17:32:33.442439"], ["description", "Suscipit tenetur adipisci mollitia."], ["title", "microchip"], ["updated_at", "2014-08-04 17:32:33.442439"]]
4293
+  (0.0ms) RELEASE SAVEPOINT active_record_1
4294
+  (0.0ms) SAVEPOINT active_record_1
4295
+ SQL (0.0ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "cultivate cross-platform e-business"], ["created_at", "2014-08-04 17:32:33.443370"], ["description", "Minus illum quam atque."], ["title", "bus"], ["updated_at", "2014-08-04 17:32:33.443370"]]
4296
+  (0.0ms) RELEASE SAVEPOINT active_record_1
4297
+  (0.5ms) rollback transaction
4298
+  (0.1ms) begin transaction
4299
+  (0.1ms) SAVEPOINT active_record_1
4300
+ SQL (0.2ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "matrix scalable users"], ["created_at", "2014-08-04 17:32:33.447029"], ["description", "Aut earum in facilis reiciendis voluptatibus maxime non."], ["title", "matrix"], ["updated_at", "2014-08-04 17:32:33.447029"]]
4301
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4302
+  (0.0ms) SAVEPOINT active_record_1
4303
+ SQL (0.2ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "grow best-of-breed systems"], ["created_at", "2014-08-04 17:32:33.448512"], ["description", "Repellat eum a velit unde est molestias."], ["title", "sensor"], ["updated_at", "2014-08-04 17:32:33.448512"]]
4304
+  (0.0ms) RELEASE SAVEPOINT active_record_1
4305
+  (0.0ms) SAVEPOINT active_record_1
4306
+ SQL (0.1ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "productize integrated communities"], ["created_at", "2014-08-04 17:32:33.449697"], ["description", "Magnam non et reiciendis."], ["title", "capacitor"], ["updated_at", "2014-08-04 17:32:33.449697"]]
4307
+  (0.0ms) RELEASE SAVEPOINT active_record_1
4308
+  (0.0ms) SAVEPOINT active_record_1
4309
+ SQL (0.1ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "revolutionize compelling synergies"], ["created_at", "2014-08-04 17:32:33.450689"], ["description", "Odio suscipit laboriosam possimus accusamus ratione ex."], ["title", "matrix"], ["updated_at", "2014-08-04 17:32:33.450689"]]
4310
+  (0.0ms) RELEASE SAVEPOINT active_record_1
4311
+  (0.0ms) SAVEPOINT active_record_1
4312
+ SQL (0.1ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "enable holistic niches"], ["created_at", "2014-08-04 17:32:33.451634"], ["description", "Numquam earum cupiditate est repellendus."], ["title", "card"], ["updated_at", "2014-08-04 17:32:33.451634"]]
4313
+  (0.0ms) RELEASE SAVEPOINT active_record_1
4314
+  (0.0ms) SAVEPOINT active_record_1
4315
+ SQL (0.1ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "seize global convergence"], ["created_at", "2014-08-04 17:32:33.452593"], ["description", "Aut doloremque et pariatur aliquam a id."], ["title", "bandwidth"], ["updated_at", "2014-08-04 17:32:33.452593"]]
4316
+  (0.0ms) RELEASE SAVEPOINT active_record_1
4317
+  (0.0ms) SAVEPOINT active_record_1
4318
+ SQL (0.0ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "streamline scalable schemas"], ["created_at", "2014-08-04 17:32:33.453542"], ["description", "Sit nihil aut pariatur."], ["title", "circuit"], ["updated_at", "2014-08-04 17:32:33.453542"]]
4319
+  (0.0ms) RELEASE SAVEPOINT active_record_1
4320
+  (0.0ms) SAVEPOINT active_record_1
4321
+ SQL (0.1ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "engineer end-to-end relationships"], ["created_at", "2014-08-04 17:32:33.454471"], ["description", "Corrupti qui quaerat est."], ["title", "circuit"], ["updated_at", "2014-08-04 17:32:33.454471"]]
4322
+  (0.0ms) RELEASE SAVEPOINT active_record_1
4323
+  (0.0ms) SAVEPOINT active_record_1
4324
+ SQL (0.0ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "target cross-media bandwidth"], ["created_at", "2014-08-04 17:32:33.455498"], ["description", "Doloribus et quae est voluptatum eos quos quibusdam laborum."], ["title", "alarm"], ["updated_at", "2014-08-04 17:32:33.455498"]]
4325
+  (0.0ms) RELEASE SAVEPOINT active_record_1
4326
+  (0.1ms) SAVEPOINT active_record_1
4327
+ SQL (0.1ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "recontextualize proactive applications"], ["created_at", "2014-08-04 17:32:33.456795"], ["description", "Quas id dolore ipsum et."], ["title", "bus"], ["updated_at", "2014-08-04 17:32:33.456795"]]
4328
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4329
+  (0.1ms) SAVEPOINT active_record_1
4330
+ SQL (0.1ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "grow interactive bandwidth"], ["created_at", "2014-08-04 17:32:33.458677"], ["description", "Eum veniam possimus quis corporis et."], ["title", "bandwidth"], ["updated_at", "2014-08-04 17:32:33.458677"]]
4331
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4332
+  (0.1ms) SAVEPOINT active_record_1
4333
+ SQL (0.1ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "seize bleeding-edge relationships"], ["created_at", "2014-08-04 17:32:33.460577"], ["description", "In soluta reiciendis excepturi quia distinctio."], ["title", "hard drive"], ["updated_at", "2014-08-04 17:32:33.460577"]]
4334
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4335
+  (0.1ms) SAVEPOINT active_record_1
4336
+ SQL (0.1ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "reinvent virtual supply-chains"], ["created_at", "2014-08-04 17:32:33.462575"], ["description", "Odio molestiae enim suscipit omnis officiis modi ratione quod."], ["title", "bus"], ["updated_at", "2014-08-04 17:32:33.462575"]]
4337
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4338
+  (0.1ms) SAVEPOINT active_record_1
4339
+ SQL (0.1ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "incubate collaborative eyeballs"], ["created_at", "2014-08-04 17:32:33.464604"], ["description", "Quaerat impedit ut delectus illo quas qui esse."], ["title", "firewall"], ["updated_at", "2014-08-04 17:32:33.464604"]]
4340
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4341
+  (0.1ms) SAVEPOINT active_record_1
4342
+ SQL (0.1ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "mesh rich markets"], ["created_at", "2014-08-04 17:32:33.466037"], ["description", "Ex qui beatae voluptatem sed voluptates vitae omnis."], ["title", "transmitter"], ["updated_at", "2014-08-04 17:32:33.466037"]]
4343
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4344
+  (0.1ms) SAVEPOINT active_record_1
4345
+ SQL (0.2ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "enable distributed schemas"], ["created_at", "2014-08-04 17:32:33.468148"], ["description", "Sapiente et et est omnis quod qui."], ["title", "transmitter"], ["updated_at", "2014-08-04 17:32:33.468148"]]
4346
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4347
+  (0.1ms) SAVEPOINT active_record_1
4348
+ SQL (0.1ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "scale strategic applications"], ["created_at", "2014-08-04 17:32:33.470680"], ["description", "Dolores odit quisquam voluptas magnam natus voluptatibus perspiciatis nihil."], ["title", "system"], ["updated_at", "2014-08-04 17:32:33.470680"]]
4349
+  (0.0ms) RELEASE SAVEPOINT active_record_1
4350
+  (0.0ms) SAVEPOINT active_record_1
4351
+ SQL (0.1ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "maximize 24/7 portals"], ["created_at", "2014-08-04 17:32:33.471907"], ["description", "Aut animi aut voluptatem pariatur."], ["title", "transmitter"], ["updated_at", "2014-08-04 17:32:33.471907"]]
4352
+  (0.0ms) RELEASE SAVEPOINT active_record_1
4353
+  (0.0ms) SAVEPOINT active_record_1
4354
+ SQL (0.0ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "extend sticky channels"], ["created_at", "2014-08-04 17:32:33.472880"], ["description", "Autem odit eum perferendis at fuga nihil possimus quidem."], ["title", "circuit"], ["updated_at", "2014-08-04 17:32:33.472880"]]
4355
+  (0.0ms) RELEASE SAVEPOINT active_record_1
4356
+  (0.0ms) SAVEPOINT active_record_1
4357
+ SQL (0.1ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "revolutionize cross-platform initiatives"], ["created_at", "2014-08-04 17:32:33.473837"], ["description", "Quisquam accusamus qui aut quidem."], ["title", "driver"], ["updated_at", "2014-08-04 17:32:33.473837"]]
4358
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4359
+  (0.6ms) rollback transaction
4360
+  (0.1ms) begin transaction
4361
+  (0.1ms) SAVEPOINT active_record_1
4362
+ SQL (0.3ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "projectile"], ["created_at", "2014-08-04 17:32:33.480747"], ["description", "some proj"], ["title", "George's project"], ["updated_at", "2014-08-04 17:32:33.480747"]]
4363
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4364
+ Project Load (0.6ms) SELECT "projects".* FROM "projects" WHERE (title LIKE '%proj%')
4365
+ Project Load (0.2ms) SELECT "projects".* FROM "projects" WHERE (description LIKE '%proj%')
4366
+ Project Load (0.1ms) SELECT "projects".* FROM "projects" WHERE (category LIKE '%proj%')
4367
+  (0.4ms) rollback transaction
4368
+  (0.1ms) begin transaction
4369
+  (0.1ms) SAVEPOINT active_record_1
4370
+ SQL (0.3ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "brand next-generation action-items"], ["created_at", "2014-08-04 17:32:33.486658"], ["description", "Odio numquam est et quidem corporis ut enim."], ["title", "George's project"], ["updated_at", "2014-08-04 17:32:33.486658"]]
4371
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4372
+  (0.1ms) SAVEPOINT active_record_1
4373
+ SQL (0.3ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "extend integrated eyeballs"], ["created_at", "2014-08-04 17:32:33.488510"], ["description", "some proj"], ["title", "driver"], ["updated_at", "2014-08-04 17:32:33.488510"]]
4374
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4375
+  (0.1ms) SAVEPOINT active_record_1
4376
+ SQL (0.1ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "projectile"], ["created_at", "2014-08-04 17:32:33.490764"], ["description", "Velit eaque et incidunt corporis dolorum tenetur."], ["title", "capacitor"], ["updated_at", "2014-08-04 17:32:33.490764"]]
4377
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4378
+ Project Load (0.6ms) SELECT "projects".* FROM ( SELECT "projects".* FROM ( SELECT "projects".* FROM "projects" WHERE (title LIKE '%proj%') UNION SELECT "projects".* FROM "projects" WHERE (description LIKE '%proj%') ) "projects" UNION SELECT "projects".* FROM "projects" WHERE (category LIKE '%proj%') ) "projects"
4379
+  (0.6ms) rollback transaction
4380
+  (0.1ms) begin transaction
4381
+  (0.1ms) SAVEPOINT active_record_1
4382
+ SQL (0.3ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "projectile"], ["created_at", "2014-08-04 17:32:33.496302"], ["description", "some proj"], ["title", "George's project"], ["updated_at", "2014-08-04 17:32:33.496302"]]
4383
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4384
+ Project Load (0.3ms) SELECT "projects".* FROM ( SELECT "projects".* FROM ( SELECT "projects".* FROM "projects" WHERE (title LIKE '%proj%') UNION ALL SELECT "projects".* FROM "projects" WHERE (description LIKE '%proj%') ) "projects" UNION ALL SELECT "projects".* FROM "projects" WHERE (category LIKE '%proj%') ) "projects"
4385
+  (0.4ms) SELECT COUNT(*) FROM ( SELECT "projects".* FROM ( SELECT "projects".* FROM "projects" WHERE (title LIKE '%proj%') UNION ALL SELECT "projects".* FROM "projects" WHERE (description LIKE '%proj%') ) "projects" UNION ALL SELECT "projects".* FROM "projects" WHERE (category LIKE '%proj%') ) "projects"
4386
+  (0.5ms) rollback transaction
4387
+  (0.1ms) begin transaction
4388
+  (0.1ms) SAVEPOINT active_record_1
4389
+ SQL (0.4ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "projectile"], ["created_at", "2014-08-04 17:32:33.506031"], ["description", "some proj"], ["title", "George's project"], ["updated_at", "2014-08-04 17:32:33.506031"]]
4390
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4391
+ Project Load (0.7ms) SELECT "projects".* FROM ( SELECT "projects".* FROM ( SELECT "projects".* FROM "projects" WHERE (title LIKE '%proj%') INTERSECT SELECT "projects".* FROM "projects" WHERE (description LIKE '%proj%') ) "projects" INTERSECT SELECT "projects".* FROM "projects" WHERE (category LIKE '%proj%') ) "projects"
4392
+  (0.6ms) rollback transaction
4393
+  (0.1ms) begin transaction
4394
+  (0.1ms) SAVEPOINT active_record_1
4395
+ SQL (0.3ms) INSERT INTO "projects" ("category", "created_at", "description", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["category", "projectile"], ["created_at", "2014-08-04 17:32:33.511940"], ["description", "some proj"], ["title", "George's project"], ["updated_at", "2014-08-04 17:32:33.511940"]]
4396
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4397
+  (0.7ms) SELECT COUNT(*) FROM ( SELECT "projects".* FROM ( SELECT "projects".* FROM "projects" WHERE (title LIKE '%proj%') INTERSECT SELECT "projects".* FROM "projects" WHERE (description LIKE '%proj%') ) "projects" INTERSECT SELECT "projects".* FROM "projects" WHERE (category LIKE 'blahblah') ) "projects"
4398
+  (0.5ms) rollback transaction
4399
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
4400
+ Migrating to CreateUsers (20140804181328)
4401
+  (0.1ms) begin transaction
4402
+  (0.4ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime) 
4403
+ SQL (0.6ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140804181328"]]
4404
+  (1.0ms) commit transaction
4405
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
4406
+  (0.1ms) begin transaction
4407
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-08-04 18:15:14.128218"], ["name", "Marshall Baumbach"], ["updated_at", "2014-08-04 18:15:14.128218"]]
4408
+  (0.7ms) commit transaction
4409
+  (0.1ms) begin transaction
4410
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-08-04 18:15:14.134814"], ["name", "Kaya Bartoletti"], ["updated_at", "2014-08-04 18:15:14.134814"]]
4411
+  (0.7ms) commit transaction
4412
+  (0.1ms) begin transaction
4413
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-08-04 18:15:14.137310"], ["name", "Mr. Elsa Durgan"], ["updated_at", "2014-08-04 18:15:14.137310"]]
4414
+  (0.7ms) commit transaction
4415
+  (0.0ms) begin transaction
4416
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-08-04 18:15:14.139572"], ["name", "Ms. Lia Quitzon"], ["updated_at", "2014-08-04 18:15:14.139572"]]
4417
+  (0.8ms) commit transaction
4418
+  (0.1ms) begin transaction
4419
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-08-04 18:15:14.141754"], ["name", "Cheyenne Lang"], ["updated_at", "2014-08-04 18:15:14.141754"]]
4420
+  (0.7ms) commit transaction
4421
+  (0.1ms) begin transaction
4422
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-08-04 18:15:14.144024"], ["name", "Mary Ortiz Sr."], ["updated_at", "2014-08-04 18:15:14.144024"]]
4423
+  (0.9ms) commit transaction
4424
+  (0.1ms) begin transaction
4425
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-08-04 18:15:14.146643"], ["name", "Domenica Terry II"], ["updated_at", "2014-08-04 18:15:14.146643"]]
4426
+  (0.8ms) commit transaction
4427
+  (0.1ms) begin transaction
4428
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-08-04 18:15:14.149300"], ["name", "Lucinda Bartoletti"], ["updated_at", "2014-08-04 18:15:14.149300"]]
4429
+  (0.7ms) commit transaction
4430
+  (0.1ms) begin transaction
4431
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-08-04 18:15:14.152012"], ["name", "Destinee Sporer"], ["updated_at", "2014-08-04 18:15:14.152012"]]
4432
+  (0.7ms) commit transaction
4433
+  (0.1ms) begin transaction
4434
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-08-04 18:15:14.154846"], ["name", "Christiana Steuber"], ["updated_at", "2014-08-04 18:15:14.154846"]]
4435
+  (0.9ms) commit transaction
4436
+  (0.1ms) begin transaction
4437
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-08-04 18:15:14.157953"], ["name", "Joanny Blick"], ["updated_at", "2014-08-04 18:15:14.157953"]]
4438
+  (0.7ms) commit transaction
4439
+  (0.1ms) begin transaction
4440
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-08-04 18:15:14.160270"], ["name", "Jordane Torphy"], ["updated_at", "2014-08-04 18:15:14.160270"]]
4441
+  (0.6ms) commit transaction
4442
+  (0.1ms) begin transaction
4443
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-08-04 18:15:14.162811"], ["name", "Sarah O'Keefe"], ["updated_at", "2014-08-04 18:15:14.162811"]]
4444
+  (0.7ms) commit transaction
4445
+  (0.1ms) begin transaction
4446
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-08-04 18:15:14.165752"], ["name", "Isobel Fay"], ["updated_at", "2014-08-04 18:15:14.165752"]]
4447
+  (1.0ms) commit transaction
4448
+  (0.1ms) begin transaction
4449
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-08-04 18:15:14.170434"], ["name", "Christopher Friesen"], ["updated_at", "2014-08-04 18:15:14.170434"]]
4450
+  (1.0ms) commit transaction
4451
+  (0.1ms) begin transaction
4452
+ SQL (0.6ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-08-04 18:15:14.174090"], ["name", "Benton Kulas"], ["updated_at", "2014-08-04 18:15:14.174090"]]
4453
+  (0.8ms) commit transaction
4454
+  (0.1ms) begin transaction
4455
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-08-04 18:15:14.177633"], ["name", "Terry Carter"], ["updated_at", "2014-08-04 18:15:14.177633"]]
4456
+  (0.8ms) commit transaction
4457
+  (0.1ms) begin transaction
4458
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-08-04 18:15:14.180321"], ["name", "Rowland Kuphal"], ["updated_at", "2014-08-04 18:15:14.180321"]]
4459
+  (0.7ms) commit transaction
4460
+  (0.1ms) begin transaction
4461
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-08-04 18:15:14.183197"], ["name", "Trever Legros DVM"], ["updated_at", "2014-08-04 18:15:14.183197"]]
4462
+  (0.7ms) commit transaction
4463
+  (0.1ms) begin transaction
4464
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-08-04 18:15:14.185812"], ["name", "Dr. Hyman Graham"], ["updated_at", "2014-08-04 18:15:14.185812"]]
4465
+  (0.8ms) commit transaction
4466
+  (0.1ms) begin transaction
4467
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-08-04 18:15:14.188434"], ["name", "Ms. Vincenza Crooks"], ["updated_at", "2014-08-04 18:15:14.188434"]]
4468
+  (0.7ms) commit transaction
4469
+  (0.1ms) begin transaction
4470
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-08-04 18:15:14.190608"], ["name", "Kaden Hegmann"], ["updated_at", "2014-08-04 18:15:14.190608"]]
4471
+  (0.9ms) commit transaction
4472
+  (0.1ms) begin transaction
4473
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-08-04 18:15:14.193591"], ["name", "Hassie Ernser PhD"], ["updated_at", "2014-08-04 18:15:14.193591"]]
4474
+  (0.7ms) commit transaction
4475
+  (0.1ms) begin transaction
4476
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-08-04 18:15:14.196522"], ["name", "Alivia Adams"], ["updated_at", "2014-08-04 18:15:14.196522"]]
4477
+  (0.8ms) commit transaction
4478
+  (0.1ms) begin transaction
4479
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-08-04 18:15:14.199106"], ["name", "Lexi Walsh"], ["updated_at", "2014-08-04 18:15:14.199106"]]
4480
+  (0.8ms) commit transaction
4481
+  (0.1ms) begin transaction
4482
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-08-04 18:15:14.202614"], ["name", "Mr. Dan Langworth"], ["updated_at", "2014-08-04 18:15:14.202614"]]
4483
+  (0.7ms) commit transaction
4484
+  (0.1ms) begin transaction
4485
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-08-04 18:15:14.205843"], ["name", "Lukas Roob"], ["updated_at", "2014-08-04 18:15:14.205843"]]
4486
+  (0.6ms) commit transaction
4487
+  (0.1ms) begin transaction
4488
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-08-04 18:15:14.208818"], ["name", "Idell Schuppe"], ["updated_at", "2014-08-04 18:15:14.208818"]]
4489
+  (0.9ms) commit transaction
4490
+  (0.1ms) begin transaction
4491
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-08-04 18:15:14.212286"], ["name", "Shany Kassulke"], ["updated_at", "2014-08-04 18:15:14.212286"]]
4492
+  (0.9ms) commit transaction
4493
+  (0.0ms) begin transaction
4494
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-08-04 18:15:14.215145"], ["name", "Shanny Bashirian PhD"], ["updated_at", "2014-08-04 18:15:14.215145"]]
4495
+  (1.0ms) commit transaction
4496
+  (0.1ms) begin transaction
4497
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-08-04 18:15:14.218806"], ["name", "Pinkie Volkman"], ["updated_at", "2014-08-04 18:15:14.218806"]]
4498
+  (1.3ms) commit transaction
4499
+  (0.1ms) begin transaction
4500
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-08-04 18:15:14.222985"], ["name", "Kariane Veum"], ["updated_at", "2014-08-04 18:15:14.222985"]]
4501
+  (1.1ms) commit transaction
4502
+  (0.1ms) begin transaction
4503
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-08-04 18:15:14.226685"], ["name", "Miss Hazle Ortiz"], ["updated_at", "2014-08-04 18:15:14.226685"]]
4504
+  (0.9ms) commit transaction
4505
+  (0.1ms) begin transaction
4506
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-08-04 18:15:14.229822"], ["name", "Frank Dickinson"], ["updated_at", "2014-08-04 18:15:14.229822"]]
4507
+  (0.8ms) commit transaction
4508
+  (0.1ms) begin transaction
4509
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-08-04 18:15:14.232603"], ["name", "Dr. Garfield Spencer"], ["updated_at", "2014-08-04 18:15:14.232603"]]
4510
+  (0.8ms) commit transaction
4511
+  (0.0ms) begin transaction
4512
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-08-04 18:15:14.235449"], ["name", "Miss Tito Langosh"], ["updated_at", "2014-08-04 18:15:14.235449"]]
4513
+  (0.6ms) commit transaction
4514
+  (0.1ms) begin transaction
4515
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-08-04 18:15:14.237981"], ["name", "Bertha Nikolaus"], ["updated_at", "2014-08-04 18:15:14.237981"]]
4516
+  (0.7ms) commit transaction
4517
+  (0.1ms) begin transaction
4518
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-08-04 18:15:14.240577"], ["name", "Una Gulgowski"], ["updated_at", "2014-08-04 18:15:14.240577"]]
4519
+  (0.7ms) commit transaction
4520
+  (0.0ms) begin transaction
4521
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-08-04 18:15:14.242909"], ["name", "Kyle Littel III"], ["updated_at", "2014-08-04 18:15:14.242909"]]
4522
+  (0.8ms) commit transaction
4523
+  (0.1ms) begin transaction
4524
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-08-04 18:15:14.246221"], ["name", "Leilani Buckridge"], ["updated_at", "2014-08-04 18:15:14.246221"]]
4525
+  (0.6ms) commit transaction
4526
+  (0.1ms) begin transaction
4527
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-08-04 18:15:14.249377"], ["name", "Arjun Kihn IV"], ["updated_at", "2014-08-04 18:15:14.249377"]]
4528
+  (0.7ms) commit transaction
4529
+  (0.1ms) begin transaction
4530
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-08-04 18:15:14.252536"], ["name", "Lucious Hudson"], ["updated_at", "2014-08-04 18:15:14.252536"]]
4531
+  (0.8ms) commit transaction
4532
+  (0.0ms) begin transaction
4533
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-08-04 18:15:14.255315"], ["name", "Antone Yost"], ["updated_at", "2014-08-04 18:15:14.255315"]]
4534
+  (0.8ms) commit transaction
4535
+  (0.1ms) begin transaction
4536
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-08-04 18:15:14.258013"], ["name", "Sabina Rodriguez"], ["updated_at", "2014-08-04 18:15:14.258013"]]
4537
+  (0.8ms) commit transaction
4538
+  (0.1ms) begin transaction
4539
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-08-04 18:15:14.260422"], ["name", "Miss Jaylan Auer"], ["updated_at", "2014-08-04 18:15:14.260422"]]
4540
+  (0.8ms) commit transaction
4541
+  (0.0ms) begin transaction
4542
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-08-04 18:15:14.262757"], ["name", "Esmeralda Daugherty"], ["updated_at", "2014-08-04 18:15:14.262757"]]
4543
+  (0.7ms) commit transaction
4544
+  (0.0ms) begin transaction
4545
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-08-04 18:15:14.264977"], ["name", "Catherine O'Connell"], ["updated_at", "2014-08-04 18:15:14.264977"]]
4546
+  (1.4ms) commit transaction
4547
+  (0.1ms) begin transaction
4548
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-08-04 18:15:14.268627"], ["name", "Moises Abernathy"], ["updated_at", "2014-08-04 18:15:14.268627"]]
4549
+  (1.3ms) commit transaction
4550
+  (0.1ms) begin transaction
4551
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-08-04 18:15:14.272569"], ["name", "Billie Collins"], ["updated_at", "2014-08-04 18:15:14.272569"]]
4552
+  (0.9ms) commit transaction
4553
+  (0.1ms) begin transaction
4554
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-08-04 18:15:14.276589"], ["name", "Oceane Towne"], ["updated_at", "2014-08-04 18:15:14.276589"]]
4555
+  (0.9ms) commit transaction
4556
+ Project Load (0.3ms) SELECT "projects".* FROM ( SELECT "projects".* FROM "projects" WHERE (title LIKE '%a%') UNION SELECT "users".* FROM "users" WHERE (name LIKE '%b%') ) "projects"
4557
+ SQLite3::SQLException: SELECTs to the left and right of UNION do not have the same number of result columns: SELECT "projects".* FROM ( SELECT "projects".* FROM "projects" WHERE (title LIKE '%a%') UNION SELECT "users".* FROM "users" WHERE (name LIKE '%b%') ) "projects"
@@ -27,7 +27,7 @@ describe EasyUnionSet do
27
27
  project1 = create(:project, :title => "George's project")
28
28
  project2 = create(:project, :description => "some proj")
29
29
  project3 = create(:project, :category => "projectile")
30
-
30
+
31
31
  expect(Project.where("title LIKE '%proj%'") | Project.where("description LIKE '%proj%'") | Project.where("category LIKE '%proj%'")).to include(project1, project2, project3)
32
32
  end
33
33
 
@@ -0,0 +1,7 @@
1
+ # Read about factories at https://github.com/thoughtbot/factory_girl
2
+
3
+ FactoryGirl.define do
4
+ factory :user do
5
+ name { Faker::Name.name }
6
+ end
7
+ end
@@ -0,0 +1,5 @@
1
+ require 'rails_helper'
2
+
3
+ RSpec.describe User, :type => :model do
4
+ pending "add some examples to (or delete) #{__FILE__}"
5
+ end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: easy_union_set
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 1.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - George Taveras
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-08-04 00:00:00.000000000 Z
11
+ date: 2014-08-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activerecord
@@ -115,6 +115,7 @@ files:
115
115
  - test/dummy/app/controllers/application_controller.rb
116
116
  - test/dummy/app/helpers/application_helper.rb
117
117
  - test/dummy/app/models/project.rb
118
+ - test/dummy/app/models/user.rb
118
119
  - test/dummy/app/views/layouts/application.html.erb
119
120
  - test/dummy/bin/bundle
120
121
  - test/dummy/bin/rails
@@ -140,6 +141,7 @@ files:
140
141
  - test/dummy/config/secrets.yml
141
142
  - test/dummy/db/development.sqlite3
142
143
  - test/dummy/db/migrate/20140804121508_create_projects.rb
144
+ - test/dummy/db/migrate/20140804181328_create_users.rb
143
145
  - test/dummy/db/schema.rb
144
146
  - test/dummy/db/test.sqlite3
145
147
  - test/dummy/log/development.log
@@ -150,6 +152,8 @@ files:
150
152
  - test/dummy/public/favicon.ico
151
153
  - test/dummy/spec/easy_union_set_spec.rb
152
154
  - test/dummy/spec/factories/projects.rb
155
+ - test/dummy/spec/factories/users.rb
156
+ - test/dummy/spec/models/user_spec.rb
153
157
  - test/dummy/spec/rails_helper.rb
154
158
  - test/dummy/spec/spec_helper.rb
155
159
  - test/easy_union_set_test.rb
@@ -184,6 +188,7 @@ test_files:
184
188
  - test/dummy/app/controllers/application_controller.rb
185
189
  - test/dummy/app/helpers/application_helper.rb
186
190
  - test/dummy/app/models/project.rb
191
+ - test/dummy/app/models/user.rb
187
192
  - test/dummy/app/views/layouts/application.html.erb
188
193
  - test/dummy/bin/bundle
189
194
  - test/dummy/bin/rails
@@ -209,6 +214,7 @@ test_files:
209
214
  - test/dummy/config.ru
210
215
  - test/dummy/db/development.sqlite3
211
216
  - test/dummy/db/migrate/20140804121508_create_projects.rb
217
+ - test/dummy/db/migrate/20140804181328_create_users.rb
212
218
  - test/dummy/db/schema.rb
213
219
  - test/dummy/db/test.sqlite3
214
220
  - test/dummy/log/development.log
@@ -221,6 +227,8 @@ test_files:
221
227
  - test/dummy/README.rdoc
222
228
  - test/dummy/spec/easy_union_set_spec.rb
223
229
  - test/dummy/spec/factories/projects.rb
230
+ - test/dummy/spec/factories/users.rb
231
+ - test/dummy/spec/models/user_spec.rb
224
232
  - test/dummy/spec/rails_helper.rb
225
233
  - test/dummy/spec/spec_helper.rb
226
234
  - test/easy_union_set_test.rb