social_networking 0.9.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (731) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.md +84 -0
  4. data/Rakefile +66 -0
  5. data/app/assets/images/social_networking/_profile_icon_admin.png +0 -0
  6. data/app/assets/images/social_networking/profile_icon_art.png +0 -0
  7. data/app/assets/images/social_networking/profile_icon_bike.png +0 -0
  8. data/app/assets/images/social_networking/profile_icon_bolt.png +0 -0
  9. data/app/assets/images/social_networking/profile_icon_bookshelf.png +0 -0
  10. data/app/assets/images/social_networking/profile_icon_die.png +0 -0
  11. data/app/assets/images/social_networking/profile_icon_fashion.png +0 -0
  12. data/app/assets/images/social_networking/profile_icon_flower.png +0 -0
  13. data/app/assets/images/social_networking/profile_icon_genius.png +0 -0
  14. data/app/assets/images/social_networking/profile_icon_heart.png +0 -0
  15. data/app/assets/images/social_networking/profile_icon_helicopter.png +0 -0
  16. data/app/assets/images/social_networking/profile_icon_hourglass.png +0 -0
  17. data/app/assets/images/social_networking/profile_icon_keyboard.png +0 -0
  18. data/app/assets/images/social_networking/profile_icon_magnifyingglass.png +0 -0
  19. data/app/assets/images/social_networking/profile_icon_megaphone2.png +0 -0
  20. data/app/assets/images/social_networking/profile_icon_microphone.png +0 -0
  21. data/app/assets/images/social_networking/profile_icon_music.png +0 -0
  22. data/app/assets/images/social_networking/profile_icon_paintbrush2.png +0 -0
  23. data/app/assets/images/social_networking/profile_icon_plane.png +0 -0
  24. data/app/assets/images/social_networking/profile_icon_polaroidcamera.png +0 -0
  25. data/app/assets/images/social_networking/profile_icon_present.png +0 -0
  26. data/app/assets/images/social_networking/profile_icon_questionmark.png +0 -0
  27. data/app/assets/images/social_networking/profile_icon_recycle.png +0 -0
  28. data/app/assets/images/social_networking/profile_icon_scooter.png +0 -0
  29. data/app/assets/images/social_networking/profile_icon_shipwheel.png +0 -0
  30. data/app/assets/images/social_networking/profile_icon_shoeprints.png +0 -0
  31. data/app/assets/images/social_networking/profile_icon_star.png +0 -0
  32. data/app/assets/images/social_networking/profile_icon_travelerbag.png +0 -0
  33. data/app/assets/images/social_networking/profile_icon_ufo.png +0 -0
  34. data/app/assets/images/social_networking/profile_icon_umbrella.png +0 -0
  35. data/app/assets/images/social_networking/profile_icon_weather.png +0 -0
  36. data/app/assets/javascripts/notices.js +92 -0
  37. data/app/assets/javascripts/shared/new_shareable_form.js.erb +28 -0
  38. data/app/assets/javascripts/social_networking/app.js +15 -0
  39. data/app/assets/javascripts/social_networking/controllers/goal-controller.js +166 -0
  40. data/app/assets/javascripts/social_networking/controllers/home-controller.js +260 -0
  41. data/app/assets/javascripts/social_networking/controllers/nudge-controller.js +19 -0
  42. data/app/assets/javascripts/social_networking/controllers/participant-controller.js +34 -0
  43. data/app/assets/javascripts/social_networking/controllers/participants-controller.js +17 -0
  44. data/app/assets/javascripts/social_networking/controllers/profile-answer-controller.js +104 -0
  45. data/app/assets/javascripts/social_networking/controllers/profile-controller.js +55 -0
  46. data/app/assets/javascripts/social_networking/controllers/profile-question-controller.js +21 -0
  47. data/app/assets/javascripts/social_networking/controllers/profile-questions-controller.js +14 -0
  48. data/app/assets/javascripts/social_networking/controllers/profiles-controller.js +17 -0
  49. data/app/assets/javascripts/social_networking/directives.js +29 -0
  50. data/app/assets/javascripts/social_networking/filters.js +15 -0
  51. data/app/assets/javascripts/social_networking/resources/comments-resource.js +26 -0
  52. data/app/assets/javascripts/social_networking/resources/goals-resource.js +39 -0
  53. data/app/assets/javascripts/social_networking/resources/likes-resource.js +26 -0
  54. data/app/assets/javascripts/social_networking/resources/nudges-resource.js +27 -0
  55. data/app/assets/javascripts/social_networking/resources/on-your-mind-resource.js +29 -0
  56. data/app/assets/javascripts/social_networking/resources/participants-resource.js +23 -0
  57. data/app/assets/javascripts/social_networking/resources/profile-answer-resource.js +44 -0
  58. data/app/assets/javascripts/social_networking/resources/profiles-resource.js +35 -0
  59. data/app/assets/javascripts/social_networking/services/Alert.js +29 -0
  60. data/app/assets/javascripts/social_networking/services/focus-service.js +15 -0
  61. data/app/assets/javascripts/social_networking/services/goal-tool-service.js +75 -0
  62. data/app/assets/javascripts/social_networking/services/home-tool-service.js +89 -0
  63. data/app/assets/javascripts/social_networking/services/profile-answer-tool-service.js +49 -0
  64. data/app/assets/javascripts/social_networking.js +10 -0
  65. data/app/assets/stylesheets/social_networking/base.css.scss +140 -0
  66. data/app/assets/stylesheets/social_networking.css +1 -0
  67. data/app/controllers/concerns/sms.rb +28 -0
  68. data/app/controllers/social_networking/application_controller.rb +29 -0
  69. data/app/controllers/social_networking/comments_controller.rb +73 -0
  70. data/app/controllers/social_networking/concerns/invalid_auth_token.rb +21 -0
  71. data/app/controllers/social_networking/concerns/profile_page/feed.rb +72 -0
  72. data/app/controllers/social_networking/concerns/show_feed.rb +44 -0
  73. data/app/controllers/social_networking/goals_controller.rb +83 -0
  74. data/app/controllers/social_networking/homes_controller.rb +12 -0
  75. data/app/controllers/social_networking/likes_controller.rb +76 -0
  76. data/app/controllers/social_networking/nudges_controller.rb +64 -0
  77. data/app/controllers/social_networking/on_the_mind_statements_controller.rb +30 -0
  78. data/app/controllers/social_networking/participants_controller.rb +28 -0
  79. data/app/controllers/social_networking/profile_answers_controller.rb +79 -0
  80. data/app/controllers/social_networking/profile_icon_controller.rb +26 -0
  81. data/app/controllers/social_networking/profile_pages_controller.rb +87 -0
  82. data/app/controllers/social_networking/profiles_controller.rb +53 -0
  83. data/app/controllers/social_networking/shared_item_controller.rb +95 -0
  84. data/app/controllers/social_networking/templates_controller.rb +14 -0
  85. data/app/mailers/social_networking/mailer.rb +9 -0
  86. data/app/models/social_networking/action_item.rb +14 -0
  87. data/app/models/social_networking/comment.rb +20 -0
  88. data/app/models/social_networking/concerns/membership.rb +27 -0
  89. data/app/models/social_networking/concerns/participant.rb +43 -0
  90. data/app/models/social_networking/goal.rb +91 -0
  91. data/app/models/social_networking/like.rb +37 -0
  92. data/app/models/social_networking/notification.rb +42 -0
  93. data/app/models/social_networking/nudge.rb +38 -0
  94. data/app/models/social_networking/on_the_mind_statement.rb +26 -0
  95. data/app/models/social_networking/profile.rb +88 -0
  96. data/app/models/social_networking/profile_answer.rb +17 -0
  97. data/app/models/social_networking/profile_question.rb +14 -0
  98. data/app/models/social_networking/reports/comment.rb +31 -0
  99. data/app/models/social_networking/reports/goal.rb +32 -0
  100. data/app/models/social_networking/reports/like.rb +35 -0
  101. data/app/models/social_networking/reports/nudge.rb +27 -0
  102. data/app/models/social_networking/reports/off_topic_post.rb +27 -0
  103. data/app/models/social_networking/reports/tool_share.rb +27 -0
  104. data/app/models/social_networking/serializers/comment_serializer.rb +18 -0
  105. data/app/models/social_networking/serializers/goal_serializer.rb +23 -0
  106. data/app/models/social_networking/serializers/like_serializer.rb +18 -0
  107. data/app/models/social_networking/serializers/nudge_serializer.rb +24 -0
  108. data/app/models/social_networking/serializers/on_the_mind_statement_serializer.rb +21 -0
  109. data/app/models/social_networking/serializers/participant_serializer.rb +15 -0
  110. data/app/models/social_networking/serializers/profile_answer_serializer.rb +16 -0
  111. data/app/models/social_networking/serializers/profile_question_serializer.rb +13 -0
  112. data/app/models/social_networking/serializers/profile_serializer.rb +28 -0
  113. data/app/models/social_networking/serializers/serializer.rb +16 -0
  114. data/app/models/social_networking/serializers/shared_item_serializer.rb +38 -0
  115. data/app/models/social_networking/shareable.rb +17 -0
  116. data/app/models/social_networking/shared_item.rb +21 -0
  117. data/app/views/social_networking/coach/patient_dashboards/tables/_comments.html.erb +57 -0
  118. data/app/views/social_networking/coach/patient_dashboards/tables/_goals.html.erb +67 -0
  119. data/app/views/social_networking/coach/patient_dashboards/tables/_likes.html.erb +57 -0
  120. data/app/views/social_networking/coach/patient_dashboards/tables/_on_my_mind_statements.html.erb +62 -0
  121. data/app/views/social_networking/coach/patient_dashboards/tables/_social_summary_totals.html.erb +39 -0
  122. data/app/views/social_networking/coach/patient_dashboards/tables/nudges/_initiator_nudges.html.erb +22 -0
  123. data/app/views/social_networking/coach/patient_dashboards/tables/nudges/_nudges.html.erb +5 -0
  124. data/app/views/social_networking/coach/patient_dashboards/tables/nudges/_recipient_nudges.html.erb +22 -0
  125. data/app/views/social_networking/goals/tool.html.erb +116 -0
  126. data/app/views/social_networking/homes/_action_items.html.erb +13 -0
  127. data/app/views/social_networking/homes/show.html.erb +64 -0
  128. data/app/views/social_networking/mailer/notify.html.erb +11 -0
  129. data/app/views/social_networking/profile_pages/_profile_questions.html.erb +79 -0
  130. data/app/views/social_networking/profile_pages/index.html.erb +27 -0
  131. data/app/views/social_networking/profile_pages/show.html.erb +106 -0
  132. data/app/views/social_networking/shared/_comment_form.html.erb +25 -0
  133. data/app/views/social_networking/shared/_infinite_feed.html.erb +94 -0
  134. data/app/views/social_networking/shared/_nav.html.erb +11 -0
  135. data/app/views/social_networking/shared/_sharing_fields.html +11 -0
  136. data/app/views/social_networking/templates/social_networking/goals/_summary.html +1 -0
  137. data/config/brakeman.ignore +25 -0
  138. data/config/brakeman.yml +0 -0
  139. data/config/initializers/datetime_formats.rb +5 -0
  140. data/config/initializers/think_feel_do_dashboard.rb +2 -0
  141. data/config/routes.rb +25 -0
  142. data/db/migrate/20140827154926_create_social_networking_nudges.rb +40 -0
  143. data/db/migrate/20140827154939_create_social_networking_likes.rb +29 -0
  144. data/db/migrate/20140827154953_create_social_networking_comments.rb +30 -0
  145. data/db/migrate/20140904201719_create_social_networking_goals.rb +31 -0
  146. data/db/migrate/20140910123000_create_social_networking_shared_items.rb +11 -0
  147. data/db/migrate/20140911193832_create_social_networking_on_the_mind_statements.rb +28 -0
  148. data/db/migrate/20140915185648_create_social_networking_profiles.rb +30 -0
  149. data/db/migrate/20140915190627_create_social_networking_profile_questions.rb +14 -0
  150. data/db/migrate/20140915190633_create_social_networking_profile_answers.rb +31 -0
  151. data/db/migrate/20140916163621_add_profile_to_social_networking_profile_answers.rb +23 -0
  152. data/db/migrate/20140917151905_populate_profiles_for_existing_participants.rb +9 -0
  153. data/db/migrate/20140930141007_add_unique_constraint_to_profile_answers.rb +8 -0
  154. data/db/migrate/20141001130941_drop_participant_id_from_shared_items.rb +6 -0
  155. data/db/migrate/20141003191233_add_action_type_to_shared_items.rb +5 -0
  156. data/db/migrate/20141006200325_add_item_label_to_shared_items.rb +5 -0
  157. data/db/migrate/20141007141541_add_uniqueness_constraint_to_likes.rb +8 -0
  158. data/db/migrate/20141008150325_add_icon_name_to_profiles.rb +5 -0
  159. data/db/migrate/20141015222822_remove_unused_profile_question_columns.rb +7 -0
  160. data/db/migrate/20141016015415_seed_profile_questions.rb +16 -0
  161. data/db/migrate/20141016164443_remove_active_from_profiles.rb +5 -0
  162. data/db/migrate/20141106102625_add_active_to_profiles.rb +5 -0
  163. data/db/migrate/20141106104713_seed_active_field_of_profiles.rb +9 -0
  164. data/db/migrate/20141223203142_add_participant_id_to_social_networking_shared_items.rb +6 -0
  165. data/db/migrate/20141223203721_add_participant_id_to_social_networking_shared_items_data_migration.rb +9 -0
  166. data/db/migrate/20150317173959_add_completed_at_to_goals.rb +5 -0
  167. data/db/migrate/20150317174425_populate_completed_at_in_goals.rb +7 -0
  168. data/db/migrate/20150317180057_remove_is_completed_from_goals.rb +5 -0
  169. data/db/migrate/20150318133032_add_deleted_at_to_social_networking_goals.rb +5 -0
  170. data/db/migrate/20150318133127_populate_deleted_at_in_social_networking_goals.rb +7 -0
  171. data/db/migrate/20150318133353_remove_is_deleted_from_social_networking_goals.rb +5 -0
  172. data/db/migrate/20150327143224_add_index_to_comment_items_and_item_types.rb +5 -0
  173. data/db/migrate/20150327143244_add_index_to_like_item_id_and_item_types.rb +5 -0
  174. data/db/migrate/20150327185721_add_indices_to_on_the_mind_statements.rb +6 -0
  175. data/db/migrate/20150327185856_add_indices_to_nudges.rb +7 -0
  176. data/db/migrate/20150327185919_add_indices_to_shared_items.rb +5 -0
  177. data/db/migrate/20151211204425_change_column_default_social_networking_profiles_active_to_false.rb +9 -0
  178. data/lib/social_networking/engine.rb +29 -0
  179. data/lib/social_networking/version.rb +4 -0
  180. data/lib/social_networking.rb +5 -0
  181. data/lib/tasks/seed.rake +17 -0
  182. data/lib/tasks/social_networking_tasks.rake +4 -0
  183. data/spec/controllers/social_networking/comments_controller_spec.rb +139 -0
  184. data/spec/controllers/social_networking/concerns/profile_page/feed_spec.rb +57 -0
  185. data/spec/controllers/social_networking/concerns/show_feed_spec.rb +46 -0
  186. data/spec/controllers/social_networking/goals_controller_spec.rb +178 -0
  187. data/spec/controllers/social_networking/likes_controller_spec.rb +152 -0
  188. data/spec/controllers/social_networking/nudges_controller_spec.rb +88 -0
  189. data/spec/controllers/social_networking/on_the_mind_statements_controller_spec.rb +61 -0
  190. data/spec/controllers/social_networking/participants_controller_spec.rb +67 -0
  191. data/spec/controllers/social_networking/profile_answers_controller_spec.rb +95 -0
  192. data/spec/controllers/social_networking/profile_pages_controller_spec.rb +57 -0
  193. data/spec/controllers/social_networking/profiles_controller_spec.rb +45 -0
  194. data/spec/controllers/social_networking/shared_item_controller_spec.rb +69 -0
  195. data/spec/dummy/README.rdoc +28 -0
  196. data/spec/dummy/Rakefile +6 -0
  197. data/spec/dummy/app/assets/images/profile_icon_art.png +0 -0
  198. data/spec/dummy/app/assets/javascripts/application.js +13 -0
  199. data/spec/dummy/app/assets/stylesheets/application.css +15 -0
  200. data/spec/dummy/app/controllers/application_controller.rb +11 -0
  201. data/spec/dummy/app/helpers/application_helper.rb +3 -0
  202. data/spec/dummy/app/models/arm.rb +17 -0
  203. data/spec/dummy/app/models/membership.rb +3 -0
  204. data/spec/dummy/app/models/participant.rb +41 -0
  205. data/spec/dummy/app/views/layouts/tool.html.erb +14 -0
  206. data/spec/dummy/bin/bundle +3 -0
  207. data/spec/dummy/bin/rails +4 -0
  208. data/spec/dummy/bin/rake +4 -0
  209. data/spec/dummy/config/application.rb +29 -0
  210. data/spec/dummy/config/boot.rb +5 -0
  211. data/spec/dummy/config/database.yml +85 -0
  212. data/spec/dummy/config/environment.rb +5 -0
  213. data/spec/dummy/config/environments/development.rb +37 -0
  214. data/spec/dummy/config/environments/production.rb +82 -0
  215. data/spec/dummy/config/environments/test.rb +39 -0
  216. data/spec/dummy/config/initializers/assets.rb +8 -0
  217. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  218. data/spec/dummy/config/initializers/cookies_serializer.rb +3 -0
  219. data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  220. data/spec/dummy/config/initializers/inflections.rb +16 -0
  221. data/spec/dummy/config/initializers/mime_types.rb +4 -0
  222. data/spec/dummy/config/initializers/session_store.rb +3 -0
  223. data/spec/dummy/config/initializers/social_networking.rb +3 -0
  224. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  225. data/spec/dummy/config/routes.rb +10 -0
  226. data/spec/dummy/config/secrets.yml +22 -0
  227. data/spec/dummy/config.ru +4 -0
  228. data/spec/dummy/db/migrate/001_create_participants.rb +8 -0
  229. data/spec/dummy/db/migrate/002_add_participant_fields.rb +7 -0
  230. data/spec/dummy/db/migrate/003_create_arms.rb +8 -0
  231. data/spec/dummy/db/migrate/005_add_null_false_to_arms.rb +6 -0
  232. data/spec/dummy/db/migrate/006_add_has_woz_to_arm.rb +5 -0
  233. data/spec/dummy/db/migrate/008_add_studyid_to_participant.rb +5 -0
  234. data/spec/dummy/db/migrate/20150309210518_create_activities.rb +8 -0
  235. data/spec/dummy/db/schema.rb +139 -0
  236. data/spec/dummy/log/test.log +2570 -0
  237. data/spec/dummy/public/404.html +67 -0
  238. data/spec/dummy/public/422.html +67 -0
  239. data/spec/dummy/public/500.html +66 -0
  240. data/spec/dummy/public/favicon.ico +0 -0
  241. data/spec/dummy/spec/javascripts/support/jasmine.yml +50 -0
  242. data/spec/dummy/tmp/cache/assets/test/sprockets/04efcdd6c2cbcd95a83d2aa0d4995f89 +0 -0
  243. data/spec/dummy/tmp/cache/assets/test/sprockets/068970f71c3f6012607d13ba3bd51ca9 +0 -0
  244. data/spec/dummy/tmp/cache/assets/test/sprockets/0929783dcb5284a33ab0ec76571eddd5 +0 -0
  245. data/spec/dummy/tmp/cache/assets/test/sprockets/09ba850e0d40810a04aff16561dfa5f4 +0 -0
  246. data/spec/dummy/tmp/cache/assets/test/sprockets/0d398091cc9b33caf4ff46ecf5b6f74f +0 -0
  247. data/spec/dummy/tmp/cache/assets/test/sprockets/12c8d4b7c877e3cd4448dd1b00707da6 +0 -0
  248. data/spec/dummy/tmp/cache/assets/test/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
  249. data/spec/dummy/tmp/cache/assets/test/sprockets/140a7d4959b7b37b837ba2f3cb2bf417 +0 -0
  250. data/spec/dummy/tmp/cache/assets/test/sprockets/154ab867cda672ff401a3baac54b7898 +0 -0
  251. data/spec/dummy/tmp/cache/assets/test/sprockets/1960708584396db585aae1018ea4a492 +0 -0
  252. data/spec/dummy/tmp/cache/assets/test/sprockets/1d762895546253dcc6e595df571755b1 +0 -0
  253. data/spec/dummy/tmp/cache/assets/test/sprockets/1ed203a64343e4f8e85e690a0b5d0f7b +0 -0
  254. data/spec/dummy/tmp/cache/assets/test/sprockets/1f952a4b9967316acf409ccd34e8ec87 +0 -0
  255. data/spec/dummy/tmp/cache/assets/test/sprockets/1f98bd082d83bfdad92f9ba01b42748a +0 -0
  256. data/spec/dummy/tmp/cache/assets/test/sprockets/22350041706de3dfa9cee230711d3ce9 +0 -0
  257. data/spec/dummy/tmp/cache/assets/test/sprockets/22e8cb4f46663942b588d7944872c0f8 +0 -0
  258. data/spec/dummy/tmp/cache/assets/test/sprockets/26231c6b41d81e442dab3d83badd2f01 +0 -0
  259. data/spec/dummy/tmp/cache/assets/test/sprockets/27bf280d84e06ed90ff687aaf602df7e +0 -0
  260. data/spec/dummy/tmp/cache/assets/test/sprockets/2860af66d6d959cb8944e1c48d098de7 +0 -0
  261. data/spec/dummy/tmp/cache/assets/test/sprockets/28a86db440573315a22085e2b4036c0d +0 -0
  262. data/spec/dummy/tmp/cache/assets/test/sprockets/29a82a5df9e04680f19b956360385c06 +0 -0
  263. data/spec/dummy/tmp/cache/assets/test/sprockets/2a1b3faed5adcc0e4e23cdcc0ce8d71d +0 -0
  264. data/spec/dummy/tmp/cache/assets/test/sprockets/2b872bba3bb8628d6f86243fc6e703d7 +0 -0
  265. data/spec/dummy/tmp/cache/assets/test/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
  266. data/spec/dummy/tmp/cache/assets/test/sprockets/31531d40219fb9de72f7d435f0bc6d29 +0 -0
  267. data/spec/dummy/tmp/cache/assets/test/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
  268. data/spec/dummy/tmp/cache/assets/test/sprockets/367532405470b3383c6a711508e349b2 +0 -0
  269. data/spec/dummy/tmp/cache/assets/test/sprockets/36e5455272bf2b78c940e9852c3ea676 +0 -0
  270. data/spec/dummy/tmp/cache/assets/test/sprockets/39d7bdd486b95f83727fc7fd46c39ae6 +0 -0
  271. data/spec/dummy/tmp/cache/assets/test/sprockets/3a1337d692c1f9efc14d7160cf945f74 +0 -0
  272. data/spec/dummy/tmp/cache/assets/test/sprockets/3d8940a03a5b8bb523a7162b7b7535d0 +0 -0
  273. data/spec/dummy/tmp/cache/assets/test/sprockets/3f1cbf42da24a1936d09dc953596ef9a +0 -0
  274. data/spec/dummy/tmp/cache/assets/test/sprockets/3f4fed38607dba45acf166564186df46 +0 -0
  275. data/spec/dummy/tmp/cache/assets/test/sprockets/40e5c19eafa92b2835c4d00b48700e96 +0 -0
  276. data/spec/dummy/tmp/cache/assets/test/sprockets/43d2fda02ff963968b06162a6d0d374d +0 -0
  277. data/spec/dummy/tmp/cache/assets/test/sprockets/45d1b5e6429202866237cdeb6eeb9f2d +0 -0
  278. data/spec/dummy/tmp/cache/assets/test/sprockets/4b6e85ac359577dc45d431be6388f2a9 +0 -0
  279. data/spec/dummy/tmp/cache/assets/test/sprockets/4be94805fb74f8b23ca1eca6ed0bd632 +0 -0
  280. data/spec/dummy/tmp/cache/assets/test/sprockets/4c5ff0a55b551701250f16d458ba51b4 +0 -0
  281. data/spec/dummy/tmp/cache/assets/test/sprockets/4d20040fe1d18366899d8caf56ec3888 +0 -0
  282. data/spec/dummy/tmp/cache/assets/test/sprockets/4eaff946c4e170a052634f6d0a84b35c +0 -0
  283. data/spec/dummy/tmp/cache/assets/test/sprockets/541a3d0737bf0f253387f6b0b7d6a5d3 +0 -0
  284. data/spec/dummy/tmp/cache/assets/test/sprockets/54c84618c8cf7d618f6151ea3fd88114 +0 -0
  285. data/spec/dummy/tmp/cache/assets/test/sprockets/560219db5ee91f876afa37ef5649c1d0 +0 -0
  286. data/spec/dummy/tmp/cache/assets/test/sprockets/572be3bb00fd4fc080a02f811f61c09a +0 -0
  287. data/spec/dummy/tmp/cache/assets/test/sprockets/5a3c0221e63dd66e2d75cbabc62576bc +0 -0
  288. data/spec/dummy/tmp/cache/assets/test/sprockets/5a6a2bae028eaea543a5bb7f29e24c25 +0 -0
  289. data/spec/dummy/tmp/cache/assets/test/sprockets/5ab8b4a262c6429d3bb919a0afc62f40 +0 -0
  290. data/spec/dummy/tmp/cache/assets/test/sprockets/5b931c69c9352477eca01b56f003018d +0 -0
  291. data/spec/dummy/tmp/cache/assets/test/sprockets/5d1fd03e2719b5fbff6134e24275b83c +0 -0
  292. data/spec/dummy/tmp/cache/assets/test/sprockets/60e0db4345ca1045d312904ddcd94658 +0 -0
  293. data/spec/dummy/tmp/cache/assets/test/sprockets/61bf02a12fdd04ae613f77f050bb0bd2 +0 -0
  294. data/spec/dummy/tmp/cache/assets/test/sprockets/674b2ac4d809a9b90cee9866f1e8bfcc +0 -0
  295. data/spec/dummy/tmp/cache/assets/test/sprockets/68526121585196fdc97da101d374ff68 +0 -0
  296. data/spec/dummy/tmp/cache/assets/test/sprockets/688e7d80db8815937c45205e7ce92dfa +0 -0
  297. data/spec/dummy/tmp/cache/assets/test/sprockets/6c170dcde21cf22cc343417ec75314eb +0 -0
  298. data/spec/dummy/tmp/cache/assets/test/sprockets/6d23eac698f5f61de3f7eecfaeddf1b4 +0 -0
  299. data/spec/dummy/tmp/cache/assets/test/sprockets/6dffaae88127986895220191266ec704 +0 -0
  300. data/spec/dummy/tmp/cache/assets/test/sprockets/6e06d0075cb88c7364b07464dbfb7688 +0 -0
  301. data/spec/dummy/tmp/cache/assets/test/sprockets/728cf3650010e91e100cae55401a5830 +0 -0
  302. data/spec/dummy/tmp/cache/assets/test/sprockets/738cdc373678c00120e4d6d7ffb705de +0 -0
  303. data/spec/dummy/tmp/cache/assets/test/sprockets/7a2651faf6bb6a23a8effe61630fd700 +0 -0
  304. data/spec/dummy/tmp/cache/assets/test/sprockets/7a2a8769a0ec115fed298f3e5c93c1dd +0 -0
  305. data/spec/dummy/tmp/cache/assets/test/sprockets/7c24a1204ee1746620faad54fbed946c +0 -0
  306. data/spec/dummy/tmp/cache/assets/test/sprockets/7cdc143a7c7fe71a82e354732c18246c +0 -0
  307. data/spec/dummy/tmp/cache/assets/test/sprockets/7e999b5ecb325df8accc83846ce2c61f +0 -0
  308. data/spec/dummy/tmp/cache/assets/test/sprockets/895691afa586f44640776cab8bd383c3 +0 -0
  309. data/spec/dummy/tmp/cache/assets/test/sprockets/8bba4a518cf75d823dba13f41424a984 +0 -0
  310. data/spec/dummy/tmp/cache/assets/test/sprockets/8d441dad671546638ccdca205d3536a3 +0 -0
  311. data/spec/dummy/tmp/cache/assets/test/sprockets/8d70cef1f0db4662b80f108e80fe5b65 +0 -0
  312. data/spec/dummy/tmp/cache/assets/test/sprockets/9146770e078971e34abce1d944074147 +0 -0
  313. data/spec/dummy/tmp/cache/assets/test/sprockets/968ae7fc17099ef0889f64467a8cb734 +0 -0
  314. data/spec/dummy/tmp/cache/assets/test/sprockets/976e87a00faf3e5602358931e689d3b0 +0 -0
  315. data/spec/dummy/tmp/cache/assets/test/sprockets/9c1b782e0a2c7965e1ceed6ab002b8ff +0 -0
  316. data/spec/dummy/tmp/cache/assets/test/sprockets/9c2f58c58ad455cd5d72ac9815d59b7b +0 -0
  317. data/spec/dummy/tmp/cache/assets/test/sprockets/9f689c6ccaf5f847ad59b7783174476d +0 -0
  318. data/spec/dummy/tmp/cache/assets/test/sprockets/a1ccfd0880e598423474a088a3119000 +0 -0
  319. data/spec/dummy/tmp/cache/assets/test/sprockets/a23da29f740b4ea1d2379dc17c8326ee +0 -0
  320. data/spec/dummy/tmp/cache/assets/test/sprockets/a2fa117e42b34a2ffea76d5ca64a3f1a +0 -0
  321. data/spec/dummy/tmp/cache/assets/test/sprockets/a3cef68f2556ddb2a541e62c00ae540d +0 -0
  322. data/spec/dummy/tmp/cache/assets/test/sprockets/aa29d745f690c694480985c15036192f +0 -0
  323. data/spec/dummy/tmp/cache/assets/test/sprockets/aa8aab7ae37043423b88c004cb8f4cdf +0 -0
  324. data/spec/dummy/tmp/cache/assets/test/sprockets/aa962b4cca6151633f9ab8ff34d0c520 +0 -0
  325. data/spec/dummy/tmp/cache/assets/test/sprockets/abaa0de19245ca2c68191677f4559081 +0 -0
  326. data/spec/dummy/tmp/cache/assets/test/sprockets/ac2b3b35971cf44d8178142506e5d5b7 +0 -0
  327. data/spec/dummy/tmp/cache/assets/test/sprockets/ae29456edfe833786eea7c66707c7da4 +0 -0
  328. data/spec/dummy/tmp/cache/assets/test/sprockets/af34abeaf80d5a3bda55ab5a4b80b0dd +0 -0
  329. data/spec/dummy/tmp/cache/assets/test/sprockets/b3d20fc65bd5b869e10d000c3d63f169 +0 -0
  330. data/spec/dummy/tmp/cache/assets/test/sprockets/b518c9877d28db6188b4f30f924b8a46 +0 -0
  331. data/spec/dummy/tmp/cache/assets/test/sprockets/b57dd1a0f84680cfbb1dcc22a56d96b8 +0 -0
  332. data/spec/dummy/tmp/cache/assets/test/sprockets/ba4b67f6691a50192907c834193e9d58 +0 -0
  333. data/spec/dummy/tmp/cache/assets/test/sprockets/bd5422edbbd5c7fc844657da6abacea8 +0 -0
  334. data/spec/dummy/tmp/cache/assets/test/sprockets/c2986c18be3b9e2260ebc2ec3f7cf68e +0 -0
  335. data/spec/dummy/tmp/cache/assets/test/sprockets/c3c4b1d5dd84fe989d8d71a0742b7955 +0 -0
  336. data/spec/dummy/tmp/cache/assets/test/sprockets/c3c84972cc743ef7ce0be72922c4d7ef +0 -0
  337. data/spec/dummy/tmp/cache/assets/test/sprockets/c486fa9d8abbb7b603dcba17f821f070 +0 -0
  338. data/spec/dummy/tmp/cache/assets/test/sprockets/c58e24e3502e2b6da83a2d6d6700e15a +0 -0
  339. data/spec/dummy/tmp/cache/assets/test/sprockets/c5f7d3bee0ba777ca31ce3f567809224 +0 -0
  340. data/spec/dummy/tmp/cache/assets/test/sprockets/c947fc97ebed89ec8585c68c9f8390b7 +0 -0
  341. data/spec/dummy/tmp/cache/assets/test/sprockets/ca1466177f0af6f86edc281e3c251a0d +0 -0
  342. data/spec/dummy/tmp/cache/assets/test/sprockets/ca28a1bafeeac300a63b1bbf3ab8c897 +0 -0
  343. data/spec/dummy/tmp/cache/assets/test/sprockets/cacbdab68eef233cd46010371da08c43 +0 -0
  344. data/spec/dummy/tmp/cache/assets/test/sprockets/cc8d8966f154f7c7da3cce88f0b47fc9 +0 -0
  345. data/spec/dummy/tmp/cache/assets/test/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
  346. data/spec/dummy/tmp/cache/assets/test/sprockets/d030f0f26628011570880089419315ce +0 -0
  347. data/spec/dummy/tmp/cache/assets/test/sprockets/d1d96db186996c39eb8f5259c167da27 +0 -0
  348. data/spec/dummy/tmp/cache/assets/test/sprockets/d47cfb4b568753042b07393d36056556 +0 -0
  349. data/spec/dummy/tmp/cache/assets/test/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
  350. data/spec/dummy/tmp/cache/assets/test/sprockets/d7ac57921e5445b1ccb0e9a0dd15d9b1 +0 -0
  351. data/spec/dummy/tmp/cache/assets/test/sprockets/d8ceef4f981c72fb022ff0c99b2f177d +0 -0
  352. data/spec/dummy/tmp/cache/assets/test/sprockets/d8d46208b57987aafef4d0a7955f4151 +0 -0
  353. data/spec/dummy/tmp/cache/assets/test/sprockets/dafd05a502959ae10f9e01822ab180c8 +0 -0
  354. data/spec/dummy/tmp/cache/assets/test/sprockets/e085fbe577186379fb7420be5bf18607 +0 -0
  355. data/spec/dummy/tmp/cache/assets/test/sprockets/e1a08a4120e766f3afacb299b2e29230 +0 -0
  356. data/spec/dummy/tmp/cache/assets/test/sprockets/e21891a7e3b4ca614f61ed71a863ead0 +0 -0
  357. data/spec/dummy/tmp/cache/assets/test/sprockets/e2dee3d404c3b593266ad9ff6a3735d0 +0 -0
  358. data/spec/dummy/tmp/cache/assets/test/sprockets/e37b8f12cd510587012353ad9d06913a +0 -0
  359. data/spec/dummy/tmp/cache/assets/test/sprockets/e76cbbf8dcf00082c47c01d37044d6d7 +0 -0
  360. data/spec/dummy/tmp/cache/assets/test/sprockets/e7a9e5cc7b084b587c2edcaa960b8e15 +0 -0
  361. data/spec/dummy/tmp/cache/assets/test/sprockets/e8a2ef95023e57ce5c183606a22fd449 +0 -0
  362. data/spec/dummy/tmp/cache/assets/test/sprockets/ebb42cb2d4235b4e1dae3dea9db2e67f +0 -0
  363. data/spec/dummy/tmp/cache/assets/test/sprockets/ec89e89474a7c877cc323153779a9c8a +0 -0
  364. data/spec/dummy/tmp/cache/assets/test/sprockets/f2b564985f4ff06a50afbc400dffd487 +0 -0
  365. data/spec/dummy/tmp/cache/assets/test/sprockets/f4024efb009df86e896190a181da8478 +0 -0
  366. data/spec/dummy/tmp/cache/assets/test/sprockets/f56f31437c53a543d321fadf298f946f +0 -0
  367. data/spec/dummy/tmp/cache/assets/test/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
  368. data/spec/dummy/tmp/cache/assets/test/sprockets/fc84963b480f54a41ad1983db1a1474a +0 -0
  369. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/-Kl7eLvnXvAQpHHO0RSxE7GCGE0tSG5KH-OUa6OVtik.cache +1 -0
  370. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/-WU-JqepVF-DTdSlRu6uS8xIVrtSADfFfhDqjqQQedA.cache +1 -0
  371. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/-j1cnxD6WVjsz8CRyaZZNOoh_lze6qj0pOgzaVlR4qs.cache +1 -0
  372. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/-pkorL6LfkzJf0__OamvnwkpHhzdEISIQtyhWteTjNs.cache +0 -0
  373. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/0FOD13MGeTXbv6iHubo9MNlLYMcv9Jb7cUWv-3uU9xw.cache +2 -0
  374. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/0I70zaRtFNDZYHW6TjZiMrISeghHV3u6UoklahKOQrA.cache +0 -0
  375. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/0M7l1lWcLbUw_-2zKwRqbE74S0zPeZCzjjA1mU_H02c.cache +2 -0
  376. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/0hz5HR6RzEgs0jqntLhqM_FHIgeXlBy9JLRxwLre9nA.cache +1 -0
  377. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/11j_zBUWnB_noYdpXX6yTXk83ylkKjCC6x9CUd6tHJI.cache +1 -0
  378. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/1m8-kDbSQWt1HM-BYSKNtW-OrfzNvGGUTJaZ9rNZxwA.cache +2 -0
  379. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/1wTclBfuQl0hyPD9bV1c360UrolsRqSkXwW82TXt60w.cache +0 -0
  380. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/28FMT4a_EiOtu-dpXX3pgYypD248pYbd2-N8LC2AK-k.cache +0 -0
  381. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/2EqlKwzfGGe0jVya_ah5rs9LZyIw-xTAuEgkerY4TOY.cache +0 -0
  382. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/2h2DyYyVNypgZ_X43AvwfBAD0MnoRmclnTf-9zKDHes.cache +0 -0
  383. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/2vMyUMkVHhTF0xlxZ4MR9MfAtifhkXhnNT_yiRyBztI.cache +2 -0
  384. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/36bjILgscvAaTKgrGP7RQne8CVH5XS2KWN5XD3xBnm4.cache +2 -0
  385. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/3e87gYbgeDYaP8698l6nAqE5cMrTGbhRNCrknbLrGJE.cache +0 -0
  386. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/3xV_Wbs0ECPCzZ15J4b-jdz7MgHLwKBPA0XPajF_wfU.cache +1 -0
  387. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/4NrGbarSfwsf0W_ggaGlTw0LKz6B1lFRlPEbNcg0mAo.cache +2 -0
  388. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/4NsobJgC2SmxE8K1j8wfVF8A1saRJpmr2J3Ud-V7QFQ.cache +1 -0
  389. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/4frttnlbfUjitowHOAIeln9xuEFU3RZpqu_PH9IBh1w.cache +3 -0
  390. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/4idVT75AxzWeKPFKRcvjHcrfSG9vLgOh92UCQ0NJhuI.cache +1 -0
  391. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/4merYQ2M1201BAz6XtjFzj5JAews34QuwydGzr2x99s.cache +1 -0
  392. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/58uXxkZLLaPd09smeocWKFQd35od2IRdpcgKBSAibCE.cache +1 -0
  393. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/5Ksy8krRwIia3k3HciPFXChZTc03x3IMdY0dIXbTAxU.cache +1 -0
  394. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/5gfjkEM4e5wWzc-hLf4YfFDda3M8Tq0Mc5l5xglUNXQ.cache +0 -0
  395. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/5mB1_oGW8Dvt0yRzmW6V2Nl7YAg_B1JgatQDDyfIJ-k.cache +3 -0
  396. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/60XhepG7gj3RkZz5kJij1tiOspZ-tYpfDF3x6Op_qIw.cache +1 -0
  397. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/68cGGmmrte-5ECDHO-ncmQwzR-Rh4vD84YHs67Hysh0.cache +1 -0
  398. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/6RHMH5Mbj47VK94CkdISUfhZSvyPg0rlvQ_hEted0fY.cache +1 -0
  399. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/6XbZpmNHcZscIKL-OAohGcM2rGkVzQPtEhgyMvi4lvE.cache +0 -0
  400. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/6ZR1jD36DG0Gg9CH9O9anQhwjsmmJDJqOTl1upPJua8.cache +1 -0
  401. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/6vKulvrY_lwn1VnETAo3w3LkCtomqosV4Ee7g2_Z4fY.cache +0 -0
  402. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/77vKYy51Jr9VFLeSL5t8N9UZGLGyC6dgKU-sDqYrFGM.cache +1 -0
  403. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/7YE-1oMQQdcewPg7d072ky3wl5aFFkmeu2WhbSne9xA.cache +2 -0
  404. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/7x_7AKaqtE4SJtFhwXw-R_NtVDJ5uiTBO5-_Symqsv8.cache +0 -0
  405. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/88L_9W2TxasY7ylZUgtG8QrPeh6H0FFv72G4Ucm0P9Q.cache +1 -0
  406. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/89t5I0yd6cdBsdVcuaWGTFXCOZ32tkLZx358JHi77Ks.cache +1 -0
  407. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/8EllqE_b9MFGDmrvnO6pKhmhMfTtUOJAlNlvAC_t0vc.cache +1 -0
  408. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/8oJB5cwVs0UjcszfU9BSogRPzpYwFvGPvKl4cync7qs.cache +1 -0
  409. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/96dgkJ06tOBt34tT84AvWgnpGkNwTHa4nlPDRkNtNkE.cache +1 -0
  410. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/9U8iQEEqiOPuxSGeGN-WhxCF73z-GD8odYXs2_HZ2iA.cache +1 -0
  411. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/9ajfYu2m83ZNU-xoicMF1F1IxW3QBovL2ZVo76FyKwU.cache +1 -0
  412. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/9auLnF2MX77my31UDbHJ4PDw3v2XXC3uTwN2qYxtofw.cache +0 -0
  413. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/9dMFObFT2EnVycRFfQT3llUJhfXimv4qfev51SuAvDw.cache +1 -0
  414. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/AINQZl10AtaJqHZyyNZdVqmuCjRXMHBoF3uVRzTV5D0.cache +1 -0
  415. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/AlNYO1xK40rhHfFyRYGxXTHHJDg20nuatO1w4_dHWag.cache +1 -0
  416. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/Amf6TOEJj52Y_q8SFAO2_alayaDbHjYmyCY4xFH5pRw.cache +0 -0
  417. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/AzFhw57UjRaXPes4x1rH89UL4dK1tJ4lmI-MGunACZI.cache +2 -0
  418. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/BMNEGqDE_k0Y_ZLiyGs2U1rGheuZkRbcY3h9j1zucxQ.cache +2 -0
  419. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/BPYjK4i8yqdGrlDJYymCpvtdq0Snmnwa2k2qaS_7t14.cache +0 -0
  420. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/BjTft4o-tKWvIPKtvf5AkkAUPLObFIT_do6Jm7tVKkQ.cache +1 -0
  421. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/CCpDzdG3W13gZeA5EFZRfTgO-ThiqqfRcOTz286AtH0.cache +1 -0
  422. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/Ca4arIhUzvVjosagcB8jsaBlFEdzjJpGfb6jjeLgkxE.cache +1 -0
  423. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/CcBydNOQmljUdbJuOzv105nCjVkTtnHoTT-r6kiPLk4.cache +0 -0
  424. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/CcTGAtIJmw1CnyheeZBIpUBzQ9mMEEp576BgKx6c8VQ.cache +2 -0
  425. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/Chi2RCxRj8eEfPJxEJddjhdgReDg4bUY3dMPiKq2PWY.cache +0 -0
  426. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/Cm5YNa35Mpa_Cg8f1h-NnORBopbu1sgkf9pHJwNelk4.cache +2 -0
  427. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/Cxgk3uQ4gVJPQqwn5P893pNo10Ymbe7VqJqiAQUOcQs.cache +0 -0
  428. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/D9QZrZJ63_XOdiSyzVkL5di0X0USCC2QBRcasQhhtXg.cache +1 -0
  429. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/DOnD8st_2PDNu_jghE9jb2em-wWMmCaWylTxNUd_gnE.cache +1 -0
  430. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/DafDaaltFmFz2oPyaLKSFmhcIQTMLDBUlS6uJgkNMZE.cache +1 -0
  431. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/DxGBFYs6zLSeYDW1JbTUbjf2Ik2n0ACzYKYbtGtkqSg.cache +1 -0
  432. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/DyLaLMPso-ByMEkpb6IBwyCPWiPjrcB2boVURoj2s_o.cache +0 -0
  433. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/E03RtAomRVfV9kzAYE7db9qN8aJglXLJDbT39IheYa0.cache +1 -0
  434. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/EBhopqgX8x1a7hHpixQP7SafeUa5poT9jUqyv-_4hp4.cache +0 -0
  435. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/EEtFS2SnA4hDQgK02Y_tdC6IypLaGKf0zmTbzk_P548.cache +1 -0
  436. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/EKbTxMQiibHNFMKIy7PPXSJwrevhl6dvBouZm0R8iOI.cache +0 -0
  437. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/EZZhD9Dm8b88dOoZlfo_pgoDXBeVpJPaMxGJ7o9rP38.cache +1 -0
  438. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/EqTGxHK2drCdyrWWK0L_qeI2xdZFg-yeAjl-mdFzT_w.cache +0 -0
  439. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/F0DB8SF2vleu8oyBOqSJNWzYv3Xeq1jMgI0W3Qr2Mis.cache +0 -0
  440. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/FBOWggWkBK_75B_Ra3WQrEKEwWBw6MPeJV7XrXyJ6rc.cache +1 -0
  441. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/FMNxBdDAGb_B08SbmLbkVOBMDsoSRDc4say1jccF7XQ.cache +2 -0
  442. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/FltaQce9Y1CpZf73yxwYPYVZQG6pdlqMSF1ND6526AA.cache +1 -0
  443. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/Ghi37MhO6Av2HBvVSRv54q9X4ovVskDNEeHyiDRi43k.cache +0 -0
  444. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/GiIOrHqX_kacv_9z2B630MniSnPcl-xF_oMtnNZxJlE.cache +2 -0
  445. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/GxQzUlvpTSYIngAYQR8ZwD61-5pa4UcBTL-93JTXwQA.cache +2 -0
  446. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/HR5TgeriOCfs8vqLY3y-vOTxbDGJCAqVe7ejhduAopQ.cache +0 -0
  447. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/Hb6tiUleBb7lJtBtixNk6wDERPxLwj-atd-7VWhK-KY.cache +1 -0
  448. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/HliBSFWaOzYo2Tp3NLqFI0dzOaBUqQ_Eb8A-ijIK-P4.cache +2 -0
  449. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/I1mtmpmoauZKzIfX4Nuxd32-RLvBfEiAUoo7eUrLW9U.cache +0 -0
  450. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/IBOMe6hFUXo2Advx7iSiCAMORK5GOff43DQNiObLYSw.cache +0 -0
  451. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/ID2TAnevxW1Sn4vt0mFIx6MFmaO8T0oib-Ts4Qwjdqc.cache +2 -0
  452. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/IHzO5EE1hIa7YDQm7mLOPEbRg_qj0CUojrNel_s5uHo.cache +1 -0
  453. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/IPN_5r0HPnY6qHZ11JCXMC8qz7cp5-9D_tyyc-aXS9A.cache +1 -0
  454. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/IiUZ72U5K2rvRG13qyVr0mVNpRxVf21SN6q6LNVjFbw.cache +2 -0
  455. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/Ik6jghOUPFUi4cbv9k1K_AuBIhcg-xcgiAlSiBiVsE8.cache +0 -0
  456. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/JdCbaxFb2mtb-XqPLC3e5ZCBk7mndLzgtCy4dK-itaU.cache +0 -0
  457. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/JuVksXNe-kUWuYYnKrVv8aOBAgkh42yZnuebyXEMQbQ.cache +1 -0
  458. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/JwdAo29vaIOkPuWtbEYRc-bnsclGbxlZ04D1Q9X5ZAU.cache +0 -0
  459. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/K5HD2xy8qRP6Rg6axUTrEo1BVTgm-5v-nW-5z0eUv7k.cache +1 -0
  460. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/KK7-YeBGe7vnm2wYNbTGQUaEC7Mk8kRc7zW5UuLxVzs.cache +1 -0
  461. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/KUCMeIyfSJYgKme_2CX2kMgCHm_1HD8JpWuVcWR-i9g.cache +2 -0
  462. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/Kgm7eaversrfhbkxWftCN-_bA_oRA3BKhucRIo6hZfM.cache +0 -0
  463. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/LDgFmC-Qowab8Ty7v1oMXq5DbpMJHpyXCzj-fb3ofUI.cache +1 -0
  464. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/LF9cqLCpCKK45hkoU03HjB0E9QTYR8ZHkSkT_-XnU4g.cache +0 -0
  465. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/LIcuPhyoVCaRDqHJjy5ynh6GhFolAaiuvLCj5fYNtUw.cache +0 -0
  466. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/Lz6c89-eVWWBPzKydxpqoxLA5MiFnolTehDXJ0328gg.cache +1 -0
  467. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/M3KzXbqZJ7cj-odtR9LLGv3NWQ3uU8zCU8qroa6lGdY.cache +2 -0
  468. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/M6YIECYiSiGWlv5UEyLrgKjfVAuUtHEND8pgLmsrfXs.cache +0 -0
  469. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/M7jIBHnObqQu1ZUYeLq7bez0wYEzNT5T0qyJjQoOW44.cache +0 -0
  470. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/McykCRHHDQzN7wHpJqyYfnBIlEHpJpdLUdNDD6TS2u4.cache +1 -0
  471. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/MfMOUf3woUN-NpXdXIbtu2vD6bO0Hg_eBltVYKxBXHw.cache +0 -0
  472. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/MvHFm2BpzYmTgbZ-dfIVI4bJM1Xdot_L2_UY8jdR-DU.cache +1 -0
  473. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/Mvj-qtsI7_IQw81ywgayhNuCB6WhIXNgebDykUiNM1c.cache +2 -0
  474. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/NCdhWqZzyU9KMA24yVZfhbZZgrfaVcSXygDttZDK0pw.cache +1 -0
  475. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/NIDczTDvwoT4E54H7IvQQCQQUp5ETf5jTc959elSVIM.cache +2 -0
  476. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/NIUmtg76CDA3k56ZRix2c2zk0g74kUfkQKAEC1URX70.cache +1 -0
  477. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/NQbnRV4ZOz2kD4dJZLNdDxGtLHdmG78aWKD9ic5UJU0.cache +2 -0
  478. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/Nbe9MxX5L18mY_SvrY1LmQ28DBdtWXfHtv01sAy44PI.cache +1 -0
  479. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/NbnwIH6yXuD_o6lDRhBz4zoOVnS0nb_LNyzv6fIcHWQ.cache +2 -0
  480. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/Npi3B0esj5mnRmKjcrZEqvfYMEXq1m0Wnxetpf893Ek.cache +2 -0
  481. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/O7WC0awRTG2hcvxKVDJ6LrdGEuL7YxocQUw2d-UTbmY.cache +1 -0
  482. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/O8akbUwAbmIKY-AhITimq-JDQ6IgsO3Hvq2v5etufFw.cache +2 -0
  483. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/ObCOiweEGWKEn5G8eWQSfR887Yi702tPObaLkMNES_c.cache +2 -0
  484. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/ObdIdL7E4w4UDFLndzcRZdowkN29A8XsaRSpzEJuX6Q.cache +1 -0
  485. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/P6OiAJ-x0gq4A1ixHfODhauG0uur5LrRcQvDhBRuhwY.cache +1 -0
  486. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/PDE7K8QSxh6yZVGnJad2XasYtPFfvBLda2RK1xbCCY0.cache +1 -0
  487. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/PF8jVe43kt3aGtP3z27ER33XQAxvW8tm052sXDGIOys.cache +0 -0
  488. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/PHYKuXWTpxrRcx9fvzzIKXlTQFMqkGZBF_cF6Nm9e6M.cache +0 -0
  489. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/PUOQ3QLfR6Uv0QkilH_-HsbbNmamc-jwyhXVCO7MfrQ.cache +1 -0
  490. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/PciIOqCmmInt_D8J2zH0HO7BHzNLzweZxxbp8InJiJM.cache +1 -0
  491. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/PiiYSGME8IETnMv8wyHabAQ8dQLWJuCADRytXzz2zt4.cache +2 -0
  492. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/Pt5L_9FIrEh4mV-ugTXsC4X4tB0GVcXO-Rhd--an-JQ.cache +0 -0
  493. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/QBSeAI4UcQXnJOpFdPKOzdXpYMn62qm4wyPNhH6QPWw.cache +0 -0
  494. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/QIFmyb6W-9jQUOxWYNkuzoyERR5U5ev-iiREa8yHD3o.cache +2 -0
  495. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/QOXYmHR1W-37X6qAZOGFTMhj7dzBQf5a-xMk7QC6q1s.cache +1 -0
  496. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/RehYfMoP35mzUqugLaaC0GETUfRE1JIQrpQKWKxchx8.cache +0 -0
  497. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/S-AysoDTJXWRWEmgTJ4vBioZ-ei5lG8LdRJzUcJakdg.cache +1 -0
  498. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/S-sKK_R__vzg8OGRsBZ0LpjXpZi5sVq6zX6YLWiXk1M.cache +1 -0
  499. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/SuerJAVpvUaoie-SfM_yjcRr068zE3idcmMoLPRMcCo.cache +0 -0
  500. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/SwmVDeL6mLTd9eCHwreqXojuYW9Z4JovoCtbQ9k8hEg.cache +1 -0
  501. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/TLBmbsLhiGNq2J6hgc88yclTEcC2qLlzvjerRvKF58I.cache +1 -0
  502. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/TapmroTKPi1dfKnnO63VVain9GhrJMOMwunRiNWug0A.cache +1 -0
  503. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/Tfb52ZLkIuepuhjA112-KHiNeNmMlzA9dWwrVQHUnIg.cache +1 -0
  504. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/TfukQ5et-BTh27AZKYewwVWUXj5gQgl5p06fGAtgUzU.cache +0 -0
  505. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/ToOIJ6rRF-bcKueaGgRsc5azdRPlF5YSRC07G6LnMqw.cache +1 -0
  506. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/Tv3lc0P580mhM6shD-eCsvmWfu23x2JptWMo1a5Y6LQ.cache +2 -0
  507. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/U2HqX5LYZZX1xzabfbxzuG-SN95k5wf3UWQDKL4oKdk.cache +0 -0
  508. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/UEWzEPlOqBrWXkWr86Mbnvp9UkmpEwmbO70QyXFDtQg.cache +0 -0
  509. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/UKuAcJLE961hTJhJ3_g8IVkP8hi4SJ1ibMriqluQBSc.cache +1 -0
  510. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/Ufjo8SEMhwSXNbt1ELV1w2W0AK2RqvKuRCfj8oDSrA0.cache +2 -0
  511. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/VZ7WrbhwonPow-gjNSy--48-OwcgHeuIRt6pzlIe9u0.cache +2 -0
  512. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/VgPnbsqytPuO0Ik1c4tlPVmDmgrzRG1Aimzxq_gtF8g.cache +2 -0
  513. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/VteJsc6Hoxg5CZ4n3j7NOtJX28yOxGkudHXcjnk97zE.cache +0 -0
  514. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/WE0KN5RFSUAZBNZTuJwbweRCIn9UK30RPxMfhEur8Vo.cache +0 -0
  515. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/WG-ciVUsY3cyQnpsMU4ynT7daEL-azSsM80uYZ-o6dc.cache +1 -0
  516. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/WGsBp-eP0POzBqmwMV94nqQfdgvXWB3XfjV7RTkjkOg.cache +1 -0
  517. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/Wau-56jMKZeemv9I0TxR_dtytVmnmROvaYf0KdWgqYg.cache +0 -0
  518. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/WiWBeG7nAbiu_mXHNvoUeP2aj0Na4CIPOJTRKxVpxlw.cache +1 -0
  519. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/WtWLSNQ4YXD4jE30EAvu-u2a8fDUdeT_pwiNQbo4XXA.cache +1 -0
  520. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/XDOG9yeFGOOsKQuWaYsp0MjtyAHkwaOYDJx1KqPQqj8.cache +1 -0
  521. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/XQhSvqFG85BZLLEp_oF2j7bieWIMWg-zlSuszqJeKyI.cache +0 -0
  522. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/XRVCsMytpsgXocEtryMQ4AadQJxP4AIPi6KVkC42U2s.cache +3 -0
  523. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/XXVczR_0vWS_qIBG3EDaNjMQpTiYH6ECDQndmW5pXzs.cache +0 -0
  524. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/X_MQ9TWcE5TDPhl09G9Li2hoOdKTSA5izEmEEOCOZNI.cache +1 -0
  525. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/XyguOxuYT1L5Jfk17rGm94Whvggm9cvVkqzys3KT8mI.cache +1 -0
  526. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/YOyYkTNmHljba-4nIjr7YlZrp92tHj4SJKjwrhMYQJg.cache +1 -0
  527. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/Yk1-v76F4OYZ1k1_rAPHA-hUAe-YlipmKqyqLmjMsRc.cache +2 -0
  528. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/Ywk2BN6P76hLuAdQbZ4Nc6G2wktEfe_zkj8oNw4xdeU.cache +2 -0
  529. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/Z5odkgR_R_ktxsQY6qUG-MvjDrJhv24j-WK0QMGM5ng.cache +2 -0
  530. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/ZQn3l7rP-xxUdl_jjSQct3rxoUttJeMgHb2ybJ93N1g.cache +2 -0
  531. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/ZXKM3i6yC9CFe9EI4Lr04ETqpxg_Uuk5ny2bjfvCMeY.cache +0 -0
  532. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/ZdeGHCEgJIB_xlZrcZbh5r4aMXNunY758y88lOekfgM.cache +2 -0
  533. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/ZqnS90DE28NUw_6pK4c_GHg37lyMRxzaNokLtumrGuw.cache +1 -0
  534. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/ZsrUGj5ZywDWkhL2v00eXJhp0LOft9cyy8-Pj-FG3bA.cache +3 -0
  535. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/Zxnusb32A7CoqOHB2Tjp16CP_qqWlgqbQnCA_RmnI50.cache +1 -0
  536. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/__AC7Z_FqlhYG9oxaczHWS1e6maUCDzh0uAPaSpLq-c.cache +1 -0
  537. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/aHPvKxs51MX35Xze9EAH3gMFtFT7xLnWAYekruLMowk.cache +1 -0
  538. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/aLM_bJa3T9DXSpahbXWBUPmdcQ2GK52WeNMKZLziddg.cache +2 -0
  539. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/aYCniUe-p50gfl8R-x-tLzw9gwDNiDejz7ZLz-pAurk.cache +1 -0
  540. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/apVY7wqE7LI-obDiPEOoKECYgryYKXdvfH7G1pJCYZk.cache +1 -0
  541. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/b00jXZKeSk2UFD3EDfE4EM3NlB6TPqIebPh_eMyvtRI.cache +2 -0
  542. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/bEDuOC-9tuNJfs1O_ETbdBd3TemlYiNAoTPjz_tF4Ro.cache +0 -0
  543. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/bFZWUiCGWDkULcMHm0lXvKbRgd7pYCx5z_HgbOAJrtw.cache +0 -0
  544. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/bGNuR3zk0GYl5tIMXOliWkEMwoPajsn8G8-H8IaaKFM.cache +1 -0
  545. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/bUcg2IbTydeXQGoBxVq8JjCK5vvrVbCRzMdsk0gEfro.cache +2 -0
  546. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/c2-xhBhHuDQ18UqrywUsHcesxhGgeM0SN9Hj7PUaIaI.cache +0 -0
  547. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/cIgOLivvJH0wPxcVUuY_GOryMxsmNTzpoN8JMYSHSk0.cache +1 -0
  548. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/cUvXZ1vgv0OTq9xr8MkPIvKc28hGbId1ScYsjr1LTZc.cache +3 -0
  549. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/cYcbi0jHCkxqGMvSAKiKXX9GerYUwyhqVcXP43KC1_I.cache +0 -0
  550. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/cp3C_61cvaRZTpODT60UbNn0cSR7z5BW53HYd-vd9tI.cache +0 -0
  551. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/dOi-CrHTYJLnAfsdZZJEN3bq3V7JGW9It5wfvQqnYzY.cache +1 -0
  552. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/dSkaNtPExYPg597s1b2-o2o8_XuXLN7j4Gne8LZR6RA.cache +1 -0
  553. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/dqC5ODoKUPXTSAuMAGrDXyUuDm1FoQncJnVXb6v8jQ4.cache +1 -0
  554. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/dr9BJa7e4iREcymymCYoLl-okhqVKxHHzNoTQCnjC18.cache +1 -0
  555. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/dxPuuU3VNipmW54dOCVKtORPyj5z1IU7MW9BsEBoBcw.cache +0 -0
  556. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/e22rez_TAzCLZctNdq-zAiP7-t5Zh8hJWE1gC8rxTSk.cache +0 -0
  557. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/e80l5ji8v14PeKrs2A6ZdU_LkcmltBUAZTKcZHuRJpc.cache +0 -0
  558. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/eK2IOSBshTxbfBo3uzy07d4WKl8ppywhWAKI9hcJqoQ.cache +0 -0
  559. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/eL0Nfr5axdnFnGPXMC2SkfXd9uTCOxRoDKnJ7Vps1uc.cache +0 -0
  560. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/eZObR9SH1s20kypLgB0rLGmIC-Ll66ZQ79HmdGHwa5w.cache +0 -0
  561. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/eZVyo072fXRF4KZ06h0fshCrgb7bKsva9cmRynWgiZ0.cache +2 -0
  562. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/f0OKdH7LiosD9hRyDNWR4eK9ptcMWA2fprcTC7w_sXk.cache +1 -0
  563. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/fKpvsDHPIWjQRMlHlizdWTXnmpQDeVoUz8pE344Saqw.cache +0 -0
  564. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/fLocVliVeNk4-LsW7PkE39-D27LdR5wXtZDnCwWuULo.cache +3 -0
  565. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/fVyNL2Un9HUR3622TjU85auW2fSUbrJ8ASJ9WFiXVbM.cache +2 -0
  566. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/ffXLLR9pjEH7-T6mhmtJ-rgKx6pHmNLTQyRGKuFfGTM.cache +0 -0
  567. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/foP6St1ZFh7tPJ6-OTXNSsBHODKKfBHxHIxiZpqSesU.cache +0 -0
  568. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/gbmpclxhgONHHW_721C5CsP4nXTqQlxKT86KFyy0ipU.cache +1 -0
  569. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/gsCOAZfr_83VLXC2TwQaRNZ3ZZGKCaQepnKGGhbxlQY.cache +0 -0
  570. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/h311hZIjLayedPYKGX4F70pd7_KJw9p7kGRgpZBU2-I.cache +1 -0
  571. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/hSnla4B2Unwgd36Mq6EBcjCb5qOU2hekM-5Lgzy7qLM.cache +1 -0
  572. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/hUTE-BEK7NX8ZZJugAuZ92lnQIuwgY3vv7BlKJbsN_8.cache +0 -0
  573. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/hcqQUR3J5bMmOJizmOpNgo_htWMG44ZpdxLXJUFaRNE.cache +2 -0
  574. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/i-cFTL-n782xOJabM0bWMco1Vm-xcNLJ6fJtb9FVFSI.cache +0 -0
  575. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/i0mNdudzhegd8m6dd1_q72ktVU4wZDQaS5LQN-dowCI.cache +0 -0
  576. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/i8iwntg0Se16dVEAr72QPrBAQtibMImbIunXfpTy5ew.cache +1 -0
  577. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/iiFEzxeGGYD9iI9TNO4atgZJ2w0E1kxi_uvGdhx8-Kg.cache +1 -0
  578. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/itjNE6IOYTi2X17GuYC5fT0xoUps56TOrQdlJ88Bxa4.cache +1 -0
  579. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/jJlWAA3M15ikrIazNk78ZcRXpHMsZH_TaeZutaQ5NR0.cache +1 -0
  580. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/jYVWrF6-TVzMcWev8TuMmpT-GniTbGR6e1_38VABfxw.cache +1 -0
  581. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/jZssewsl1yI_3-K1YMFnVTCjNEuEFMmoHbTl_vfZ-VU.cache +1 -0
  582. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/jbJF1droqyhqp5h5l-iP9karh9cPv4x3Kmou9yWzIXc.cache +3 -0
  583. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/jh1S56lmjVNr9VMsNW5H_Hy05zEip4oHEOhhqczxe18.cache +1 -0
  584. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/jmsRL4nMm_H3M_i1aqT4IZ7PCmZD1ulMM3L3dwDJ2yA.cache +0 -0
  585. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/kOUEFXuesLUObuWQij6odPvyaGiECt9o8m905gd3lg8.cache +0 -0
  586. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/kOr0zJx74dUNhRklB5BKj8RD1DkDVLiG0_FqJ9IUi1k.cache +0 -0
  587. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/kgZAcv19yFcBmON0zkiLpzrzFptPqZBXN0xokTuTeWU.cache +2 -0
  588. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/kkvf85VAn71xSQxc0Wh-fVHNW5Wg_Wezr-IHXtDO7mg.cache +1 -0
  589. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/knfBTwFijllikUk2c9juNk5739SIiMtkkPyk-Zlw7RY.cache +2 -0
  590. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/kwcEp-SIbbT6cqUM2tsFlhhBn8U3p44qg7r2iihczhY.cache +1 -0
  591. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/l2TT9Ach0-Wfts1BqqULGc4wnq1jDt64pfVpYW6EYGA.cache +1 -0
  592. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/lPGrU3YTLsaSPyAwMjgSqH62xNgT8l4mJyStU4M2HmQ.cache +1 -0
  593. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/lk_8x6ACJYNqOsJKqP-Dpa7BbvEZ_5jYNvDc9dsfDGE.cache +0 -0
  594. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/ls9Qil1-yog8RWKdH8T8i00ka9Vqj64QOWj9EkOXxz4.cache +2 -0
  595. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/ltyPWLF2VUlhhKAsYXHXO2ixixV9BhdeUsIKO69kfJE.cache +1 -0
  596. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/m-htitJ2TPs0yjT3xWeVkjm4X3K4b7b8YLe1tbKCSkc.cache +1 -0
  597. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/n0_HLWeEiWiXI-KYa9WErM_bc1WHkaaMl60D4Cd4U7Q.cache +1 -0
  598. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/n2XDoLQdTJNTD6rsFgzokc7853aIHQyhL8Kb65QelKI.cache +2 -0
  599. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/n4DCCaovNhmNgeUVm-U15kvZE1kJaXh2Z50lGDbpqOA.cache +1 -0
  600. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/n4OWXbnHG3_g4qeGy51KHkrI4NbQQablVwKWQK9HT4w.cache +1 -0
  601. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/nUdkYc2e9S0n_eiiZq4YszatZtdM8nHbSoXrFE0t4Q8.cache +1 -0
  602. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/ndeNJHEb5qUCNJEeRjIlm3Wwl3vLWw_uzhXN94EN82g.cache +1 -0
  603. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/o4Nxd0EO3mN1PTewaWMti08d4sR3D3h8ShaEc5-AOWg.cache +0 -0
  604. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/oG_vhJrPiae7svjKHHzNii7vjT7kWxwJf9SkazDD04I.cache +1 -0
  605. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/oh3XPU6acFoUTO-NiOpURopt64xtQ9VRzVILeF6bvw0.cache +2 -0
  606. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/ooiXZIVFyv9RCY2iAmFE7fVLJoycB-Nc1iqHbnWavic.cache +1 -0
  607. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/otjX8B8d9Ct3r-qgL_8L3xOQhdCprDRBq-G20ymrqmU.cache +0 -0
  608. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/p-r_EWD6NJqkuffjVaNK3mG0UxgW_qBEHF-U_st8U10.cache +2 -0
  609. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/p7d3aFcLbvwVTmf8ffT85qelQIjwk8uCdZuJKrbw8g0.cache +2 -0
  610. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/pMfcYR3BUgwXGqc7eRNzAaJEr2ba8YJWgzcVqNOIqQc.cache +0 -0
  611. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/pVGU_kOT-m3fEKzY7klpTg4RtinAWRAsW-DcqgnZOFU.cache +1 -0
  612. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/paDJT7gEr9lFhQ6D1_lI6Jya-xfLyeffW4iW-m9r1hI.cache +1 -0
  613. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/pzmcyomcCfx5st42nGYe23gAldnSi4SxSGdrklTd0As.cache +1 -0
  614. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/q--nfMlsyUr-aGz0nAnxL7zG6r62oedX_Kzec_ALqwM.cache +1 -0
  615. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/q1C_2EldZlh1J41JoV7p16Rc8yWMYHP6AiOGfFmpWTk.cache +1 -0
  616. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/qFNmsPZ5EG6zmPOXrLvGFd8ah_soiEWrCN9Ez460f8o.cache +0 -0
  617. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/qISxXQ-GEfd6l1PBIZIfnlZD-boAPW8U-pEVHzCbn94.cache +0 -0
  618. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/qU1bIdouDcAAH7yOyi1jXT35YhzKzC6GoKis09Ifx-8.cache +2 -0
  619. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/qYvjSTT4rb8DNoRvWrFMd1mf_QBacH_PiyinVwetmF0.cache +1 -0
  620. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/qgQXG4V3UmkS8uljc-0chxUJj1Z-IIAguDg7Pkpi-nU.cache +0 -0
  621. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/qmkcOPZJ8Pk8jPUuFXUfJCs-EPt1r5Woo9JJTBrIfLk.cache +1 -0
  622. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/r8hZ8BYAI22INI0dLoZ4sMmNLxYSNlf-7TSSuJV5VEM.cache +0 -0
  623. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/rN_Me58n7DwLhgc8swgX_Iul3oliHYxJ-_4brHtNwOI.cache +1 -0
  624. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/rS4zpW74ZX0p4-dg_WR7DxcFYkM1FN-7HcFEbXHxnBk.cache +0 -0
  625. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/rlSB5wQtvu5VpBEZDGObuCL2I75RHV1rz-6m2o9-7VU.cache +1 -0
  626. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/rt15qdKb7ZBQzuxPM2ORzcHid5J2Kwnn1rn055er5H4.cache +1 -0
  627. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/ry4Em-igN7wETkrtsiGy0eRxJigZdKRQ1c4WcPjeqFw.cache +0 -0
  628. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/smMaXntAkBY9K79e5KdrleGpp48yLpQTfOmw0fw9q_M.cache +2 -0
  629. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/t2fqnmSq_YRr-uCuJIRsO-whwzwEgSiuYcfOKxhKYnI.cache +2 -0
  630. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/t3kDZRsibVL_zZiJ4zEWTK2Lo0e886NMFcNAe6Jzk-k.cache +1 -0
  631. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/tGZIFYEBSTjSkjKrwGwtUJrWlkZxp9SNYGncRPJxkPw.cache +2 -0
  632. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/tPF6H9NRpGO3whu2y5_e_R_1EACKdCwu5437D83qJT0.cache +3 -0
  633. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/tbOjwZGYOnJYGMrlol8573MQo99XeZ36h7sTYO5kRnM.cache +2 -0
  634. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/u6anhh2MfB136hhlNJfBdYNTz2aIM-m6IvTpcugcnbg.cache +1 -0
  635. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/uTHXb8Z0YxI7aLS5rA7Hra9zeZyrR8g8nSRmtdCw4m4.cache +1 -0
  636. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/uXq77_WjvTZc7AMiuNJOCYpYrckylrd1Pld_bnQf3_c.cache +0 -0
  637. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/ubom7B2wHpngDC6jgnbQKDT9EmMm9cBUShWwDqo1-CE.cache +0 -0
  638. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/umoBebMy9sh8zzQ6wycCgfPSxrbomAylG4Q2cO-55Q0.cache +1 -0
  639. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/uof9mxHLUaEFljZKO1k-p7ZBnbvtiF8a28vPWfGZyNY.cache +2 -0
  640. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/v-hRKqo9nlO7BV1_X_7l947UJfqhYQJP1qf84_Kli4Y.cache +0 -0
  641. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/vrR6tQPP1nTpZ2KC7Wzau0PvwY_3bAo2rq3Jt6Rgzn8.cache +2 -0
  642. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/vuJvLF6Q8OehmqodaXLZ4YuxwdpBdHxhm1vDho27lGg.cache +2 -0
  643. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/wKkts-yt5g9fWSjQRSFvxKO_ydrKEO9McNcpuD2SWxE.cache +1 -0
  644. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/wOrYIa0sH_v6i-Ek_3hsvyxoTZMKaMYvoj1C9M2KBAc.cache +0 -0
  645. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/xG_WEVWVEONt2tgNVT_kPhp_lwChu-RdrMbm7zpljNY.cache +1 -0
  646. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/yHNsSYW80oc0mE_Pk3KpwQDo0pt5ZhBJaNm-9qnnAmU.cache +2 -0
  647. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/yPdAc0mIZhK3czuFCQqfLgg6fhHQ3fI6cpb3m0z543U.cache +0 -0
  648. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/yfehLO7-7POX4WwqPUrmmihLDUnIfJeuTNeTZUQjHRI.cache +1 -0
  649. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/yiUCgoKMXZsv6S2bTAR5a0trcf-ybB5ILcLn_1CshWg.cache +0 -0
  650. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/yxJJQqViHnVAHmkBRknRcLhXHhbm8gNCY3dehutSE2o.cache +1 -0
  651. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/zCypVswL7JI63bjCKAL3xzAG18RkyDyhfcZH5vG0yFA.cache +2 -0
  652. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/zSpdf9_FUcbIoPziXn2RB7VtupqSWZkrHjtaUDy--fg.cache +1 -0
  653. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/zX1tSlHWzasEqWDoN-qhYjJ7OPJFpt4VSdnmQFL71BI.cache +1 -0
  654. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/zYM0NAbeJMJNqeHt2y8XotOfznNZDwJcRErpRZNOvtE.cache +1 -0
  655. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/zZmpdlcNT78O4lO0a6gRp_0T_V8MMVWgUEYi_asFQFM.cache +2 -0
  656. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/zkf4XwOA97_1ibVYSSH5BlnyOYjMCzXnigoxz8-wgqM.cache +0 -0
  657. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/zwGauLixHsh96P0HWJ2irnfYj2Auy2qxdf4WgH1y9JQ.cache +2 -0
  658. data/spec/dummy/tmp/jasmine/assets/boot.js +153 -0
  659. data/spec/dummy/tmp/jasmine/assets/jasmine-console-reporter.js +131 -0
  660. data/spec/dummy/tmp/jasmine/assets/jasmine-console-shims.js +38 -0
  661. data/spec/dummy/tmp/jasmine/assets/jasmine-html.js +474 -0
  662. data/spec/dummy/tmp/jasmine/assets/jasmine-specs.css +1 -0
  663. data/spec/dummy/tmp/jasmine/assets/jasmine-specs.js +22277 -0
  664. data/spec/dummy/tmp/jasmine/assets/jasmine.css +58 -0
  665. data/spec/dummy/tmp/jasmine/assets/jasmine.js +3455 -0
  666. data/spec/dummy/tmp/jasmine/assets/json2.js +489 -0
  667. data/spec/dummy/tmp/jasmine/runner.html +22 -0
  668. data/spec/features/goal_tool_spec.rb +108 -0
  669. data/spec/features/home_tool_spec.rb +44 -0
  670. data/spec/fixtures/participants.yml +17 -0
  671. data/spec/fixtures/social_networking/comments.yml +4 -0
  672. data/spec/fixtures/social_networking/goals.yml +67 -0
  673. data/spec/fixtures/social_networking/likes.yml +3 -0
  674. data/spec/fixtures/social_networking/nudges.yml +19 -0
  675. data/spec/fixtures/social_networking/on_the_mind_statements.yml +7 -0
  676. data/spec/fixtures/social_networking/profile_answers.yml +17 -0
  677. data/spec/fixtures/social_networking/profile_questions.yml +8 -0
  678. data/spec/fixtures/social_networking/profiles.yml +5 -0
  679. data/spec/fixtures/social_networking/shared_items.yml +3 -0
  680. data/spec/javascripts/helpers/angular-mocks.js +2287 -0
  681. data/spec/javascripts/helpers/sinon-1.14.1.js +5931 -0
  682. data/spec/javascripts/social_networking/goal-controller_spec.js +191 -0
  683. data/spec/javascripts/social_networking/home-controller_spec.js +351 -0
  684. data/spec/javascripts/social_networking/new_shareable_form_spec.js +91 -0
  685. data/spec/javascripts/social_networking/notices_spec.js +44 -0
  686. data/spec/javascripts/social_networking/profile/profile-answer-controller_spec.js +174 -0
  687. data/spec/javascripts/social_networking/profile/profile-controller_spec.js +80 -0
  688. data/spec/javascripts/social_networking/services/AlertSpec.js +43 -0
  689. data/spec/mailers/social_networking/mailer_spec.rb +20 -0
  690. data/spec/models/social_networking/comment_spec.rb +38 -0
  691. data/spec/models/social_networking/concerns/participant_spec.rb +32 -0
  692. data/spec/models/social_networking/goal_spec.rb +120 -0
  693. data/spec/models/social_networking/like_spec.rb +90 -0
  694. data/spec/models/social_networking/notification_spec.rb +55 -0
  695. data/spec/models/social_networking/nudge_spec.rb +40 -0
  696. data/spec/models/social_networking/on_the_mind_statement_spec.rb +87 -0
  697. data/spec/models/social_networking/profile_answer_spec.rb +18 -0
  698. data/spec/models/social_networking/profile_spec.rb +42 -0
  699. data/spec/models/social_networking/reports/comment_report_spec.rb +37 -0
  700. data/spec/models/social_networking/reports/goal_report_spec.rb +39 -0
  701. data/spec/models/social_networking/reports/like_report_spec.rb +41 -0
  702. data/spec/models/social_networking/reports/nudge_report_spec.rb +35 -0
  703. data/spec/models/social_networking/reports/off_topic_post_report_spec.rb +35 -0
  704. data/spec/models/social_networking/reports/tool_share_report_spec.rb +37 -0
  705. data/spec/models/social_networking/serializers/comment_serializer_spec.rb +42 -0
  706. data/spec/models/social_networking/serializers/like_serializer_spec.rb +46 -0
  707. data/spec/models/social_networking/serializers/nudge_serializer_spec.rb +48 -0
  708. data/spec/models/social_networking/serializers/on_the_mind_statement_serializer_spec.rb +45 -0
  709. data/spec/models/social_networking/serializers/shared_item_serializer_spec.rb +55 -0
  710. data/spec/models/social_networking/shareable_spec.rb +40 -0
  711. data/spec/models/social_networking/shared_item_spec.rb +27 -0
  712. data/spec/spec_helper.rb +29 -0
  713. data/spec/support/controller_helpers.rb +19 -0
  714. data/spec/support/feature_helpers.rb +9 -0
  715. data/spec/views/social_networking/coach/patient_dashboards/tables/_comments.html.erb_spec.rb +40 -0
  716. data/spec/views/social_networking/coach/patient_dashboards/tables/_goals.html.erb_spec.rb +121 -0
  717. data/spec/views/social_networking/coach/patient_dashboards/tables/_likes.html.erb_spec.rb +31 -0
  718. data/spec/views/social_networking/coach/patient_dashboards/tables/_on_my_mind_statements.html.erb_spec.rb +43 -0
  719. data/spec/views/social_networking/coach/patient_dashboards/tables/nudges/_initiator_nudges.html.erb_spec.rb +46 -0
  720. data/spec/views/social_networking/coach/patient_dashboards/tables/nudges/_recipient_nudges.html.erb_spec.rb +46 -0
  721. data/spec/views/social_networking/goals/tool.html.erb_spec.rb +27 -0
  722. data/spec/views/social_networking/profile_pages/_profile_questions.html.erb_spec.rb +81 -0
  723. data/vendor/assets/javascripts/angular-resource.min.js +13 -0
  724. data/vendor/assets/javascripts/angular-resource.min.js.map +8 -0
  725. data/vendor/assets/javascripts/angular.js +25584 -0
  726. data/vendor/assets/javascripts/angular.min.js +247 -0
  727. data/vendor/assets/javascripts/angular.min.js.map +8 -0
  728. data/vendor/assets/javascripts/jquery.toaster.js +173 -0
  729. data/vendor/assets/javascripts/moment.min.js +6 -0
  730. data/vendor/assets/javascripts/ng-infinite-scroll.min.js +2 -0
  731. metadata +1483 -0
@@ -0,0 +1,2570 @@
1
+  (122.3ms) DROP DATABASE IF EXISTS "dummy_test"
2
+  (385.2ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
3
+ SQL (0.6ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
4
+  (8.7ms) CREATE TABLE "activities" ("id" serial primary key, "participant_id" integer NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
5
+  (6.2ms) CREATE TABLE "arms" ("id" serial primary key, "title" character varying DEFAULT '' NOT NULL, "is_social" boolean DEFAULT 'f' NOT NULL, "has_woz" boolean DEFAULT 'f') 
6
+  (5.2ms) CREATE TABLE "participants" ("id" serial primary key, "email" character varying, "phone_number" character varying, "contact_preference" character varying, "study_id" character varying)
7
+  (5.2ms) CREATE TABLE "social_networking_comments" ("id" serial primary key, "participant_id" integer NOT NULL, "text" character varying NOT NULL, "item_id" integer NOT NULL, "item_type" character varying NOT NULL, "created_at" timestamp, "updated_at" timestamp) 
8
+  (1.8ms) CREATE INDEX "index_social_networking_comments_on_item_id_and_item_type" ON "social_networking_comments" USING btree ("item_id", "item_type")
9
+  (5.2ms) CREATE TABLE "social_networking_goals" ("id" serial primary key, "description" character varying NOT NULL, "participant_id" integer NOT NULL, "due_on" date, "created_at" timestamp, "updated_at" timestamp, "completed_at" timestamp, "deleted_at" timestamp) 
10
+  (5.3ms) CREATE TABLE "social_networking_likes" ("id" serial primary key, "participant_id" integer NOT NULL, "item_id" integer NOT NULL, "item_type" character varying NOT NULL, "created_at" timestamp, "updated_at" timestamp)
11
+  (1.5ms) CREATE INDEX "index_social_networking_likes_on_item_id_and_item_type" ON "social_networking_likes" USING btree ("item_id", "item_type")
12
+  (1.7ms) CREATE UNIQUE INDEX "one_like_per_item" ON "social_networking_likes" USING btree ("participant_id", "item_id", "item_type")
13
+  (3.8ms) CREATE TABLE "social_networking_nudges" ("id" serial primary key, "initiator_id" integer NOT NULL, "recipient_id" integer NOT NULL, "created_at" timestamp, "updated_at" timestamp) 
14
+  (1.8ms) CREATE INDEX "index_social_networking_nudges_on_created_at" ON "social_networking_nudges" USING btree ("created_at")
15
+  (1.5ms) CREATE INDEX "index_social_networking_nudges_on_initiator_id" ON "social_networking_nudges" USING btree ("initiator_id")
16
+  (1.5ms) CREATE INDEX "index_social_networking_nudges_on_recipient_id" ON "social_networking_nudges" USING btree ("recipient_id")
17
+  (5.0ms) CREATE TABLE "social_networking_on_the_mind_statements" ("id" serial primary key, "description" text NOT NULL, "participant_id" integer NOT NULL, "created_at" timestamp, "updated_at" timestamp) 
18
+  (1.5ms) CREATE INDEX "on_the_mind_created_at" ON "social_networking_on_the_mind_statements" USING btree ("created_at")
19
+  (1.5ms) CREATE INDEX "on_the_mind_participant" ON "social_networking_on_the_mind_statements" USING btree ("participant_id")
20
+  (5.1ms) CREATE TABLE "social_networking_profile_answers" ("id" serial primary key, "social_networking_profile_question_id" integer NOT NULL, "order" integer, "answer_text" character varying NOT NULL, "created_at" timestamp, "updated_at" timestamp, "social_networking_profile_id" integer)
21
+  (1.8ms) CREATE UNIQUE INDEX "profile_answers_unique" ON "social_networking_profile_answers" USING btree ("social_networking_profile_id", "social_networking_profile_question_id")
22
+  (5.2ms) CREATE TABLE "social_networking_profile_questions" ("id" serial primary key, "question_text" character varying NOT NULL, "created_at" timestamp, "updated_at" timestamp)
23
+  (5.1ms) CREATE TABLE "social_networking_profiles" ("id" serial primary key, "participant_id" integer NOT NULL, "created_at" timestamp, "updated_at" timestamp, "icon_name" character varying, "active" boolean DEFAULT 'f' NOT NULL) 
24
+  (5.7ms) CREATE TABLE "social_networking_shared_items" ("id" serial primary key, "item_id" integer NOT NULL, "item_type" character varying NOT NULL, "created_at" timestamp, "updated_at" timestamp, "is_public" boolean DEFAULT 't' NOT NULL, "action_type" character varying DEFAULT '' NOT NULL, "item_label" character varying, "participant_id" integer)
25
+  (1.9ms) CREATE INDEX "index_social_networking_shared_items_on_created_at" ON "social_networking_shared_items" USING btree ("created_at")
26
+  (1.5ms) CREATE INDEX "index_social_networking_shared_items_on_participant_id" ON "social_networking_shared_items" USING btree ("participant_id")
27
+  (3.9ms) ALTER TABLE "social_networking_comments" ADD CONSTRAINT "fk_comments_participants"
28
+ FOREIGN KEY ("participant_id")
29
+ REFERENCES "participants" ("id")
30
+ 
31
+  (2.4ms) ALTER TABLE "social_networking_goals" ADD CONSTRAINT "fk_goals_participants"
32
+ FOREIGN KEY ("participant_id")
33
+ REFERENCES "participants" ("id")
34
+
35
+  (2.8ms) ALTER TABLE "social_networking_likes" ADD CONSTRAINT "fk_likes_participants"
36
+ FOREIGN KEY ("participant_id")
37
+ REFERENCES "participants" ("id")
38
+ 
39
+  (2.4ms) ALTER TABLE "social_networking_nudges" ADD CONSTRAINT "fk_nudges_initiators"
40
+ FOREIGN KEY ("initiator_id")
41
+ REFERENCES "participants" ("id")
42
+
43
+  (2.0ms) ALTER TABLE "social_networking_nudges" ADD CONSTRAINT "fk_nudges_recipients"
44
+ FOREIGN KEY ("recipient_id")
45
+ REFERENCES "participants" ("id")
46
+ 
47
+  (2.4ms) ALTER TABLE "social_networking_on_the_mind_statements" ADD CONSTRAINT "fk_on_the_mind_participants"
48
+ FOREIGN KEY ("participant_id")
49
+ REFERENCES "participants" ("id")
50
+
51
+  (2.4ms) ALTER TABLE "social_networking_profile_answers" ADD CONSTRAINT "fk_profile_answers_profile_questions"
52
+ FOREIGN KEY ("social_networking_profile_question_id")
53
+ REFERENCES "social_networking_profile_questions" ("id")
54
+ 
55
+  (2.5ms) ALTER TABLE "social_networking_profile_answers" ADD CONSTRAINT "fk_profile_answers_profiles"
56
+ FOREIGN KEY ("social_networking_profile_id")
57
+ REFERENCES "social_networking_profiles" ("id")
58
+
59
+  (2.2ms) ALTER TABLE "social_networking_profiles" ADD CONSTRAINT "fk_profiles_participants"
60
+ FOREIGN KEY ("participant_id")
61
+ REFERENCES "participants" ("id")
62
+ 
63
+  (3.2ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
64
+  (2.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
65
+  (0.8ms) SELECT version FROM "schema_migrations"
66
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20151211204425')
67
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('1')
68
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('2')
69
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('3')
70
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('5')
71
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('6')
72
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('8')
73
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20150309210518')
74
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140827154926')
75
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140827154939')
76
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140827154953')
77
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20140904201719')
78
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20140910123000')
79
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20140911193832')
80
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20140915185648')
81
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20140915190627')
82
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140915190633')
83
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140916163621')
84
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20140917151905')
85
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20140930141007')
86
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20141001130941')
87
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20141003191233')
88
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20141006200325')
89
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20141007141541')
90
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20141008150325')
91
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20141015222822')
92
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20141016015415')
93
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20141016164443')
94
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20141106102625')
95
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20141106104713')
96
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20141223203142')
97
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20141223203721')
98
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20150317173959')
99
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20150317174425')
100
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20150317180057')
101
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20150318133032')
102
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20150318133127')
103
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20150318133353')
104
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20150327143224')
105
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20150327143244')
106
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20150327185721')
107
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20150327185856')
108
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20150327185919')
109
+  (0.1ms) BEGIN
110
+ Rendered /Users/ericcf/work/social_networking/app/views/social_networking/coach/patient_dashboards/tables/_likes.html.erb (18.5ms)
111
+  (0.3ms) ROLLBACK
112
+  (3.7ms) ALTER TABLE "activities" DISABLE TRIGGER ALL;ALTER TABLE "arms" DISABLE TRIGGER ALL;ALTER TABLE "social_networking_nudges" DISABLE TRIGGER ALL;ALTER TABLE "social_networking_profile_answers" DISABLE TRIGGER ALL;ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "social_networking_shared_items" DISABLE TRIGGER ALL;ALTER TABLE "social_networking_comments" DISABLE TRIGGER ALL;ALTER TABLE "social_networking_on_the_mind_statements" DISABLE TRIGGER ALL;ALTER TABLE "social_networking_goals" DISABLE TRIGGER ALL;ALTER TABLE "social_networking_profile_questions" DISABLE TRIGGER ALL;ALTER TABLE "social_networking_likes" DISABLE TRIGGER ALL;ALTER TABLE "participants" DISABLE TRIGGER ALL;ALTER TABLE "social_networking_profiles" DISABLE TRIGGER ALL
113
+  (0.2ms) BEGIN
114
+ Fixture Delete (1.0ms) DELETE FROM "participants"
115
+ Fixture Insert (0.9ms) INSERT INTO "participants" ("study_id", "email", "phone_number", "contact_preference", "id") VALUES ('Social-11', 'p1@example.com', '16305150171', 'sms', 700141617)
116
+ Fixture Insert (0.5ms) INSERT INTO "participants" ("study_id", "email", "phone_number", "contact_preference", "id") VALUES ('Social-22', 'p2@example.com', '16305150172', 'sms', 816972181)
117
+ Fixture Insert (0.6ms) INSERT INTO "participants" ("study_id", "email", "phone_number", "contact_preference", "id") VALUES ('Social-33', 'p3@example.com', '16305150173', 'email', 129315074)
118
+ Fixture Delete (0.7ms) DELETE FROM "social_networking_comments"
119
+ Fixture Insert (0.6ms) INSERT INTO "social_networking_comments" ("text", "created_at", "updated_at", "id", "participant_id", "item_type", "item_id") VALUES ('i feel strongly about this', '2016-02-16 19:39:22', '2016-02-16 19:39:22', 318187876, 700141617, 'SocialNetworking::SharedItem', 809335042)
120
+ Fixture Delete (0.7ms) DELETE FROM "social_networking_goals"
121
+ Fixture Insert (0.6ms) INSERT INTO "social_networking_goals" ("description", "due_on", "created_at", "updated_at", "id", "participant_id") VALUES ('p1 alpha', '2016-02-16', '2016-02-16 19:39:22', '2016-02-16 19:39:22', 809335042, 700141617)
122
+ Fixture Insert (0.3ms) INSERT INTO "social_networking_goals" ("description", "completed_at", "due_on", "created_at", "updated_at", "id", "participant_id") VALUES ('p1 beta', '2016-02-16 19:39:22.000000', '2016-02-16', '2016-02-16 19:39:22', '2016-02-16 19:39:22', 576699391, 700141617)
123
+ Fixture Insert (0.3ms) INSERT INTO "social_networking_goals" ("description", "due_on", "created_at", "updated_at", "id", "participant_id") VALUES ('p1 gamma', '2016-02-16', '2016-02-16 19:39:22', '2016-02-16 19:39:22', 614371357, 700141617)
124
+ Fixture Insert (0.3ms) INSERT INTO "social_networking_goals" ("description", "created_at", "updated_at", "id", "participant_id") VALUES ('run', '2016-02-16 19:39:22', '2016-02-16 19:39:22', 53334230, 700141617)
125
+ Fixture Insert (0.2ms) INSERT INTO "social_networking_goals" ("description", "deleted_at", "due_on", "created_at", "updated_at", "id", "participant_id") VALUES ('p1 delta', '2016-02-16 19:39:22.000000', '2016-02-16', '2016-02-16 19:39:22', '2016-02-16 19:39:22', 916373174, 700141617)
126
+ Fixture Insert (0.2ms) INSERT INTO "social_networking_goals" ("description", "deleted_at", "completed_at", "due_on", "created_at", "updated_at", "id", "participant_id") VALUES ('p1 omega', NULL, NULL, '2016-02-15', '2016-02-16 19:39:22', '2016-02-16 19:39:22', 717544784, 700141617)
127
+ Fixture Insert (0.3ms) INSERT INTO "social_networking_goals" ("description", "deleted_at", "completed_at", "due_on", "created_at", "updated_at", "id", "participant_id") VALUES ('p1 zeta', NULL, NULL, '2016-02-14', '2016-02-16 19:39:22', '2016-02-16 19:39:22', 938656909, 700141617)
128
+ Fixture Insert (0.4ms) INSERT INTO "social_networking_goals" ("description", "completed_at", "due_on", "created_at", "updated_at", "id", "participant_id") VALUES ('p1 epsilon', '2016-02-16 19:39:22.000000', '2016-02-16', '2016-02-16 19:39:22', '2016-02-16 19:39:22', 401619065, 700141617)
129
+ Fixture Insert (0.3ms) INSERT INTO "social_networking_goals" ("description", "due_on", "created_at", "updated_at", "id", "participant_id") VALUES ('p2 alpha', '2016-02-16', '2016-02-16 19:39:22', '2016-02-16 19:39:22', 128166899, 816972181)
130
+ Fixture Insert (0.3ms) INSERT INTO "social_networking_goals" ("description", "completed_at", "due_on", "created_at", "updated_at", "id", "participant_id") VALUES ('p2 beta', '2016-02-16 19:39:22.000000', '2016-02-16', '2016-02-16 19:39:22', '2016-02-16 19:39:22', 1002298878, 816972181)
131
+ Fixture Insert (0.2ms) INSERT INTO "social_networking_goals" ("description", "due_on", "created_at", "updated_at", "id", "participant_id") VALUES ('p2 gamma', '2016-02-16', '2016-02-16 19:39:22', '2016-02-16 19:39:22', 318784238, 816972181)
132
+ Fixture Insert (0.2ms) INSERT INTO "social_networking_goals" ("description", "deleted_at", "due_on", "created_at", "updated_at", "id", "participant_id") VALUES ('p2 delta', '2016-02-16 19:39:22.000000', '2016-02-16', '2016-02-16 19:39:22', '2016-02-16 19:39:22', 16804933, 816972181)
133
+ Fixture Delete (0.7ms) DELETE FROM "social_networking_likes"
134
+ Fixture Insert (0.8ms) INSERT INTO "social_networking_likes" ("created_at", "updated_at", "id", "participant_id", "item_type", "item_id") VALUES ('2016-02-16 19:39:22', '2016-02-16 19:39:22', 844093908, 700141617, 'SocialNetworking::SharedItem', 809335042)
135
+ Fixture Delete (0.9ms) DELETE FROM "social_networking_nudges"
136
+ Fixture Insert (0.9ms) INSERT INTO "social_networking_nudges" ("created_at", "updated_at", "id", "initiator_id", "recipient_id") VALUES ('2016-02-15 19:39:22.000000', '2016-02-16 19:39:22', 503297012, 700141617, 816972181)
137
+ Fixture Insert (0.4ms) INSERT INTO "social_networking_nudges" ("created_at", "updated_at", "id", "initiator_id", "recipient_id") VALUES ('2016-02-16 19:39:22.000000', '2016-02-16 19:39:22', 366290861, 700141617, 816972181)
138
+ Fixture Insert (0.3ms) INSERT INTO "social_networking_nudges" ("created_at", "updated_at", "id", "initiator_id", "recipient_id") VALUES ('2016-02-15 19:39:22.000000', '2016-02-16 19:39:22', 931788854, 816972181, 700141617)
139
+ Fixture Insert (0.3ms) INSERT INTO "social_networking_nudges" ("created_at", "updated_at", "id", "initiator_id", "recipient_id") VALUES ('2016-02-16 19:39:22.000000', '2016-02-16 19:39:22', 316146702, 816972181, 700141617)
140
+ Fixture Delete (0.9ms) DELETE FROM "social_networking_on_the_mind_statements"
141
+ Fixture Insert (0.8ms) INSERT INTO "social_networking_on_the_mind_statements" ("description", "created_at", "updated_at", "id", "participant_id") VALUES ('it''s always sunny in Philadelphia', '2016-02-16 19:39:22', '2016-02-16 19:39:22', 576803333, 700141617)
142
+ Fixture Insert (0.4ms) INSERT INTO "social_networking_on_the_mind_statements" ("description", "created_at", "updated_at", "id", "participant_id") VALUES ('what about Bob?', '2016-02-16 19:39:22', '2016-02-16 19:39:22', 369066228, 816972181)
143
+ Fixture Delete (0.7ms) DELETE FROM "social_networking_profile_answers"
144
+ Fixture Insert (0.8ms) INSERT INTO "social_networking_profile_answers" ("social_networking_profile_question_id", "order", "answer_text", "created_at", "updated_at", "id", "social_networking_profile_id") VALUES (1, 1, 'running', '2016-02-16 19:39:22', '2016-02-16 19:39:22', 465319974, 333620620)
145
+ Fixture Insert (0.5ms) INSERT INTO "social_networking_profile_answers" ("social_networking_profile_question_id", "order", "answer_text", "created_at", "updated_at", "id", "social_networking_profile_id") VALUES (2, 2, 'green', '2016-02-16 19:39:22', '2016-02-16 19:39:22', 45443486, 333620620)
146
+ Fixture Insert (0.3ms) INSERT INTO "social_networking_profile_answers" ("social_networking_profile_question_id", "order", "answer_text", "created_at", "updated_at", "id", "social_networking_profile_id") VALUES (2, 1, 'blue', '2016-02-16 19:39:22', '2016-02-16 19:39:22', 10484799, 183235640)
147
+ Fixture Delete (0.5ms) DELETE FROM "social_networking_profile_questions"
148
+ Fixture Insert (0.8ms) INSERT INTO "social_networking_profile_questions" ("question_text", "created_at", "updated_at", "id") VALUES ('What are your hobbies?', '2016-02-16 19:39:22', '2016-02-16 19:39:22', 781294868)
149
+ Fixture Insert (0.4ms) INSERT INTO "social_networking_profile_questions" ("question_text", "created_at", "updated_at", "id") VALUES ('What is your favorite color?', '2016-02-16 19:39:22', '2016-02-16 19:39:22', 932760744)
150
+ Fixture Insert (0.4ms) INSERT INTO "social_networking_profile_questions" ("question_text", "created_at", "updated_at", "id") VALUES ('Animal, vegetable or mineral?', '2016-02-16 19:39:22', '2016-02-16 19:39:22', 10484799)
151
+ Fixture Delete (0.6ms) DELETE FROM "social_networking_profiles"
152
+ Fixture Insert (0.6ms) INSERT INTO "social_networking_profiles" ("active", "created_at", "updated_at", "id", "participant_id") VALUES ('t', '2016-02-16 19:39:22', '2016-02-16 19:39:22', 183235640, 816972181)
153
+ Fixture Delete (0.9ms) DELETE FROM "social_networking_shared_items"
154
+ Fixture Insert (1.0ms) INSERT INTO "social_networking_shared_items" ("is_public", "created_at", "updated_at", "id", "item_type", "item_id") VALUES ('t', '2016-02-16 19:39:22', '2016-02-16 19:39:22', 809335042, 'SocialNetworking::Goal', 809335042)
155
+  (0.6ms) COMMIT
156
+  (2.9ms) ALTER TABLE "activities" ENABLE TRIGGER ALL;ALTER TABLE "arms" ENABLE TRIGGER ALL;ALTER TABLE "social_networking_nudges" ENABLE TRIGGER ALL;ALTER TABLE "social_networking_profile_answers" ENABLE TRIGGER ALL;ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "social_networking_shared_items" ENABLE TRIGGER ALL;ALTER TABLE "social_networking_comments" ENABLE TRIGGER ALL;ALTER TABLE "social_networking_on_the_mind_statements" ENABLE TRIGGER ALL;ALTER TABLE "social_networking_goals" ENABLE TRIGGER ALL;ALTER TABLE "social_networking_profile_questions" ENABLE TRIGGER ALL;ALTER TABLE "social_networking_likes" ENABLE TRIGGER ALL;ALTER TABLE "participants" ENABLE TRIGGER ALL;ALTER TABLE "social_networking_profiles" ENABLE TRIGGER ALL
157
+  (0.2ms) BEGIN
158
+  (0.8ms) SELECT COUNT(*) FROM "social_networking_shared_items"
159
+ Participant Load (0.6ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
160
+  (0.3ms) SAVEPOINT active_record_1
161
+ SocialNetworking::Profile Exists (0.8ms) SELECT 1 AS one FROM "social_networking_profiles" WHERE "social_networking_profiles"."participant_id" = 700141617 LIMIT 1
162
+ SQL (0.7ms) INSERT INTO "social_networking_profiles" ("participant_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["participant_id", 700141617], ["created_at", "2016-02-16 19:39:22.807394"], ["updated_at", "2016-02-16 19:39:22.807394"]]
163
+ SQL (0.4ms) INSERT INTO "social_networking_shared_items" ("item_id", "item_type", "action_type", "participant_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["item_id", 183235641], ["item_type", "SocialNetworking::Profile"], ["action_type", "Shared"], ["participant_id", 700141617], ["created_at", "2016-02-16 19:39:22.817163"], ["updated_at", "2016-02-16 19:39:22.817163"]]
164
+  (0.2ms) RELEASE SAVEPOINT active_record_1
165
+  (0.4ms) SELECT COUNT(*) FROM "social_networking_shared_items"
166
+  (0.2ms) ROLLBACK
167
+  (0.1ms) BEGIN
168
+ Participant Load (0.4ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
169
+  (0.2ms) SAVEPOINT active_record_1
170
+ SocialNetworking::Profile Exists (0.4ms) SELECT 1 AS one FROM "social_networking_profiles" WHERE "social_networking_profiles"."participant_id" = 700141617 LIMIT 1
171
+ SQL (0.5ms) INSERT INTO "social_networking_profiles" ("participant_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["participant_id", 700141617], ["created_at", "2016-02-16 19:39:22.825654"], ["updated_at", "2016-02-16 19:39:22.825654"]]
172
+ SQL (0.4ms) INSERT INTO "social_networking_shared_items" ("item_id", "item_type", "action_type", "participant_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["item_id", 183235642], ["item_type", "SocialNetworking::Profile"], ["action_type", "Shared"], ["participant_id", 700141617], ["created_at", "2016-02-16 19:39:22.827784"], ["updated_at", "2016-02-16 19:39:22.827784"]]
173
+  (0.3ms) RELEASE SAVEPOINT active_record_1
174
+ SocialNetworking::ProfileAnswer Exists (0.6ms) SELECT 1 AS one FROM "social_networking_profile_answers" WHERE "social_networking_profile_answers"."social_networking_profile_id" = $1 LIMIT 1 [["social_networking_profile_id", 183235642]]
175
+  (0.3ms) ROLLBACK
176
+  (0.1ms) BEGIN
177
+ SocialNetworking::Profile Load (0.4ms) SELECT "social_networking_profiles".* FROM "social_networking_profiles" WHERE "social_networking_profiles"."id" = $1 LIMIT 1 [["id", 183235640]]
178
+ SocialNetworking::ProfileAnswer Exists (0.4ms) SELECT 1 AS one FROM "social_networking_profile_answers" WHERE "social_networking_profile_answers"."social_networking_profile_id" = $1 LIMIT 1 [["social_networking_profile_id", 183235640]]
179
+  (0.2ms) ROLLBACK
180
+  (0.1ms) BEGIN
181
+ Participant Load (0.4ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
182
+  (0.2ms) SAVEPOINT active_record_1
183
+ SocialNetworking::Profile Exists (0.5ms) SELECT 1 AS one FROM "social_networking_profiles" WHERE "social_networking_profiles"."participant_id" = 700141617 LIMIT 1
184
+ SQL (0.6ms) INSERT INTO "social_networking_profiles" ("participant_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["participant_id", 700141617], ["created_at", "2016-02-16 19:39:22.856027"], ["updated_at", "2016-02-16 19:39:22.856027"]]
185
+ SQL (0.6ms) INSERT INTO "social_networking_shared_items" ("item_id", "item_type", "action_type", "participant_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["item_id", 183235643], ["item_type", "SocialNetworking::Profile"], ["action_type", "Shared"], ["participant_id", 700141617], ["created_at", "2016-02-16 19:39:22.858579"], ["updated_at", "2016-02-16 19:39:22.858579"]]
186
+  (0.2ms) RELEASE SAVEPOINT active_record_1
187
+  (0.2ms) ROLLBACK
188
+  (0.2ms) BEGIN
189
+ Participant Load (0.4ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
190
+  (0.2ms) SAVEPOINT active_record_1
191
+ SocialNetworking::Profile Exists (0.4ms) SELECT 1 AS one FROM "social_networking_profiles" WHERE "social_networking_profiles"."participant_id" = 700141617 LIMIT 1
192
+ SQL (0.5ms) INSERT INTO "social_networking_profiles" ("participant_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["participant_id", 700141617], ["created_at", "2016-02-16 19:39:22.866427"], ["updated_at", "2016-02-16 19:39:22.866427"]]
193
+ SQL (0.5ms) INSERT INTO "social_networking_shared_items" ("item_id", "item_type", "action_type", "participant_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["item_id", 183235644], ["item_type", "SocialNetworking::Profile"], ["action_type", "Shared"], ["participant_id", 700141617], ["created_at", "2016-02-16 19:39:22.868587"], ["updated_at", "2016-02-16 19:39:22.868587"]]
194
+  (0.3ms) RELEASE SAVEPOINT active_record_1
195
+  (0.2ms) ROLLBACK
196
+  (0.2ms) BEGIN
197
+ Rendered /Users/ericcf/work/social_networking/app/views/social_networking/mailer/notify.html.erb (0.6ms)
198
+
199
+ SocialNetworking::Mailer#notify: processed outbound mail in 282.6ms
200
+
201
+ Sent mail to obama@ex.co (9.9ms)
202
+ Date: Tue, 16 Feb 2016 13:39:23 -0600
203
+ From: moodtech-no-reply@northwestern.edu
204
+ To: obama@ex.co
205
+ Message-ID: <56c37aeb28753_108f83fd449060204203cd@dhcp-10-102-150-242.wireless.northwestern.private.mail>
206
+ Subject: bar
207
+ Mime-Version: 1.0
208
+ Content-Type: text/html;
209
+ charset=UTF-8
210
+ Content-Transfer-Encoding: 7bit
211
+
212
+ <!DOCTYPE html>
213
+ <html>
214
+ <head>
215
+ <meta content='text/html; charset=UTF-8' http-equiv='Content-Type' />
216
+ </head>
217
+ <body>
218
+ <p>
219
+ foo
220
+ </p>
221
+ </body>
222
+ </html>
223
+  (0.4ms) ROLLBACK
224
+  (0.2ms) BEGIN
225
+  (1.1ms) SELECT COUNT(*) FROM "social_networking_comments" WHERE ("social_networking_comments"."created_at" >= '2016-02-16 00:00:00.000000' AND "social_networking_comments"."created_at" <= '2016-02-16 23:59:59.999999')
226
+ Participant Load (0.4ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
227
+ SocialNetworking::Goal Load (0.5ms) SELECT "social_networking_goals".* FROM "social_networking_goals" WHERE "social_networking_goals"."id" = $1 LIMIT 1 [["id", 128166899]]
228
+  (0.3ms) SAVEPOINT active_record_1
229
+ Participant Load (0.5ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
230
+ SQL (0.7ms) INSERT INTO "social_networking_comments" ("participant_id", "item_id", "item_type", "text", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["participant_id", 700141617], ["item_id", 128166899], ["item_type", "SocialNetworking::Goal"], ["text", "love this test"], ["created_at", "2016-02-16 00:00:00.000000"], ["updated_at", "2016-02-16 19:39:23.193175"]]
231
+  (0.2ms) RELEASE SAVEPOINT active_record_1
232
+  (0.5ms) SELECT COUNT(*) FROM "social_networking_comments" WHERE ("social_networking_comments"."created_at" >= '2016-02-16 00:00:00.000000' AND "social_networking_comments"."created_at" <= '2016-02-16 23:59:59.999999')
233
+  (0.2ms) ROLLBACK
234
+  (0.2ms) BEGIN
235
+  (0.5ms) SELECT COUNT(*) FROM "social_networking_comments" WHERE ("social_networking_comments"."created_at" >= '2016-02-09 00:00:00.000000')
236
+ Participant Load (0.3ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
237
+ SocialNetworking::Goal Load (0.4ms) SELECT "social_networking_goals".* FROM "social_networking_goals" WHERE "social_networking_goals"."id" = $1 LIMIT 1 [["id", 128166899]]
238
+  (0.2ms) SAVEPOINT active_record_1
239
+ Participant Load (0.3ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
240
+ SQL (0.7ms) INSERT INTO "social_networking_comments" ("participant_id", "item_id", "item_type", "text", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["participant_id", 700141617], ["item_id", 128166899], ["item_type", "SocialNetworking::Goal"], ["text", "love this test"], ["created_at", "2016-02-15 00:00:00.000000"], ["updated_at", "2016-02-16 19:39:23.204144"]]
241
+  (0.2ms) RELEASE SAVEPOINT active_record_1
242
+  (0.2ms) SAVEPOINT active_record_1
243
+ Participant Load (0.3ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
244
+ SQL (0.9ms) INSERT INTO "social_networking_comments" ("participant_id", "item_id", "item_type", "text", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["participant_id", 700141617], ["item_id", 128166899], ["item_type", "SocialNetworking::Goal"], ["text", "love this test"], ["created_at", "2016-02-08 00:00:00.000000"], ["updated_at", "2016-02-16 19:39:23.208472"]]
245
+  (0.2ms) RELEASE SAVEPOINT active_record_1
246
+  (0.5ms) SELECT COUNT(*) FROM "social_networking_comments" WHERE ("social_networking_comments"."created_at" >= '2016-02-09 00:00:00.000000')
247
+  (0.2ms) ROLLBACK
248
+  (0.1ms) BEGIN
249
+ SocialNetworking::Like Load (0.8ms) SELECT "social_networking_likes".* FROM "social_networking_likes"
250
+  (0.3ms) SAVEPOINT active_record_1
251
+ SQL (0.4ms) DELETE FROM "social_networking_likes" WHERE "social_networking_likes"."id" = $1 [["id", 844093908]]
252
+  (0.2ms) RELEASE SAVEPOINT active_record_1
253
+ Participant Load (0.5ms) SELECT "participants"."id", "participants"."study_id" FROM "participants"
254
+ SocialNetworking::Like Load (0.4ms) SELECT "social_networking_likes".* FROM "social_networking_likes" WHERE "social_networking_likes"."participant_id" = $1 [["participant_id", 700141617]]
255
+ SocialNetworking::Like Load (0.5ms) SELECT "social_networking_likes".* FROM "social_networking_likes" WHERE "social_networking_likes"."participant_id" = $1 [["participant_id", 816972181]]
256
+ SocialNetworking::Like Load (0.5ms) SELECT "social_networking_likes".* FROM "social_networking_likes" WHERE "social_networking_likes"."participant_id" = $1 [["participant_id", 129315074]]
257
+  (0.2ms) ROLLBACK
258
+  (0.2ms) BEGIN
259
+ Participant Load (0.3ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
260
+ SocialNetworking::Like Load (0.7ms) SELECT "social_networking_likes".* FROM "social_networking_likes" WHERE "social_networking_likes"."participant_id" = $1 LIMIT 1 [["participant_id", 700141617]]
261
+ SocialNetworking::SharedItem Load (0.4ms) SELECT "social_networking_shared_items".* FROM "social_networking_shared_items" WHERE "social_networking_shared_items"."id" = $1 LIMIT 1 [["id", 809335042]]
262
+ SocialNetworking::Goal Load (0.6ms) SELECT "social_networking_goals".* FROM "social_networking_goals" WHERE "social_networking_goals"."id" = $1 LIMIT 1 [["id", 809335042]]
263
+ Participant Load (0.5ms) SELECT "participants"."id", "participants"."study_id" FROM "participants"
264
+ SocialNetworking::Like Load (0.8ms) SELECT "social_networking_likes".* FROM "social_networking_likes" WHERE "social_networking_likes"."participant_id" = $1 [["participant_id", 700141617]]
265
+ SocialNetworking::SharedItem Load (0.5ms) SELECT "social_networking_shared_items".* FROM "social_networking_shared_items" WHERE "social_networking_shared_items"."id" = $1 LIMIT 1 [["id", 809335042]]
266
+ SocialNetworking::Goal Load (0.6ms) SELECT "social_networking_goals".* FROM "social_networking_goals" WHERE "social_networking_goals"."id" = $1 LIMIT 1 [["id", 809335042]]
267
+ Participant Load (0.3ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
268
+ SocialNetworking::Like Load (0.4ms) SELECT "social_networking_likes".* FROM "social_networking_likes" WHERE "social_networking_likes"."participant_id" = $1 [["participant_id", 816972181]]
269
+ SocialNetworking::Like Load (0.4ms) SELECT "social_networking_likes".* FROM "social_networking_likes" WHERE "social_networking_likes"."participant_id" = $1 [["participant_id", 129315074]]
270
+  (0.5ms) SELECT COUNT(*) FROM "social_networking_likes"
271
+ Participant Load (0.3ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
272
+  (0.3ms) ROLLBACK
273
+  (0.1ms) BEGIN
274
+  (0.2ms) ROLLBACK
275
+  (0.2ms) BEGIN
276
+ Rendered /Users/ericcf/work/social_networking/app/views/social_networking/coach/patient_dashboards/tables/_on_my_mind_statements.html.erb (1.7ms)
277
+  (0.3ms) ROLLBACK
278
+  (0.1ms) BEGIN
279
+ Rendered /Users/ericcf/work/social_networking/app/views/social_networking/coach/patient_dashboards/tables/_on_my_mind_statements.html.erb (1.5ms)
280
+  (0.5ms) ROLLBACK
281
+  (0.2ms) BEGIN
282
+ SocialNetworking::Goal Load (0.6ms) SELECT "social_networking_goals".* FROM "social_networking_goals" WHERE "social_networking_goals"."id" = $1 LIMIT 1 [["id", 809335042]]
283
+  (0.4ms) SAVEPOINT active_record_1
284
+ SQL (0.6ms) INSERT INTO "social_networking_shared_items" ("item_id", "item_type", "action_type", "participant_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["item_id", 809335042], ["item_type", "SocialNetworking::Goal"], ["action_type", "Created"], ["participant_id", 700141617], ["created_at", "2016-02-16 19:39:23.363489"], ["updated_at", "2016-02-16 19:39:23.363489"]]
285
+  (0.3ms) RELEASE SAVEPOINT active_record_1
286
+  (0.2ms) ROLLBACK
287
+  (0.2ms) BEGIN
288
+ Participant Load (0.4ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
289
+  (0.3ms) SAVEPOINT active_record_1
290
+ Participant Load (0.6ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
291
+ SQL (0.9ms) INSERT INTO "social_networking_on_the_mind_statements" ("participant_id", "description", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["participant_id", 700141617], ["description", "otms description"], ["created_at", "2016-02-16 19:39:23.376691"], ["updated_at", "2016-02-16 19:39:23.376691"]]
292
+  (0.2ms) RELEASE SAVEPOINT active_record_1
293
+  (0.2ms) SAVEPOINT active_record_1
294
+ SQL (0.4ms) INSERT INTO "social_networking_shared_items" ("item_id", "item_type", "participant_id", "action_type", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["item_id", 576803334], ["item_type", "SocialNetworking::OnTheMindStatement"], ["participant_id", 700141617], ["action_type", "Shared"], ["created_at", "2016-02-16 19:39:23.381309"], ["updated_at", "2016-02-16 19:39:23.381309"]]
295
+  (0.2ms) RELEASE SAVEPOINT active_record_1
296
+  (0.2ms) ROLLBACK
297
+  (0.2ms) BEGIN
298
+ Processing by SocialNetworking::OnTheMindStatementsController#create as HTML
299
+ Parameters: {"description"=>"foo"}
300
+ Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
301
+  (0.3ms) ROLLBACK
302
+  (0.1ms) BEGIN
303
+ Processing by SocialNetworking::OnTheMindStatementsController#create as HTML
304
+ Parameters: {"description"=>"foo"}
305
+ Completed 400 Bad Request in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
306
+  (0.3ms) ROLLBACK
307
+  (0.2ms) BEGIN
308
+ Processing by SocialNetworking::LikesController#create as HTML
309
+ Completed 200 OK in 13ms (Views: 0.4ms | ActiveRecord: 0.0ms)
310
+  (0.3ms) ROLLBACK
311
+  (0.2ms) BEGIN
312
+ Processing by SocialNetworking::LikesController#create as HTML
313
+ Completed 200 OK in 5ms (Views: 0.4ms | ActiveRecord: 0.0ms)
314
+  (0.2ms) ROLLBACK
315
+  (0.1ms) BEGIN
316
+ Processing by SocialNetworking::LikesController#create as HTML
317
+ Completed 400 Bad Request in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
318
+  (0.3ms) ROLLBACK
319
+  (0.1ms) BEGIN
320
+ Processing by SocialNetworking::LikesController#create as HTML
321
+ Completed 200 OK in 5ms (Views: 0.3ms | ActiveRecord: 0.0ms)
322
+  (0.3ms) ROLLBACK
323
+  (0.2ms) BEGIN
324
+  (0.6ms) SELECT COUNT(*) FROM "social_networking_likes" WHERE ("social_networking_likes"."created_at" >= '2016-02-16 00:00:00.000000' AND "social_networking_likes"."created_at" <= '2016-02-16 23:59:59.999999')
325
+ Participant Load (0.4ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
326
+ SocialNetworking::Goal Load (0.6ms) SELECT "social_networking_goals".* FROM "social_networking_goals" WHERE "social_networking_goals"."id" = $1 LIMIT 1 [["id", 128166899]]
327
+  (0.3ms) SAVEPOINT active_record_1
328
+ Participant Load (0.3ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
329
+ SocialNetworking::Goal Load (0.3ms) SELECT "social_networking_goals".* FROM "social_networking_goals" WHERE "social_networking_goals"."id" = $1 LIMIT 1 [["id", 128166899]]
330
+ SocialNetworking::Like Exists (1.3ms) SELECT 1 AS one FROM "social_networking_likes" WHERE ("social_networking_likes"."item_id" = 128166899 AND "social_networking_likes"."item_type" = 'SocialNetworking::Goal' AND "social_networking_likes"."participant_id" = 700141617) LIMIT 1
331
+ SQL (0.7ms) INSERT INTO "social_networking_likes" ("participant_id", "item_id", "item_type", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["participant_id", 700141617], ["item_id", 128166899], ["item_type", "SocialNetworking::Goal"], ["created_at", "2016-02-16 00:00:00.000000"], ["updated_at", "2016-02-16 19:39:23.483657"]]
332
+  (0.2ms) RELEASE SAVEPOINT active_record_1
333
+  (0.5ms) SELECT COUNT(*) FROM "social_networking_likes" WHERE ("social_networking_likes"."created_at" >= '2016-02-16 00:00:00.000000' AND "social_networking_likes"."created_at" <= '2016-02-16 23:59:59.999999')
334
+  (0.3ms) ROLLBACK
335
+  (0.1ms) BEGIN
336
+  (0.5ms) SELECT COUNT(*) FROM "social_networking_likes" WHERE ("social_networking_likes"."created_at" >= '2016-02-09 00:00:00.000000')
337
+ Participant Load (0.3ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
338
+ SocialNetworking::Goal Load (0.4ms) SELECT "social_networking_goals".* FROM "social_networking_goals" WHERE "social_networking_goals"."id" = $1 LIMIT 1 [["id", 128166899]]
339
+  (0.4ms) SAVEPOINT active_record_1
340
+ Participant Load (0.3ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
341
+ SocialNetworking::Goal Load (0.4ms) SELECT "social_networking_goals".* FROM "social_networking_goals" WHERE "social_networking_goals"."id" = $1 LIMIT 1 [["id", 128166899]]
342
+ SocialNetworking::Like Exists (0.7ms) SELECT 1 AS one FROM "social_networking_likes" WHERE ("social_networking_likes"."item_id" = 128166899 AND "social_networking_likes"."item_type" = 'SocialNetworking::Goal' AND "social_networking_likes"."participant_id" = 700141617) LIMIT 1
343
+ SQL (0.7ms) INSERT INTO "social_networking_likes" ("participant_id", "item_id", "item_type", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["participant_id", 700141617], ["item_id", 128166899], ["item_type", "SocialNetworking::Goal"], ["created_at", "2016-02-15 00:00:00.000000"], ["updated_at", "2016-02-16 19:39:23.498581"]]
344
+  (0.2ms) RELEASE SAVEPOINT active_record_1
345
+  (0.3ms) SAVEPOINT active_record_1
346
+ Participant Load (0.5ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
347
+ SocialNetworking::Goal Load (0.4ms) SELECT "social_networking_goals".* FROM "social_networking_goals" WHERE "social_networking_goals"."id" = $1 LIMIT 1 [["id", 128166899]]
348
+ SocialNetworking::Like Exists (0.8ms) SELECT 1 AS one FROM "social_networking_likes" WHERE ("social_networking_likes"."item_id" = 128166899 AND "social_networking_likes"."item_type" = 'SocialNetworking::Goal' AND "social_networking_likes"."participant_id" = 700141617) LIMIT 1
349
+  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1
350
+  (0.6ms) SELECT COUNT(*) FROM "social_networking_likes" WHERE ("social_networking_likes"."created_at" >= '2016-02-09 00:00:00.000000')
351
+  (0.3ms) ROLLBACK
352
+  (1.7ms) BEGIN
353
+ Participant Load (0.3ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
354
+ SocialNetworking::Goal Load (0.3ms) SELECT "social_networking_goals".* FROM "social_networking_goals" WHERE "social_networking_goals"."id" = $1 LIMIT 1 [["id", 128166899]]
355
+  (0.2ms) SAVEPOINT active_record_1
356
+ Participant Load (0.3ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
357
+ SocialNetworking::OnTheMindStatement Load (0.5ms) SELECT "social_networking_on_the_mind_statements".* FROM "social_networking_on_the_mind_statements" WHERE "social_networking_on_the_mind_statements"."id" = $1 LIMIT 1 [["id", 128166899]]
358
+ SocialNetworking::Like Exists (0.6ms) SELECT 1 AS one FROM "social_networking_likes" WHERE ("social_networking_likes"."item_id" = 128166899 AND "social_networking_likes"."item_type" = 'SocialNetworking::OnTheMindStatement' AND "social_networking_likes"."participant_id" = 700141617) LIMIT 1
359
+  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1
360
+  (0.1ms) ROLLBACK
361
+  (0.1ms) BEGIN
362
+ Participant Load (0.2ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
363
+ SocialNetworking::Goal Load (0.3ms) SELECT "social_networking_goals".* FROM "social_networking_goals" WHERE "social_networking_goals"."id" = $1 LIMIT 1 [["id", 128166899]]
364
+  (0.2ms) SAVEPOINT active_record_1
365
+ Participant Load (0.3ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
366
+ SocialNetworking::SharedItem Load (0.4ms) SELECT "social_networking_shared_items".* FROM "social_networking_shared_items" WHERE "social_networking_shared_items"."id" = $1 LIMIT 1 [["id", 128166899]]
367
+ SocialNetworking::Like Exists (0.6ms) SELECT 1 AS one FROM "social_networking_likes" WHERE ("social_networking_likes"."item_id" = 128166899 AND "social_networking_likes"."item_type" = 'SocialNetworking::SharedItem' AND "social_networking_likes"."participant_id" = 700141617) LIMIT 1
368
+  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1
369
+  (0.2ms) ROLLBACK
370
+  (0.1ms) BEGIN
371
+ Participant Load (0.3ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
372
+  (0.2ms) SAVEPOINT active_record_1
373
+ Participant Load (0.3ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
374
+ SocialNetworking::SharedItem Load (0.4ms) SELECT "social_networking_shared_items".* FROM "social_networking_shared_items" WHERE "social_networking_shared_items"."id" = $1 LIMIT 1 [["id", 1]]
375
+ SocialNetworking::Like Exists (0.6ms) SELECT 1 AS one FROM "social_networking_likes" WHERE ("social_networking_likes"."item_id" = 1 AND "social_networking_likes"."item_type" = 'SocialNetworking::SharedItem' AND "social_networking_likes"."participant_id" = 700141617) LIMIT 1
376
+  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1
377
+  (0.2ms) ROLLBACK
378
+  (0.2ms) BEGIN
379
+ SocialNetworking::Goal Load (0.5ms) SELECT "social_networking_goals".* FROM "social_networking_goals"
380
+  (0.2ms) SAVEPOINT active_record_1
381
+ SQL (0.4ms) DELETE FROM "social_networking_goals" WHERE "social_networking_goals"."id" = $1 [["id", 809335042]]
382
+  (0.2ms) RELEASE SAVEPOINT active_record_1
383
+  (0.2ms) SAVEPOINT active_record_1
384
+ SQL (0.3ms) DELETE FROM "social_networking_goals" WHERE "social_networking_goals"."id" = $1 [["id", 576699391]]
385
+  (0.1ms) RELEASE SAVEPOINT active_record_1
386
+  (0.1ms) SAVEPOINT active_record_1
387
+ SQL (0.3ms) DELETE FROM "social_networking_goals" WHERE "social_networking_goals"."id" = $1 [["id", 614371357]]
388
+  (0.1ms) RELEASE SAVEPOINT active_record_1
389
+  (0.1ms) SAVEPOINT active_record_1
390
+ SQL (0.2ms) DELETE FROM "social_networking_goals" WHERE "social_networking_goals"."id" = $1 [["id", 53334230]]
391
+  (0.1ms) RELEASE SAVEPOINT active_record_1
392
+  (0.1ms) SAVEPOINT active_record_1
393
+ SQL (0.3ms) DELETE FROM "social_networking_goals" WHERE "social_networking_goals"."id" = $1 [["id", 916373174]]
394
+  (0.1ms) RELEASE SAVEPOINT active_record_1
395
+  (0.1ms) SAVEPOINT active_record_1
396
+ SQL (0.2ms) DELETE FROM "social_networking_goals" WHERE "social_networking_goals"."id" = $1 [["id", 717544784]]
397
+  (0.1ms) RELEASE SAVEPOINT active_record_1
398
+  (0.1ms) SAVEPOINT active_record_1
399
+ SQL (0.2ms) DELETE FROM "social_networking_goals" WHERE "social_networking_goals"."id" = $1 [["id", 938656909]]
400
+  (0.2ms) RELEASE SAVEPOINT active_record_1
401
+  (0.1ms) SAVEPOINT active_record_1
402
+ SQL (0.2ms) DELETE FROM "social_networking_goals" WHERE "social_networking_goals"."id" = $1 [["id", 401619065]]
403
+  (0.2ms) RELEASE SAVEPOINT active_record_1
404
+  (0.1ms) SAVEPOINT active_record_1
405
+ SQL (0.2ms) DELETE FROM "social_networking_goals" WHERE "social_networking_goals"."id" = $1 [["id", 128166899]]
406
+  (0.2ms) RELEASE SAVEPOINT active_record_1
407
+  (0.1ms) SAVEPOINT active_record_1
408
+ SQL (0.2ms) DELETE FROM "social_networking_goals" WHERE "social_networking_goals"."id" = $1 [["id", 1002298878]]
409
+  (0.1ms) RELEASE SAVEPOINT active_record_1
410
+  (0.1ms) SAVEPOINT active_record_1
411
+ SQL (0.2ms) DELETE FROM "social_networking_goals" WHERE "social_networking_goals"."id" = $1 [["id", 318784238]]
412
+  (0.1ms) RELEASE SAVEPOINT active_record_1
413
+  (0.1ms) SAVEPOINT active_record_1
414
+ SQL (0.2ms) DELETE FROM "social_networking_goals" WHERE "social_networking_goals"."id" = $1 [["id", 16804933]]
415
+  (0.2ms) RELEASE SAVEPOINT active_record_1
416
+ Participant Load (1.0ms) SELECT "participants"."id", "participants"."study_id" FROM "participants"
417
+ SocialNetworking::Goal Load (0.7ms) SELECT "social_networking_goals".* FROM "social_networking_goals" WHERE "social_networking_goals"."participant_id" = $1 [["participant_id", 700141617]]
418
+ SocialNetworking::Goal Load (0.4ms) SELECT "social_networking_goals".* FROM "social_networking_goals" WHERE "social_networking_goals"."participant_id" = $1 [["participant_id", 816972181]]
419
+ SocialNetworking::Goal Load (0.7ms) SELECT "social_networking_goals".* FROM "social_networking_goals" WHERE "social_networking_goals"."participant_id" = $1 [["participant_id", 129315074]]
420
+  (0.3ms) ROLLBACK
421
+  (0.2ms) BEGIN
422
+ Participant Load (0.3ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
423
+ SocialNetworking::Goal Load (1.0ms) SELECT "social_networking_goals".* FROM "social_networking_goals" ORDER BY "social_networking_goals"."id" ASC LIMIT 1
424
+ Participant Load (0.5ms) SELECT "participants"."id", "participants"."study_id" FROM "participants"
425
+ SocialNetworking::Goal Load (1.3ms) SELECT "social_networking_goals".* FROM "social_networking_goals" WHERE "social_networking_goals"."participant_id" = $1 [["participant_id", 700141617]]
426
+ SocialNetworking::Goal Load (0.7ms) SELECT "social_networking_goals".* FROM "social_networking_goals" WHERE "social_networking_goals"."participant_id" = $1 [["participant_id", 816972181]]
427
+ SocialNetworking::Goal Load (0.5ms) SELECT "social_networking_goals".* FROM "social_networking_goals" WHERE "social_networking_goals"."participant_id" = $1 [["participant_id", 129315074]]
428
+  (0.2ms) ROLLBACK
429
+  (0.1ms) BEGIN
430
+  (0.1ms) ROLLBACK
431
+  (0.1ms) BEGIN
432
+  (0.2ms) ROLLBACK
433
+  (0.2ms) BEGIN
434
+  (0.2ms) ROLLBACK
435
+  (0.2ms) BEGIN
436
+ Processing by SocialNetworking::GoalsController#create as HTML
437
+ Parameters: {"description"=>"run a marathon", "isCompleted"=>true}
438
+ Completed 200 OK in 2ms (Views: 0.3ms | ActiveRecord: 0.0ms)
439
+  (0.3ms) ROLLBACK
440
+  (0.1ms) BEGIN
441
+ Processing by SocialNetworking::GoalsController#create as HTML
442
+ Parameters: {"description"=>"run a marathon", "isCompleted"=>true}
443
+ Completed 400 Bad Request in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
444
+  (0.3ms) ROLLBACK
445
+  (0.2ms) BEGIN
446
+ Processing by SocialNetworking::GoalsController#update as HTML
447
+ Parameters: {"description"=>"run a marathon", "isCompleted"=>true, "id"=>"1234"}
448
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
449
+  (0.3ms) ROLLBACK
450
+  (0.2ms) BEGIN
451
+ Processing by SocialNetworking::GoalsController#update as HTML
452
+ Parameters: {"id"=>"1234"}
453
+ Completed 400 Bad Request in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
454
+  (0.3ms) ROLLBACK
455
+  (0.2ms) BEGIN
456
+ Processing by SocialNetworking::GoalsController#update as HTML
457
+ Parameters: {"id"=>"1234"}
458
+ Completed 404 Not Found in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
459
+  (0.3ms) ROLLBACK
460
+  (0.1ms) BEGIN
461
+ Processing by SocialNetworking::GoalsController#update as HTML
462
+ Parameters: {"description"=>"run a marathon", "isDeleted"=>true, "id"=>"1234"}
463
+ Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
464
+  (0.4ms) ROLLBACK
465
+  (0.2ms) BEGIN
466
+ Processing by SocialNetworking::GoalsController#index as HTML
467
+ Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
468
+  (0.3ms) ROLLBACK
469
+  (0.2ms) BEGIN
470
+ Participant Load (0.3ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
471
+  (0.2ms) SAVEPOINT active_record_1
472
+  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1
473
+  (0.2ms) ROLLBACK
474
+  (0.1ms) BEGIN
475
+  (0.5ms) SELECT COUNT(*) FROM "social_networking_goals" WHERE ("social_networking_goals"."created_at" >= '2016-02-16 00:00:00.000000' AND "social_networking_goals"."created_at" <= '2016-02-16 23:59:59.999999')
476
+ Participant Load (0.3ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
477
+  (0.2ms) SAVEPOINT active_record_1
478
+ Participant Load (0.3ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
479
+ SQL (0.8ms) INSERT INTO "social_networking_goals" ("participant_id", "description", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["participant_id", 700141617], ["description", "Write a test that passes."], ["created_at", "2016-02-16 00:00:00.000000"], ["updated_at", "2016-02-16 19:39:23.669803"]]
480
+  (0.2ms) RELEASE SAVEPOINT active_record_1
481
+  (0.6ms) SELECT COUNT(*) FROM "social_networking_goals" WHERE ("social_networking_goals"."created_at" >= '2016-02-16 00:00:00.000000' AND "social_networking_goals"."created_at" <= '2016-02-16 23:59:59.999999')
482
+  (0.3ms) ROLLBACK
483
+  (0.2ms) BEGIN
484
+  (0.2ms) SAVEPOINT active_record_1
485
+  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1
486
+  (0.2ms) ROLLBACK
487
+  (0.1ms) BEGIN
488
+  (0.6ms) SELECT COUNT(*) FROM "social_networking_goals" WHERE ("social_networking_goals"."created_at" >= '2016-02-09 00:00:00.000000')
489
+ Participant Load (0.3ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
490
+  (0.2ms) SAVEPOINT active_record_1
491
+ Participant Load (0.3ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
492
+ SQL (0.5ms) INSERT INTO "social_networking_goals" ("participant_id", "description", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["participant_id", 700141617], ["description", "Write a test that passes."], ["created_at", "2016-02-15 00:00:00.000000"], ["updated_at", "2016-02-16 19:39:23.683940"]]
493
+  (0.3ms) RELEASE SAVEPOINT active_record_1
494
+  (0.2ms) SAVEPOINT active_record_1
495
+ Participant Load (0.3ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
496
+ SQL (0.6ms) INSERT INTO "social_networking_goals" ("participant_id", "description", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["participant_id", 700141617], ["description", "Write a test that passes."], ["created_at", "2016-02-08 00:00:00.000000"], ["updated_at", "2016-02-16 19:39:23.687780"]]
497
+  (0.2ms) RELEASE SAVEPOINT active_record_1
498
+  (0.5ms) SELECT COUNT(*) FROM "social_networking_goals" WHERE ("social_networking_goals"."created_at" >= '2016-02-09 00:00:00.000000')
499
+  (0.2ms) ROLLBACK
500
+  (0.2ms) BEGIN
501
+  (1.1ms) SELECT COUNT(*) FROM "social_networking_goals" WHERE "social_networking_goals"."deleted_at" IS NULL AND "social_networking_goals"."completed_at" IS NULL AND ("social_networking_goals"."due_on" < '2016-02-16') AND ("social_networking_goals"."due_on" >= '2016-02-15')
502
+  (0.2ms) ROLLBACK
503
+  (0.2ms) BEGIN
504
+  (0.6ms) SELECT COUNT(*) FROM "social_networking_goals" WHERE "social_networking_goals"."deleted_at" IS NULL AND "social_networking_goals"."completed_at" IS NULL AND ("social_networking_goals"."due_on" < '2016-02-16') AND ("social_networking_goals"."due_on" >= '2016-02-15')
505
+ SocialNetworking::Goal Load (0.4ms) SELECT "social_networking_goals".* FROM "social_networking_goals" WHERE "social_networking_goals"."description" = $1 LIMIT 1 [["description", "p1 omega"]]
506
+ SQL (0.3ms) DELETE FROM "social_networking_goals" WHERE "social_networking_goals"."id" = $1 [["id", 717544784]]
507
+  (0.8ms) SELECT COUNT(*) FROM "social_networking_goals" WHERE "social_networking_goals"."deleted_at" IS NULL AND "social_networking_goals"."completed_at" IS NULL AND ("social_networking_goals"."due_on" < '2016-02-16') AND ("social_networking_goals"."due_on" >= '2016-02-15')
508
+  (0.4ms) ROLLBACK
509
+  (0.2ms) BEGIN
510
+ Participant Load (0.3ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
511
+  (0.3ms) SAVEPOINT active_record_1
512
+  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1
513
+  (0.1ms) ROLLBACK
514
+  (0.1ms) BEGIN
515
+ Participant Load (0.3ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
516
+  (0.2ms) SAVEPOINT active_record_1
517
+ SQL (0.5ms) INSERT INTO "social_networking_goals" ("participant_id", "description", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["participant_id", 700141617], ["description", "DESCription"], ["created_at", "2016-02-16 19:39:23.712068"], ["updated_at", "2016-02-16 19:39:23.712068"]]
518
+  (0.2ms) RELEASE SAVEPOINT active_record_1
519
+  (0.2ms) ROLLBACK
520
+  (0.1ms) BEGIN
521
+ Participant Load (0.3ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
522
+  (0.2ms) SAVEPOINT active_record_1
523
+ SQL (0.5ms) INSERT INTO "social_networking_goals" ("participant_id", "description", "due_on", "completed_at", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["participant_id", 700141617], ["description", "DESCription"], ["due_on", "2016-02-16"], ["completed_at", "2016-02-14 00:00:00.000000"], ["created_at", "2016-02-16 19:39:23.717406"], ["updated_at", "2016-02-16 19:39:23.717406"]]
524
+  (0.2ms) RELEASE SAVEPOINT active_record_1
525
+  (0.1ms) ROLLBACK
526
+  (0.1ms) BEGIN
527
+ Participant Load (0.2ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
528
+  (0.2ms) SAVEPOINT active_record_1
529
+ SQL (0.5ms) INSERT INTO "social_networking_goals" ("participant_id", "description", "due_on", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["participant_id", 700141617], ["description", "DESCription"], ["due_on", "2016-02-17"], ["created_at", "2016-02-16 19:39:23.723231"], ["updated_at", "2016-02-16 19:39:23.723231"]]
530
+  (0.2ms) RELEASE SAVEPOINT active_record_1
531
+  (0.2ms) ROLLBACK
532
+  (0.1ms) BEGIN
533
+ Participant Load (0.2ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
534
+  (0.3ms) SAVEPOINT active_record_1
535
+ SQL (0.5ms) INSERT INTO "social_networking_goals" ("participant_id", "description", "due_on", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["participant_id", 700141617], ["description", "foo"], ["due_on", "2016-02-16"], ["created_at", "2016-02-16 19:39:23.729189"], ["updated_at", "2016-02-16 19:39:23.729189"]]
536
+  (0.2ms) RELEASE SAVEPOINT active_record_1
537
+  (0.2ms) ROLLBACK
538
+  (0.2ms) BEGIN
539
+ Participant Load (0.3ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
540
+  (0.2ms) SAVEPOINT active_record_1
541
+ SQL (0.4ms) INSERT INTO "social_networking_goals" ("participant_id", "description", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["participant_id", 700141617], ["description", "foo"], ["created_at", "2016-02-16 19:39:23.735062"], ["updated_at", "2016-02-16 19:39:23.735062"]]
542
+  (0.2ms) RELEASE SAVEPOINT active_record_1
543
+  (0.2ms) ROLLBACK
544
+  (0.2ms) BEGIN
545
+  (0.3ms) ROLLBACK
546
+  (0.2ms) BEGIN
547
+  (0.3ms) ROLLBACK
548
+  (0.2ms) BEGIN
549
+ SocialNetworking::OnTheMindStatement Load (0.5ms) SELECT "social_networking_on_the_mind_statements".* FROM "social_networking_on_the_mind_statements" WHERE "social_networking_on_the_mind_statements"."participant_id" = $1 ORDER BY "social_networking_on_the_mind_statements"."created_at" DESC LIMIT 5 [["participant_id", 1]]
550
+ SocialNetworking::Nudge Load (0.7ms) SELECT "social_networking_nudges".* FROM "social_networking_nudges" WHERE "social_networking_nudges"."initiator_id" = $1 ORDER BY "social_networking_nudges"."created_at" DESC LIMIT 5 [["initiator_id", 1]]
551
+ SocialNetworking::SharedItem Load (0.6ms) SELECT "social_networking_shared_items".* FROM "social_networking_shared_items" INNER JOIN "participants" ON "participants"."id" = "social_networking_shared_items"."participant_id" WHERE "social_networking_shared_items"."participant_id" = $1 ORDER BY "social_networking_shared_items"."created_at" DESC LIMIT 5 [["participant_id", 1]]
552
+ SocialNetworking::OnTheMindStatement Load (0.5ms) SELECT "social_networking_on_the_mind_statements".* FROM "social_networking_on_the_mind_statements" WHERE "social_networking_on_the_mind_statements"."participant_id" = $1 ORDER BY "social_networking_on_the_mind_statements"."created_at" DESC LIMIT 5 [["participant_id", 1]]
553
+ SocialNetworking::Nudge Load (0.4ms) SELECT "social_networking_nudges".* FROM "social_networking_nudges" WHERE "social_networking_nudges"."initiator_id" = $1 ORDER BY "social_networking_nudges"."created_at" DESC LIMIT 5 [["initiator_id", 1]]
554
+ SocialNetworking::SharedItem Load (0.7ms) SELECT "social_networking_shared_items".* FROM "social_networking_shared_items" INNER JOIN "participants" ON "participants"."id" = "social_networking_shared_items"."participant_id" WHERE "social_networking_shared_items"."participant_id" = $1 ORDER BY "social_networking_shared_items"."created_at" DESC LIMIT 5 [["participant_id", 1]]
555
+  (0.3ms) ROLLBACK
556
+  (0.2ms) BEGIN
557
+ Rendered /Users/ericcf/work/social_networking/app/views/social_networking/coach/patient_dashboards/tables/nudges/_initiator_nudges.html.erb (1.3ms)
558
+  (0.3ms) ROLLBACK
559
+  (0.2ms) BEGIN
560
+ Rendered /Users/ericcf/work/social_networking/app/views/social_networking/coach/patient_dashboards/tables/nudges/_initiator_nudges.html.erb (0.9ms)
561
+  (0.3ms) ROLLBACK
562
+  (0.2ms) BEGIN
563
+ Rendered /Users/ericcf/work/social_networking/app/views/social_networking/coach/patient_dashboards/tables/nudges/_initiator_nudges.html.erb (0.9ms)
564
+  (0.3ms) ROLLBACK
565
+  (0.2ms) BEGIN
566
+ Started GET "/social_networking/goal_tool" for 127.0.0.1 at 2016-02-16 13:39:25 -0600
567
+ Processing by SocialNetworking::GoalsController#tool as HTML
568
+ Participant Load (0.7ms) SELECT "participants".* FROM "participants" WHERE "participants"."email" = $1 LIMIT 1 [["email", "p1@example.com"]]
569
+ SocialNetworking::Goal Load (0.7ms) SELECT "social_networking_goals".* FROM "social_networking_goals" WHERE "social_networking_goals"."participant_id" = $1 [["participant_id", 700141617]]
570
+ Participant Load (0.3ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
571
+ SocialNetworking::Comment Load (0.9ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 809335042], ["item_type", "SocialNetworking::Goal"]]
572
+ CACHE (0.0ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
573
+ SocialNetworking::Comment Load (0.4ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 576699391], ["item_type", "SocialNetworking::Goal"]]
574
+ CACHE (0.0ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
575
+ SocialNetworking::Comment Load (0.4ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 614371357], ["item_type", "SocialNetworking::Goal"]]
576
+ CACHE (0.0ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
577
+ SocialNetworking::Comment Load (0.4ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 53334230], ["item_type", "SocialNetworking::Goal"]]
578
+ CACHE (0.0ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
579
+ SocialNetworking::Comment Load (0.4ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 916373174], ["item_type", "SocialNetworking::Goal"]]
580
+ CACHE (0.0ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
581
+ SocialNetworking::Comment Load (0.5ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 717544784], ["item_type", "SocialNetworking::Goal"]]
582
+ CACHE (0.0ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
583
+ SocialNetworking::Comment Load (0.2ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 938656909], ["item_type", "SocialNetworking::Goal"]]
584
+ CACHE (0.0ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
585
+ SocialNetworking::Comment Load (0.3ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 401619065], ["item_type", "SocialNetworking::Goal"]]
586
+ CACHE (0.1ms) SELECT "participants".* FROM "participants" WHERE "participants"."email" = $1 LIMIT 1 [["email", "p1@example.com"]]
587
+ Rendered /Users/ericcf/work/social_networking/app/views/social_networking/goals/tool.html.erb within layouts/tool (5.1ms)
588
+ Completed 200 OK in 708ms (Views: 677.4ms | ActiveRecord: 9.9ms)
589
+ Started GET "/assets/application.css" for 127.0.0.1 at 2016-02-16 13:39:26 -0600
590
+ Started GET "/assets/application.js" for 127.0.0.1 at 2016-02-16 13:39:26 -0600
591
+ SocialNetworking::Goal Load (0.5ms) SELECT "social_networking_goals".* FROM "social_networking_goals" WHERE "social_networking_goals"."description" = $1 LIMIT 1 [["description", "p1 alpha"]]
592
+ Started POST "/social_networking/goals/809335042" for 127.0.0.1 at 2016-02-16 13:39:26 -0600
593
+ Processing by SocialNetworking::GoalsController#update as HTML
594
+ Parameters: {"id"=>"809335042", "description"=>"p1 alpha", "isCompleted"=>true, "isDeleted"=>false, "dueOn"=>"Feb 16 2016", "goal"=>{"id"=>"809335042", "description"=>"p1 alpha"}}
595
+ Participant Load (1.8ms) SELECT "participants".* FROM "participants" WHERE "participants"."email" = $1 LIMIT 1 [["email", "p1@example.com"]]
596
+ SocialNetworking::Goal Load (1.0ms) SELECT "social_networking_goals".* FROM "social_networking_goals" WHERE "social_networking_goals"."participant_id" = $1 AND "social_networking_goals"."id" = $2 ORDER BY "social_networking_goals"."id" ASC LIMIT 1 [["participant_id", 700141617], ["id", 809335042]]
597
+ CACHE (0.0ms) SELECT "participants".* FROM "participants" WHERE "participants"."email" = $1 LIMIT 1 [["email", "p1@example.com"]]
598
+  (1.2ms) BEGIN
599
+ Participant Load (0.7ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
600
+ SQL (0.9ms) UPDATE "social_networking_goals" SET "completed_at" = $1, "updated_at" = $2 WHERE "social_networking_goals"."id" = $3 [["completed_at", "2016-02-16 19:39:26.644969"], ["updated_at", "2016-02-16 19:39:26.650901"], ["id", 809335042]]
601
+  (0.9ms) COMMIT
602
+  (0.4ms) BEGIN
603
+ SQL (1.1ms) INSERT INTO "social_networking_shared_items" ("item_id", "item_type", "action_type", "participant_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["item_id", 809335042], ["item_type", "SocialNetworking::Goal"], ["action_type", "Completed"], ["participant_id", 700141617], ["created_at", "2016-02-16 19:39:26.659424"], ["updated_at", "2016-02-16 19:39:26.659424"]]
604
+  (0.6ms) COMMIT
605
+ SocialNetworking::Comment Load (1.4ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 809335042], ["item_type", "SocialNetworking::Goal"]]
606
+ Completed 200 OK in 32ms (Views: 0.5ms | ActiveRecord: 10.0ms)
607
+  (0.3ms) ROLLBACK
608
+  (0.1ms) BEGIN
609
+ Started GET "/social_networking/goal_tool" for 127.0.0.1 at 2016-02-16 13:39:26 -0600
610
+ Processing by SocialNetworking::GoalsController#tool as HTML
611
+ Participant Load (0.3ms) SELECT "participants".* FROM "participants" WHERE "participants"."email" = $1 LIMIT 1 [["email", "p1@example.com"]]
612
+ SocialNetworking::Goal Load (0.3ms) SELECT "social_networking_goals".* FROM "social_networking_goals" WHERE "social_networking_goals"."participant_id" = $1 [["participant_id", 700141617]]
613
+ Participant Load (0.3ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
614
+ SocialNetworking::Comment Load (0.4ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 576699391], ["item_type", "SocialNetworking::Goal"]]
615
+ CACHE (0.0ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
616
+ SocialNetworking::Comment Load (0.4ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 614371357], ["item_type", "SocialNetworking::Goal"]]
617
+ CACHE (0.0ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
618
+ SocialNetworking::Comment Load (0.5ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 53334230], ["item_type", "SocialNetworking::Goal"]]
619
+ CACHE (0.0ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
620
+ SocialNetworking::Comment Load (0.4ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 916373174], ["item_type", "SocialNetworking::Goal"]]
621
+ CACHE (0.0ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
622
+ SocialNetworking::Comment Load (0.4ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 717544784], ["item_type", "SocialNetworking::Goal"]]
623
+ CACHE (0.0ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
624
+ SocialNetworking::Comment Load (0.4ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 938656909], ["item_type", "SocialNetworking::Goal"]]
625
+ CACHE (0.0ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
626
+ SocialNetworking::Comment Load (0.3ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 401619065], ["item_type", "SocialNetworking::Goal"]]
627
+ CACHE (0.0ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
628
+ SocialNetworking::Comment Load (0.3ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 809335042], ["item_type", "SocialNetworking::Goal"]]
629
+ CACHE (0.0ms) SELECT "participants".* FROM "participants" WHERE "participants"."email" = $1 LIMIT 1 [["email", "p1@example.com"]]
630
+ Rendered /Users/ericcf/work/social_networking/app/views/social_networking/goals/tool.html.erb within layouts/tool (1.7ms)
631
+ Completed 200 OK in 21ms (Views: 3.0ms | ActiveRecord: 4.3ms)
632
+ Started GET "/assets/application.css" for 127.0.0.1 at 2016-02-16 13:39:26 -0600
633
+ Started GET "/assets/application.js" for 127.0.0.1 at 2016-02-16 13:39:26 -0600
634
+ SocialNetworking::Goal Load (0.4ms) SELECT "social_networking_goals".* FROM "social_networking_goals" WHERE "social_networking_goals"."description" = $1 LIMIT 1 [["description", "p1 gamma"]]
635
+ Started POST "/social_networking/goals/614371357" for 127.0.0.1 at 2016-02-16 13:39:26 -0600
636
+ Processing by SocialNetworking::GoalsController#update as HTML
637
+ Parameters: {"id"=>"614371357", "description"=>"p1 gamma", "isCompleted"=>false, "isDeleted"=>true, "dueOn"=>"Feb 16 2016", "goal"=>{"id"=>"614371357", "description"=>"p1 gamma"}}
638
+ Participant Load (0.8ms) SELECT "participants".* FROM "participants" WHERE "participants"."email" = $1 LIMIT 1 [["email", "p1@example.com"]]
639
+ SocialNetworking::Goal Load (0.7ms) SELECT "social_networking_goals".* FROM "social_networking_goals" WHERE "social_networking_goals"."participant_id" = $1 AND "social_networking_goals"."id" = $2 ORDER BY "social_networking_goals"."id" ASC LIMIT 1 [["participant_id", 700141617], ["id", 614371357]]
640
+ CACHE (0.0ms) SELECT "participants".* FROM "participants" WHERE "participants"."email" = $1 LIMIT 1 [["email", "p1@example.com"]]
641
+  (0.6ms) BEGIN
642
+ Participant Load (1.0ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
643
+ SQL (0.6ms) UPDATE "social_networking_goals" SET "deleted_at" = $1, "updated_at" = $2 WHERE "social_networking_goals"."id" = $3 [["deleted_at", "2016-02-16 19:39:26.888089"], ["updated_at", "2016-02-16 19:39:26.892615"], ["id", 614371357]]
644
+  (1.0ms) COMMIT
645
+ SocialNetworking::Comment Load (0.8ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 614371357], ["item_type", "SocialNetworking::Goal"]]
646
+ Completed 200 OK in 18ms (Views: 0.3ms | ActiveRecord: 5.6ms)
647
+  (0.3ms) ROLLBACK
648
+  (0.1ms) BEGIN
649
+ Started GET "/social_networking/goal_tool" for 127.0.0.1 at 2016-02-16 13:39:26 -0600
650
+ Processing by SocialNetworking::GoalsController#tool as HTML
651
+ Participant Load (1.0ms) SELECT "participants".* FROM "participants" WHERE "participants"."email" = $1 LIMIT 1 [["email", "p1@example.com"]]
652
+ SocialNetworking::Goal Load (0.5ms) SELECT "social_networking_goals".* FROM "social_networking_goals" WHERE "social_networking_goals"."participant_id" = $1 [["participant_id", 700141617]]
653
+ Participant Load (0.8ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
654
+ SocialNetworking::Comment Load (0.4ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 576699391], ["item_type", "SocialNetworking::Goal"]]
655
+ CACHE (0.0ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
656
+ SocialNetworking::Comment Load (0.5ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 53334230], ["item_type", "SocialNetworking::Goal"]]
657
+ CACHE (0.0ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
658
+ SocialNetworking::Comment Load (0.5ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 916373174], ["item_type", "SocialNetworking::Goal"]]
659
+ CACHE (0.0ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
660
+ SocialNetworking::Comment Load (0.4ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 717544784], ["item_type", "SocialNetworking::Goal"]]
661
+ CACHE (0.1ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
662
+ SocialNetworking::Comment Load (0.5ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 938656909], ["item_type", "SocialNetworking::Goal"]]
663
+ CACHE (0.0ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
664
+ SocialNetworking::Comment Load (0.4ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 401619065], ["item_type", "SocialNetworking::Goal"]]
665
+ CACHE (0.0ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
666
+ SocialNetworking::Comment Load (1.1ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 809335042], ["item_type", "SocialNetworking::Goal"]]
667
+ CACHE (0.0ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
668
+ SocialNetworking::Comment Load (0.5ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 614371357], ["item_type", "SocialNetworking::Goal"]]
669
+ CACHE (0.0ms) SELECT "participants".* FROM "participants" WHERE "participants"."email" = $1 LIMIT 1 [["email", "p1@example.com"]]
670
+ Rendered /Users/ericcf/work/social_networking/app/views/social_networking/goals/tool.html.erb within layouts/tool (16.6ms)
671
+ Completed 200 OK in 52ms (Views: 21.7ms | ActiveRecord: 6.8ms)
672
+ Started GET "/assets/application.css" for 127.0.0.1 at 2016-02-16 13:39:27 -0600
673
+ Started GET "/assets/application.js" for 127.0.0.1 at 2016-02-16 13:39:27 -0600
674
+  (0.3ms) ROLLBACK
675
+  (0.1ms) BEGIN
676
+ Started GET "/social_networking/goal_tool" for 127.0.0.1 at 2016-02-16 13:39:27 -0600
677
+ Processing by SocialNetworking::GoalsController#tool as HTML
678
+ Participant Load (0.4ms) SELECT "participants".* FROM "participants" WHERE "participants"."email" = $1 LIMIT 1 [["email", "p1@example.com"]]
679
+ SocialNetworking::Goal Load (0.3ms) SELECT "social_networking_goals".* FROM "social_networking_goals" WHERE "social_networking_goals"."participant_id" = $1 [["participant_id", 700141617]]
680
+ Participant Load (0.3ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
681
+ SocialNetworking::Comment Load (0.3ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 576699391], ["item_type", "SocialNetworking::Goal"]]
682
+ CACHE (0.0ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
683
+ SocialNetworking::Comment Load (0.5ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 53334230], ["item_type", "SocialNetworking::Goal"]]
684
+ CACHE (0.0ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
685
+ SocialNetworking::Comment Load (0.4ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 916373174], ["item_type", "SocialNetworking::Goal"]]
686
+ CACHE (0.0ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
687
+ SocialNetworking::Comment Load (0.4ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 717544784], ["item_type", "SocialNetworking::Goal"]]
688
+ CACHE (0.0ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
689
+ SocialNetworking::Comment Load (0.3ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 938656909], ["item_type", "SocialNetworking::Goal"]]
690
+ CACHE (0.0ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
691
+ SocialNetworking::Comment Load (0.3ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 401619065], ["item_type", "SocialNetworking::Goal"]]
692
+ CACHE (0.0ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
693
+ SocialNetworking::Comment Load (0.3ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 809335042], ["item_type", "SocialNetworking::Goal"]]
694
+ CACHE (0.0ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
695
+ SocialNetworking::Comment Load (0.3ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 614371357], ["item_type", "SocialNetworking::Goal"]]
696
+ CACHE (0.0ms) SELECT "participants".* FROM "participants" WHERE "participants"."email" = $1 LIMIT 1 [["email", "p1@example.com"]]
697
+ Rendered /Users/ericcf/work/social_networking/app/views/social_networking/goals/tool.html.erb within layouts/tool (1.3ms)
698
+ Completed 200 OK in 21ms (Views: 2.5ms | ActiveRecord: 4.0ms)
699
+ Started GET "/assets/application.css" for 127.0.0.1 at 2016-02-16 13:39:27 -0600
700
+ Started GET "/assets/application.js" for 127.0.0.1 at 2016-02-16 13:39:27 -0600
701
+ SocialNetworking::Goal Load (0.7ms) SELECT "social_networking_goals".* FROM "social_networking_goals" WHERE "social_networking_goals"."description" = $1 LIMIT 1 [["description", "run"]]
702
+ Started POST "/social_networking/goals/53334230" for 127.0.0.1 at 2016-02-16 13:39:27 -0600
703
+ Processing by SocialNetworking::GoalsController#update as HTML
704
+ Parameters: {"id"=>"53334230", "description"=>"run foo", "isCompleted"=>false, "dueOn"=>"Mar 15 2016", "goal"=>{"id"=>"53334230", "description"=>"run foo"}}
705
+ Participant Load (0.9ms) SELECT "participants".* FROM "participants" WHERE "participants"."email" = $1 LIMIT 1 [["email", "p1@example.com"]]
706
+ SocialNetworking::Goal Load (0.8ms) SELECT "social_networking_goals".* FROM "social_networking_goals" WHERE "social_networking_goals"."participant_id" = $1 AND "social_networking_goals"."id" = $2 ORDER BY "social_networking_goals"."id" ASC LIMIT 1 [["participant_id", 700141617], ["id", 53334230]]
707
+ CACHE (0.0ms) SELECT "participants".* FROM "participants" WHERE "participants"."email" = $1 LIMIT 1 [["email", "p1@example.com"]]
708
+  (0.3ms) BEGIN
709
+ Participant Load (0.8ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
710
+ SQL (0.6ms) UPDATE "social_networking_goals" SET "description" = $1, "due_on" = $2, "updated_at" = $3 WHERE "social_networking_goals"."id" = $4 [["description", "run foo"], ["due_on", "2016-03-15"], ["updated_at", "2016-02-16 19:39:27.461000"], ["id", 53334230]]
711
+  (0.7ms) COMMIT
712
+ SocialNetworking::Comment Load (0.5ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 53334230], ["item_type", "SocialNetworking::Goal"]]
713
+ Completed 200 OK in 15ms (Views: 0.5ms | ActiveRecord: 4.5ms)
714
+  (0.4ms) ROLLBACK
715
+  (0.3ms) BEGIN
716
+ Started GET "/social_networking/goal_tool" for 127.0.0.1 at 2016-02-16 13:39:27 -0600
717
+ Processing by SocialNetworking::GoalsController#tool as HTML
718
+ Participant Load (0.6ms) SELECT "participants".* FROM "participants" WHERE "participants"."email" = $1 LIMIT 1 [["email", "p1@example.com"]]
719
+ SocialNetworking::Goal Load (0.7ms) SELECT "social_networking_goals".* FROM "social_networking_goals" WHERE "social_networking_goals"."participant_id" = $1 [["participant_id", 700141617]]
720
+ Participant Load (0.7ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
721
+ SocialNetworking::Comment Load (0.5ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 576699391], ["item_type", "SocialNetworking::Goal"]]
722
+ CACHE (0.0ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
723
+ SocialNetworking::Comment Load (0.5ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 916373174], ["item_type", "SocialNetworking::Goal"]]
724
+ CACHE (0.0ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
725
+ SocialNetworking::Comment Load (0.5ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 717544784], ["item_type", "SocialNetworking::Goal"]]
726
+ CACHE (0.0ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
727
+ SocialNetworking::Comment Load (0.5ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 938656909], ["item_type", "SocialNetworking::Goal"]]
728
+ CACHE (0.0ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
729
+ SocialNetworking::Comment Load (0.5ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 401619065], ["item_type", "SocialNetworking::Goal"]]
730
+ CACHE (0.0ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
731
+ SocialNetworking::Comment Load (0.5ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 809335042], ["item_type", "SocialNetworking::Goal"]]
732
+ CACHE (0.0ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
733
+ SocialNetworking::Comment Load (0.5ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 614371357], ["item_type", "SocialNetworking::Goal"]]
734
+ CACHE (0.0ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
735
+ SocialNetworking::Comment Load (0.5ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 53334230], ["item_type", "SocialNetworking::Goal"]]
736
+ CACHE (0.0ms) SELECT "participants".* FROM "participants" WHERE "participants"."email" = $1 LIMIT 1 [["email", "p1@example.com"]]
737
+ Rendered /Users/ericcf/work/social_networking/app/views/social_networking/goals/tool.html.erb within layouts/tool (2.7ms)
738
+ Completed 200 OK in 38ms (Views: 5.5ms | ActiveRecord: 6.2ms)
739
+ Started GET "/assets/application.css" for 127.0.0.1 at 2016-02-16 13:39:27 -0600
740
+ Started GET "/assets/application.js" for 127.0.0.1 at 2016-02-16 13:39:27 -0600
741
+ Started POST "/social_networking/goals" for 127.0.0.1 at 2016-02-16 13:39:27 -0600
742
+ Processing by SocialNetworking::GoalsController#create as HTML
743
+ Parameters: {"description"=>"the end!", "isCompleted"=>false, "dueOn"=>"Apr 12 2016", "goal"=>{"description"=>"the end!"}}
744
+ Participant Load (0.5ms) SELECT "participants".* FROM "participants" WHERE "participants"."email" = $1 LIMIT 1 [["email", "p1@example.com"]]
745
+  (1.0ms) BEGIN
746
+ Participant Load (0.7ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
747
+ SQL (1.2ms) INSERT INTO "social_networking_goals" ("participant_id", "description", "due_on", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["participant_id", 700141617], ["description", "the end!"], ["due_on", "2016-04-12"], ["created_at", "2016-02-16 19:39:27.868897"], ["updated_at", "2016-02-16 19:39:27.868897"]]
748
+  (1.3ms) COMMIT
749
+  (0.2ms) BEGIN
750
+ SQL (0.5ms) INSERT INTO "social_networking_shared_items" ("item_id", "item_type", "action_type", "participant_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["item_id", 1002298887], ["item_type", "SocialNetworking::Goal"], ["action_type", "Created"], ["participant_id", 700141617], ["created_at", "2016-02-16 19:39:27.875228"], ["updated_at", "2016-02-16 19:39:27.875228"]]
751
+  (0.4ms) COMMIT
752
+ SocialNetworking::Comment Load (0.4ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 1002298887], ["item_type", "SocialNetworking::Goal"]]
753
+ Completed 200 OK in 16ms (Views: 0.3ms | ActiveRecord: 6.2ms)
754
+  (0.2ms) ROLLBACK
755
+  (0.2ms) BEGIN
756
+ Started GET "/social_networking/goal_tool" for 127.0.0.1 at 2016-02-16 13:39:27 -0600
757
+ Processing by SocialNetworking::GoalsController#tool as HTML
758
+ Participant Load (0.5ms) SELECT "participants".* FROM "participants" WHERE "participants"."email" = $1 LIMIT 1 [["email", "p1@example.com"]]
759
+ SocialNetworking::Goal Load (0.4ms) SELECT "social_networking_goals".* FROM "social_networking_goals" WHERE "social_networking_goals"."participant_id" = $1 [["participant_id", 700141617]]
760
+ Participant Load (0.3ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
761
+ SocialNetworking::Comment Load (0.3ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 576699391], ["item_type", "SocialNetworking::Goal"]]
762
+ CACHE (0.0ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
763
+ SocialNetworking::Comment Load (0.4ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 916373174], ["item_type", "SocialNetworking::Goal"]]
764
+ CACHE (0.0ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
765
+ SocialNetworking::Comment Load (0.4ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 717544784], ["item_type", "SocialNetworking::Goal"]]
766
+ CACHE (0.0ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
767
+ SocialNetworking::Comment Load (0.3ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 938656909], ["item_type", "SocialNetworking::Goal"]]
768
+ CACHE (0.0ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
769
+ SocialNetworking::Comment Load (0.3ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 401619065], ["item_type", "SocialNetworking::Goal"]]
770
+ CACHE (0.0ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
771
+ SocialNetworking::Comment Load (0.4ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 809335042], ["item_type", "SocialNetworking::Goal"]]
772
+ CACHE (0.0ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
773
+ SocialNetworking::Comment Load (0.3ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 614371357], ["item_type", "SocialNetworking::Goal"]]
774
+ CACHE (0.0ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
775
+ SocialNetworking::Comment Load (0.3ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 53334230], ["item_type", "SocialNetworking::Goal"]]
776
+ CACHE (0.0ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
777
+ SocialNetworking::Comment Load (0.3ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 1002298887], ["item_type", "SocialNetworking::Goal"]]
778
+ CACHE (0.0ms) SELECT "participants".* FROM "participants" WHERE "participants"."email" = $1 LIMIT 1 [["email", "p1@example.com"]]
779
+ Rendered /Users/ericcf/work/social_networking/app/views/social_networking/goals/tool.html.erb within layouts/tool (1.6ms)
780
+ Completed 200 OK in 23ms (Views: 2.9ms | ActiveRecord: 4.4ms)
781
+ Started GET "/assets/application.css" for 127.0.0.1 at 2016-02-16 13:39:27 -0600
782
+ Started GET "/assets/application.js" for 127.0.0.1 at 2016-02-16 13:39:27 -0600
783
+ Started POST "/social_networking/goals" for 127.0.0.1 at 2016-02-16 13:39:28 -0600
784
+ Processing by SocialNetworking::GoalsController#create as HTML
785
+ Parameters: {"description"=>"When should I finish this?", "isCompleted"=>false, "dueOn"=>"", "goal"=>{"description"=>"When should I finish this?"}}
786
+ Participant Load (0.6ms) SELECT "participants".* FROM "participants" WHERE "participants"."email" = $1 LIMIT 1 [["email", "p1@example.com"]]
787
+  (0.7ms) BEGIN
788
+ Participant Load (0.8ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
789
+ SQL (0.6ms) INSERT INTO "social_networking_goals" ("participant_id", "description", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["participant_id", 700141617], ["description", "When should I finish this?"], ["created_at", "2016-02-16 19:39:28.147720"], ["updated_at", "2016-02-16 19:39:28.147720"]]
790
+  (0.4ms) COMMIT
791
+  (0.2ms) BEGIN
792
+ SQL (0.5ms) INSERT INTO "social_networking_shared_items" ("item_id", "item_type", "action_type", "participant_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["item_id", 1002298888], ["item_type", "SocialNetworking::Goal"], ["action_type", "Created"], ["participant_id", 700141617], ["created_at", "2016-02-16 19:39:28.151438"], ["updated_at", "2016-02-16 19:39:28.151438"]]
793
+  (0.6ms) COMMIT
794
+ SocialNetworking::Comment Load (0.5ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 1002298888], ["item_type", "SocialNetworking::Goal"]]
795
+ Completed 200 OK in 14ms (Views: 0.3ms | ActiveRecord: 4.9ms)
796
+  (2.9ms) ROLLBACK
797
+  (0.3ms) BEGIN
798
+ Started GET "/social_networking/goal_tool" for 127.0.0.1 at 2016-02-16 13:39:28 -0600
799
+ Processing by SocialNetworking::GoalsController#tool as HTML
800
+ Participant Load (0.6ms) SELECT "participants".* FROM "participants" WHERE "participants"."email" = $1 LIMIT 1 [["email", "p1@example.com"]]
801
+ SocialNetworking::Goal Load (0.6ms) SELECT "social_networking_goals".* FROM "social_networking_goals" WHERE "social_networking_goals"."participant_id" = $1 [["participant_id", 700141617]]
802
+ Participant Load (0.6ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
803
+ SocialNetworking::Comment Load (0.3ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 576699391], ["item_type", "SocialNetworking::Goal"]]
804
+ CACHE (0.0ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
805
+ SocialNetworking::Comment Load (0.3ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 916373174], ["item_type", "SocialNetworking::Goal"]]
806
+ CACHE (0.0ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
807
+ SocialNetworking::Comment Load (0.4ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 717544784], ["item_type", "SocialNetworking::Goal"]]
808
+ CACHE (0.0ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
809
+ SocialNetworking::Comment Load (0.3ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 938656909], ["item_type", "SocialNetworking::Goal"]]
810
+ CACHE (0.0ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
811
+ SocialNetworking::Comment Load (0.4ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 401619065], ["item_type", "SocialNetworking::Goal"]]
812
+ CACHE (0.0ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
813
+ SocialNetworking::Comment Load (0.4ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 809335042], ["item_type", "SocialNetworking::Goal"]]
814
+ CACHE (0.0ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
815
+ SocialNetworking::Comment Load (0.3ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 614371357], ["item_type", "SocialNetworking::Goal"]]
816
+ CACHE (0.0ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
817
+ SocialNetworking::Comment Load (0.3ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 53334230], ["item_type", "SocialNetworking::Goal"]]
818
+ CACHE (0.0ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
819
+ SocialNetworking::Comment Load (0.3ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 1002298887], ["item_type", "SocialNetworking::Goal"]]
820
+ CACHE (0.0ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
821
+ SocialNetworking::Comment Load (0.6ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 1002298888], ["item_type", "SocialNetworking::Goal"]]
822
+ CACHE (0.0ms) SELECT "participants".* FROM "participants" WHERE "participants"."email" = $1 LIMIT 1 [["email", "p1@example.com"]]
823
+ Rendered /Users/ericcf/work/social_networking/app/views/social_networking/goals/tool.html.erb within layouts/tool (3.2ms)
824
+ Completed 200 OK in 31ms (Views: 5.9ms | ActiveRecord: 5.9ms)
825
+ Started GET "/assets/application.css" for 127.0.0.1 at 2016-02-16 13:39:28 -0600
826
+ Started GET "/assets/application.js" for 127.0.0.1 at 2016-02-16 13:39:28 -0600
827
+ Started POST "/social_networking/goals" for 127.0.0.1 at 2016-02-16 13:39:28 -0600
828
+ Processing by SocialNetworking::GoalsController#create as HTML
829
+ Parameters: {"description"=>"all of the things", "isCompleted"=>false, "dueOn"=>"Mar 01 2016", "goal"=>{"description"=>"all of the things"}}
830
+ Participant Load (0.4ms) SELECT "participants".* FROM "participants" WHERE "participants"."email" = $1 LIMIT 1 [["email", "p1@example.com"]]
831
+  (0.9ms) BEGIN
832
+ Participant Load (0.6ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
833
+ SQL (0.8ms) INSERT INTO "social_networking_goals" ("participant_id", "description", "due_on", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["participant_id", 700141617], ["description", "all of the things"], ["due_on", "2016-03-01"], ["created_at", "2016-02-16 19:39:28.466346"], ["updated_at", "2016-02-16 19:39:28.466346"]]
834
+  (0.6ms) COMMIT
835
+  (0.3ms) BEGIN
836
+ SQL (0.5ms) INSERT INTO "social_networking_shared_items" ("item_id", "item_type", "action_type", "participant_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["item_id", 1002298889], ["item_type", "SocialNetworking::Goal"], ["action_type", "Created"], ["participant_id", 700141617], ["created_at", "2016-02-16 19:39:28.471498"], ["updated_at", "2016-02-16 19:39:28.471498"]]
837
+  (0.5ms) COMMIT
838
+ SocialNetworking::Comment Load (0.4ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 1002298889], ["item_type", "SocialNetworking::Goal"]]
839
+ Completed 200 OK in 15ms (Views: 0.6ms | ActiveRecord: 4.9ms)
840
+  (0.3ms) ROLLBACK
841
+  (5.0ms) ALTER TABLE "activities" DISABLE TRIGGER ALL;ALTER TABLE "arms" DISABLE TRIGGER ALL;ALTER TABLE "social_networking_nudges" DISABLE TRIGGER ALL;ALTER TABLE "social_networking_profile_answers" DISABLE TRIGGER ALL;ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "social_networking_shared_items" DISABLE TRIGGER ALL;ALTER TABLE "social_networking_comments" DISABLE TRIGGER ALL;ALTER TABLE "social_networking_on_the_mind_statements" DISABLE TRIGGER ALL;ALTER TABLE "social_networking_goals" DISABLE TRIGGER ALL;ALTER TABLE "social_networking_profile_questions" DISABLE TRIGGER ALL;ALTER TABLE "social_networking_likes" DISABLE TRIGGER ALL;ALTER TABLE "participants" DISABLE TRIGGER ALL;ALTER TABLE "social_networking_profiles" DISABLE TRIGGER ALL
842
+  (0.3ms) BEGIN
843
+ Fixture Delete (0.5ms) DELETE FROM "participants"
844
+ Fixture Insert (0.3ms) INSERT INTO "participants" ("study_id", "email", "phone_number", "contact_preference", "id") VALUES ('Social-11', 'p1@example.com', '16305150171', 'sms', 700141617)
845
+ Fixture Insert (0.3ms) INSERT INTO "participants" ("study_id", "email", "phone_number", "contact_preference", "id") VALUES ('Social-22', 'p2@example.com', '16305150172', 'sms', 816972181)
846
+ Fixture Insert (0.3ms) INSERT INTO "participants" ("study_id", "email", "phone_number", "contact_preference", "id") VALUES ('Social-33', 'p3@example.com', '16305150173', 'email', 129315074)
847
+ Fixture Delete (0.5ms) DELETE FROM "social_networking_comments"
848
+ Fixture Insert (0.4ms) INSERT INTO "social_networking_comments" ("text", "created_at", "updated_at", "id", "participant_id", "item_type", "item_id") VALUES ('i feel strongly about this', '2016-02-16 19:39:28', '2016-02-16 19:39:28', 318187876, 700141617, 'SocialNetworking::SharedItem', 809335042)
849
+ Fixture Delete (0.6ms) DELETE FROM "social_networking_goals"
850
+ Fixture Insert (0.5ms) INSERT INTO "social_networking_goals" ("description", "due_on", "created_at", "updated_at", "id", "participant_id") VALUES ('p1 alpha', '2016-02-16', '2016-02-16 19:39:28', '2016-02-16 19:39:28', 809335042, 700141617)
851
+ Fixture Insert (0.4ms) INSERT INTO "social_networking_goals" ("description", "completed_at", "due_on", "created_at", "updated_at", "id", "participant_id") VALUES ('p1 beta', '2016-02-16 19:39:28.000000', '2016-02-16', '2016-02-16 19:39:28', '2016-02-16 19:39:28', 576699391, 700141617)
852
+ Fixture Insert (0.3ms) INSERT INTO "social_networking_goals" ("description", "due_on", "created_at", "updated_at", "id", "participant_id") VALUES ('p1 gamma', '2016-02-16', '2016-02-16 19:39:28', '2016-02-16 19:39:28', 614371357, 700141617)
853
+ Fixture Insert (0.3ms) INSERT INTO "social_networking_goals" ("description", "created_at", "updated_at", "id", "participant_id") VALUES ('run', '2016-02-16 19:39:28', '2016-02-16 19:39:28', 53334230, 700141617)
854
+ Fixture Insert (0.3ms) INSERT INTO "social_networking_goals" ("description", "deleted_at", "due_on", "created_at", "updated_at", "id", "participant_id") VALUES ('p1 delta', '2016-02-16 19:39:28.000000', '2016-02-16', '2016-02-16 19:39:28', '2016-02-16 19:39:28', 916373174, 700141617)
855
+ Fixture Insert (0.5ms) INSERT INTO "social_networking_goals" ("description", "deleted_at", "completed_at", "due_on", "created_at", "updated_at", "id", "participant_id") VALUES ('p1 omega', NULL, NULL, '2016-02-15', '2016-02-16 19:39:28', '2016-02-16 19:39:28', 717544784, 700141617)
856
+ Fixture Insert (0.3ms) INSERT INTO "social_networking_goals" ("description", "deleted_at", "completed_at", "due_on", "created_at", "updated_at", "id", "participant_id") VALUES ('p1 zeta', NULL, NULL, '2016-02-14', '2016-02-16 19:39:28', '2016-02-16 19:39:28', 938656909, 700141617)
857
+ Fixture Insert (0.4ms) INSERT INTO "social_networking_goals" ("description", "completed_at", "due_on", "created_at", "updated_at", "id", "participant_id") VALUES ('p1 epsilon', '2016-02-16 19:39:28.000000', '2016-02-16', '2016-02-16 19:39:28', '2016-02-16 19:39:28', 401619065, 700141617)
858
+ Fixture Insert (0.4ms) INSERT INTO "social_networking_goals" ("description", "due_on", "created_at", "updated_at", "id", "participant_id") VALUES ('p2 alpha', '2016-02-16', '2016-02-16 19:39:28', '2016-02-16 19:39:28', 128166899, 816972181)
859
+ Fixture Insert (0.3ms) INSERT INTO "social_networking_goals" ("description", "completed_at", "due_on", "created_at", "updated_at", "id", "participant_id") VALUES ('p2 beta', '2016-02-16 19:39:28.000000', '2016-02-16', '2016-02-16 19:39:28', '2016-02-16 19:39:28', 1002298878, 816972181)
860
+ Fixture Insert (0.3ms) INSERT INTO "social_networking_goals" ("description", "due_on", "created_at", "updated_at", "id", "participant_id") VALUES ('p2 gamma', '2016-02-16', '2016-02-16 19:39:28', '2016-02-16 19:39:28', 318784238, 816972181)
861
+ Fixture Insert (0.5ms) INSERT INTO "social_networking_goals" ("description", "deleted_at", "due_on", "created_at", "updated_at", "id", "participant_id") VALUES ('p2 delta', '2016-02-16 19:39:28.000000', '2016-02-16', '2016-02-16 19:39:28', '2016-02-16 19:39:28', 16804933, 816972181)
862
+ Fixture Delete (1.1ms) DELETE FROM "social_networking_likes"
863
+ Fixture Insert (0.7ms) INSERT INTO "social_networking_likes" ("created_at", "updated_at", "id", "participant_id", "item_type", "item_id") VALUES ('2016-02-16 19:39:28', '2016-02-16 19:39:28', 844093908, 700141617, 'SocialNetworking::SharedItem', 809335042)
864
+ Fixture Delete (0.8ms) DELETE FROM "social_networking_nudges"
865
+ Fixture Insert (0.5ms) INSERT INTO "social_networking_nudges" ("created_at", "updated_at", "id", "initiator_id", "recipient_id") VALUES ('2016-02-15 19:39:28.000000', '2016-02-16 19:39:28', 503297012, 700141617, 816972181)
866
+ Fixture Insert (0.3ms) INSERT INTO "social_networking_nudges" ("created_at", "updated_at", "id", "initiator_id", "recipient_id") VALUES ('2016-02-16 19:39:28.000000', '2016-02-16 19:39:28', 366290861, 700141617, 816972181)
867
+ Fixture Insert (0.3ms) INSERT INTO "social_networking_nudges" ("created_at", "updated_at", "id", "initiator_id", "recipient_id") VALUES ('2016-02-15 19:39:28.000000', '2016-02-16 19:39:28', 931788854, 816972181, 700141617)
868
+ Fixture Insert (0.4ms) INSERT INTO "social_networking_nudges" ("created_at", "updated_at", "id", "initiator_id", "recipient_id") VALUES ('2016-02-16 19:39:28.000000', '2016-02-16 19:39:28', 316146702, 816972181, 700141617)
869
+ Fixture Delete (0.8ms) DELETE FROM "social_networking_on_the_mind_statements"
870
+ Fixture Insert (0.6ms) INSERT INTO "social_networking_on_the_mind_statements" ("description", "created_at", "updated_at", "id", "participant_id") VALUES ('it''s always sunny in Philadelphia', '2016-02-16 19:39:28', '2016-02-16 19:39:28', 576803333, 700141617)
871
+ Fixture Insert (0.3ms) INSERT INTO "social_networking_on_the_mind_statements" ("description", "created_at", "updated_at", "id", "participant_id") VALUES ('what about Bob?', '2016-02-16 19:39:28', '2016-02-16 19:39:28', 369066228, 816972181)
872
+ Fixture Delete (0.7ms) DELETE FROM "social_networking_profile_answers"
873
+ Fixture Insert (0.6ms) INSERT INTO "social_networking_profile_answers" ("social_networking_profile_question_id", "order", "answer_text", "created_at", "updated_at", "id", "social_networking_profile_id") VALUES (1, 1, 'running', '2016-02-16 19:39:28', '2016-02-16 19:39:28', 465319974, 333620620)
874
+ Fixture Insert (0.4ms) INSERT INTO "social_networking_profile_answers" ("social_networking_profile_question_id", "order", "answer_text", "created_at", "updated_at", "id", "social_networking_profile_id") VALUES (2, 2, 'green', '2016-02-16 19:39:28', '2016-02-16 19:39:28', 45443486, 333620620)
875
+ Fixture Insert (0.3ms) INSERT INTO "social_networking_profile_answers" ("social_networking_profile_question_id", "order", "answer_text", "created_at", "updated_at", "id", "social_networking_profile_id") VALUES (2, 1, 'blue', '2016-02-16 19:39:28', '2016-02-16 19:39:28', 10484799, 183235640)
876
+ Fixture Delete (0.8ms) DELETE FROM "social_networking_profile_questions"
877
+ Fixture Insert (0.6ms) INSERT INTO "social_networking_profile_questions" ("question_text", "created_at", "updated_at", "id") VALUES ('What are your hobbies?', '2016-02-16 19:39:28', '2016-02-16 19:39:28', 781294868)
878
+ Fixture Insert (0.4ms) INSERT INTO "social_networking_profile_questions" ("question_text", "created_at", "updated_at", "id") VALUES ('What is your favorite color?', '2016-02-16 19:39:28', '2016-02-16 19:39:28', 932760744)
879
+ Fixture Insert (0.5ms) INSERT INTO "social_networking_profile_questions" ("question_text", "created_at", "updated_at", "id") VALUES ('Animal, vegetable or mineral?', '2016-02-16 19:39:28', '2016-02-16 19:39:28', 10484799)
880
+ Fixture Delete (0.6ms) DELETE FROM "social_networking_profiles"
881
+ Fixture Insert (0.5ms) INSERT INTO "social_networking_profiles" ("active", "created_at", "updated_at", "id", "participant_id") VALUES ('t', '2016-02-16 19:39:28', '2016-02-16 19:39:28', 183235640, 816972181)
882
+ Fixture Delete (0.7ms) DELETE FROM "social_networking_shared_items"
883
+ Fixture Insert (0.6ms) INSERT INTO "social_networking_shared_items" ("is_public", "created_at", "updated_at", "id", "item_type", "item_id") VALUES ('t', '2016-02-16 19:39:28', '2016-02-16 19:39:28', 809335042, 'SocialNetworking::Goal', 809335042)
884
+  (0.6ms) COMMIT
885
+  (2.8ms) ALTER TABLE "activities" ENABLE TRIGGER ALL;ALTER TABLE "arms" ENABLE TRIGGER ALL;ALTER TABLE "social_networking_nudges" ENABLE TRIGGER ALL;ALTER TABLE "social_networking_profile_answers" ENABLE TRIGGER ALL;ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "social_networking_shared_items" ENABLE TRIGGER ALL;ALTER TABLE "social_networking_comments" ENABLE TRIGGER ALL;ALTER TABLE "social_networking_on_the_mind_statements" ENABLE TRIGGER ALL;ALTER TABLE "social_networking_goals" ENABLE TRIGGER ALL;ALTER TABLE "social_networking_profile_questions" ENABLE TRIGGER ALL;ALTER TABLE "social_networking_likes" ENABLE TRIGGER ALL;ALTER TABLE "participants" ENABLE TRIGGER ALL;ALTER TABLE "social_networking_profiles" ENABLE TRIGGER ALL
886
+  (0.2ms) BEGIN
887
+ Participant Load (0.7ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
888
+ Participant Load (0.5ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 816972181]]
889
+ SocialNetworking::Profile Load (0.6ms) SELECT "social_networking_profiles".* FROM "social_networking_profiles" WHERE "social_networking_profiles"."participant_id" = $1 LIMIT 1 [["participant_id", 700141617]]
890
+ SocialNetworking::Profile Load (0.5ms) SELECT "social_networking_profiles".* FROM "social_networking_profiles" WHERE "social_networking_profiles"."participant_id" IS NULL
891
+  (0.3ms) ROLLBACK
892
+  (0.2ms) BEGIN
893
+ SocialNetworking::Comment Load (0.7ms) SELECT "social_networking_comments".* FROM "social_networking_comments"
894
+  (0.2ms) SAVEPOINT active_record_1
895
+ SQL (0.4ms) DELETE FROM "social_networking_comments" WHERE "social_networking_comments"."id" = $1 [["id", 318187876]]
896
+  (0.2ms) RELEASE SAVEPOINT active_record_1
897
+ Participant Load (0.7ms) SELECT "participants"."id", "participants"."study_id" FROM "participants"
898
+ SocialNetworking::Comment Load (0.4ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."participant_id" = $1 [["participant_id", 700141617]]
899
+ SocialNetworking::Comment Load (0.4ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."participant_id" = $1 [["participant_id", 816972181]]
900
+ SocialNetworking::Comment Load (0.8ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."participant_id" = $1 [["participant_id", 129315074]]
901
+  (0.4ms) ROLLBACK
902
+  (3.9ms) BEGIN
903
+ Participant Load (7.5ms) SELECT "participants"."id", "participants"."study_id" FROM "participants"
904
+ SocialNetworking::Comment Load (0.5ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."participant_id" = $1 [["participant_id", 700141617]]
905
+ SocialNetworking::SharedItem Load (0.7ms) SELECT "social_networking_shared_items".* FROM "social_networking_shared_items" WHERE "social_networking_shared_items"."id" = $1 LIMIT 1 [["id", 809335042]]
906
+ SocialNetworking::Goal Load (0.9ms) SELECT "social_networking_goals".* FROM "social_networking_goals" WHERE "social_networking_goals"."id" = $1 LIMIT 1 [["id", 809335042]]
907
+ SocialNetworking::Comment Load (0.5ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."participant_id" = $1 [["participant_id", 816972181]]
908
+ SocialNetworking::Comment Load (0.5ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."participant_id" = $1 [["participant_id", 129315074]]
909
+ Participant Load (0.4ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
910
+ SocialNetworking::Comment Load (0.6ms) SELECT "social_networking_comments".* FROM "social_networking_comments" ORDER BY "social_networking_comments"."id" ASC LIMIT 1
911
+ SocialNetworking::SharedItem Load (0.6ms) SELECT "social_networking_shared_items".* FROM "social_networking_shared_items" WHERE "social_networking_shared_items"."id" = $1 LIMIT 1 [["id", 809335042]]
912
+ SocialNetworking::Goal Load (0.5ms) SELECT "social_networking_goals".* FROM "social_networking_goals" WHERE "social_networking_goals"."id" = $1 LIMIT 1 [["id", 809335042]]
913
+  (0.3ms) ROLLBACK
914
+  (0.2ms) BEGIN
915
+ SocialNetworking::ProfileAnswer Load (0.7ms) SELECT "social_networking_profile_answers".* FROM "social_networking_profile_answers" WHERE "social_networking_profile_answers"."id" = $1 LIMIT 1 [["id", 465319974]]
916
+ SocialNetworking::Profile Load (1.4ms) SELECT "social_networking_profiles".* FROM "social_networking_profiles" WHERE "social_networking_profiles"."id" = $1 LIMIT 1 [["id", 333620620]]
917
+ SocialNetworking::ProfileQuestion Load (0.7ms) SELECT "social_networking_profile_questions".* FROM "social_networking_profile_questions" WHERE "social_networking_profile_questions"."id" = $1 LIMIT 1 [["id", 1]]
918
+ SocialNetworking::ProfileAnswer Exists (0.7ms) SELECT 1 AS one FROM "social_networking_profile_answers" WHERE ("social_networking_profile_answers"."social_networking_profile_question_id" = 1 AND "social_networking_profile_answers"."social_networking_profile_id" = 333620620) LIMIT 1
919
+  (0.3ms) ROLLBACK
920
+  (0.2ms) BEGIN
921
+  (0.3ms) ROLLBACK
922
+  (0.2ms) BEGIN
923
+  (0.2ms) ROLLBACK
924
+  (0.2ms) BEGIN
925
+  (0.3ms) ROLLBACK
926
+  (0.2ms) BEGIN
927
+ Rendered /Users/ericcf/work/social_networking/app/views/social_networking/profile_pages/_profile_questions.html.erb (1.3ms)
928
+  (0.3ms) ROLLBACK
929
+  (0.3ms) BEGIN
930
+ Rendered /Users/ericcf/work/social_networking/app/views/social_networking/profile_pages/_profile_questions.html.erb (1.3ms)
931
+  (0.3ms) ROLLBACK
932
+  (0.2ms) BEGIN
933
+ Rendered /Users/ericcf/work/social_networking/app/views/social_networking/profile_pages/_profile_questions.html.erb (1.6ms)
934
+  (0.3ms) ROLLBACK
935
+  (0.2ms) BEGIN
936
+ Rendered /Users/ericcf/work/social_networking/app/views/social_networking/profile_pages/_profile_questions.html.erb (1.3ms)
937
+  (0.3ms) ROLLBACK
938
+  (0.2ms) BEGIN
939
+ Rendered /Users/ericcf/work/social_networking/app/views/social_networking/profile_pages/_profile_questions.html.erb (2.0ms)
940
+  (0.3ms) ROLLBACK
941
+  (0.2ms) BEGIN
942
+ Rendered /Users/ericcf/work/social_networking/app/views/social_networking/profile_pages/_profile_questions.html.erb (1.9ms)
943
+  (0.3ms) ROLLBACK
944
+  (0.2ms) BEGIN
945
+  (1.0ms) SELECT COUNT(*) FROM "social_networking_on_the_mind_statements" WHERE (created_at >= '2016-02-09 00:00:00.000000')
946
+ Participant Load (0.6ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
947
+  (0.3ms) SAVEPOINT active_record_1
948
+ Participant Load (0.5ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
949
+ SQL (1.3ms) INSERT INTO "social_networking_on_the_mind_statements" ("participant_id", "description", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["participant_id", 700141617], ["description", "I'm writing tests."], ["created_at", "2016-02-15 00:00:00.000000"], ["updated_at", "2016-02-16 19:39:28.870197"]]
950
+  (0.3ms) RELEASE SAVEPOINT active_record_1
951
+  (0.3ms) SAVEPOINT active_record_1
952
+ Participant Load (0.4ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
953
+ SQL (1.1ms) INSERT INTO "social_networking_on_the_mind_statements" ("participant_id", "description", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["participant_id", 700141617], ["description", "I'm writing tests."], ["created_at", "2016-02-08 00:00:00.000000"], ["updated_at", "2016-02-16 19:39:28.877011"]]
954
+  (0.4ms) RELEASE SAVEPOINT active_record_1
955
+  (1.0ms) SELECT COUNT(*) FROM "social_networking_on_the_mind_statements" WHERE (created_at >= '2016-02-09 00:00:00.000000')
956
+  (0.4ms) ROLLBACK
957
+  (0.3ms) BEGIN
958
+ Participant Load (0.5ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
959
+  (0.5ms) SAVEPOINT active_record_1
960
+ Participant Load (0.6ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
961
+ SQL (1.4ms) INSERT INTO "social_networking_on_the_mind_statements" ("participant_id", "description", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["participant_id", 700141617], ["description", "I'm writing tests."], ["created_at", "2016-02-15 00:00:00.000000"], ["updated_at", "2016-02-16 19:39:28.891907"]]
962
+  (0.3ms) RELEASE SAVEPOINT active_record_1
963
+  (0.3ms) ROLLBACK
964
+  (0.2ms) BEGIN
965
+  (0.9ms) SELECT COUNT(*) FROM "social_networking_on_the_mind_statements" WHERE (created_at <= '2016-02-16 23:59:59.999999' AND created_at >= '2016-02-16 00:00:00.000000')
966
+ Participant Load (0.5ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
967
+  (0.4ms) SAVEPOINT active_record_1
968
+ Participant Load (0.4ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
969
+ SQL (0.9ms) INSERT INTO "social_networking_on_the_mind_statements" ("participant_id", "description", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["participant_id", 700141617], ["description", "I'm writing tests."], ["created_at", "2016-02-16 00:00:00.000000"], ["updated_at", "2016-02-16 19:39:28.906051"]]
970
+  (0.3ms) RELEASE SAVEPOINT active_record_1
971
+  (0.6ms) SELECT COUNT(*) FROM "social_networking_on_the_mind_statements" WHERE (created_at <= '2016-02-16 23:59:59.999999' AND created_at >= '2016-02-16 00:00:00.000000')
972
+  (0.3ms) ROLLBACK
973
+  (0.2ms) BEGIN
974
+ SocialNetworking::OnTheMindStatement Load (0.4ms) SELECT "social_networking_on_the_mind_statements".* FROM "social_networking_on_the_mind_statements" WHERE "social_networking_on_the_mind_statements"."id" = $1 LIMIT 1 [["id", 576803333]]
975
+ Participant Load (0.4ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 816972181]]
976
+  (0.2ms) SAVEPOINT active_record_1
977
+ SocialNetworking::OnTheMindStatement Load (0.7ms) SELECT "social_networking_on_the_mind_statements".* FROM "social_networking_on_the_mind_statements" WHERE "social_networking_on_the_mind_statements"."id" = $1 LIMIT 1 [["id", 576803333]]
978
+ SocialNetworking::Like Exists (0.8ms) SELECT 1 AS one FROM "social_networking_likes" WHERE ("social_networking_likes"."item_id" = 576803333 AND "social_networking_likes"."item_type" = 'SocialNetworking::OnTheMindStatement' AND "social_networking_likes"."participant_id" = 816972181) LIMIT 1
979
+ SQL (0.7ms) INSERT INTO "social_networking_likes" ("participant_id", "item_id", "item_type", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["participant_id", 816972181], ["item_id", 576803333], ["item_type", "SocialNetworking::OnTheMindStatement"], ["created_at", "2016-02-16 19:39:28.923507"], ["updated_at", "2016-02-16 19:39:28.923507"]]
980
+  (0.3ms) RELEASE SAVEPOINT active_record_1
981
+  (0.5ms) SELECT COUNT(*) FROM "social_networking_likes" WHERE "social_networking_likes"."participant_id" = $1 [["participant_id", 816972181]]
982
+  (0.3ms) SAVEPOINT active_record_1
983
+ SocialNetworking::Comment Load (0.8ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 576803333], ["item_type", "SocialNetworking::OnTheMindStatement"]]
984
+ SocialNetworking::Like Load (0.5ms) SELECT "social_networking_likes".* FROM "social_networking_likes" WHERE "social_networking_likes"."item_id" = $1 AND "social_networking_likes"."item_type" = $2 [["item_id", 576803333], ["item_type", "SocialNetworking::OnTheMindStatement"]]
985
+ SQL (0.4ms) DELETE FROM "social_networking_likes" WHERE "social_networking_likes"."id" = $1 [["id", 844093909]]
986
+ SQL (0.4ms) DELETE FROM "social_networking_on_the_mind_statements" WHERE "social_networking_on_the_mind_statements"."id" = $1 [["id", 576803333]]
987
+  (0.3ms) RELEASE SAVEPOINT active_record_1
988
+  (0.5ms) SELECT COUNT(*) FROM "social_networking_likes" WHERE "social_networking_likes"."participant_id" = $1 [["participant_id", 816972181]]
989
+  (0.3ms) ROLLBACK
990
+  (0.2ms) BEGIN
991
+ SocialNetworking::OnTheMindStatement Load (0.7ms) SELECT "social_networking_on_the_mind_statements".* FROM "social_networking_on_the_mind_statements" WHERE "social_networking_on_the_mind_statements"."id" = $1 LIMIT 1 [["id", 576803333]]
992
+ Participant Load (0.4ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 816972181]]
993
+  (0.4ms) SAVEPOINT active_record_1
994
+ SocialNetworking::OnTheMindStatement Load (0.7ms) SELECT "social_networking_on_the_mind_statements".* FROM "social_networking_on_the_mind_statements" WHERE "social_networking_on_the_mind_statements"."id" = $1 LIMIT 1 [["id", 576803333]]
995
+ SQL (1.2ms) INSERT INTO "social_networking_comments" ("participant_id", "text", "item_id", "item_type", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["participant_id", 816972181], ["text", "foo"], ["item_id", 576803333], ["item_type", "SocialNetworking::OnTheMindStatement"], ["created_at", "2016-02-16 19:39:28.953255"], ["updated_at", "2016-02-16 19:39:28.953255"]]
996
+  (0.4ms) RELEASE SAVEPOINT active_record_1
997
+  (1.0ms) SELECT COUNT(*) FROM "social_networking_comments" WHERE "social_networking_comments"."participant_id" = $1 [["participant_id", 816972181]]
998
+  (0.3ms) SAVEPOINT active_record_1
999
+ SocialNetworking::Comment Load (0.7ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 576803333], ["item_type", "SocialNetworking::OnTheMindStatement"]]
1000
+ SQL (0.6ms) DELETE FROM "social_networking_comments" WHERE "social_networking_comments"."id" = $1 [["id", 318187877]]
1001
+ SocialNetworking::Like Load (0.6ms) SELECT "social_networking_likes".* FROM "social_networking_likes" WHERE "social_networking_likes"."item_id" = $1 AND "social_networking_likes"."item_type" = $2 [["item_id", 576803333], ["item_type", "SocialNetworking::OnTheMindStatement"]]
1002
+ SQL (0.6ms) DELETE FROM "social_networking_on_the_mind_statements" WHERE "social_networking_on_the_mind_statements"."id" = $1 [["id", 576803333]]
1003
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1004
+  (0.6ms) SELECT COUNT(*) FROM "social_networking_comments" WHERE "social_networking_comments"."participant_id" = $1 [["participant_id", 816972181]]
1005
+  (0.3ms) ROLLBACK
1006
+  (0.3ms) BEGIN
1007
+  (0.3ms) ROLLBACK
1008
+  (0.3ms) BEGIN
1009
+ Processing by SocialNetworking::ProfilePagesController#show as HTML
1010
+ Parameters: {"id"=>"1"}
1011
+ Rendered /Users/ericcf/work/social_networking/app/views/social_networking/profile_pages/show.html.erb within layouts/tool (0.6ms)
1012
+ Completed 200 OK in 17ms (Views: 15.5ms | ActiveRecord: 0.0ms)
1013
+  (0.3ms) ROLLBACK
1014
+  (0.3ms) BEGIN
1015
+ Processing by SocialNetworking::ProfilePagesController#show as HTML
1016
+ Parameters: {"id"=>"1"}
1017
+ Rendered /Users/ericcf/work/social_networking/app/views/social_networking/profile_pages/show.html.erb within layouts/tool (0.5ms)
1018
+ Completed 200 OK in 11ms (Views: 8.7ms | ActiveRecord: 0.0ms)
1019
+  (0.4ms) ROLLBACK
1020
+  (0.3ms) BEGIN
1021
+ Processing by SocialNetworking::ProfilePagesController#show as HTML
1022
+ Rendered /Users/ericcf/work/social_networking/app/views/social_networking/profile_pages/show.html.erb within layouts/tool (0.6ms)
1023
+ Completed 200 OK in 3ms (Views: 1.8ms | ActiveRecord: 0.0ms)
1024
+  (0.3ms) ROLLBACK
1025
+  (0.3ms) BEGIN
1026
+ Rendered /Users/ericcf/work/social_networking/app/views/social_networking/coach/patient_dashboards/tables/nudges/_recipient_nudges.html.erb (1.3ms)
1027
+  (0.3ms) ROLLBACK
1028
+  (0.2ms) BEGIN
1029
+ Rendered /Users/ericcf/work/social_networking/app/views/social_networking/coach/patient_dashboards/tables/nudges/_recipient_nudges.html.erb (1.7ms)
1030
+  (0.4ms) ROLLBACK
1031
+  (0.2ms) BEGIN
1032
+ Rendered /Users/ericcf/work/social_networking/app/views/social_networking/coach/patient_dashboards/tables/nudges/_recipient_nudges.html.erb (1.3ms)
1033
+  (0.3ms) ROLLBACK
1034
+  (0.3ms) BEGIN
1035
+  (0.4ms) ROLLBACK
1036
+  (0.3ms) BEGIN
1037
+ Rendered /Users/ericcf/work/social_networking/app/views/social_networking/goals/tool.html.erb (2.0ms)
1038
+  (0.3ms) ROLLBACK
1039
+  (0.2ms) BEGIN
1040
+ Rendered /Users/ericcf/work/social_networking/app/views/social_networking/coach/patient_dashboards/tables/_comments.html.erb (1.6ms)
1041
+  (0.3ms) ROLLBACK
1042
+  (0.2ms) BEGIN
1043
+ Rendered /Users/ericcf/work/social_networking/app/views/social_networking/coach/patient_dashboards/tables/_comments.html.erb (2.6ms)
1044
+  (0.3ms) ROLLBACK
1045
+  (0.2ms) BEGIN
1046
+ Processing by SocialNetworking::NudgesController#create as HTML
1047
+ Completed 200 OK in 7ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1048
+  (0.3ms) ROLLBACK
1049
+  (0.4ms) BEGIN
1050
+ Processing by SocialNetworking::NudgesController#create as HTML
1051
+ Completed 200 OK in 7ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1052
+  (0.3ms) ROLLBACK
1053
+  (0.3ms) BEGIN
1054
+ Processing by SocialNetworking::NudgesController#create as HTML
1055
+ Completed 400 Bad Request in 2ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1056
+  (0.3ms) ROLLBACK
1057
+  (0.2ms) BEGIN
1058
+  (0.4ms) ROLLBACK
1059
+  (0.2ms) BEGIN
1060
+ SocialNetworking::SharedItem Load (0.7ms) SELECT "social_networking_shared_items".* FROM "social_networking_shared_items"
1061
+  (0.3ms) SAVEPOINT active_record_1
1062
+ SQL (0.5ms) DELETE FROM "social_networking_shared_items" WHERE "social_networking_shared_items"."id" = $1 [["id", 809335042]]
1063
+  (0.3ms) RELEASE SAVEPOINT active_record_1
1064
+ Participant Load (0.6ms) SELECT "participants"."id", "participants"."study_id" FROM "participants"
1065
+ SocialNetworking::SharedItem Load (5.2ms) SELECT "social_networking_shared_items".* FROM "social_networking_shared_items" WHERE "social_networking_shared_items"."participant_id" = $1 AND "social_networking_shared_items"."is_public" = $2 [["participant_id", 700141617], ["is_public", "t"]]
1066
+ SocialNetworking::SharedItem Load (3.8ms) SELECT "social_networking_shared_items".* FROM "social_networking_shared_items" WHERE "social_networking_shared_items"."participant_id" = $1 AND "social_networking_shared_items"."is_public" = $2 [["participant_id", 816972181], ["is_public", "t"]]
1067
+ SocialNetworking::SharedItem Load (3.0ms) SELECT "social_networking_shared_items".* FROM "social_networking_shared_items" WHERE "social_networking_shared_items"."participant_id" = $1 AND "social_networking_shared_items"."is_public" = $2 [["participant_id", 129315074], ["is_public", "t"]]
1068
+  (0.5ms) ROLLBACK
1069
+  (0.3ms) BEGIN
1070
+ Participant Load (0.6ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
1071
+  (0.4ms) SAVEPOINT active_record_1
1072
+ Participant Load (0.5ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
1073
+ SQL (1.0ms) INSERT INTO "social_networking_on_the_mind_statements" ("participant_id", "description", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["participant_id", 700141617], ["description", "otms description"], ["created_at", "2016-02-16 19:39:29.478089"], ["updated_at", "2016-02-16 19:39:29.478089"]]
1074
+  (0.4ms) RELEASE SAVEPOINT active_record_1
1075
+  (0.3ms) SAVEPOINT active_record_1
1076
+ SQL (0.6ms) INSERT INTO "social_networking_shared_items" ("item_id", "item_type", "participant_id", "action_type", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["item_id", 576803338], ["item_type", "SocialNetworking::OnTheMindStatement"], ["participant_id", 700141617], ["action_type", "Shared"], ["created_at", "2016-02-16 19:39:29.484277"], ["updated_at", "2016-02-16 19:39:29.484277"]]
1077
+  (0.3ms) RELEASE SAVEPOINT active_record_1
1078
+ Participant Load (0.6ms) SELECT "participants"."id", "participants"."study_id" FROM "participants"
1079
+ SocialNetworking::SharedItem Load (0.7ms) SELECT "social_networking_shared_items".* FROM "social_networking_shared_items" WHERE "social_networking_shared_items"."participant_id" = $1 AND "social_networking_shared_items"."is_public" = $2 [["participant_id", 700141617], ["is_public", "t"]]
1080
+ SocialNetworking::SharedItem Load (0.7ms) SELECT "social_networking_shared_items".* FROM "social_networking_shared_items" WHERE "social_networking_shared_items"."participant_id" = $1 AND "social_networking_shared_items"."is_public" = $2 [["participant_id", 816972181], ["is_public", "t"]]
1081
+ SocialNetworking::SharedItem Load (0.6ms) SELECT "social_networking_shared_items".* FROM "social_networking_shared_items" WHERE "social_networking_shared_items"."participant_id" = $1 AND "social_networking_shared_items"."is_public" = $2 [["participant_id", 129315074], ["is_public", "t"]]
1082
+  (0.4ms) ROLLBACK
1083
+  (0.2ms) BEGIN
1084
+ Rendered /Users/ericcf/work/social_networking/app/views/social_networking/coach/patient_dashboards/tables/_goals.html.erb (2.5ms)
1085
+  (0.3ms) ROLLBACK
1086
+  (0.3ms) BEGIN
1087
+ Rendered /Users/ericcf/work/social_networking/app/views/social_networking/coach/patient_dashboards/tables/_goals.html.erb (3.1ms)
1088
+  (0.4ms) ROLLBACK
1089
+  (0.3ms) BEGIN
1090
+ Rendered /Users/ericcf/work/social_networking/app/views/social_networking/coach/patient_dashboards/tables/_goals.html.erb (3.5ms)
1091
+  (0.3ms) ROLLBACK
1092
+  (0.2ms) BEGIN
1093
+ Rendered /Users/ericcf/work/social_networking/app/views/social_networking/coach/patient_dashboards/tables/_goals.html.erb (1.5ms)
1094
+  (0.3ms) ROLLBACK
1095
+  (0.2ms) BEGIN
1096
+ Rendered /Users/ericcf/work/social_networking/app/views/social_networking/coach/patient_dashboards/tables/_goals.html.erb (1.6ms)
1097
+  (0.3ms) ROLLBACK
1098
+  (0.2ms) BEGIN
1099
+ Rendered /Users/ericcf/work/social_networking/app/views/social_networking/coach/patient_dashboards/tables/_goals.html.erb (1.9ms)
1100
+  (0.3ms) ROLLBACK
1101
+  (0.2ms) BEGIN
1102
+ Rendered /Users/ericcf/work/social_networking/app/views/social_networking/coach/patient_dashboards/tables/_goals.html.erb (1.9ms)
1103
+  (0.3ms) ROLLBACK
1104
+  (0.2ms) BEGIN
1105
+  (1.0ms) SELECT COUNT(*) FROM "social_networking_nudges" WHERE ("social_networking_nudges"."created_at" >= '2016-02-16 00:00:00.000000' AND "social_networking_nudges"."created_at" <= '2016-02-16 23:59:59.999999')
1106
+ Participant Load (0.4ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
1107
+ Participant Load (0.3ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 816972181]]
1108
+  (0.2ms) SAVEPOINT active_record_1
1109
+ Participant Load (0.6ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
1110
+ Participant Load (0.4ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 816972181]]
1111
+ SQL (1.1ms) INSERT INTO "social_networking_nudges" ("initiator_id", "recipient_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["initiator_id", 700141617], ["recipient_id", 816972181], ["created_at", "2016-02-16 00:00:00.000000"], ["updated_at", "2016-02-16 19:39:29.959858"]]
1112
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1113
+  (0.6ms) SELECT COUNT(*) FROM "social_networking_nudges" WHERE ("social_networking_nudges"."created_at" >= '2016-02-16 00:00:00.000000' AND "social_networking_nudges"."created_at" <= '2016-02-16 23:59:59.999999')
1114
+  (0.2ms) ROLLBACK
1115
+  (0.2ms) BEGIN
1116
+  (0.9ms) SELECT COUNT(*) FROM "social_networking_nudges" WHERE ("social_networking_nudges"."created_at" >= '2016-02-09 00:00:00.000000')
1117
+ Participant Load (0.3ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
1118
+ Participant Load (0.3ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 816972181]]
1119
+  (0.2ms) SAVEPOINT active_record_1
1120
+ Participant Load (0.3ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
1121
+ Participant Load (0.2ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 816972181]]
1122
+ SQL (0.9ms) INSERT INTO "social_networking_nudges" ("initiator_id", "recipient_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["initiator_id", 700141617], ["recipient_id", 816972181], ["created_at", "2016-02-15 00:00:00.000000"], ["updated_at", "2016-02-16 19:39:29.973940"]]
1123
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1124
+  (0.2ms) SAVEPOINT active_record_1
1125
+ Participant Load (0.3ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
1126
+ Participant Load (0.3ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 816972181]]
1127
+ SQL (0.6ms) INSERT INTO "social_networking_nudges" ("initiator_id", "recipient_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["initiator_id", 700141617], ["recipient_id", 816972181], ["created_at", "2016-02-08 00:00:00.000000"], ["updated_at", "2016-02-16 19:39:29.979101"]]
1128
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1129
+  (0.5ms) SELECT COUNT(*) FROM "social_networking_nudges" WHERE ("social_networking_nudges"."created_at" >= '2016-02-09 00:00:00.000000')
1130
+  (0.3ms) ROLLBACK
1131
+  (0.1ms) BEGIN
1132
+ Processing by SocialNetworking::ProfilesController#update as HTML
1133
+ Parameters: {"id"=>"1"}
1134
+ Unpermitted parameter: id
1135
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1136
+  (0.2ms) ROLLBACK
1137
+  (0.2ms) BEGIN
1138
+ Processing by SocialNetworking::ProfilesController#update as HTML
1139
+ Parameters: {"id"=>"1"}
1140
+ Unpermitted parameter: id
1141
+ Completed 400 Bad Request in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1142
+  (0.3ms) ROLLBACK
1143
+  (0.2ms) BEGIN
1144
+ SocialNetworking::Nudge Load (0.4ms) SELECT "social_networking_nudges".* FROM "social_networking_nudges"
1145
+  (0.4ms) SAVEPOINT active_record_1
1146
+ SQL (0.3ms) DELETE FROM "social_networking_nudges" WHERE "social_networking_nudges"."id" = $1 [["id", 503297012]]
1147
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1148
+  (0.1ms) SAVEPOINT active_record_1
1149
+ SQL (0.3ms) DELETE FROM "social_networking_nudges" WHERE "social_networking_nudges"."id" = $1 [["id", 366290861]]
1150
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1151
+  (0.2ms) SAVEPOINT active_record_1
1152
+ SQL (0.3ms) DELETE FROM "social_networking_nudges" WHERE "social_networking_nudges"."id" = $1 [["id", 931788854]]
1153
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1154
+  (0.1ms) SAVEPOINT active_record_1
1155
+ SQL (0.3ms) DELETE FROM "social_networking_nudges" WHERE "social_networking_nudges"."id" = $1 [["id", 316146702]]
1156
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1157
+ Participant Load (0.4ms) SELECT "participants"."id", "participants"."study_id" FROM "participants"
1158
+ SocialNetworking::Nudge Load (0.3ms) SELECT "social_networking_nudges".* FROM "social_networking_nudges" WHERE "social_networking_nudges"."initiator_id" = $1 [["initiator_id", 700141617]]
1159
+ SocialNetworking::Nudge Load (0.3ms) SELECT "social_networking_nudges".* FROM "social_networking_nudges" WHERE "social_networking_nudges"."initiator_id" = $1 [["initiator_id", 816972181]]
1160
+ SocialNetworking::Nudge Load (0.3ms) SELECT "social_networking_nudges".* FROM "social_networking_nudges" WHERE "social_networking_nudges"."initiator_id" = $1 [["initiator_id", 129315074]]
1161
+  (0.2ms) ROLLBACK
1162
+  (0.2ms) BEGIN
1163
+ Participant Load (0.4ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
1164
+ SocialNetworking::Nudge Load (0.6ms) SELECT "social_networking_nudges".* FROM "social_networking_nudges" ORDER BY "social_networking_nudges"."id" ASC LIMIT 1
1165
+ Participant Load (0.4ms) SELECT "participants"."id", "participants"."study_id" FROM "participants"
1166
+ SocialNetworking::Nudge Load (1.0ms) SELECT "social_networking_nudges".* FROM "social_networking_nudges" WHERE "social_networking_nudges"."initiator_id" = $1 [["initiator_id", 700141617]]
1167
+ Participant Load (0.3ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 816972181]]
1168
+ Participant Load (0.4ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 816972181]]
1169
+ SocialNetworking::Nudge Load (0.5ms) SELECT "social_networking_nudges".* FROM "social_networking_nudges" WHERE "social_networking_nudges"."initiator_id" = $1 [["initiator_id", 816972181]]
1170
+ Participant Load (0.3ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
1171
+ Participant Load (0.3ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
1172
+ SocialNetworking::Nudge Load (0.7ms) SELECT "social_networking_nudges".* FROM "social_networking_nudges" WHERE "social_networking_nudges"."initiator_id" = $1 [["initiator_id", 129315074]]
1173
+ Participant Load (0.3ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
1174
+  (0.3ms) ROLLBACK
1175
+  (0.2ms) BEGIN
1176
+ SocialNetworking::OnTheMindStatement Load (0.5ms) SELECT "social_networking_on_the_mind_statements".* FROM "social_networking_on_the_mind_statements"
1177
+  (0.2ms) SAVEPOINT active_record_1
1178
+ SocialNetworking::Comment Load (0.3ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 576803333], ["item_type", "SocialNetworking::OnTheMindStatement"]]
1179
+ SocialNetworking::Like Load (0.4ms) SELECT "social_networking_likes".* FROM "social_networking_likes" WHERE "social_networking_likes"."item_id" = $1 AND "social_networking_likes"."item_type" = $2 [["item_id", 576803333], ["item_type", "SocialNetworking::OnTheMindStatement"]]
1180
+ SQL (0.4ms) DELETE FROM "social_networking_on_the_mind_statements" WHERE "social_networking_on_the_mind_statements"."id" = $1 [["id", 576803333]]
1181
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1182
+  (0.1ms) SAVEPOINT active_record_1
1183
+ SocialNetworking::Comment Load (0.2ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 369066228], ["item_type", "SocialNetworking::OnTheMindStatement"]]
1184
+ SocialNetworking::Like Load (0.3ms) SELECT "social_networking_likes".* FROM "social_networking_likes" WHERE "social_networking_likes"."item_id" = $1 AND "social_networking_likes"."item_type" = $2 [["item_id", 369066228], ["item_type", "SocialNetworking::OnTheMindStatement"]]
1185
+ SQL (0.3ms) DELETE FROM "social_networking_on_the_mind_statements" WHERE "social_networking_on_the_mind_statements"."id" = $1 [["id", 369066228]]
1186
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1187
+ Participant Load (0.3ms) SELECT "participants"."id", "participants"."study_id" FROM "participants"
1188
+ SocialNetworking::OnTheMindStatement Load (0.3ms) SELECT "social_networking_on_the_mind_statements".* FROM "social_networking_on_the_mind_statements" WHERE "social_networking_on_the_mind_statements"."participant_id" = $1 [["participant_id", 700141617]]
1189
+ SocialNetworking::OnTheMindStatement Load (0.3ms) SELECT "social_networking_on_the_mind_statements".* FROM "social_networking_on_the_mind_statements" WHERE "social_networking_on_the_mind_statements"."participant_id" = $1 [["participant_id", 816972181]]
1190
+ SocialNetworking::OnTheMindStatement Load (0.4ms) SELECT "social_networking_on_the_mind_statements".* FROM "social_networking_on_the_mind_statements" WHERE "social_networking_on_the_mind_statements"."participant_id" = $1 [["participant_id", 129315074]]
1191
+  (0.2ms) ROLLBACK
1192
+  (0.1ms) BEGIN
1193
+ Participant Load (0.2ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
1194
+ SocialNetworking::OnTheMindStatement Load (0.5ms) SELECT "social_networking_on_the_mind_statements".* FROM "social_networking_on_the_mind_statements" ORDER BY "social_networking_on_the_mind_statements"."id" ASC LIMIT 1
1195
+ Participant Load (0.3ms) SELECT "participants"."id", "participants"."study_id" FROM "participants"
1196
+ SocialNetworking::OnTheMindStatement Load (0.3ms) SELECT "social_networking_on_the_mind_statements".* FROM "social_networking_on_the_mind_statements" WHERE "social_networking_on_the_mind_statements"."participant_id" = $1 [["participant_id", 700141617]]
1197
+ SocialNetworking::OnTheMindStatement Load (0.4ms) SELECT "social_networking_on_the_mind_statements".* FROM "social_networking_on_the_mind_statements" WHERE "social_networking_on_the_mind_statements"."participant_id" = $1 [["participant_id", 816972181]]
1198
+ SocialNetworking::OnTheMindStatement Load (0.3ms) SELECT "social_networking_on_the_mind_statements".* FROM "social_networking_on_the_mind_statements" WHERE "social_networking_on_the_mind_statements"."participant_id" = $1 [["participant_id", 129315074]]
1199
+  (0.2ms) ROLLBACK
1200
+  (0.1ms) BEGIN
1201
+ Processing by SocialNetworking::SharedItemController#hide as HTML
1202
+ Parameters: {"id"=>"123"}
1203
+ Rendered text template (0.0ms)
1204
+ Completed 202 Accepted in 6ms (Views: 5.1ms | ActiveRecord: 0.0ms)
1205
+  (0.3ms) ROLLBACK
1206
+  (0.2ms) BEGIN
1207
+ Processing by SocialNetworking::SharedItemController#page as HTML
1208
+ Parameters: {"page"=>"0", "participant_id"=>"987"}
1209
+ Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1210
+  (0.5ms) ROLLBACK
1211
+  (0.2ms) BEGIN
1212
+ Processing by SocialNetworking::ParticipantsController#index as HTML
1213
+ Completed 200 OK in 2ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1214
+  (0.2ms) ROLLBACK
1215
+  (0.1ms) BEGIN
1216
+ Processing by SocialNetworking::ParticipantsController#show as HTML
1217
+ Parameters: {"id"=>"987"}
1218
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1219
+  (0.3ms) ROLLBACK
1220
+  (0.2ms) BEGIN
1221
+ Processing by SocialNetworking::ParticipantsController#show as HTML
1222
+ Parameters: {"id"=>"987"}
1223
+ Completed 404 Not Found in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1224
+  (0.2ms) ROLLBACK
1225
+  (0.2ms) BEGIN
1226
+  (0.3ms) ROLLBACK
1227
+  (0.2ms) BEGIN
1228
+ Processing by SocialNetworking::CommentsController#create as HTML
1229
+ Completed 200 OK in 6ms (Views: 0.4ms | ActiveRecord: 0.0ms)
1230
+  (0.3ms) ROLLBACK
1231
+  (0.2ms) BEGIN
1232
+ Processing by SocialNetworking::CommentsController#create as HTML
1233
+ Completed 200 OK in 5ms (Views: 0.4ms | ActiveRecord: 0.0ms)
1234
+  (0.2ms) ROLLBACK
1235
+  (0.1ms) BEGIN
1236
+ Processing by SocialNetworking::CommentsController#create as HTML
1237
+ Completed 400 Bad Request in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1238
+  (0.3ms) ROLLBACK
1239
+  (0.1ms) BEGIN
1240
+ Processing by SocialNetworking::CommentsController#create as HTML
1241
+ Completed 200 OK in 6ms (Views: 0.4ms | ActiveRecord: 0.0ms)
1242
+  (0.3ms) ROLLBACK
1243
+  (0.2ms) BEGIN
1244
+ Processing by SocialNetworking::ProfileAnswersController#create as HTML
1245
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1246
+  (0.3ms) ROLLBACK
1247
+  (0.2ms) BEGIN
1248
+ Processing by SocialNetworking::ProfileAnswersController#create as HTML
1249
+ Completed 400 Bad Request in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1250
+  (0.3ms) ROLLBACK
1251
+  (0.2ms) BEGIN
1252
+ Processing by SocialNetworking::ProfileAnswersController#update as HTML
1253
+ Parameters: {"id"=>"1"}
1254
+ Completed 404 Not Found in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1255
+  (0.3ms) ROLLBACK
1256
+  (0.2ms) BEGIN
1257
+ Processing by SocialNetworking::ProfileAnswersController#update as HTML
1258
+ Parameters: {"id"=>"1"}
1259
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1260
+  (0.3ms) ROLLBACK
1261
+  (0.1ms) BEGIN
1262
+ Processing by SocialNetworking::ProfileAnswersController#update as HTML
1263
+ Parameters: {"id"=>"1"}
1264
+ Completed 400 Bad Request in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1265
+  (0.3ms) ROLLBACK
1266
+  (0.2ms) BEGIN
1267
+  (0.2ms) ROLLBACK
1268
+  (0.1ms) BEGIN
1269
+  (0.2ms) ROLLBACK
1270
+  (0.1ms) BEGIN
1271
+  (0.2ms) ROLLBACK
1272
+  (0.2ms) BEGIN
1273
+  (0.1ms) ROLLBACK
1274
+ Started GET "/specs?reporters=console&spec" for 127.0.0.1 at 2016-02-16 13:39:31 -0600
1275
+ Processing by JasmineRails::SpecRunnerController#index as HTML
1276
+ Parameters: {"reporters"=>"console", "spec"=>nil}
1277
+ Rendered /Users/ericcf/.rvm/gems/ruby-2.2.2/gems/jasmine-rails-0.12.2/app/views/jasmine_rails/spec_runner/index.html.erb within layouts/jasmine_rails/spec_runner (1.5ms)
1278
+ Compiling jasmine.css to /Users/ericcf/work/social_networking/spec/dummy/tmp/jasmine/assets/jasmine.css
1279
+ Compiling jasmine-specs.css to /Users/ericcf/work/social_networking/spec/dummy/tmp/jasmine/assets/jasmine-specs.css
1280
+ Compiling jasmine.js to /Users/ericcf/work/social_networking/spec/dummy/tmp/jasmine/assets/jasmine.js
1281
+ Compiling jasmine-html.js to /Users/ericcf/work/social_networking/spec/dummy/tmp/jasmine/assets/jasmine-html.js
1282
+ Compiling json2.js to /Users/ericcf/work/social_networking/spec/dummy/tmp/jasmine/assets/json2.js
1283
+ Compiling boot.js to /Users/ericcf/work/social_networking/spec/dummy/tmp/jasmine/assets/boot.js
1284
+ Compiling jasmine-console-shims.js to /Users/ericcf/work/social_networking/spec/dummy/tmp/jasmine/assets/jasmine-console-shims.js
1285
+ Compiling jasmine-console-reporter.js to /Users/ericcf/work/social_networking/spec/dummy/tmp/jasmine/assets/jasmine-console-reporter.js
1286
+ Compiling jasmine-specs.js to /Users/ericcf/work/social_networking/spec/dummy/tmp/jasmine/assets/jasmine-specs.js
1287
+ Completed 200 OK in 987ms (Views: 986.7ms | ActiveRecord: 0.0ms)
1288
+  (122.5ms) DROP DATABASE IF EXISTS "dummy_test"
1289
+  (425.2ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
1290
+ SQL (0.7ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
1291
+  (8.6ms) CREATE TABLE "activities" ("id" serial primary key, "participant_id" integer NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
1292
+  (7.3ms) CREATE TABLE "arms" ("id" serial primary key, "title" character varying DEFAULT '' NOT NULL, "is_social" boolean DEFAULT 'f' NOT NULL, "has_woz" boolean DEFAULT 'f') 
1293
+  (6.9ms) CREATE TABLE "participants" ("id" serial primary key, "email" character varying, "phone_number" character varying, "contact_preference" character varying, "study_id" character varying)
1294
+  (6.5ms) CREATE TABLE "social_networking_comments" ("id" serial primary key, "participant_id" integer NOT NULL, "text" character varying NOT NULL, "item_id" integer NOT NULL, "item_type" character varying NOT NULL, "created_at" timestamp, "updated_at" timestamp) 
1295
+  (2.5ms) CREATE INDEX "index_social_networking_comments_on_item_id_and_item_type" ON "social_networking_comments" USING btree ("item_id", "item_type")
1296
+  (6.5ms) CREATE TABLE "social_networking_goals" ("id" serial primary key, "description" character varying NOT NULL, "participant_id" integer NOT NULL, "due_on" date, "created_at" timestamp, "updated_at" timestamp, "completed_at" timestamp, "deleted_at" timestamp) 
1297
+  (5.3ms) CREATE TABLE "social_networking_likes" ("id" serial primary key, "participant_id" integer NOT NULL, "item_id" integer NOT NULL, "item_type" character varying NOT NULL, "created_at" timestamp, "updated_at" timestamp)
1298
+  (2.4ms) CREATE INDEX "index_social_networking_likes_on_item_id_and_item_type" ON "social_networking_likes" USING btree ("item_id", "item_type")
1299
+  (2.4ms) CREATE UNIQUE INDEX "one_like_per_item" ON "social_networking_likes" USING btree ("participant_id", "item_id", "item_type")
1300
+  (4.8ms) CREATE TABLE "social_networking_nudges" ("id" serial primary key, "initiator_id" integer NOT NULL, "recipient_id" integer NOT NULL, "created_at" timestamp, "updated_at" timestamp) 
1301
+  (2.1ms) CREATE INDEX "index_social_networking_nudges_on_created_at" ON "social_networking_nudges" USING btree ("created_at")
1302
+  (1.8ms) CREATE INDEX "index_social_networking_nudges_on_initiator_id" ON "social_networking_nudges" USING btree ("initiator_id")
1303
+  (2.3ms) CREATE INDEX "index_social_networking_nudges_on_recipient_id" ON "social_networking_nudges" USING btree ("recipient_id")
1304
+  (6.2ms) CREATE TABLE "social_networking_on_the_mind_statements" ("id" serial primary key, "description" text NOT NULL, "participant_id" integer NOT NULL, "created_at" timestamp, "updated_at" timestamp) 
1305
+  (1.6ms) CREATE INDEX "on_the_mind_created_at" ON "social_networking_on_the_mind_statements" USING btree ("created_at")
1306
+  (1.5ms) CREATE INDEX "on_the_mind_participant" ON "social_networking_on_the_mind_statements" USING btree ("participant_id")
1307
+  (5.1ms) CREATE TABLE "social_networking_profile_answers" ("id" serial primary key, "social_networking_profile_question_id" integer NOT NULL, "order" integer, "answer_text" character varying NOT NULL, "created_at" timestamp, "updated_at" timestamp, "social_networking_profile_id" integer)
1308
+  (1.6ms) CREATE UNIQUE INDEX "profile_answers_unique" ON "social_networking_profile_answers" USING btree ("social_networking_profile_id", "social_networking_profile_question_id")
1309
+  (5.5ms) CREATE TABLE "social_networking_profile_questions" ("id" serial primary key, "question_text" character varying NOT NULL, "created_at" timestamp, "updated_at" timestamp)
1310
+  (5.3ms) CREATE TABLE "social_networking_profiles" ("id" serial primary key, "participant_id" integer NOT NULL, "created_at" timestamp, "updated_at" timestamp, "icon_name" character varying, "active" boolean DEFAULT 'f' NOT NULL) 
1311
+  (5.4ms) CREATE TABLE "social_networking_shared_items" ("id" serial primary key, "item_id" integer NOT NULL, "item_type" character varying NOT NULL, "created_at" timestamp, "updated_at" timestamp, "is_public" boolean DEFAULT 't' NOT NULL, "action_type" character varying DEFAULT '' NOT NULL, "item_label" character varying, "participant_id" integer)
1312
+  (1.7ms) CREATE INDEX "index_social_networking_shared_items_on_created_at" ON "social_networking_shared_items" USING btree ("created_at")
1313
+  (1.5ms) CREATE INDEX "index_social_networking_shared_items_on_participant_id" ON "social_networking_shared_items" USING btree ("participant_id")
1314
+  (3.8ms) ALTER TABLE "social_networking_comments" ADD CONSTRAINT "fk_comments_participants"
1315
+ FOREIGN KEY ("participant_id")
1316
+ REFERENCES "participants" ("id")
1317
+ 
1318
+  (2.4ms) ALTER TABLE "social_networking_goals" ADD CONSTRAINT "fk_goals_participants"
1319
+ FOREIGN KEY ("participant_id")
1320
+ REFERENCES "participants" ("id")
1321
+
1322
+  (2.3ms) ALTER TABLE "social_networking_likes" ADD CONSTRAINT "fk_likes_participants"
1323
+ FOREIGN KEY ("participant_id")
1324
+ REFERENCES "participants" ("id")
1325
+ 
1326
+  (2.4ms) ALTER TABLE "social_networking_nudges" ADD CONSTRAINT "fk_nudges_initiators"
1327
+ FOREIGN KEY ("initiator_id")
1328
+ REFERENCES "participants" ("id")
1329
+
1330
+  (2.1ms) ALTER TABLE "social_networking_nudges" ADD CONSTRAINT "fk_nudges_recipients"
1331
+ FOREIGN KEY ("recipient_id")
1332
+ REFERENCES "participants" ("id")
1333
+ 
1334
+  (2.9ms) ALTER TABLE "social_networking_on_the_mind_statements" ADD CONSTRAINT "fk_on_the_mind_participants"
1335
+ FOREIGN KEY ("participant_id")
1336
+ REFERENCES "participants" ("id")
1337
+
1338
+  (2.3ms) ALTER TABLE "social_networking_profile_answers" ADD CONSTRAINT "fk_profile_answers_profile_questions"
1339
+ FOREIGN KEY ("social_networking_profile_question_id")
1340
+ REFERENCES "social_networking_profile_questions" ("id")
1341
+ 
1342
+  (2.4ms) ALTER TABLE "social_networking_profile_answers" ADD CONSTRAINT "fk_profile_answers_profiles"
1343
+ FOREIGN KEY ("social_networking_profile_id")
1344
+ REFERENCES "social_networking_profiles" ("id")
1345
+
1346
+  (2.1ms) ALTER TABLE "social_networking_profiles" ADD CONSTRAINT "fk_profiles_participants"
1347
+ FOREIGN KEY ("participant_id")
1348
+ REFERENCES "participants" ("id")
1349
+ 
1350
+  (2.7ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
1351
+  (1.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1352
+  (0.6ms) SELECT version FROM "schema_migrations"
1353
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20151211204425')
1354
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('1')
1355
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('2')
1356
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('3')
1357
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('5')
1358
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('6')
1359
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('8')
1360
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20150309210518')
1361
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140827154926')
1362
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140827154939')
1363
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140827154953')
1364
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140904201719')
1365
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140910123000')
1366
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140911193832')
1367
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140915185648')
1368
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140915190627')
1369
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140915190633')
1370
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140916163621')
1371
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140917151905')
1372
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140930141007')
1373
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20141001130941')
1374
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20141003191233')
1375
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20141006200325')
1376
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20141007141541')
1377
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20141008150325')
1378
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20141015222822')
1379
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20141016015415')
1380
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20141016164443')
1381
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20141106102625')
1382
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20141106104713')
1383
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20141223203142')
1384
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20141223203721')
1385
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20150317173959')
1386
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20150317174425')
1387
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20150317180057')
1388
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20150318133032')
1389
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20150318133127')
1390
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20150318133353')
1391
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20150327143224')
1392
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20150327143244')
1393
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20150327185721')
1394
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20150327185856')
1395
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20150327185919')
1396
+  (0.1ms) BEGIN
1397
+ Processing by SocialNetworking::LikesController#create as HTML
1398
+ Completed 200 OK in 11ms (Views: 0.4ms | ActiveRecord: 0.0ms)
1399
+  (0.4ms) ROLLBACK
1400
+  (0.1ms) BEGIN
1401
+ Processing by SocialNetworking::LikesController#create as HTML
1402
+ Completed 400 Bad Request in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1403
+  (0.3ms) ROLLBACK
1404
+  (0.1ms) BEGIN
1405
+ Processing by SocialNetworking::LikesController#create as HTML
1406
+ Completed 200 OK in 5ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1407
+  (0.3ms) ROLLBACK
1408
+  (0.2ms) BEGIN
1409
+ Processing by SocialNetworking::LikesController#create as HTML
1410
+ Completed 200 OK in 7ms (Views: 0.5ms | ActiveRecord: 0.0ms)
1411
+  (0.3ms) ROLLBACK
1412
+  (0.2ms) BEGIN
1413
+ SocialNetworking::OnTheMindStatement Load (1.0ms) SELECT "social_networking_on_the_mind_statements".* FROM "social_networking_on_the_mind_statements" WHERE "social_networking_on_the_mind_statements"."participant_id" = $1 ORDER BY "social_networking_on_the_mind_statements"."created_at" DESC LIMIT 5 [["participant_id", 1]]
1414
+ SocialNetworking::Nudge Load (0.9ms) SELECT "social_networking_nudges".* FROM "social_networking_nudges" WHERE "social_networking_nudges"."initiator_id" = $1 ORDER BY "social_networking_nudges"."created_at" DESC LIMIT 5 [["initiator_id", 1]]
1415
+ SocialNetworking::SharedItem Load (1.2ms) SELECT "social_networking_shared_items".* FROM "social_networking_shared_items" INNER JOIN "participants" ON "participants"."id" = "social_networking_shared_items"."participant_id" WHERE "social_networking_shared_items"."participant_id" = $1 ORDER BY "social_networking_shared_items"."created_at" DESC LIMIT 5 [["participant_id", 1]]
1416
+ SocialNetworking::OnTheMindStatement Load (0.5ms) SELECT "social_networking_on_the_mind_statements".* FROM "social_networking_on_the_mind_statements" WHERE "social_networking_on_the_mind_statements"."participant_id" = $1 ORDER BY "social_networking_on_the_mind_statements"."created_at" DESC LIMIT 5 [["participant_id", 1]]
1417
+ SocialNetworking::Nudge Load (0.4ms) SELECT "social_networking_nudges".* FROM "social_networking_nudges" WHERE "social_networking_nudges"."initiator_id" = $1 ORDER BY "social_networking_nudges"."created_at" DESC LIMIT 5 [["initiator_id", 1]]
1418
+ SocialNetworking::SharedItem Load (0.6ms) SELECT "social_networking_shared_items".* FROM "social_networking_shared_items" INNER JOIN "participants" ON "participants"."id" = "social_networking_shared_items"."participant_id" WHERE "social_networking_shared_items"."participant_id" = $1 ORDER BY "social_networking_shared_items"."created_at" DESC LIMIT 5 [["participant_id", 1]]
1419
+  (0.3ms) ROLLBACK
1420
+  (0.2ms) BEGIN
1421
+  (0.3ms) ROLLBACK
1422
+  (0.2ms) BEGIN
1423
+  (0.3ms) ROLLBACK
1424
+  (0.2ms) BEGIN
1425
+ Processing by SocialNetworking::ProfilesController#update as HTML
1426
+ Parameters: {"id"=>"1"}
1427
+ Unpermitted parameter: id
1428
+ Completed 400 Bad Request in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1429
+  (0.7ms) ROLLBACK
1430
+  (0.2ms) BEGIN
1431
+ Processing by SocialNetworking::ProfilesController#update as HTML
1432
+ Parameters: {"id"=>"1"}
1433
+ Unpermitted parameter: id
1434
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1435
+  (0.2ms) ROLLBACK
1436
+  (0.1ms) BEGIN
1437
+  (0.3ms) ROLLBACK
1438
+  (0.2ms) BEGIN
1439
+  (0.2ms) ROLLBACK
1440
+  (0.1ms) BEGIN
1441
+  (0.2ms) ROLLBACK
1442
+  (0.1ms) BEGIN
1443
+ Processing by SocialNetworking::OnTheMindStatementsController#create as HTML
1444
+ Parameters: {"description"=>"foo"}
1445
+ Completed 400 Bad Request in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1446
+  (0.3ms) ROLLBACK
1447
+  (0.4ms) BEGIN
1448
+ Processing by SocialNetworking::OnTheMindStatementsController#create as HTML
1449
+ Parameters: {"description"=>"foo"}
1450
+ Completed 200 OK in 2ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1451
+  (0.2ms) ROLLBACK
1452
+  (0.2ms) BEGIN
1453
+  (0.2ms) ROLLBACK
1454
+  (0.1ms) BEGIN
1455
+  (0.2ms) ROLLBACK
1456
+  (0.1ms) BEGIN
1457
+  (0.2ms) ROLLBACK
1458
+  (0.2ms) BEGIN
1459
+  (0.2ms) ROLLBACK
1460
+  (4.3ms) ALTER TABLE "activities" DISABLE TRIGGER ALL;ALTER TABLE "arms" DISABLE TRIGGER ALL;ALTER TABLE "social_networking_nudges" DISABLE TRIGGER ALL;ALTER TABLE "social_networking_profile_answers" DISABLE TRIGGER ALL;ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "social_networking_shared_items" DISABLE TRIGGER ALL;ALTER TABLE "social_networking_comments" DISABLE TRIGGER ALL;ALTER TABLE "social_networking_on_the_mind_statements" DISABLE TRIGGER ALL;ALTER TABLE "social_networking_goals" DISABLE TRIGGER ALL;ALTER TABLE "social_networking_profile_questions" DISABLE TRIGGER ALL;ALTER TABLE "social_networking_likes" DISABLE TRIGGER ALL;ALTER TABLE "participants" DISABLE TRIGGER ALL;ALTER TABLE "social_networking_profiles" DISABLE TRIGGER ALL
1461
+  (0.4ms) BEGIN
1462
+ Fixture Delete (0.6ms) DELETE FROM "participants"
1463
+ Fixture Insert (0.5ms) INSERT INTO "participants" ("study_id", "email", "phone_number", "contact_preference", "id") VALUES ('Social-11', 'p1@example.com', '16305150171', 'sms', 700141617)
1464
+ Fixture Insert (0.3ms) INSERT INTO "participants" ("study_id", "email", "phone_number", "contact_preference", "id") VALUES ('Social-22', 'p2@example.com', '16305150172', 'sms', 816972181)
1465
+ Fixture Insert (0.2ms) INSERT INTO "participants" ("study_id", "email", "phone_number", "contact_preference", "id") VALUES ('Social-33', 'p3@example.com', '16305150173', 'email', 129315074)
1466
+ Fixture Delete (0.6ms) DELETE FROM "social_networking_goals"
1467
+ Fixture Insert (0.5ms) INSERT INTO "social_networking_goals" ("description", "due_on", "created_at", "updated_at", "id", "participant_id") VALUES ('p1 alpha', '2016-02-16', '2016-02-16 19:42:02', '2016-02-16 19:42:02', 809335042, 700141617)
1468
+ Fixture Insert (0.4ms) INSERT INTO "social_networking_goals" ("description", "completed_at", "due_on", "created_at", "updated_at", "id", "participant_id") VALUES ('p1 beta', '2016-02-16 19:42:02.000000', '2016-02-16', '2016-02-16 19:42:02', '2016-02-16 19:42:02', 576699391, 700141617)
1469
+ Fixture Insert (0.3ms) INSERT INTO "social_networking_goals" ("description", "due_on", "created_at", "updated_at", "id", "participant_id") VALUES ('p1 gamma', '2016-02-16', '2016-02-16 19:42:02', '2016-02-16 19:42:02', 614371357, 700141617)
1470
+ Fixture Insert (0.3ms) INSERT INTO "social_networking_goals" ("description", "created_at", "updated_at", "id", "participant_id") VALUES ('run', '2016-02-16 19:42:02', '2016-02-16 19:42:02', 53334230, 700141617)
1471
+ Fixture Insert (0.3ms) INSERT INTO "social_networking_goals" ("description", "deleted_at", "due_on", "created_at", "updated_at", "id", "participant_id") VALUES ('p1 delta', '2016-02-16 19:42:02.000000', '2016-02-16', '2016-02-16 19:42:02', '2016-02-16 19:42:02', 916373174, 700141617)
1472
+ Fixture Insert (0.3ms) INSERT INTO "social_networking_goals" ("description", "deleted_at", "completed_at", "due_on", "created_at", "updated_at", "id", "participant_id") VALUES ('p1 omega', NULL, NULL, '2016-02-15', '2016-02-16 19:42:02', '2016-02-16 19:42:02', 717544784, 700141617)
1473
+ Fixture Insert (0.3ms) INSERT INTO "social_networking_goals" ("description", "deleted_at", "completed_at", "due_on", "created_at", "updated_at", "id", "participant_id") VALUES ('p1 zeta', NULL, NULL, '2016-02-14', '2016-02-16 19:42:02', '2016-02-16 19:42:02', 938656909, 700141617)
1474
+ Fixture Insert (0.3ms) INSERT INTO "social_networking_goals" ("description", "completed_at", "due_on", "created_at", "updated_at", "id", "participant_id") VALUES ('p1 epsilon', '2016-02-16 19:42:02.000000', '2016-02-16', '2016-02-16 19:42:02', '2016-02-16 19:42:02', 401619065, 700141617)
1475
+ Fixture Insert (0.3ms) INSERT INTO "social_networking_goals" ("description", "due_on", "created_at", "updated_at", "id", "participant_id") VALUES ('p2 alpha', '2016-02-16', '2016-02-16 19:42:02', '2016-02-16 19:42:02', 128166899, 816972181)
1476
+ Fixture Insert (0.3ms) INSERT INTO "social_networking_goals" ("description", "completed_at", "due_on", "created_at", "updated_at", "id", "participant_id") VALUES ('p2 beta', '2016-02-16 19:42:02.000000', '2016-02-16', '2016-02-16 19:42:02', '2016-02-16 19:42:02', 1002298878, 816972181)
1477
+ Fixture Insert (0.2ms) INSERT INTO "social_networking_goals" ("description", "due_on", "created_at", "updated_at", "id", "participant_id") VALUES ('p2 gamma', '2016-02-16', '2016-02-16 19:42:02', '2016-02-16 19:42:02', 318784238, 816972181)
1478
+ Fixture Insert (0.3ms) INSERT INTO "social_networking_goals" ("description", "deleted_at", "due_on", "created_at", "updated_at", "id", "participant_id") VALUES ('p2 delta', '2016-02-16 19:42:02.000000', '2016-02-16', '2016-02-16 19:42:02', '2016-02-16 19:42:02', 16804933, 816972181)
1479
+  (0.4ms) COMMIT
1480
+  (2.3ms) ALTER TABLE "activities" ENABLE TRIGGER ALL;ALTER TABLE "arms" ENABLE TRIGGER ALL;ALTER TABLE "social_networking_nudges" ENABLE TRIGGER ALL;ALTER TABLE "social_networking_profile_answers" ENABLE TRIGGER ALL;ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "social_networking_shared_items" ENABLE TRIGGER ALL;ALTER TABLE "social_networking_comments" ENABLE TRIGGER ALL;ALTER TABLE "social_networking_on_the_mind_statements" ENABLE TRIGGER ALL;ALTER TABLE "social_networking_goals" ENABLE TRIGGER ALL;ALTER TABLE "social_networking_profile_questions" ENABLE TRIGGER ALL;ALTER TABLE "social_networking_likes" ENABLE TRIGGER ALL;ALTER TABLE "participants" ENABLE TRIGGER ALL;ALTER TABLE "social_networking_profiles" ENABLE TRIGGER ALL
1481
+  (0.2ms) BEGIN
1482
+  (1.7ms) SELECT COUNT(*) FROM "social_networking_likes" WHERE ("social_networking_likes"."created_at" >= '2016-02-09 00:00:00.000000')
1483
+ Participant Load (0.6ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
1484
+ SocialNetworking::Goal Load (0.6ms) SELECT "social_networking_goals".* FROM "social_networking_goals" WHERE "social_networking_goals"."id" = $1 LIMIT 1 [["id", 128166899]]
1485
+  (0.4ms) SAVEPOINT active_record_1
1486
+ Participant Load (0.5ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
1487
+ SocialNetworking::Goal Load (0.8ms) SELECT "social_networking_goals".* FROM "social_networking_goals" WHERE "social_networking_goals"."id" = $1 LIMIT 1 [["id", 128166899]]
1488
+ SocialNetworking::Like Exists (1.4ms) SELECT 1 AS one FROM "social_networking_likes" WHERE ("social_networking_likes"."item_id" = 128166899 AND "social_networking_likes"."item_type" = 'SocialNetworking::Goal' AND "social_networking_likes"."participant_id" = 700141617) LIMIT 1
1489
+ SQL (1.8ms) INSERT INTO "social_networking_likes" ("participant_id", "item_id", "item_type", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["participant_id", 700141617], ["item_id", 128166899], ["item_type", "SocialNetworking::Goal"], ["created_at", "2016-02-15 00:00:00.000000"], ["updated_at", "2016-02-16 19:42:02.270557"]]
1490
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1491
+  (0.2ms) SAVEPOINT active_record_1
1492
+ Participant Load (0.4ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
1493
+ SocialNetworking::Goal Load (0.5ms) SELECT "social_networking_goals".* FROM "social_networking_goals" WHERE "social_networking_goals"."id" = $1 LIMIT 1 [["id", 128166899]]
1494
+ SocialNetworking::Like Exists (0.8ms) SELECT 1 AS one FROM "social_networking_likes" WHERE ("social_networking_likes"."item_id" = 128166899 AND "social_networking_likes"."item_type" = 'SocialNetworking::Goal' AND "social_networking_likes"."participant_id" = 700141617) LIMIT 1
1495
+  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1
1496
+  (0.5ms) SELECT COUNT(*) FROM "social_networking_likes" WHERE ("social_networking_likes"."created_at" >= '2016-02-09 00:00:00.000000')
1497
+  (0.3ms) ROLLBACK
1498
+  (0.1ms) BEGIN
1499
+  (0.9ms) SELECT COUNT(*) FROM "social_networking_likes" WHERE ("social_networking_likes"."created_at" >= '2016-02-16 00:00:00.000000' AND "social_networking_likes"."created_at" <= '2016-02-16 23:59:59.999999')
1500
+ Participant Load (0.3ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
1501
+ SocialNetworking::Goal Load (0.3ms) SELECT "social_networking_goals".* FROM "social_networking_goals" WHERE "social_networking_goals"."id" = $1 LIMIT 1 [["id", 128166899]]
1502
+  (0.2ms) SAVEPOINT active_record_1
1503
+ Participant Load (0.4ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
1504
+ SocialNetworking::Goal Load (0.4ms) SELECT "social_networking_goals".* FROM "social_networking_goals" WHERE "social_networking_goals"."id" = $1 LIMIT 1 [["id", 128166899]]
1505
+ SocialNetworking::Like Exists (0.5ms) SELECT 1 AS one FROM "social_networking_likes" WHERE ("social_networking_likes"."item_id" = 128166899 AND "social_networking_likes"."item_type" = 'SocialNetworking::Goal' AND "social_networking_likes"."participant_id" = 700141617) LIMIT 1
1506
+ SQL (0.5ms) INSERT INTO "social_networking_likes" ("participant_id", "item_id", "item_type", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["participant_id", 700141617], ["item_id", 128166899], ["item_type", "SocialNetworking::Goal"], ["created_at", "2016-02-16 00:00:00.000000"], ["updated_at", "2016-02-16 19:42:02.293239"]]
1507
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1508
+  (0.6ms) SELECT COUNT(*) FROM "social_networking_likes" WHERE ("social_networking_likes"."created_at" >= '2016-02-16 00:00:00.000000' AND "social_networking_likes"."created_at" <= '2016-02-16 23:59:59.999999')
1509
+  (0.3ms) ROLLBACK
1510
+  (0.1ms) BEGIN
1511
+ Participant Load (0.3ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
1512
+ SocialNetworking::Goal Load (0.3ms) SELECT "social_networking_goals".* FROM "social_networking_goals" WHERE "social_networking_goals"."id" = $1 LIMIT 1 [["id", 128166899]]
1513
+  (0.2ms) SAVEPOINT active_record_1
1514
+ Participant Load (0.3ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
1515
+ SocialNetworking::OnTheMindStatement Load (0.5ms) SELECT "social_networking_on_the_mind_statements".* FROM "social_networking_on_the_mind_statements" WHERE "social_networking_on_the_mind_statements"."id" = $1 LIMIT 1 [["id", 128166899]]
1516
+ SocialNetworking::Like Exists (0.6ms) SELECT 1 AS one FROM "social_networking_likes" WHERE ("social_networking_likes"."item_id" = 128166899 AND "social_networking_likes"."item_type" = 'SocialNetworking::OnTheMindStatement' AND "social_networking_likes"."participant_id" = 700141617) LIMIT 1
1517
+  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1
1518
+  (0.2ms) ROLLBACK
1519
+  (0.1ms) BEGIN
1520
+ Participant Load (0.2ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
1521
+ SocialNetworking::Goal Load (0.2ms) SELECT "social_networking_goals".* FROM "social_networking_goals" WHERE "social_networking_goals"."id" = $1 LIMIT 1 [["id", 128166899]]
1522
+  (0.3ms) SAVEPOINT active_record_1
1523
+ Participant Load (0.3ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
1524
+ SocialNetworking::SharedItem Load (0.4ms) SELECT "social_networking_shared_items".* FROM "social_networking_shared_items" WHERE "social_networking_shared_items"."id" = $1 LIMIT 1 [["id", 128166899]]
1525
+ SocialNetworking::Like Exists (0.8ms) SELECT 1 AS one FROM "social_networking_likes" WHERE ("social_networking_likes"."item_id" = 128166899 AND "social_networking_likes"."item_type" = 'SocialNetworking::SharedItem' AND "social_networking_likes"."participant_id" = 700141617) LIMIT 1
1526
+  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1
1527
+  (0.3ms) ROLLBACK
1528
+  (0.2ms) BEGIN
1529
+ Participant Load (0.3ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
1530
+  (0.5ms) SAVEPOINT active_record_1
1531
+ Participant Load (0.6ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
1532
+ SocialNetworking::SharedItem Load (0.5ms) SELECT "social_networking_shared_items".* FROM "social_networking_shared_items" WHERE "social_networking_shared_items"."id" = $1 LIMIT 1 [["id", 1]]
1533
+ SocialNetworking::Like Exists (0.6ms) SELECT 1 AS one FROM "social_networking_likes" WHERE ("social_networking_likes"."item_id" = 1 AND "social_networking_likes"."item_type" = 'SocialNetworking::SharedItem' AND "social_networking_likes"."participant_id" = 700141617) LIMIT 1
1534
+  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1
1535
+  (0.3ms) ROLLBACK
1536
+  (2.9ms) ALTER TABLE "activities" DISABLE TRIGGER ALL;ALTER TABLE "arms" DISABLE TRIGGER ALL;ALTER TABLE "social_networking_nudges" DISABLE TRIGGER ALL;ALTER TABLE "social_networking_profile_answers" DISABLE TRIGGER ALL;ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "social_networking_shared_items" DISABLE TRIGGER ALL;ALTER TABLE "social_networking_comments" DISABLE TRIGGER ALL;ALTER TABLE "social_networking_on_the_mind_statements" DISABLE TRIGGER ALL;ALTER TABLE "social_networking_goals" DISABLE TRIGGER ALL;ALTER TABLE "social_networking_profile_questions" DISABLE TRIGGER ALL;ALTER TABLE "social_networking_likes" DISABLE TRIGGER ALL;ALTER TABLE "participants" DISABLE TRIGGER ALL;ALTER TABLE "social_networking_profiles" DISABLE TRIGGER ALL
1537
+  (0.2ms) BEGIN
1538
+ Fixture Delete (0.6ms) DELETE FROM "social_networking_comments"
1539
+ Fixture Insert (0.6ms) INSERT INTO "social_networking_comments" ("text", "created_at", "updated_at", "id", "participant_id", "item_type", "item_id") VALUES ('i feel strongly about this', '2016-02-16 19:42:02', '2016-02-16 19:42:02', 318187876, 700141617, 'SocialNetworking::SharedItem', 809335042)
1540
+ Fixture Delete (0.4ms) DELETE FROM "social_networking_likes"
1541
+ Fixture Insert (0.3ms) INSERT INTO "social_networking_likes" ("created_at", "updated_at", "id", "participant_id", "item_type", "item_id") VALUES ('2016-02-16 19:42:02', '2016-02-16 19:42:02', 844093908, 700141617, 'SocialNetworking::SharedItem', 809335042)
1542
+ Fixture Delete (0.5ms) DELETE FROM "social_networking_nudges"
1543
+ Fixture Insert (0.8ms) INSERT INTO "social_networking_nudges" ("created_at", "updated_at", "id", "initiator_id", "recipient_id") VALUES ('2016-02-15 19:42:02.000000', '2016-02-16 19:42:02', 503297012, 700141617, 816972181)
1544
+ Fixture Insert (0.5ms) INSERT INTO "social_networking_nudges" ("created_at", "updated_at", "id", "initiator_id", "recipient_id") VALUES ('2016-02-16 19:42:02.000000', '2016-02-16 19:42:02', 366290861, 700141617, 816972181)
1545
+ Fixture Insert (0.3ms) INSERT INTO "social_networking_nudges" ("created_at", "updated_at", "id", "initiator_id", "recipient_id") VALUES ('2016-02-15 19:42:02.000000', '2016-02-16 19:42:02', 931788854, 816972181, 700141617)
1546
+ Fixture Insert (0.3ms) INSERT INTO "social_networking_nudges" ("created_at", "updated_at", "id", "initiator_id", "recipient_id") VALUES ('2016-02-16 19:42:02.000000', '2016-02-16 19:42:02', 316146702, 816972181, 700141617)
1547
+ Fixture Delete (0.5ms) DELETE FROM "social_networking_on_the_mind_statements"
1548
+ Fixture Insert (0.7ms) INSERT INTO "social_networking_on_the_mind_statements" ("description", "created_at", "updated_at", "id", "participant_id") VALUES ('it''s always sunny in Philadelphia', '2016-02-16 19:42:02', '2016-02-16 19:42:02', 576803333, 700141617)
1549
+ Fixture Insert (0.5ms) INSERT INTO "social_networking_on_the_mind_statements" ("description", "created_at", "updated_at", "id", "participant_id") VALUES ('what about Bob?', '2016-02-16 19:42:02', '2016-02-16 19:42:02', 369066228, 816972181)
1550
+ Fixture Delete (1.3ms) DELETE FROM "social_networking_profile_answers"
1551
+ Fixture Insert (1.3ms) INSERT INTO "social_networking_profile_answers" ("social_networking_profile_question_id", "order", "answer_text", "created_at", "updated_at", "id", "social_networking_profile_id") VALUES (1, 1, 'running', '2016-02-16 19:42:02', '2016-02-16 19:42:02', 465319974, 333620620)
1552
+ Fixture Insert (1.0ms) INSERT INTO "social_networking_profile_answers" ("social_networking_profile_question_id", "order", "answer_text", "created_at", "updated_at", "id", "social_networking_profile_id") VALUES (2, 2, 'green', '2016-02-16 19:42:02', '2016-02-16 19:42:02', 45443486, 333620620)
1553
+ Fixture Insert (1.9ms) INSERT INTO "social_networking_profile_answers" ("social_networking_profile_question_id", "order", "answer_text", "created_at", "updated_at", "id", "social_networking_profile_id") VALUES (2, 1, 'blue', '2016-02-16 19:42:02', '2016-02-16 19:42:02', 10484799, 183235640)
1554
+ Fixture Delete (1.0ms) DELETE FROM "social_networking_profile_questions"
1555
+ Fixture Insert (1.1ms) INSERT INTO "social_networking_profile_questions" ("question_text", "created_at", "updated_at", "id") VALUES ('What are your hobbies?', '2016-02-16 19:42:02', '2016-02-16 19:42:02', 781294868)
1556
+ Fixture Insert (0.7ms) INSERT INTO "social_networking_profile_questions" ("question_text", "created_at", "updated_at", "id") VALUES ('What is your favorite color?', '2016-02-16 19:42:02', '2016-02-16 19:42:02', 932760744)
1557
+ Fixture Insert (0.5ms) INSERT INTO "social_networking_profile_questions" ("question_text", "created_at", "updated_at", "id") VALUES ('Animal, vegetable or mineral?', '2016-02-16 19:42:02', '2016-02-16 19:42:02', 10484799)
1558
+ Fixture Delete (1.1ms) DELETE FROM "social_networking_profiles"
1559
+ Fixture Insert (0.9ms) INSERT INTO "social_networking_profiles" ("active", "created_at", "updated_at", "id", "participant_id") VALUES ('t', '2016-02-16 19:42:02', '2016-02-16 19:42:02', 183235640, 816972181)
1560
+ Fixture Delete (1.5ms) DELETE FROM "social_networking_shared_items"
1561
+ Fixture Insert (1.8ms) INSERT INTO "social_networking_shared_items" ("is_public", "created_at", "updated_at", "id", "item_type", "item_id") VALUES ('t', '2016-02-16 19:42:02', '2016-02-16 19:42:02', 809335042, 'SocialNetworking::Goal', 809335042)
1562
+  (0.8ms) COMMIT
1563
+  (2.9ms) ALTER TABLE "activities" ENABLE TRIGGER ALL;ALTER TABLE "arms" ENABLE TRIGGER ALL;ALTER TABLE "social_networking_nudges" ENABLE TRIGGER ALL;ALTER TABLE "social_networking_profile_answers" ENABLE TRIGGER ALL;ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "social_networking_shared_items" ENABLE TRIGGER ALL;ALTER TABLE "social_networking_comments" ENABLE TRIGGER ALL;ALTER TABLE "social_networking_on_the_mind_statements" ENABLE TRIGGER ALL;ALTER TABLE "social_networking_goals" ENABLE TRIGGER ALL;ALTER TABLE "social_networking_profile_questions" ENABLE TRIGGER ALL;ALTER TABLE "social_networking_likes" ENABLE TRIGGER ALL;ALTER TABLE "participants" ENABLE TRIGGER ALL;ALTER TABLE "social_networking_profiles" ENABLE TRIGGER ALL
1564
+  (0.2ms) BEGIN
1565
+ Started GET "/social_networking/goal_tool" for 127.0.0.1 at 2016-02-16 13:42:03 -0600
1566
+ Processing by SocialNetworking::GoalsController#tool as HTML
1567
+ Participant Load (1.0ms) SELECT "participants".* FROM "participants" WHERE "participants"."email" = $1 LIMIT 1 [["email", "p1@example.com"]]
1568
+ SocialNetworking::Goal Load (0.7ms) SELECT "social_networking_goals".* FROM "social_networking_goals" WHERE "social_networking_goals"."participant_id" = $1 [["participant_id", 700141617]]
1569
+ Participant Load (0.5ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
1570
+ SocialNetworking::Comment Load (0.7ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 809335042], ["item_type", "SocialNetworking::Goal"]]
1571
+ CACHE (0.0ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
1572
+ SocialNetworking::Comment Load (0.4ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 576699391], ["item_type", "SocialNetworking::Goal"]]
1573
+ CACHE (0.0ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
1574
+ SocialNetworking::Comment Load (0.5ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 614371357], ["item_type", "SocialNetworking::Goal"]]
1575
+ CACHE (0.0ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
1576
+ SocialNetworking::Comment Load (0.5ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 53334230], ["item_type", "SocialNetworking::Goal"]]
1577
+ CACHE (0.0ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
1578
+ SocialNetworking::Comment Load (0.5ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 916373174], ["item_type", "SocialNetworking::Goal"]]
1579
+ CACHE (0.0ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
1580
+ SocialNetworking::Comment Load (0.5ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 717544784], ["item_type", "SocialNetworking::Goal"]]
1581
+ CACHE (0.0ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
1582
+ SocialNetworking::Comment Load (0.3ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 938656909], ["item_type", "SocialNetworking::Goal"]]
1583
+ CACHE (0.0ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
1584
+ SocialNetworking::Comment Load (0.3ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 401619065], ["item_type", "SocialNetworking::Goal"]]
1585
+ CACHE (0.0ms) SELECT "participants".* FROM "participants" WHERE "participants"."email" = $1 LIMIT 1 [["email", "p1@example.com"]]
1586
+ Rendered /Users/ericcf/work/social_networking/app/views/social_networking/goals/tool.html.erb within layouts/tool (4.8ms)
1587
+ Completed 200 OK in 228ms (Views: 178.1ms | ActiveRecord: 10.9ms)
1588
+ Started GET "/assets/application.css" for 127.0.0.1 at 2016-02-16 13:42:03 -0600
1589
+ Started GET "/assets/application.js" for 127.0.0.1 at 2016-02-16 13:42:03 -0600
1590
+ SocialNetworking::Goal Load (0.5ms) SELECT "social_networking_goals".* FROM "social_networking_goals" WHERE "social_networking_goals"."description" = $1 LIMIT 1 [["description", "p1 alpha"]]
1591
+ Started POST "/social_networking/goals/809335042" for 127.0.0.1 at 2016-02-16 13:42:03 -0600
1592
+ Processing by SocialNetworking::GoalsController#update as HTML
1593
+ Parameters: {"id"=>"809335042", "description"=>"p1 alpha", "isCompleted"=>true, "isDeleted"=>false, "dueOn"=>"Feb 16 2016", "goal"=>{"id"=>"809335042", "description"=>"p1 alpha"}}
1594
+ Participant Load (0.6ms) SELECT "participants".* FROM "participants" WHERE "participants"."email" = $1 LIMIT 1 [["email", "p1@example.com"]]
1595
+ SocialNetworking::Goal Load (0.5ms) SELECT "social_networking_goals".* FROM "social_networking_goals" WHERE "social_networking_goals"."participant_id" = $1 AND "social_networking_goals"."id" = $2 ORDER BY "social_networking_goals"."id" ASC LIMIT 1 [["participant_id", 700141617], ["id", 809335042]]
1596
+ CACHE (0.0ms) SELECT "participants".* FROM "participants" WHERE "participants"."email" = $1 LIMIT 1 [["email", "p1@example.com"]]
1597
+  (0.2ms) BEGIN
1598
+ Participant Load (0.8ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
1599
+ SQL (0.7ms) UPDATE "social_networking_goals" SET "completed_at" = $1, "updated_at" = $2 WHERE "social_networking_goals"."id" = $3 [["completed_at", "2016-02-16 19:42:03.747639"], ["updated_at", "2016-02-16 19:42:03.751630"], ["id", 809335042]]
1600
+  (0.6ms) COMMIT
1601
+  (0.3ms) BEGIN
1602
+ SQL (0.7ms) INSERT INTO "social_networking_shared_items" ("item_id", "item_type", "action_type", "participant_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["item_id", 809335042], ["item_type", "SocialNetworking::Goal"], ["action_type", "Completed"], ["participant_id", 700141617], ["created_at", "2016-02-16 19:42:03.763057"], ["updated_at", "2016-02-16 19:42:03.763057"]]
1603
+  (0.5ms) COMMIT
1604
+ SocialNetworking::Comment Load (0.3ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 809335042], ["item_type", "SocialNetworking::Goal"]]
1605
+ Completed 200 OK in 25ms (Views: 0.4ms | ActiveRecord: 8.8ms)
1606
+  (0.3ms) ROLLBACK
1607
+  (0.2ms) BEGIN
1608
+ Started GET "/social_networking/goal_tool" for 127.0.0.1 at 2016-02-16 13:42:03 -0600
1609
+ Processing by SocialNetworking::GoalsController#tool as HTML
1610
+ Participant Load (0.5ms) SELECT "participants".* FROM "participants" WHERE "participants"."email" = $1 LIMIT 1 [["email", "p1@example.com"]]
1611
+ SocialNetworking::Goal Load (0.4ms) SELECT "social_networking_goals".* FROM "social_networking_goals" WHERE "social_networking_goals"."participant_id" = $1 [["participant_id", 700141617]]
1612
+ Participant Load (0.5ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
1613
+ SocialNetworking::Comment Load (0.6ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 576699391], ["item_type", "SocialNetworking::Goal"]]
1614
+ CACHE (0.0ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
1615
+ SocialNetworking::Comment Load (0.4ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 614371357], ["item_type", "SocialNetworking::Goal"]]
1616
+ CACHE (0.0ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
1617
+ SocialNetworking::Comment Load (0.4ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 53334230], ["item_type", "SocialNetworking::Goal"]]
1618
+ CACHE (0.0ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
1619
+ SocialNetworking::Comment Load (0.4ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 916373174], ["item_type", "SocialNetworking::Goal"]]
1620
+ CACHE (0.0ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
1621
+ SocialNetworking::Comment Load (0.4ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 717544784], ["item_type", "SocialNetworking::Goal"]]
1622
+ CACHE (0.0ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
1623
+ SocialNetworking::Comment Load (0.4ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 938656909], ["item_type", "SocialNetworking::Goal"]]
1624
+ CACHE (0.0ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
1625
+ SocialNetworking::Comment Load (0.3ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 401619065], ["item_type", "SocialNetworking::Goal"]]
1626
+ CACHE (0.0ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
1627
+ SocialNetworking::Comment Load (0.3ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 809335042], ["item_type", "SocialNetworking::Goal"]]
1628
+ CACHE (0.0ms) SELECT "participants".* FROM "participants" WHERE "participants"."email" = $1 LIMIT 1 [["email", "p1@example.com"]]
1629
+ Rendered /Users/ericcf/work/social_networking/app/views/social_networking/goals/tool.html.erb within layouts/tool (1.1ms)
1630
+ Completed 200 OK in 19ms (Views: 1.9ms | ActiveRecord: 4.7ms)
1631
+ SocialNetworking::Goal Load (0.5ms) SELECT "social_networking_goals".* FROM "social_networking_goals" WHERE "social_networking_goals"."description" = $1 LIMIT 1 [["description", "p1 gamma"]]
1632
+ Started POST "/social_networking/goals/614371357" for 127.0.0.1 at 2016-02-16 13:42:04 -0600
1633
+ Processing by SocialNetworking::GoalsController#update as HTML
1634
+ Parameters: {"id"=>"614371357", "description"=>"p1 gamma", "isCompleted"=>false, "isDeleted"=>true, "dueOn"=>"Feb 16 2016", "goal"=>{"id"=>"614371357", "description"=>"p1 gamma"}}
1635
+ Participant Load (0.4ms) SELECT "participants".* FROM "participants" WHERE "participants"."email" = $1 LIMIT 1 [["email", "p1@example.com"]]
1636
+ SocialNetworking::Goal Load (1.1ms) SELECT "social_networking_goals".* FROM "social_networking_goals" WHERE "social_networking_goals"."participant_id" = $1 AND "social_networking_goals"."id" = $2 ORDER BY "social_networking_goals"."id" ASC LIMIT 1 [["participant_id", 700141617], ["id", 614371357]]
1637
+ CACHE (0.0ms) SELECT "participants".* FROM "participants" WHERE "participants"."email" = $1 LIMIT 1 [["email", "p1@example.com"]]
1638
+  (0.6ms) BEGIN
1639
+ Participant Load (0.6ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
1640
+ SQL (0.6ms) UPDATE "social_networking_goals" SET "deleted_at" = $1, "updated_at" = $2 WHERE "social_networking_goals"."id" = $3 [["deleted_at", "2016-02-16 19:42:04.029033"], ["updated_at", "2016-02-16 19:42:04.032516"], ["id", 614371357]]
1641
+  (0.6ms) COMMIT
1642
+ SocialNetworking::Comment Load (0.5ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 614371357], ["item_type", "SocialNetworking::Goal"]]
1643
+ Completed 200 OK in 14ms (Views: 0.3ms | ActiveRecord: 4.4ms)
1644
+  (0.3ms) ROLLBACK
1645
+  (0.1ms) BEGIN
1646
+ Started GET "/social_networking/goal_tool" for 127.0.0.1 at 2016-02-16 13:42:04 -0600
1647
+ Processing by SocialNetworking::GoalsController#tool as HTML
1648
+ Participant Load (0.4ms) SELECT "participants".* FROM "participants" WHERE "participants"."email" = $1 LIMIT 1 [["email", "p1@example.com"]]
1649
+ SocialNetworking::Goal Load (0.4ms) SELECT "social_networking_goals".* FROM "social_networking_goals" WHERE "social_networking_goals"."participant_id" = $1 [["participant_id", 700141617]]
1650
+ Participant Load (0.4ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
1651
+ SocialNetworking::Comment Load (0.2ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 576699391], ["item_type", "SocialNetworking::Goal"]]
1652
+ CACHE (0.0ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
1653
+ SocialNetworking::Comment Load (0.3ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 53334230], ["item_type", "SocialNetworking::Goal"]]
1654
+ CACHE (0.0ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
1655
+ SocialNetworking::Comment Load (0.3ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 916373174], ["item_type", "SocialNetworking::Goal"]]
1656
+ CACHE (0.0ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
1657
+ SocialNetworking::Comment Load (0.3ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 717544784], ["item_type", "SocialNetworking::Goal"]]
1658
+ CACHE (0.0ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
1659
+ SocialNetworking::Comment Load (0.3ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 938656909], ["item_type", "SocialNetworking::Goal"]]
1660
+ CACHE (0.0ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
1661
+ SocialNetworking::Comment Load (0.3ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 401619065], ["item_type", "SocialNetworking::Goal"]]
1662
+ CACHE (0.0ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
1663
+ SocialNetworking::Comment Load (0.3ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 809335042], ["item_type", "SocialNetworking::Goal"]]
1664
+ CACHE (0.0ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
1665
+ SocialNetworking::Comment Load (0.3ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 614371357], ["item_type", "SocialNetworking::Goal"]]
1666
+ CACHE (0.0ms) SELECT "participants".* FROM "participants" WHERE "participants"."email" = $1 LIMIT 1 [["email", "p1@example.com"]]
1667
+ Rendered /Users/ericcf/work/social_networking/app/views/social_networking/goals/tool.html.erb within layouts/tool (1.0ms)
1668
+ Completed 200 OK in 16ms (Views: 1.6ms | ActiveRecord: 3.6ms)
1669
+ SocialNetworking::Goal Load (0.6ms) SELECT "social_networking_goals".* FROM "social_networking_goals" WHERE "social_networking_goals"."description" = $1 LIMIT 1 [["description", "run"]]
1670
+ Started POST "/social_networking/goals/53334230" for 127.0.0.1 at 2016-02-16 13:42:04 -0600
1671
+ Processing by SocialNetworking::GoalsController#update as HTML
1672
+ Parameters: {"id"=>"53334230", "description"=>"run foo", "isCompleted"=>false, "dueOn"=>"Mar 15 2016", "goal"=>{"id"=>"53334230", "description"=>"run foo"}}
1673
+ Participant Load (0.4ms) SELECT "participants".* FROM "participants" WHERE "participants"."email" = $1 LIMIT 1 [["email", "p1@example.com"]]
1674
+ SocialNetworking::Goal Load (0.6ms) SELECT "social_networking_goals".* FROM "social_networking_goals" WHERE "social_networking_goals"."participant_id" = $1 AND "social_networking_goals"."id" = $2 ORDER BY "social_networking_goals"."id" ASC LIMIT 1 [["participant_id", 700141617], ["id", 53334230]]
1675
+ CACHE (0.0ms) SELECT "participants".* FROM "participants" WHERE "participants"."email" = $1 LIMIT 1 [["email", "p1@example.com"]]
1676
+  (0.3ms) BEGIN
1677
+ Participant Load (0.6ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
1678
+ SQL (0.5ms) UPDATE "social_networking_goals" SET "description" = $1, "due_on" = $2, "updated_at" = $3 WHERE "social_networking_goals"."id" = $4 [["description", "run foo"], ["due_on", "2016-03-15"], ["updated_at", "2016-02-16 19:42:04.369257"], ["id", 53334230]]
1679
+  (0.4ms) COMMIT
1680
+ SocialNetworking::Comment Load (0.3ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 53334230], ["item_type", "SocialNetworking::Goal"]]
1681
+ Completed 200 OK in 11ms (Views: 0.3ms | ActiveRecord: 3.2ms)
1682
+  (0.4ms) ROLLBACK
1683
+  (0.1ms) BEGIN
1684
+ Started GET "/social_networking/goal_tool" for 127.0.0.1 at 2016-02-16 13:42:04 -0600
1685
+ Processing by SocialNetworking::GoalsController#tool as HTML
1686
+ Participant Load (0.4ms) SELECT "participants".* FROM "participants" WHERE "participants"."email" = $1 LIMIT 1 [["email", "p1@example.com"]]
1687
+ SocialNetworking::Goal Load (0.4ms) SELECT "social_networking_goals".* FROM "social_networking_goals" WHERE "social_networking_goals"."participant_id" = $1 [["participant_id", 700141617]]
1688
+ Participant Load (0.3ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
1689
+ SocialNetworking::Comment Load (0.3ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 576699391], ["item_type", "SocialNetworking::Goal"]]
1690
+ CACHE (0.0ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
1691
+ SocialNetworking::Comment Load (0.3ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 916373174], ["item_type", "SocialNetworking::Goal"]]
1692
+ CACHE (0.0ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
1693
+ SocialNetworking::Comment Load (0.3ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 717544784], ["item_type", "SocialNetworking::Goal"]]
1694
+ CACHE (0.0ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
1695
+ SocialNetworking::Comment Load (0.3ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 938656909], ["item_type", "SocialNetworking::Goal"]]
1696
+ CACHE (0.0ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
1697
+ SocialNetworking::Comment Load (0.3ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 401619065], ["item_type", "SocialNetworking::Goal"]]
1698
+ CACHE (0.0ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
1699
+ SocialNetworking::Comment Load (0.3ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 809335042], ["item_type", "SocialNetworking::Goal"]]
1700
+ CACHE (0.0ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
1701
+ SocialNetworking::Comment Load (0.3ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 614371357], ["item_type", "SocialNetworking::Goal"]]
1702
+ CACHE (0.0ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
1703
+ SocialNetworking::Comment Load (0.3ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 53334230], ["item_type", "SocialNetworking::Goal"]]
1704
+ CACHE (0.0ms) SELECT "participants".* FROM "participants" WHERE "participants"."email" = $1 LIMIT 1 [["email", "p1@example.com"]]
1705
+ Rendered /Users/ericcf/work/social_networking/app/views/social_networking/goals/tool.html.erb within layouts/tool (1.0ms)
1706
+ Completed 200 OK in 16ms (Views: 1.7ms | ActiveRecord: 3.7ms)
1707
+  (0.3ms) ROLLBACK
1708
+  (0.2ms) BEGIN
1709
+ Started GET "/social_networking/goal_tool" for 127.0.0.1 at 2016-02-16 13:42:04 -0600
1710
+ Processing by SocialNetworking::GoalsController#tool as HTML
1711
+ Participant Load (0.4ms) SELECT "participants".* FROM "participants" WHERE "participants"."email" = $1 LIMIT 1 [["email", "p1@example.com"]]
1712
+ SocialNetworking::Goal Load (0.5ms) SELECT "social_networking_goals".* FROM "social_networking_goals" WHERE "social_networking_goals"."participant_id" = $1 [["participant_id", 700141617]]
1713
+ Participant Load (0.5ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
1714
+ SocialNetworking::Comment Load (0.3ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 576699391], ["item_type", "SocialNetworking::Goal"]]
1715
+ CACHE (0.0ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
1716
+ SocialNetworking::Comment Load (0.3ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 916373174], ["item_type", "SocialNetworking::Goal"]]
1717
+ CACHE (0.0ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
1718
+ SocialNetworking::Comment Load (0.3ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 717544784], ["item_type", "SocialNetworking::Goal"]]
1719
+ CACHE (0.0ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
1720
+ SocialNetworking::Comment Load (0.3ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 938656909], ["item_type", "SocialNetworking::Goal"]]
1721
+ CACHE (0.0ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
1722
+ SocialNetworking::Comment Load (0.3ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 401619065], ["item_type", "SocialNetworking::Goal"]]
1723
+ CACHE (0.0ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
1724
+ SocialNetworking::Comment Load (0.3ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 809335042], ["item_type", "SocialNetworking::Goal"]]
1725
+ CACHE (0.0ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
1726
+ SocialNetworking::Comment Load (0.3ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 614371357], ["item_type", "SocialNetworking::Goal"]]
1727
+ CACHE (0.0ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
1728
+ SocialNetworking::Comment Load (0.3ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 53334230], ["item_type", "SocialNetworking::Goal"]]
1729
+ CACHE (0.0ms) SELECT "participants".* FROM "participants" WHERE "participants"."email" = $1 LIMIT 1 [["email", "p1@example.com"]]
1730
+ Rendered /Users/ericcf/work/social_networking/app/views/social_networking/goals/tool.html.erb within layouts/tool (1.0ms)
1731
+ Completed 200 OK in 17ms (Views: 1.6ms | ActiveRecord: 3.8ms)
1732
+ Started POST "/social_networking/goals" for 127.0.0.1 at 2016-02-16 13:42:04 -0600
1733
+ Processing by SocialNetworking::GoalsController#create as HTML
1734
+ Parameters: {"description"=>"the end!", "isCompleted"=>false, "dueOn"=>"Apr 12 2016", "goal"=>{"description"=>"the end!"}}
1735
+ Participant Load (0.4ms) SELECT "participants".* FROM "participants" WHERE "participants"."email" = $1 LIMIT 1 [["email", "p1@example.com"]]
1736
+  (1.0ms) BEGIN
1737
+ Participant Load (0.6ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
1738
+ SQL (1.1ms) INSERT INTO "social_networking_goals" ("participant_id", "description", "due_on", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["participant_id", 700141617], ["description", "the end!"], ["due_on", "2016-04-12"], ["created_at", "2016-02-16 19:42:04.903228"], ["updated_at", "2016-02-16 19:42:04.903228"]]
1739
+  (0.5ms) COMMIT
1740
+  (0.2ms) BEGIN
1741
+ SQL (0.4ms) INSERT INTO "social_networking_shared_items" ("item_id", "item_type", "action_type", "participant_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["item_id", 1002298879], ["item_type", "SocialNetworking::Goal"], ["action_type", "Created"], ["participant_id", 700141617], ["created_at", "2016-02-16 19:42:04.908534"], ["updated_at", "2016-02-16 19:42:04.908534"]]
1742
+  (0.5ms) COMMIT
1743
+ SocialNetworking::Comment Load (0.3ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 1002298879], ["item_type", "SocialNetworking::Goal"]]
1744
+ Completed 200 OK in 14ms (Views: 0.3ms | ActiveRecord: 4.9ms)
1745
+  (0.3ms) ROLLBACK
1746
+  (0.2ms) BEGIN
1747
+ Started GET "/social_networking/goal_tool" for 127.0.0.1 at 2016-02-16 13:42:04 -0600
1748
+ Processing by SocialNetworking::GoalsController#tool as HTML
1749
+ Participant Load (0.4ms) SELECT "participants".* FROM "participants" WHERE "participants"."email" = $1 LIMIT 1 [["email", "p1@example.com"]]
1750
+ SocialNetworking::Goal Load (0.4ms) SELECT "social_networking_goals".* FROM "social_networking_goals" WHERE "social_networking_goals"."participant_id" = $1 [["participant_id", 700141617]]
1751
+ Participant Load (0.3ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
1752
+ SocialNetworking::Comment Load (0.3ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 576699391], ["item_type", "SocialNetworking::Goal"]]
1753
+ CACHE (0.0ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
1754
+ SocialNetworking::Comment Load (0.3ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 916373174], ["item_type", "SocialNetworking::Goal"]]
1755
+ CACHE (0.0ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
1756
+ SocialNetworking::Comment Load (0.3ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 717544784], ["item_type", "SocialNetworking::Goal"]]
1757
+ CACHE (0.0ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
1758
+ SocialNetworking::Comment Load (0.3ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 938656909], ["item_type", "SocialNetworking::Goal"]]
1759
+ CACHE (0.0ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
1760
+ SocialNetworking::Comment Load (0.3ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 401619065], ["item_type", "SocialNetworking::Goal"]]
1761
+ CACHE (0.0ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
1762
+ SocialNetworking::Comment Load (0.3ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 809335042], ["item_type", "SocialNetworking::Goal"]]
1763
+ CACHE (0.0ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
1764
+ SocialNetworking::Comment Load (0.3ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 614371357], ["item_type", "SocialNetworking::Goal"]]
1765
+ CACHE (0.0ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
1766
+ SocialNetworking::Comment Load (0.3ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 53334230], ["item_type", "SocialNetworking::Goal"]]
1767
+ CACHE (0.0ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
1768
+ SocialNetworking::Comment Load (0.3ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 1002298879], ["item_type", "SocialNetworking::Goal"]]
1769
+ CACHE (0.0ms) SELECT "participants".* FROM "participants" WHERE "participants"."email" = $1 LIMIT 1 [["email", "p1@example.com"]]
1770
+ Rendered /Users/ericcf/work/social_networking/app/views/social_networking/goals/tool.html.erb within layouts/tool (1.0ms)
1771
+ Completed 200 OK in 17ms (Views: 1.6ms | ActiveRecord: 3.8ms)
1772
+ Started POST "/social_networking/goals" for 127.0.0.1 at 2016-02-16 13:42:05 -0600
1773
+ Processing by SocialNetworking::GoalsController#create as HTML
1774
+ Parameters: {"description"=>"When should I finish this?", "isCompleted"=>false, "dueOn"=>"", "goal"=>{"description"=>"When should I finish this?"}}
1775
+ Participant Load (0.4ms) SELECT "participants".* FROM "participants" WHERE "participants"."email" = $1 LIMIT 1 [["email", "p1@example.com"]]
1776
+  (0.9ms) BEGIN
1777
+ Participant Load (0.6ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
1778
+ SQL (1.0ms) INSERT INTO "social_networking_goals" ("participant_id", "description", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["participant_id", 700141617], ["description", "When should I finish this?"], ["created_at", "2016-02-16 19:42:05.149757"], ["updated_at", "2016-02-16 19:42:05.149757"]]
1779
+  (0.4ms) COMMIT
1780
+  (0.2ms) BEGIN
1781
+ SQL (0.5ms) INSERT INTO "social_networking_shared_items" ("item_id", "item_type", "action_type", "participant_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["item_id", 1002298880], ["item_type", "SocialNetworking::Goal"], ["action_type", "Created"], ["participant_id", 700141617], ["created_at", "2016-02-16 19:42:05.154887"], ["updated_at", "2016-02-16 19:42:05.154887"]]
1782
+  (0.5ms) COMMIT
1783
+ SocialNetworking::Comment Load (0.3ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 1002298880], ["item_type", "SocialNetworking::Goal"]]
1784
+ Completed 200 OK in 14ms (Views: 0.2ms | ActiveRecord: 4.7ms)
1785
+  (0.3ms) ROLLBACK
1786
+  (0.1ms) BEGIN
1787
+ Started GET "/social_networking/goal_tool" for 127.0.0.1 at 2016-02-16 13:42:05 -0600
1788
+ Processing by SocialNetworking::GoalsController#tool as HTML
1789
+ Participant Load (0.3ms) SELECT "participants".* FROM "participants" WHERE "participants"."email" = $1 LIMIT 1 [["email", "p1@example.com"]]
1790
+ SocialNetworking::Goal Load (0.4ms) SELECT "social_networking_goals".* FROM "social_networking_goals" WHERE "social_networking_goals"."participant_id" = $1 [["participant_id", 700141617]]
1791
+ Participant Load (0.3ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
1792
+ SocialNetworking::Comment Load (0.3ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 576699391], ["item_type", "SocialNetworking::Goal"]]
1793
+ CACHE (0.0ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
1794
+ SocialNetworking::Comment Load (0.3ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 916373174], ["item_type", "SocialNetworking::Goal"]]
1795
+ CACHE (0.0ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
1796
+ SocialNetworking::Comment Load (0.3ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 717544784], ["item_type", "SocialNetworking::Goal"]]
1797
+ CACHE (0.0ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
1798
+ SocialNetworking::Comment Load (0.4ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 938656909], ["item_type", "SocialNetworking::Goal"]]
1799
+ CACHE (0.0ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
1800
+ SocialNetworking::Comment Load (0.3ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 401619065], ["item_type", "SocialNetworking::Goal"]]
1801
+ CACHE (0.0ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
1802
+ SocialNetworking::Comment Load (0.3ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 809335042], ["item_type", "SocialNetworking::Goal"]]
1803
+ CACHE (0.0ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
1804
+ SocialNetworking::Comment Load (0.3ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 614371357], ["item_type", "SocialNetworking::Goal"]]
1805
+ CACHE (0.0ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
1806
+ SocialNetworking::Comment Load (0.3ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 53334230], ["item_type", "SocialNetworking::Goal"]]
1807
+ CACHE (0.0ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
1808
+ SocialNetworking::Comment Load (0.3ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 1002298879], ["item_type", "SocialNetworking::Goal"]]
1809
+ CACHE (0.0ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
1810
+ SocialNetworking::Comment Load (0.3ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 1002298880], ["item_type", "SocialNetworking::Goal"]]
1811
+ CACHE (0.0ms) SELECT "participants".* FROM "participants" WHERE "participants"."email" = $1 LIMIT 1 [["email", "p1@example.com"]]
1812
+ Rendered /Users/ericcf/work/social_networking/app/views/social_networking/goals/tool.html.erb within layouts/tool (1.8ms)
1813
+ Completed 200 OK in 29ms (Views: 2.6ms | ActiveRecord: 4.2ms)
1814
+ Started POST "/social_networking/goals" for 127.0.0.1 at 2016-02-16 13:42:05 -0600
1815
+ Processing by SocialNetworking::GoalsController#create as HTML
1816
+ Parameters: {"description"=>"all of the things", "isCompleted"=>false, "dueOn"=>"Mar 01 2016", "goal"=>{"description"=>"all of the things"}}
1817
+ Participant Load (0.3ms) SELECT "participants".* FROM "participants" WHERE "participants"."email" = $1 LIMIT 1 [["email", "p1@example.com"]]
1818
+  (1.0ms) BEGIN
1819
+ Participant Load (0.6ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
1820
+ SQL (0.8ms) INSERT INTO "social_networking_goals" ("participant_id", "description", "due_on", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["participant_id", 700141617], ["description", "all of the things"], ["due_on", "2016-03-01"], ["created_at", "2016-02-16 19:42:05.505744"], ["updated_at", "2016-02-16 19:42:05.505744"]]
1821
+  (0.6ms) COMMIT
1822
+  (0.2ms) BEGIN
1823
+ SQL (0.5ms) INSERT INTO "social_networking_shared_items" ("item_id", "item_type", "action_type", "participant_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["item_id", 1002298881], ["item_type", "SocialNetworking::Goal"], ["action_type", "Created"], ["participant_id", 700141617], ["created_at", "2016-02-16 19:42:05.511494"], ["updated_at", "2016-02-16 19:42:05.511494"]]
1824
+  (0.4ms) COMMIT
1825
+ SocialNetworking::Comment Load (0.3ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 1002298881], ["item_type", "SocialNetworking::Goal"]]
1826
+ Completed 200 OK in 16ms (Views: 0.3ms | ActiveRecord: 4.8ms)
1827
+  (0.3ms) ROLLBACK
1828
+  (3.0ms) ALTER TABLE "activities" DISABLE TRIGGER ALL;ALTER TABLE "arms" DISABLE TRIGGER ALL;ALTER TABLE "social_networking_nudges" DISABLE TRIGGER ALL;ALTER TABLE "social_networking_profile_answers" DISABLE TRIGGER ALL;ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "social_networking_shared_items" DISABLE TRIGGER ALL;ALTER TABLE "social_networking_comments" DISABLE TRIGGER ALL;ALTER TABLE "social_networking_on_the_mind_statements" DISABLE TRIGGER ALL;ALTER TABLE "social_networking_goals" DISABLE TRIGGER ALL;ALTER TABLE "social_networking_profile_questions" DISABLE TRIGGER ALL;ALTER TABLE "social_networking_likes" DISABLE TRIGGER ALL;ALTER TABLE "participants" DISABLE TRIGGER ALL;ALTER TABLE "social_networking_profiles" DISABLE TRIGGER ALL
1829
+  (0.3ms) BEGIN
1830
+ Fixture Delete (0.7ms) DELETE FROM "participants"
1831
+ Fixture Insert (0.5ms) INSERT INTO "participants" ("study_id", "email", "phone_number", "contact_preference", "id") VALUES ('Social-11', 'p1@example.com', '16305150171', 'sms', 700141617)
1832
+ Fixture Insert (0.4ms) INSERT INTO "participants" ("study_id", "email", "phone_number", "contact_preference", "id") VALUES ('Social-22', 'p2@example.com', '16305150172', 'sms', 816972181)
1833
+ Fixture Insert (0.4ms) INSERT INTO "participants" ("study_id", "email", "phone_number", "contact_preference", "id") VALUES ('Social-33', 'p3@example.com', '16305150173', 'email', 129315074)
1834
+ Fixture Delete (0.5ms) DELETE FROM "social_networking_goals"
1835
+ Fixture Insert (0.5ms) INSERT INTO "social_networking_goals" ("description", "due_on", "created_at", "updated_at", "id", "participant_id") VALUES ('p1 alpha', '2016-02-16', '2016-02-16 19:42:05', '2016-02-16 19:42:05', 809335042, 700141617)
1836
+ Fixture Insert (0.4ms) INSERT INTO "social_networking_goals" ("description", "completed_at", "due_on", "created_at", "updated_at", "id", "participant_id") VALUES ('p1 beta', '2016-02-16 19:42:05.000000', '2016-02-16', '2016-02-16 19:42:05', '2016-02-16 19:42:05', 576699391, 700141617)
1837
+ Fixture Insert (0.4ms) INSERT INTO "social_networking_goals" ("description", "due_on", "created_at", "updated_at", "id", "participant_id") VALUES ('p1 gamma', '2016-02-16', '2016-02-16 19:42:05', '2016-02-16 19:42:05', 614371357, 700141617)
1838
+ Fixture Insert (0.3ms) INSERT INTO "social_networking_goals" ("description", "created_at", "updated_at", "id", "participant_id") VALUES ('run', '2016-02-16 19:42:05', '2016-02-16 19:42:05', 53334230, 700141617)
1839
+ Fixture Insert (0.3ms) INSERT INTO "social_networking_goals" ("description", "deleted_at", "due_on", "created_at", "updated_at", "id", "participant_id") VALUES ('p1 delta', '2016-02-16 19:42:05.000000', '2016-02-16', '2016-02-16 19:42:05', '2016-02-16 19:42:05', 916373174, 700141617)
1840
+ Fixture Insert (0.3ms) INSERT INTO "social_networking_goals" ("description", "deleted_at", "completed_at", "due_on", "created_at", "updated_at", "id", "participant_id") VALUES ('p1 omega', NULL, NULL, '2016-02-15', '2016-02-16 19:42:05', '2016-02-16 19:42:05', 717544784, 700141617)
1841
+ Fixture Insert (0.3ms) INSERT INTO "social_networking_goals" ("description", "deleted_at", "completed_at", "due_on", "created_at", "updated_at", "id", "participant_id") VALUES ('p1 zeta', NULL, NULL, '2016-02-14', '2016-02-16 19:42:05', '2016-02-16 19:42:05', 938656909, 700141617)
1842
+ Fixture Insert (0.3ms) INSERT INTO "social_networking_goals" ("description", "completed_at", "due_on", "created_at", "updated_at", "id", "participant_id") VALUES ('p1 epsilon', '2016-02-16 19:42:05.000000', '2016-02-16', '2016-02-16 19:42:05', '2016-02-16 19:42:05', 401619065, 700141617)
1843
+ Fixture Insert (0.3ms) INSERT INTO "social_networking_goals" ("description", "due_on", "created_at", "updated_at", "id", "participant_id") VALUES ('p2 alpha', '2016-02-16', '2016-02-16 19:42:05', '2016-02-16 19:42:05', 128166899, 816972181)
1844
+ Fixture Insert (0.3ms) INSERT INTO "social_networking_goals" ("description", "completed_at", "due_on", "created_at", "updated_at", "id", "participant_id") VALUES ('p2 beta', '2016-02-16 19:42:05.000000', '2016-02-16', '2016-02-16 19:42:05', '2016-02-16 19:42:05', 1002298878, 816972181)
1845
+ Fixture Insert (0.3ms) INSERT INTO "social_networking_goals" ("description", "due_on", "created_at", "updated_at", "id", "participant_id") VALUES ('p2 gamma', '2016-02-16', '2016-02-16 19:42:05', '2016-02-16 19:42:05', 318784238, 816972181)
1846
+ Fixture Insert (0.3ms) INSERT INTO "social_networking_goals" ("description", "deleted_at", "due_on", "created_at", "updated_at", "id", "participant_id") VALUES ('p2 delta', '2016-02-16 19:42:05.000000', '2016-02-16', '2016-02-16 19:42:05', '2016-02-16 19:42:05', 16804933, 816972181)
1847
+  (1.7ms) COMMIT
1848
+  (4.1ms) ALTER TABLE "activities" ENABLE TRIGGER ALL;ALTER TABLE "arms" ENABLE TRIGGER ALL;ALTER TABLE "social_networking_nudges" ENABLE TRIGGER ALL;ALTER TABLE "social_networking_profile_answers" ENABLE TRIGGER ALL;ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "social_networking_shared_items" ENABLE TRIGGER ALL;ALTER TABLE "social_networking_comments" ENABLE TRIGGER ALL;ALTER TABLE "social_networking_on_the_mind_statements" ENABLE TRIGGER ALL;ALTER TABLE "social_networking_goals" ENABLE TRIGGER ALL;ALTER TABLE "social_networking_profile_questions" ENABLE TRIGGER ALL;ALTER TABLE "social_networking_likes" ENABLE TRIGGER ALL;ALTER TABLE "participants" ENABLE TRIGGER ALL;ALTER TABLE "social_networking_profiles" ENABLE TRIGGER ALL
1849
+  (0.4ms) BEGIN
1850
+  (1.1ms) SELECT COUNT(*) FROM "social_networking_comments" WHERE ("social_networking_comments"."created_at" >= '2016-02-09 00:00:00.000000')
1851
+ Participant Load (0.9ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
1852
+ SocialNetworking::Goal Load (0.7ms) SELECT "social_networking_goals".* FROM "social_networking_goals" WHERE "social_networking_goals"."id" = $1 LIMIT 1 [["id", 128166899]]
1853
+  (0.4ms) SAVEPOINT active_record_1
1854
+ Participant Load (0.6ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
1855
+ SQL (1.1ms) INSERT INTO "social_networking_comments" ("participant_id", "item_id", "item_type", "text", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["participant_id", 700141617], ["item_id", 128166899], ["item_type", "SocialNetworking::Goal"], ["text", "love this test"], ["created_at", "2016-02-15 00:00:00.000000"], ["updated_at", "2016-02-16 19:42:05.644870"]]
1856
+  (0.3ms) RELEASE SAVEPOINT active_record_1
1857
+  (0.3ms) SAVEPOINT active_record_1
1858
+ Participant Load (0.4ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
1859
+ SQL (1.3ms) INSERT INTO "social_networking_comments" ("participant_id", "item_id", "item_type", "text", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["participant_id", 700141617], ["item_id", 128166899], ["item_type", "SocialNetworking::Goal"], ["text", "love this test"], ["created_at", "2016-02-08 00:00:00.000000"], ["updated_at", "2016-02-16 19:42:05.653229"]]
1860
+  (0.3ms) RELEASE SAVEPOINT active_record_1
1861
+  (0.5ms) SELECT COUNT(*) FROM "social_networking_comments" WHERE ("social_networking_comments"."created_at" >= '2016-02-09 00:00:00.000000')
1862
+  (0.2ms) ROLLBACK
1863
+  (0.2ms) BEGIN
1864
+  (1.0ms) SELECT COUNT(*) FROM "social_networking_comments" WHERE ("social_networking_comments"."created_at" >= '2016-02-16 00:00:00.000000' AND "social_networking_comments"."created_at" <= '2016-02-16 23:59:59.999999')
1865
+ Participant Load (0.9ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
1866
+ SocialNetworking::Goal Load (0.7ms) SELECT "social_networking_goals".* FROM "social_networking_goals" WHERE "social_networking_goals"."id" = $1 LIMIT 1 [["id", 128166899]]
1867
+  (0.3ms) SAVEPOINT active_record_1
1868
+ Participant Load (0.4ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
1869
+ SQL (0.8ms) INSERT INTO "social_networking_comments" ("participant_id", "item_id", "item_type", "text", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["participant_id", 700141617], ["item_id", 128166899], ["item_type", "SocialNetworking::Goal"], ["text", "love this test"], ["created_at", "2016-02-16 00:00:00.000000"], ["updated_at", "2016-02-16 19:42:05.669144"]]
1870
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1871
+  (0.8ms) SELECT COUNT(*) FROM "social_networking_comments" WHERE ("social_networking_comments"."created_at" >= '2016-02-16 00:00:00.000000' AND "social_networking_comments"."created_at" <= '2016-02-16 23:59:59.999999')
1872
+  (0.3ms) ROLLBACK
1873
+  (0.3ms) BEGIN
1874
+ Rendered /Users/ericcf/work/social_networking/app/views/social_networking/coach/patient_dashboards/tables/_goals.html.erb (1.7ms)
1875
+  (0.3ms) ROLLBACK
1876
+  (0.2ms) BEGIN
1877
+ Rendered /Users/ericcf/work/social_networking/app/views/social_networking/coach/patient_dashboards/tables/_goals.html.erb (1.9ms)
1878
+  (0.3ms) ROLLBACK
1879
+  (0.2ms) BEGIN
1880
+ Rendered /Users/ericcf/work/social_networking/app/views/social_networking/coach/patient_dashboards/tables/_goals.html.erb (2.5ms)
1881
+  (0.3ms) ROLLBACK
1882
+  (0.3ms) BEGIN
1883
+ Rendered /Users/ericcf/work/social_networking/app/views/social_networking/coach/patient_dashboards/tables/_goals.html.erb (3.5ms)
1884
+  (0.3ms) ROLLBACK
1885
+  (0.3ms) BEGIN
1886
+ Rendered /Users/ericcf/work/social_networking/app/views/social_networking/coach/patient_dashboards/tables/_goals.html.erb (2.0ms)
1887
+  (0.3ms) ROLLBACK
1888
+  (0.2ms) BEGIN
1889
+ Rendered /Users/ericcf/work/social_networking/app/views/social_networking/coach/patient_dashboards/tables/_goals.html.erb (1.7ms)
1890
+  (0.3ms) ROLLBACK
1891
+  (0.2ms) BEGIN
1892
+ Rendered /Users/ericcf/work/social_networking/app/views/social_networking/coach/patient_dashboards/tables/_goals.html.erb (1.7ms)
1893
+  (0.3ms) ROLLBACK
1894
+  (0.2ms) BEGIN
1895
+ Participant Load (0.3ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
1896
+ Participant Load (0.5ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 816972181]]
1897
+ SocialNetworking::Profile Load (1.0ms) SELECT "social_networking_profiles".* FROM "social_networking_profiles" WHERE "social_networking_profiles"."participant_id" = $1 LIMIT 1 [["participant_id", 700141617]]
1898
+ SocialNetworking::Profile Load (0.6ms) SELECT "social_networking_profiles".* FROM "social_networking_profiles" WHERE "social_networking_profiles"."participant_id" IS NULL
1899
+  (0.4ms) ROLLBACK
1900
+  (0.3ms) BEGIN
1901
+  (0.3ms) ROLLBACK
1902
+  (0.2ms) BEGIN
1903
+ Processing by SocialNetworking::NudgesController#create as HTML
1904
+ Completed 400 Bad Request in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1905
+  (0.3ms) ROLLBACK
1906
+  (0.2ms) BEGIN
1907
+ Processing by SocialNetworking::NudgesController#create as HTML
1908
+ Completed 200 OK in 5ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1909
+  (0.3ms) ROLLBACK
1910
+  (0.2ms) BEGIN
1911
+ Processing by SocialNetworking::NudgesController#create as HTML
1912
+ Completed 200 OK in 6ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1913
+  (0.4ms) ROLLBACK
1914
+  (0.2ms) BEGIN
1915
+ Rendered /Users/ericcf/work/social_networking/app/views/social_networking/goals/tool.html.erb (1.7ms)
1916
+  (0.3ms) ROLLBACK
1917
+  (0.2ms) BEGIN
1918
+ Participant Load (0.3ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
1919
+  (0.3ms) SAVEPOINT active_record_1
1920
+ Participant Load (0.4ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
1921
+ SQL (0.9ms) INSERT INTO "social_networking_on_the_mind_statements" ("participant_id", "description", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["participant_id", 700141617], ["description", "otms description"], ["created_at", "2016-02-16 19:42:06.156491"], ["updated_at", "2016-02-16 19:42:06.156491"]]
1922
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1923
+  (0.2ms) SAVEPOINT active_record_1
1924
+ SQL (0.4ms) INSERT INTO "social_networking_shared_items" ("item_id", "item_type", "participant_id", "action_type", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["item_id", 576803334], ["item_type", "SocialNetworking::OnTheMindStatement"], ["participant_id", 700141617], ["action_type", "Shared"], ["created_at", "2016-02-16 19:42:06.161208"], ["updated_at", "2016-02-16 19:42:06.161208"]]
1925
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1926
+ Participant Load (0.5ms) SELECT "participants"."id", "participants"."study_id" FROM "participants"
1927
+ SocialNetworking::SharedItem Load (0.6ms) SELECT "social_networking_shared_items".* FROM "social_networking_shared_items" WHERE "social_networking_shared_items"."participant_id" = $1 AND "social_networking_shared_items"."is_public" = 't' [["participant_id", 700141617]]
1928
+ SocialNetworking::SharedItem Load (0.5ms) SELECT "social_networking_shared_items".* FROM "social_networking_shared_items" WHERE "social_networking_shared_items"."participant_id" = $1 AND "social_networking_shared_items"."is_public" = 't' [["participant_id", 816972181]]
1929
+ SocialNetworking::SharedItem Load (0.5ms) SELECT "social_networking_shared_items".* FROM "social_networking_shared_items" WHERE "social_networking_shared_items"."participant_id" = $1 AND "social_networking_shared_items"."is_public" = 't' [["participant_id", 129315074]]
1930
+  (0.2ms) ROLLBACK
1931
+  (2.3ms) ALTER TABLE "activities" DISABLE TRIGGER ALL;ALTER TABLE "arms" DISABLE TRIGGER ALL;ALTER TABLE "social_networking_nudges" DISABLE TRIGGER ALL;ALTER TABLE "social_networking_profile_answers" DISABLE TRIGGER ALL;ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "social_networking_shared_items" DISABLE TRIGGER ALL;ALTER TABLE "social_networking_comments" DISABLE TRIGGER ALL;ALTER TABLE "social_networking_on_the_mind_statements" DISABLE TRIGGER ALL;ALTER TABLE "social_networking_goals" DISABLE TRIGGER ALL;ALTER TABLE "social_networking_profile_questions" DISABLE TRIGGER ALL;ALTER TABLE "social_networking_likes" DISABLE TRIGGER ALL;ALTER TABLE "participants" DISABLE TRIGGER ALL;ALTER TABLE "social_networking_profiles" DISABLE TRIGGER ALL
1932
+  (0.3ms) BEGIN
1933
+ Fixture Delete (0.6ms) DELETE FROM "social_networking_comments"
1934
+ Fixture Insert (0.4ms) INSERT INTO "social_networking_comments" ("text", "created_at", "updated_at", "id", "participant_id", "item_type", "item_id") VALUES ('i feel strongly about this', '2016-02-16 19:42:06', '2016-02-16 19:42:06', 318187876, 700141617, 'SocialNetworking::SharedItem', 809335042)
1935
+ Fixture Delete (0.8ms) DELETE FROM "social_networking_likes"
1936
+ Fixture Insert (0.4ms) INSERT INTO "social_networking_likes" ("created_at", "updated_at", "id", "participant_id", "item_type", "item_id") VALUES ('2016-02-16 19:42:06', '2016-02-16 19:42:06', 844093908, 700141617, 'SocialNetworking::SharedItem', 809335042)
1937
+ Fixture Delete (0.9ms) DELETE FROM "social_networking_nudges"
1938
+ Fixture Insert (0.6ms) INSERT INTO "social_networking_nudges" ("created_at", "updated_at", "id", "initiator_id", "recipient_id") VALUES ('2016-02-15 19:42:06.000000', '2016-02-16 19:42:06', 503297012, 700141617, 816972181)
1939
+ Fixture Insert (0.6ms) INSERT INTO "social_networking_nudges" ("created_at", "updated_at", "id", "initiator_id", "recipient_id") VALUES ('2016-02-16 19:42:06.000000', '2016-02-16 19:42:06', 366290861, 700141617, 816972181)
1940
+ Fixture Insert (0.7ms) INSERT INTO "social_networking_nudges" ("created_at", "updated_at", "id", "initiator_id", "recipient_id") VALUES ('2016-02-15 19:42:06.000000', '2016-02-16 19:42:06', 931788854, 816972181, 700141617)
1941
+ Fixture Insert (0.5ms) INSERT INTO "social_networking_nudges" ("created_at", "updated_at", "id", "initiator_id", "recipient_id") VALUES ('2016-02-16 19:42:06.000000', '2016-02-16 19:42:06', 316146702, 816972181, 700141617)
1942
+ Fixture Delete (1.2ms) DELETE FROM "social_networking_on_the_mind_statements"
1943
+ Fixture Insert (0.6ms) INSERT INTO "social_networking_on_the_mind_statements" ("description", "created_at", "updated_at", "id", "participant_id") VALUES ('it''s always sunny in Philadelphia', '2016-02-16 19:42:06', '2016-02-16 19:42:06', 576803333, 700141617)
1944
+ Fixture Insert (0.6ms) INSERT INTO "social_networking_on_the_mind_statements" ("description", "created_at", "updated_at", "id", "participant_id") VALUES ('what about Bob?', '2016-02-16 19:42:06', '2016-02-16 19:42:06', 369066228, 816972181)
1945
+ Fixture Delete (1.5ms) DELETE FROM "social_networking_profile_answers"
1946
+ Fixture Insert (0.5ms) INSERT INTO "social_networking_profile_answers" ("social_networking_profile_question_id", "order", "answer_text", "created_at", "updated_at", "id", "social_networking_profile_id") VALUES (1, 1, 'running', '2016-02-16 19:42:06', '2016-02-16 19:42:06', 465319974, 333620620)
1947
+ Fixture Insert (0.3ms) INSERT INTO "social_networking_profile_answers" ("social_networking_profile_question_id", "order", "answer_text", "created_at", "updated_at", "id", "social_networking_profile_id") VALUES (2, 2, 'green', '2016-02-16 19:42:06', '2016-02-16 19:42:06', 45443486, 333620620)
1948
+ Fixture Insert (0.3ms) INSERT INTO "social_networking_profile_answers" ("social_networking_profile_question_id", "order", "answer_text", "created_at", "updated_at", "id", "social_networking_profile_id") VALUES (2, 1, 'blue', '2016-02-16 19:42:06', '2016-02-16 19:42:06', 10484799, 183235640)
1949
+ Fixture Delete (0.6ms) DELETE FROM "social_networking_profile_questions"
1950
+ Fixture Insert (0.4ms) INSERT INTO "social_networking_profile_questions" ("question_text", "created_at", "updated_at", "id") VALUES ('What are your hobbies?', '2016-02-16 19:42:06', '2016-02-16 19:42:06', 781294868)
1951
+ Fixture Insert (0.3ms) INSERT INTO "social_networking_profile_questions" ("question_text", "created_at", "updated_at", "id") VALUES ('What is your favorite color?', '2016-02-16 19:42:06', '2016-02-16 19:42:06', 932760744)
1952
+ Fixture Insert (0.4ms) INSERT INTO "social_networking_profile_questions" ("question_text", "created_at", "updated_at", "id") VALUES ('Animal, vegetable or mineral?', '2016-02-16 19:42:06', '2016-02-16 19:42:06', 10484799)
1953
+ Fixture Delete (0.7ms) DELETE FROM "social_networking_profiles"
1954
+ Fixture Insert (0.4ms) INSERT INTO "social_networking_profiles" ("active", "created_at", "updated_at", "id", "participant_id") VALUES ('t', '2016-02-16 19:42:06', '2016-02-16 19:42:06', 183235640, 816972181)
1955
+ Fixture Delete (0.7ms) DELETE FROM "social_networking_shared_items"
1956
+ Fixture Insert (0.5ms) INSERT INTO "social_networking_shared_items" ("is_public", "created_at", "updated_at", "id", "item_type", "item_id") VALUES ('t', '2016-02-16 19:42:06', '2016-02-16 19:42:06', 809335042, 'SocialNetworking::Goal', 809335042)
1957
+  (0.5ms) COMMIT
1958
+  (2.3ms) ALTER TABLE "activities" ENABLE TRIGGER ALL;ALTER TABLE "arms" ENABLE TRIGGER ALL;ALTER TABLE "social_networking_nudges" ENABLE TRIGGER ALL;ALTER TABLE "social_networking_profile_answers" ENABLE TRIGGER ALL;ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "social_networking_shared_items" ENABLE TRIGGER ALL;ALTER TABLE "social_networking_comments" ENABLE TRIGGER ALL;ALTER TABLE "social_networking_on_the_mind_statements" ENABLE TRIGGER ALL;ALTER TABLE "social_networking_goals" ENABLE TRIGGER ALL;ALTER TABLE "social_networking_profile_questions" ENABLE TRIGGER ALL;ALTER TABLE "social_networking_likes" ENABLE TRIGGER ALL;ALTER TABLE "participants" ENABLE TRIGGER ALL;ALTER TABLE "social_networking_profiles" ENABLE TRIGGER ALL
1959
+  (0.2ms) BEGIN
1960
+ SocialNetworking::SharedItem Load (0.6ms) SELECT "social_networking_shared_items".* FROM "social_networking_shared_items"
1961
+  (0.3ms) SAVEPOINT active_record_1
1962
+ SQL (0.4ms) DELETE FROM "social_networking_shared_items" WHERE "social_networking_shared_items"."id" = $1 [["id", 809335042]]
1963
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1964
+ Participant Load (0.6ms) SELECT "participants"."id", "participants"."study_id" FROM "participants"
1965
+ SocialNetworking::SharedItem Load (0.4ms) SELECT "social_networking_shared_items".* FROM "social_networking_shared_items" WHERE "social_networking_shared_items"."participant_id" = $1 AND "social_networking_shared_items"."is_public" = 't' [["participant_id", 700141617]]
1966
+ SocialNetworking::SharedItem Load (0.4ms) SELECT "social_networking_shared_items".* FROM "social_networking_shared_items" WHERE "social_networking_shared_items"."participant_id" = $1 AND "social_networking_shared_items"."is_public" = 't' [["participant_id", 816972181]]
1967
+ SocialNetworking::SharedItem Load (0.4ms) SELECT "social_networking_shared_items".* FROM "social_networking_shared_items" WHERE "social_networking_shared_items"."participant_id" = $1 AND "social_networking_shared_items"."is_public" = 't' [["participant_id", 129315074]]
1968
+  (0.3ms) ROLLBACK
1969
+  (0.2ms) BEGIN
1970
+ SocialNetworking::Goal Load (0.6ms) SELECT "social_networking_goals".* FROM "social_networking_goals" WHERE "social_networking_goals"."id" = $1 LIMIT 1 [["id", 809335042]]
1971
+  (0.3ms) SAVEPOINT active_record_1
1972
+ SQL (0.6ms) INSERT INTO "social_networking_shared_items" ("item_id", "item_type", "action_type", "participant_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["item_id", 809335042], ["item_type", "SocialNetworking::Goal"], ["action_type", "Created"], ["participant_id", 700141617], ["created_at", "2016-02-16 19:42:06.278823"], ["updated_at", "2016-02-16 19:42:06.278823"]]
1973
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1974
+  (0.2ms) ROLLBACK
1975
+  (0.2ms) BEGIN
1976
+ Participant Load (0.4ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
1977
+  (0.2ms) SAVEPOINT active_record_1
1978
+ Participant Load (0.3ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
1979
+ SQL (0.8ms) INSERT INTO "social_networking_on_the_mind_statements" ("participant_id", "description", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["participant_id", 700141617], ["description", "otms description"], ["created_at", "2016-02-16 19:42:06.285810"], ["updated_at", "2016-02-16 19:42:06.285810"]]
1980
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1981
+  (0.2ms) SAVEPOINT active_record_1
1982
+ SQL (0.4ms) INSERT INTO "social_networking_shared_items" ("item_id", "item_type", "participant_id", "action_type", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["item_id", 576803334], ["item_type", "SocialNetworking::OnTheMindStatement"], ["participant_id", 700141617], ["action_type", "Shared"], ["created_at", "2016-02-16 19:42:06.290080"], ["updated_at", "2016-02-16 19:42:06.290080"]]
1983
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1984
+  (0.2ms) ROLLBACK
1985
+  (0.2ms) BEGIN
1986
+ Participant Load (0.6ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
1987
+ SocialNetworking::Nudge Load (0.9ms) SELECT "social_networking_nudges".* FROM "social_networking_nudges" ORDER BY "social_networking_nudges"."id" ASC LIMIT 1
1988
+ Participant Load (0.5ms) SELECT "participants"."id", "participants"."study_id" FROM "participants"
1989
+ SocialNetworking::Nudge Load (0.4ms) SELECT "social_networking_nudges".* FROM "social_networking_nudges" WHERE "social_networking_nudges"."initiator_id" = $1 [["initiator_id", 700141617]]
1990
+ Participant Load (0.4ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 816972181]]
1991
+ Participant Load (0.3ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 816972181]]
1992
+ SocialNetworking::Nudge Load (0.4ms) SELECT "social_networking_nudges".* FROM "social_networking_nudges" WHERE "social_networking_nudges"."initiator_id" = $1 [["initiator_id", 816972181]]
1993
+ Participant Load (0.4ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
1994
+ Participant Load (0.3ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
1995
+ SocialNetworking::Nudge Load (0.5ms) SELECT "social_networking_nudges".* FROM "social_networking_nudges" WHERE "social_networking_nudges"."initiator_id" = $1 [["initiator_id", 129315074]]
1996
+ Participant Load (0.4ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
1997
+  (0.3ms) ROLLBACK
1998
+  (0.2ms) BEGIN
1999
+ SocialNetworking::Nudge Load (0.6ms) SELECT "social_networking_nudges".* FROM "social_networking_nudges"
2000
+  (0.2ms) SAVEPOINT active_record_1
2001
+ SQL (0.4ms) DELETE FROM "social_networking_nudges" WHERE "social_networking_nudges"."id" = $1 [["id", 503297012]]
2002
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2003
+  (0.2ms) SAVEPOINT active_record_1
2004
+ SQL (0.4ms) DELETE FROM "social_networking_nudges" WHERE "social_networking_nudges"."id" = $1 [["id", 366290861]]
2005
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2006
+  (0.2ms) SAVEPOINT active_record_1
2007
+ SQL (0.5ms) DELETE FROM "social_networking_nudges" WHERE "social_networking_nudges"."id" = $1 [["id", 931788854]]
2008
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2009
+  (0.2ms) SAVEPOINT active_record_1
2010
+ SQL (0.6ms) DELETE FROM "social_networking_nudges" WHERE "social_networking_nudges"."id" = $1 [["id", 316146702]]
2011
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2012
+ Participant Load (0.4ms) SELECT "participants"."id", "participants"."study_id" FROM "participants"
2013
+ SocialNetworking::Nudge Load (0.4ms) SELECT "social_networking_nudges".* FROM "social_networking_nudges" WHERE "social_networking_nudges"."initiator_id" = $1 [["initiator_id", 700141617]]
2014
+ SocialNetworking::Nudge Load (0.4ms) SELECT "social_networking_nudges".* FROM "social_networking_nudges" WHERE "social_networking_nudges"."initiator_id" = $1 [["initiator_id", 816972181]]
2015
+ SocialNetworking::Nudge Load (0.4ms) SELECT "social_networking_nudges".* FROM "social_networking_nudges" WHERE "social_networking_nudges"."initiator_id" = $1 [["initiator_id", 129315074]]
2016
+  (0.2ms) ROLLBACK
2017
+  (0.2ms) BEGIN
2018
+  (0.3ms) ROLLBACK
2019
+  (0.2ms) BEGIN
2020
+ Rendered /Users/ericcf/work/social_networking/app/views/social_networking/coach/patient_dashboards/tables/_on_my_mind_statements.html.erb (2.0ms)
2021
+  (0.3ms) ROLLBACK
2022
+  (0.2ms) BEGIN
2023
+ Rendered /Users/ericcf/work/social_networking/app/views/social_networking/coach/patient_dashboards/tables/_on_my_mind_statements.html.erb (1.3ms)
2024
+  (0.3ms) ROLLBACK
2025
+  (0.2ms) BEGIN
2026
+ Processing by SocialNetworking::CommentsController#create as HTML
2027
+ Completed 200 OK in 5ms (Views: 0.3ms | ActiveRecord: 0.0ms)
2028
+  (0.3ms) ROLLBACK
2029
+  (0.2ms) BEGIN
2030
+ Processing by SocialNetworking::CommentsController#create as HTML
2031
+ Completed 400 Bad Request in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2032
+  (0.3ms) ROLLBACK
2033
+  (0.2ms) BEGIN
2034
+ Processing by SocialNetworking::CommentsController#create as HTML
2035
+ Completed 200 OK in 7ms (Views: 0.6ms | ActiveRecord: 0.0ms)
2036
+  (0.7ms) ROLLBACK
2037
+  (0.2ms) BEGIN
2038
+ Processing by SocialNetworking::CommentsController#create as HTML
2039
+ Completed 200 OK in 5ms (Views: 0.4ms | ActiveRecord: 0.0ms)
2040
+  (0.3ms) ROLLBACK
2041
+  (0.2ms) BEGIN
2042
+  (0.3ms) ROLLBACK
2043
+  (0.2ms) BEGIN
2044
+  (0.3ms) ROLLBACK
2045
+  (0.2ms) BEGIN
2046
+  (0.2ms) ROLLBACK
2047
+  (0.2ms) BEGIN
2048
+  (0.6ms) SELECT COUNT(*) FROM "social_networking_nudges" WHERE ("social_networking_nudges"."created_at" >= '2016-02-09 00:00:00.000000')
2049
+ Participant Load (0.3ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
2050
+ Participant Load (0.3ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 816972181]]
2051
+  (0.3ms) SAVEPOINT active_record_1
2052
+ Participant Load (0.3ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
2053
+ Participant Load (0.3ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 816972181]]
2054
+ SQL (1.3ms) INSERT INTO "social_networking_nudges" ("initiator_id", "recipient_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["initiator_id", 700141617], ["recipient_id", 816972181], ["created_at", "2016-02-15 00:00:00.000000"], ["updated_at", "2016-02-16 19:42:06.510208"]]
2055
+  (0.4ms) RELEASE SAVEPOINT active_record_1
2056
+  (0.2ms) SAVEPOINT active_record_1
2057
+ Participant Load (0.3ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
2058
+ Participant Load (0.3ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 816972181]]
2059
+ SQL (0.8ms) INSERT INTO "social_networking_nudges" ("initiator_id", "recipient_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["initiator_id", 700141617], ["recipient_id", 816972181], ["created_at", "2016-02-08 00:00:00.000000"], ["updated_at", "2016-02-16 19:42:06.517827"]]
2060
+  (0.3ms) RELEASE SAVEPOINT active_record_1
2061
+  (0.5ms) SELECT COUNT(*) FROM "social_networking_nudges" WHERE ("social_networking_nudges"."created_at" >= '2016-02-09 00:00:00.000000')
2062
+  (0.3ms) ROLLBACK
2063
+  (0.2ms) BEGIN
2064
+  (0.7ms) SELECT COUNT(*) FROM "social_networking_nudges" WHERE ("social_networking_nudges"."created_at" >= '2016-02-16 00:00:00.000000' AND "social_networking_nudges"."created_at" <= '2016-02-16 23:59:59.999999')
2065
+ Participant Load (0.7ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
2066
+ Participant Load (0.4ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 816972181]]
2067
+  (0.3ms) SAVEPOINT active_record_1
2068
+ Participant Load (0.6ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
2069
+ Participant Load (0.5ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 816972181]]
2070
+ SQL (4.1ms) INSERT INTO "social_networking_nudges" ("initiator_id", "recipient_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["initiator_id", 700141617], ["recipient_id", 816972181], ["created_at", "2016-02-16 00:00:00.000000"], ["updated_at", "2016-02-16 19:42:06.532872"]]
2071
+  (1.0ms) RELEASE SAVEPOINT active_record_1
2072
+  (1.4ms) SELECT COUNT(*) FROM "social_networking_nudges" WHERE ("social_networking_nudges"."created_at" >= '2016-02-16 00:00:00.000000' AND "social_networking_nudges"."created_at" <= '2016-02-16 23:59:59.999999')
2073
+  (0.4ms) ROLLBACK
2074
+  (0.3ms) BEGIN
2075
+  (0.8ms) SELECT COUNT(*) FROM "social_networking_on_the_mind_statements" WHERE (created_at >= '2016-02-09 00:00:00.000000')
2076
+ Participant Load (0.3ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
2077
+  (0.3ms) SAVEPOINT active_record_1
2078
+ Participant Load (0.3ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
2079
+ SQL (0.8ms) INSERT INTO "social_networking_on_the_mind_statements" ("participant_id", "description", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["participant_id", 700141617], ["description", "I'm writing tests."], ["created_at", "2016-02-15 00:00:00.000000"], ["updated_at", "2016-02-16 19:42:06.553367"]]
2080
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2081
+  (0.2ms) SAVEPOINT active_record_1
2082
+ Participant Load (0.3ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
2083
+ SQL (0.6ms) INSERT INTO "social_networking_on_the_mind_statements" ("participant_id", "description", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["participant_id", 700141617], ["description", "I'm writing tests."], ["created_at", "2016-02-08 00:00:00.000000"], ["updated_at", "2016-02-16 19:42:06.558048"]]
2084
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2085
+  (0.6ms) SELECT COUNT(*) FROM "social_networking_on_the_mind_statements" WHERE (created_at >= '2016-02-09 00:00:00.000000')
2086
+  (0.2ms) ROLLBACK
2087
+  (0.2ms) BEGIN
2088
+ Participant Load (0.3ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
2089
+  (0.2ms) SAVEPOINT active_record_1
2090
+ Participant Load (0.3ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
2091
+ SQL (0.7ms) INSERT INTO "social_networking_on_the_mind_statements" ("participant_id", "description", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["participant_id", 700141617], ["description", "I'm writing tests."], ["created_at", "2016-02-15 00:00:00.000000"], ["updated_at", "2016-02-16 19:42:06.566298"]]
2092
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2093
+  (0.2ms) ROLLBACK
2094
+  (0.2ms) BEGIN
2095
+  (0.6ms) SELECT COUNT(*) FROM "social_networking_on_the_mind_statements" WHERE (created_at <= '2016-02-16 23:59:59.999999' AND created_at >= '2016-02-16 00:00:00.000000')
2096
+ Participant Load (0.3ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
2097
+  (0.3ms) SAVEPOINT active_record_1
2098
+ Participant Load (0.3ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
2099
+ SQL (0.6ms) INSERT INTO "social_networking_on_the_mind_statements" ("participant_id", "description", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["participant_id", 700141617], ["description", "I'm writing tests."], ["created_at", "2016-02-16 00:00:00.000000"], ["updated_at", "2016-02-16 19:42:06.574444"]]
2100
+  (0.6ms) RELEASE SAVEPOINT active_record_1
2101
+  (0.7ms) SELECT COUNT(*) FROM "social_networking_on_the_mind_statements" WHERE (created_at <= '2016-02-16 23:59:59.999999' AND created_at >= '2016-02-16 00:00:00.000000')
2102
+  (0.3ms) ROLLBACK
2103
+  (0.3ms) BEGIN
2104
+ SocialNetworking::OnTheMindStatement Load (0.4ms) SELECT "social_networking_on_the_mind_statements".* FROM "social_networking_on_the_mind_statements" WHERE "social_networking_on_the_mind_statements"."id" = $1 LIMIT 1 [["id", 576803333]]
2105
+ Participant Load (0.4ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 816972181]]
2106
+  (0.3ms) SAVEPOINT active_record_1
2107
+ SocialNetworking::OnTheMindStatement Load (0.5ms) SELECT "social_networking_on_the_mind_statements".* FROM "social_networking_on_the_mind_statements" WHERE "social_networking_on_the_mind_statements"."id" = $1 LIMIT 1 [["id", 576803333]]
2108
+ SQL (0.8ms) INSERT INTO "social_networking_comments" ("participant_id", "text", "item_id", "item_type", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["participant_id", 816972181], ["text", "foo"], ["item_id", 576803333], ["item_type", "SocialNetworking::OnTheMindStatement"], ["created_at", "2016-02-16 19:42:06.590253"], ["updated_at", "2016-02-16 19:42:06.590253"]]
2109
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2110
+  (0.5ms) SELECT COUNT(*) FROM "social_networking_comments" WHERE "social_networking_comments"."participant_id" = $1 [["participant_id", 816972181]]
2111
+  (0.3ms) SAVEPOINT active_record_1
2112
+ SocialNetworking::Comment Load (0.8ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 576803333], ["item_type", "SocialNetworking::OnTheMindStatement"]]
2113
+ SQL (0.6ms) DELETE FROM "social_networking_comments" WHERE "social_networking_comments"."id" = $1 [["id", 318187877]]
2114
+ SocialNetworking::Like Load (0.7ms) SELECT "social_networking_likes".* FROM "social_networking_likes" WHERE "social_networking_likes"."item_id" = $1 AND "social_networking_likes"."item_type" = $2 [["item_id", 576803333], ["item_type", "SocialNetworking::OnTheMindStatement"]]
2115
+ SQL (0.6ms) DELETE FROM "social_networking_on_the_mind_statements" WHERE "social_networking_on_the_mind_statements"."id" = $1 [["id", 576803333]]
2116
+  (0.3ms) RELEASE SAVEPOINT active_record_1
2117
+  (0.6ms) SELECT COUNT(*) FROM "social_networking_comments" WHERE "social_networking_comments"."participant_id" = $1 [["participant_id", 816972181]]
2118
+  (0.3ms) ROLLBACK
2119
+  (0.2ms) BEGIN
2120
+ SocialNetworking::OnTheMindStatement Load (0.5ms) SELECT "social_networking_on_the_mind_statements".* FROM "social_networking_on_the_mind_statements" WHERE "social_networking_on_the_mind_statements"."id" = $1 LIMIT 1 [["id", 576803333]]
2121
+ Participant Load (0.3ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 816972181]]
2122
+  (0.2ms) SAVEPOINT active_record_1
2123
+ SocialNetworking::OnTheMindStatement Load (0.5ms) SELECT "social_networking_on_the_mind_statements".* FROM "social_networking_on_the_mind_statements" WHERE "social_networking_on_the_mind_statements"."id" = $1 LIMIT 1 [["id", 576803333]]
2124
+ SocialNetworking::Like Exists (0.8ms) SELECT 1 AS one FROM "social_networking_likes" WHERE ("social_networking_likes"."item_id" = 576803333 AND "social_networking_likes"."item_type" = 'SocialNetworking::OnTheMindStatement' AND "social_networking_likes"."participant_id" = 816972181) LIMIT 1
2125
+ SQL (1.0ms) INSERT INTO "social_networking_likes" ("participant_id", "item_id", "item_type", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["participant_id", 816972181], ["item_id", 576803333], ["item_type", "SocialNetworking::OnTheMindStatement"], ["created_at", "2016-02-16 19:42:06.621594"], ["updated_at", "2016-02-16 19:42:06.621594"]]
2126
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2127
+  (0.4ms) SELECT COUNT(*) FROM "social_networking_likes" WHERE "social_networking_likes"."participant_id" = $1 [["participant_id", 816972181]]
2128
+  (0.2ms) SAVEPOINT active_record_1
2129
+ SocialNetworking::Comment Load (0.8ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 576803333], ["item_type", "SocialNetworking::OnTheMindStatement"]]
2130
+ SocialNetworking::Like Load (0.4ms) SELECT "social_networking_likes".* FROM "social_networking_likes" WHERE "social_networking_likes"."item_id" = $1 AND "social_networking_likes"."item_type" = $2 [["item_id", 576803333], ["item_type", "SocialNetworking::OnTheMindStatement"]]
2131
+ SQL (0.4ms) DELETE FROM "social_networking_likes" WHERE "social_networking_likes"."id" = $1 [["id", 844093909]]
2132
+ SQL (0.4ms) DELETE FROM "social_networking_on_the_mind_statements" WHERE "social_networking_on_the_mind_statements"."id" = $1 [["id", 576803333]]
2133
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2134
+  (0.4ms) SELECT COUNT(*) FROM "social_networking_likes" WHERE "social_networking_likes"."participant_id" = $1 [["participant_id", 816972181]]
2135
+  (0.3ms) ROLLBACK
2136
+  (0.2ms) BEGIN
2137
+ Rendered /Users/ericcf/work/social_networking/app/views/social_networking/mailer/notify.html.erb (0.6ms)
2138
+
2139
+ SocialNetworking::Mailer#notify: processed outbound mail in 246.0ms
2140
+
2141
+ Sent mail to obama@ex.co (9.7ms)
2142
+ Date: Tue, 16 Feb 2016 13:42:06 -0600
2143
+ From: moodtech-no-reply@northwestern.edu
2144
+ To: obama@ex.co
2145
+ Message-ID: <56c37b8ed9db1_109b63ff99d860200454ec@dhcp-10-102-150-242.wireless.northwestern.private.mail>
2146
+ Subject: bar
2147
+ Mime-Version: 1.0
2148
+ Content-Type: text/html;
2149
+ charset=UTF-8
2150
+ Content-Transfer-Encoding: 7bit
2151
+
2152
+ <!DOCTYPE html>
2153
+ <html>
2154
+ <head>
2155
+ <meta content='text/html; charset=UTF-8' http-equiv='Content-Type' />
2156
+ </head>
2157
+ <body>
2158
+ <p>
2159
+ foo
2160
+ </p>
2161
+ </body>
2162
+ </html>
2163
+  (0.3ms) ROLLBACK
2164
+  (0.3ms) BEGIN
2165
+  (0.5ms) SELECT COUNT(*) FROM "social_networking_shared_items"
2166
+ Participant Load (0.3ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
2167
+  (0.3ms) SAVEPOINT active_record_1
2168
+ SocialNetworking::Profile Exists (0.7ms) SELECT 1 AS one FROM "social_networking_profiles" WHERE "social_networking_profiles"."participant_id" = 700141617 LIMIT 1
2169
+ SQL (0.7ms) INSERT INTO "social_networking_profiles" ("participant_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["participant_id", 700141617], ["created_at", "2016-02-16 19:42:06.905647"], ["updated_at", "2016-02-16 19:42:06.905647"]]
2170
+ SQL (0.5ms) INSERT INTO "social_networking_shared_items" ("item_id", "item_type", "action_type", "participant_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["item_id", 183235641], ["item_type", "SocialNetworking::Profile"], ["action_type", "Shared"], ["participant_id", 700141617], ["created_at", "2016-02-16 19:42:06.909207"], ["updated_at", "2016-02-16 19:42:06.909207"]]
2171
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2172
+  (0.4ms) SELECT COUNT(*) FROM "social_networking_shared_items"
2173
+  (0.2ms) ROLLBACK
2174
+  (0.2ms) BEGIN
2175
+ Participant Load (0.4ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
2176
+  (0.3ms) SAVEPOINT active_record_1
2177
+ SocialNetworking::Profile Exists (0.7ms) SELECT 1 AS one FROM "social_networking_profiles" WHERE "social_networking_profiles"."participant_id" = 700141617 LIMIT 1
2178
+ SQL (0.7ms) INSERT INTO "social_networking_profiles" ("participant_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["participant_id", 700141617], ["created_at", "2016-02-16 19:42:06.919573"], ["updated_at", "2016-02-16 19:42:06.919573"]]
2179
+ SQL (0.5ms) INSERT INTO "social_networking_shared_items" ("item_id", "item_type", "action_type", "participant_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["item_id", 183235642], ["item_type", "SocialNetworking::Profile"], ["action_type", "Shared"], ["participant_id", 700141617], ["created_at", "2016-02-16 19:42:06.922945"], ["updated_at", "2016-02-16 19:42:06.922945"]]
2180
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2181
+  (0.2ms) ROLLBACK
2182
+  (0.2ms) BEGIN
2183
+ Participant Load (0.3ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
2184
+  (0.3ms) SAVEPOINT active_record_1
2185
+ SocialNetworking::Profile Exists (0.5ms) SELECT 1 AS one FROM "social_networking_profiles" WHERE "social_networking_profiles"."participant_id" = 700141617 LIMIT 1
2186
+ SQL (0.7ms) INSERT INTO "social_networking_profiles" ("participant_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["participant_id", 700141617], ["created_at", "2016-02-16 19:42:06.931280"], ["updated_at", "2016-02-16 19:42:06.931280"]]
2187
+ SQL (0.6ms) INSERT INTO "social_networking_shared_items" ("item_id", "item_type", "action_type", "participant_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["item_id", 183235643], ["item_type", "SocialNetworking::Profile"], ["action_type", "Shared"], ["participant_id", 700141617], ["created_at", "2016-02-16 19:42:06.934877"], ["updated_at", "2016-02-16 19:42:06.934877"]]
2188
+  (0.3ms) RELEASE SAVEPOINT active_record_1
2189
+  (0.2ms) ROLLBACK
2190
+  (0.2ms) BEGIN
2191
+ SocialNetworking::Profile Load (0.5ms) SELECT "social_networking_profiles".* FROM "social_networking_profiles" WHERE "social_networking_profiles"."id" = $1 LIMIT 1 [["id", 183235640]]
2192
+ SocialNetworking::ProfileAnswer Exists (0.5ms) SELECT 1 AS one FROM "social_networking_profile_answers" WHERE "social_networking_profile_answers"."social_networking_profile_id" = $1 LIMIT 1 [["social_networking_profile_id", 183235640]]
2193
+  (0.3ms) ROLLBACK
2194
+  (0.2ms) BEGIN
2195
+ Participant Load (0.4ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
2196
+  (0.3ms) SAVEPOINT active_record_1
2197
+ SocialNetworking::Profile Exists (0.7ms) SELECT 1 AS one FROM "social_networking_profiles" WHERE "social_networking_profiles"."participant_id" = 700141617 LIMIT 1
2198
+ SQL (0.8ms) INSERT INTO "social_networking_profiles" ("participant_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["participant_id", 700141617], ["created_at", "2016-02-16 19:42:06.952461"], ["updated_at", "2016-02-16 19:42:06.952461"]]
2199
+ SQL (0.6ms) INSERT INTO "social_networking_shared_items" ("item_id", "item_type", "action_type", "participant_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["item_id", 183235644], ["item_type", "SocialNetworking::Profile"], ["action_type", "Shared"], ["participant_id", 700141617], ["created_at", "2016-02-16 19:42:06.956391"], ["updated_at", "2016-02-16 19:42:06.956391"]]
2200
+  (0.4ms) RELEASE SAVEPOINT active_record_1
2201
+ SocialNetworking::ProfileAnswer Exists (1.0ms) SELECT 1 AS one FROM "social_networking_profile_answers" WHERE "social_networking_profile_answers"."social_networking_profile_id" = $1 LIMIT 1 [["social_networking_profile_id", 183235644]]
2202
+  (0.4ms) ROLLBACK
2203
+  (0.3ms) BEGIN
2204
+ Rendered /Users/ericcf/work/social_networking/app/views/social_networking/coach/patient_dashboards/tables/nudges/_initiator_nudges.html.erb (1.4ms)
2205
+  (0.5ms) ROLLBACK
2206
+  (0.3ms) BEGIN
2207
+ Rendered /Users/ericcf/work/social_networking/app/views/social_networking/coach/patient_dashboards/tables/nudges/_initiator_nudges.html.erb (1.5ms)
2208
+  (0.5ms) ROLLBACK
2209
+  (0.3ms) BEGIN
2210
+ Rendered /Users/ericcf/work/social_networking/app/views/social_networking/coach/patient_dashboards/tables/nudges/_initiator_nudges.html.erb (1.6ms)
2211
+  (0.5ms) ROLLBACK
2212
+  (0.3ms) BEGIN
2213
+ Participant Load (0.7ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
2214
+  (0.3ms) SAVEPOINT active_record_1
2215
+  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1
2216
+  (0.3ms) ROLLBACK
2217
+  (0.2ms) BEGIN
2218
+  (1.0ms) SELECT COUNT(*) FROM "social_networking_goals" WHERE ("social_networking_goals"."created_at" >= '2016-02-16 00:00:00.000000' AND "social_networking_goals"."created_at" <= '2016-02-16 23:59:59.999999')
2219
+ Participant Load (0.4ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
2220
+  (0.4ms) SAVEPOINT active_record_1
2221
+ Participant Load (0.4ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
2222
+ SQL (1.0ms) INSERT INTO "social_networking_goals" ("participant_id", "description", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["participant_id", 700141617], ["description", "Write a test that passes."], ["created_at", "2016-02-16 00:00:00.000000"], ["updated_at", "2016-02-16 19:42:07.206791"]]
2223
+  (0.4ms) RELEASE SAVEPOINT active_record_1
2224
+  (0.8ms) SELECT COUNT(*) FROM "social_networking_goals" WHERE ("social_networking_goals"."created_at" >= '2016-02-16 00:00:00.000000' AND "social_networking_goals"."created_at" <= '2016-02-16 23:59:59.999999')
2225
+  (0.4ms) ROLLBACK
2226
+  (0.3ms) BEGIN
2227
+  (0.8ms) SELECT COUNT(*) FROM "social_networking_goals" WHERE ("social_networking_goals"."created_at" >= '2016-02-09 00:00:00.000000')
2228
+ Participant Load (0.4ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
2229
+  (0.4ms) SAVEPOINT active_record_1
2230
+ Participant Load (0.4ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
2231
+ SQL (3.5ms) INSERT INTO "social_networking_goals" ("participant_id", "description", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["participant_id", 700141617], ["description", "Write a test that passes."], ["created_at", "2016-02-15 00:00:00.000000"], ["updated_at", "2016-02-16 19:42:07.223069"]]
2232
+  (4.5ms) RELEASE SAVEPOINT active_record_1
2233
+  (0.8ms) SAVEPOINT active_record_1
2234
+ Participant Load (0.5ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
2235
+ SQL (1.4ms) INSERT INTO "social_networking_goals" ("participant_id", "description", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["participant_id", 700141617], ["description", "Write a test that passes."], ["created_at", "2016-02-08 00:00:00.000000"], ["updated_at", "2016-02-16 19:42:07.238625"]]
2236
+  (0.4ms) RELEASE SAVEPOINT active_record_1
2237
+  (1.0ms) SELECT COUNT(*) FROM "social_networking_goals" WHERE ("social_networking_goals"."created_at" >= '2016-02-09 00:00:00.000000')
2238
+  (0.5ms) ROLLBACK
2239
+  (0.2ms) BEGIN
2240
+  (0.3ms) SAVEPOINT active_record_1
2241
+  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1
2242
+  (0.3ms) ROLLBACK
2243
+  (0.2ms) BEGIN
2244
+  (1.0ms) SELECT COUNT(*) FROM "social_networking_goals" WHERE "social_networking_goals"."deleted_at" IS NULL AND "social_networking_goals"."completed_at" IS NULL AND ("social_networking_goals"."due_on" < '2016-02-16') AND ("social_networking_goals"."due_on" >= '2016-02-15')
2245
+ SocialNetworking::Goal Load (0.7ms) SELECT "social_networking_goals".* FROM "social_networking_goals" WHERE "social_networking_goals"."description" = $1 LIMIT 1 [["description", "p1 omega"]]
2246
+ SQL (0.6ms) DELETE FROM "social_networking_goals" WHERE "social_networking_goals"."id" = $1 [["id", 717544784]]
2247
+  (0.8ms) SELECT COUNT(*) FROM "social_networking_goals" WHERE "social_networking_goals"."deleted_at" IS NULL AND "social_networking_goals"."completed_at" IS NULL AND ("social_networking_goals"."due_on" < '2016-02-16') AND ("social_networking_goals"."due_on" >= '2016-02-15')
2248
+  (0.3ms) ROLLBACK
2249
+  (0.2ms) BEGIN
2250
+  (0.9ms) SELECT COUNT(*) FROM "social_networking_goals" WHERE "social_networking_goals"."deleted_at" IS NULL AND "social_networking_goals"."completed_at" IS NULL AND ("social_networking_goals"."due_on" < '2016-02-16') AND ("social_networking_goals"."due_on" >= '2016-02-15')
2251
+  (0.2ms) ROLLBACK
2252
+  (0.2ms) BEGIN
2253
+ Participant Load (0.3ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
2254
+  (0.3ms) SAVEPOINT active_record_1
2255
+  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1
2256
+  (0.2ms) ROLLBACK
2257
+  (0.2ms) BEGIN
2258
+ Participant Load (0.3ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
2259
+  (0.2ms) SAVEPOINT active_record_1
2260
+ SQL (0.8ms) INSERT INTO "social_networking_goals" ("participant_id", "description", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["participant_id", 700141617], ["description", "DESCription"], ["created_at", "2016-02-16 19:42:07.275701"], ["updated_at", "2016-02-16 19:42:07.275701"]]
2261
+  (0.3ms) RELEASE SAVEPOINT active_record_1
2262
+  (0.3ms) ROLLBACK
2263
+  (0.2ms) BEGIN
2264
+ Participant Load (0.4ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
2265
+  (0.3ms) SAVEPOINT active_record_1
2266
+ SQL (0.7ms) INSERT INTO "social_networking_goals" ("participant_id", "description", "due_on", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["participant_id", 700141617], ["description", "DESCription"], ["due_on", "2016-02-17"], ["created_at", "2016-02-16 19:42:07.284225"], ["updated_at", "2016-02-16 19:42:07.284225"]]
2267
+  (0.3ms) RELEASE SAVEPOINT active_record_1
2268
+  (0.3ms) ROLLBACK
2269
+  (0.2ms) BEGIN
2270
+ Participant Load (0.3ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
2271
+  (0.3ms) SAVEPOINT active_record_1
2272
+ SQL (0.6ms) INSERT INTO "social_networking_goals" ("participant_id", "description", "due_on", "completed_at", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["participant_id", 700141617], ["description", "DESCription"], ["due_on", "2016-02-16"], ["completed_at", "2016-02-14 00:00:00.000000"], ["created_at", "2016-02-16 19:42:07.292137"], ["updated_at", "2016-02-16 19:42:07.292137"]]
2273
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2274
+  (0.2ms) ROLLBACK
2275
+  (0.2ms) BEGIN
2276
+ Participant Load (0.3ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
2277
+  (0.3ms) SAVEPOINT active_record_1
2278
+ SQL (0.9ms) INSERT INTO "social_networking_goals" ("participant_id", "description", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["participant_id", 700141617], ["description", "foo"], ["created_at", "2016-02-16 19:42:07.299104"], ["updated_at", "2016-02-16 19:42:07.299104"]]
2279
+  (0.3ms) RELEASE SAVEPOINT active_record_1
2280
+  (0.3ms) ROLLBACK
2281
+  (0.2ms) BEGIN
2282
+ Participant Load (0.6ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
2283
+  (0.4ms) SAVEPOINT active_record_1
2284
+ SQL (1.1ms) INSERT INTO "social_networking_goals" ("participant_id", "description", "due_on", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["participant_id", 700141617], ["description", "foo"], ["due_on", "2016-02-16"], ["created_at", "2016-02-16 19:42:07.308523"], ["updated_at", "2016-02-16 19:42:07.308523"]]
2285
+  (0.3ms) RELEASE SAVEPOINT active_record_1
2286
+  (0.3ms) ROLLBACK
2287
+  (0.2ms) BEGIN
2288
+ SocialNetworking::ProfileAnswer Load (0.5ms) SELECT "social_networking_profile_answers".* FROM "social_networking_profile_answers" WHERE "social_networking_profile_answers"."id" = $1 LIMIT 1 [["id", 465319974]]
2289
+ SocialNetworking::Profile Load (0.6ms) SELECT "social_networking_profiles".* FROM "social_networking_profiles" WHERE "social_networking_profiles"."id" = $1 LIMIT 1 [["id", 333620620]]
2290
+ SocialNetworking::ProfileQuestion Load (0.6ms) SELECT "social_networking_profile_questions".* FROM "social_networking_profile_questions" WHERE "social_networking_profile_questions"."id" = $1 LIMIT 1 [["id", 1]]
2291
+ SocialNetworking::ProfileAnswer Exists (0.6ms) SELECT 1 AS one FROM "social_networking_profile_answers" WHERE ("social_networking_profile_answers"."social_networking_profile_question_id" = 1 AND "social_networking_profile_answers"."social_networking_profile_id" = 333620620) LIMIT 1
2292
+  (0.3ms) ROLLBACK
2293
+  (0.2ms) BEGIN
2294
+ Rendered /Users/ericcf/work/social_networking/app/views/social_networking/coach/patient_dashboards/tables/_comments.html.erb (2.2ms)
2295
+  (0.3ms) ROLLBACK
2296
+  (0.2ms) BEGIN
2297
+ Rendered /Users/ericcf/work/social_networking/app/views/social_networking/coach/patient_dashboards/tables/_comments.html.erb (3.1ms)
2298
+  (0.3ms) ROLLBACK
2299
+  (0.3ms) BEGIN
2300
+  (0.4ms) ROLLBACK
2301
+  (0.3ms) BEGIN
2302
+ Rendered /Users/ericcf/work/social_networking/app/views/social_networking/coach/patient_dashboards/tables/_likes.html.erb (2.1ms)
2303
+  (1.5ms) ROLLBACK
2304
+  (0.3ms) BEGIN
2305
+ Participant Load (0.4ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
2306
+ SocialNetworking::Goal Load (0.8ms) SELECT "social_networking_goals".* FROM "social_networking_goals" ORDER BY "social_networking_goals"."id" ASC LIMIT 1
2307
+ Participant Load (0.6ms) SELECT "participants"."id", "participants"."study_id" FROM "participants"
2308
+ SocialNetworking::Goal Load (0.7ms) SELECT "social_networking_goals".* FROM "social_networking_goals" WHERE "social_networking_goals"."participant_id" = $1 [["participant_id", 700141617]]
2309
+ SocialNetworking::Goal Load (0.7ms) SELECT "social_networking_goals".* FROM "social_networking_goals" WHERE "social_networking_goals"."participant_id" = $1 [["participant_id", 816972181]]
2310
+ SocialNetworking::Goal Load (0.4ms) SELECT "social_networking_goals".* FROM "social_networking_goals" WHERE "social_networking_goals"."participant_id" = $1 [["participant_id", 129315074]]
2311
+  (0.4ms) ROLLBACK
2312
+  (0.2ms) BEGIN
2313
+ SocialNetworking::Goal Load (0.8ms) SELECT "social_networking_goals".* FROM "social_networking_goals"
2314
+  (0.4ms) SAVEPOINT active_record_1
2315
+ SQL (0.7ms) DELETE FROM "social_networking_goals" WHERE "social_networking_goals"."id" = $1 [["id", 809335042]]
2316
+  (0.3ms) RELEASE SAVEPOINT active_record_1
2317
+  (0.3ms) SAVEPOINT active_record_1
2318
+ SQL (0.6ms) DELETE FROM "social_networking_goals" WHERE "social_networking_goals"."id" = $1 [["id", 576699391]]
2319
+  (0.3ms) RELEASE SAVEPOINT active_record_1
2320
+  (0.4ms) SAVEPOINT active_record_1
2321
+ SQL (0.6ms) DELETE FROM "social_networking_goals" WHERE "social_networking_goals"."id" = $1 [["id", 614371357]]
2322
+  (0.4ms) RELEASE SAVEPOINT active_record_1
2323
+  (0.4ms) SAVEPOINT active_record_1
2324
+ SQL (0.6ms) DELETE FROM "social_networking_goals" WHERE "social_networking_goals"."id" = $1 [["id", 53334230]]
2325
+  (0.3ms) RELEASE SAVEPOINT active_record_1
2326
+  (0.2ms) SAVEPOINT active_record_1
2327
+ SQL (0.6ms) DELETE FROM "social_networking_goals" WHERE "social_networking_goals"."id" = $1 [["id", 916373174]]
2328
+  (0.3ms) RELEASE SAVEPOINT active_record_1
2329
+  (0.6ms) SAVEPOINT active_record_1
2330
+ SQL (0.4ms) DELETE FROM "social_networking_goals" WHERE "social_networking_goals"."id" = $1 [["id", 717544784]]
2331
+  (0.4ms) RELEASE SAVEPOINT active_record_1
2332
+  (0.6ms) SAVEPOINT active_record_1
2333
+ SQL (1.5ms) DELETE FROM "social_networking_goals" WHERE "social_networking_goals"."id" = $1 [["id", 938656909]]
2334
+  (0.3ms) RELEASE SAVEPOINT active_record_1
2335
+  (0.2ms) SAVEPOINT active_record_1
2336
+ SQL (0.5ms) DELETE FROM "social_networking_goals" WHERE "social_networking_goals"."id" = $1 [["id", 401619065]]
2337
+  (0.5ms) RELEASE SAVEPOINT active_record_1
2338
+  (0.3ms) SAVEPOINT active_record_1
2339
+ SQL (0.5ms) DELETE FROM "social_networking_goals" WHERE "social_networking_goals"."id" = $1 [["id", 128166899]]
2340
+  (0.4ms) RELEASE SAVEPOINT active_record_1
2341
+  (0.3ms) SAVEPOINT active_record_1
2342
+ SQL (0.5ms) DELETE FROM "social_networking_goals" WHERE "social_networking_goals"."id" = $1 [["id", 1002298878]]
2343
+  (0.3ms) RELEASE SAVEPOINT active_record_1
2344
+  (0.2ms) SAVEPOINT active_record_1
2345
+ SQL (0.5ms) DELETE FROM "social_networking_goals" WHERE "social_networking_goals"."id" = $1 [["id", 318784238]]
2346
+  (0.3ms) RELEASE SAVEPOINT active_record_1
2347
+  (0.3ms) SAVEPOINT active_record_1
2348
+ SQL (0.6ms) DELETE FROM "social_networking_goals" WHERE "social_networking_goals"."id" = $1 [["id", 16804933]]
2349
+  (0.4ms) RELEASE SAVEPOINT active_record_1
2350
+ Participant Load (0.7ms) SELECT "participants"."id", "participants"."study_id" FROM "participants"
2351
+ SocialNetworking::Goal Load (1.1ms) SELECT "social_networking_goals".* FROM "social_networking_goals" WHERE "social_networking_goals"."participant_id" = $1 [["participant_id", 700141617]]
2352
+ SocialNetworking::Goal Load (0.7ms) SELECT "social_networking_goals".* FROM "social_networking_goals" WHERE "social_networking_goals"."participant_id" = $1 [["participant_id", 816972181]]
2353
+ SocialNetworking::Goal Load (0.6ms) SELECT "social_networking_goals".* FROM "social_networking_goals" WHERE "social_networking_goals"."participant_id" = $1 [["participant_id", 129315074]]
2354
+  (0.6ms) ROLLBACK
2355
+  (0.2ms) BEGIN
2356
+ Processing by SocialNetworking::ParticipantsController#show as HTML
2357
+ Parameters: {"id"=>"987"}
2358
+ Completed 404 Not Found in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
2359
+  (0.3ms) ROLLBACK
2360
+  (0.2ms) BEGIN
2361
+ Processing by SocialNetworking::ParticipantsController#show as HTML
2362
+ Parameters: {"id"=>"987"}
2363
+ Completed 200 OK in 2ms (Views: 0.4ms | ActiveRecord: 0.0ms)
2364
+  (0.3ms) ROLLBACK
2365
+  (0.2ms) BEGIN
2366
+ Processing by SocialNetworking::ParticipantsController#index as HTML
2367
+ Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
2368
+  (0.5ms) ROLLBACK
2369
+  (0.5ms) BEGIN
2370
+ Processing by SocialNetworking::GoalsController#create as HTML
2371
+ Parameters: {"description"=>"run a marathon", "isCompleted"=>true}
2372
+ Completed 400 Bad Request in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
2373
+  (0.3ms) ROLLBACK
2374
+  (0.3ms) BEGIN
2375
+ Processing by SocialNetworking::GoalsController#create as HTML
2376
+ Parameters: {"description"=>"run a marathon", "isCompleted"=>true}
2377
+ Completed 200 OK in 2ms (Views: 0.4ms | ActiveRecord: 0.0ms)
2378
+  (0.3ms) ROLLBACK
2379
+  (0.2ms) BEGIN
2380
+ Processing by SocialNetworking::GoalsController#update as HTML
2381
+ Parameters: {"id"=>"1234"}
2382
+ Completed 400 Bad Request in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2383
+  (0.3ms) ROLLBACK
2384
+  (0.2ms) BEGIN
2385
+ Processing by SocialNetworking::GoalsController#update as HTML
2386
+ Parameters: {"description"=>"run a marathon", "isCompleted"=>true, "id"=>"1234"}
2387
+ Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
2388
+  (0.3ms) ROLLBACK
2389
+  (0.1ms) BEGIN
2390
+ Processing by SocialNetworking::GoalsController#update as HTML
2391
+ Parameters: {"id"=>"1234"}
2392
+ Completed 404 Not Found in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2393
+  (0.3ms) ROLLBACK
2394
+  (0.2ms) BEGIN
2395
+ Processing by SocialNetworking::GoalsController#update as HTML
2396
+ Parameters: {"description"=>"run a marathon", "isDeleted"=>true, "id"=>"1234"}
2397
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
2398
+  (0.3ms) ROLLBACK
2399
+  (0.2ms) BEGIN
2400
+ Processing by SocialNetworking::GoalsController#index as HTML
2401
+ Completed 200 OK in 2ms (Views: 0.4ms | ActiveRecord: 0.0ms)
2402
+  (0.3ms) ROLLBACK
2403
+  (0.2ms) BEGIN
2404
+ Processing by SocialNetworking::ProfileAnswersController#update as HTML
2405
+ Parameters: {"id"=>"1"}
2406
+ Completed 400 Bad Request in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2407
+  (0.3ms) ROLLBACK
2408
+  (0.1ms) BEGIN
2409
+ Processing by SocialNetworking::ProfileAnswersController#update as HTML
2410
+ Parameters: {"id"=>"1"}
2411
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2412
+  (0.4ms) ROLLBACK
2413
+  (0.2ms) BEGIN
2414
+ Processing by SocialNetworking::ProfileAnswersController#update as HTML
2415
+ Parameters: {"id"=>"1"}
2416
+ Completed 404 Not Found in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2417
+  (0.3ms) ROLLBACK
2418
+  (0.1ms) BEGIN
2419
+ Processing by SocialNetworking::ProfileAnswersController#create as HTML
2420
+ Completed 400 Bad Request in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2421
+  (0.3ms) ROLLBACK
2422
+  (0.2ms) BEGIN
2423
+ Processing by SocialNetworking::ProfileAnswersController#create as HTML
2424
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2425
+  (0.3ms) ROLLBACK
2426
+  (0.2ms) BEGIN
2427
+ Participant Load (0.2ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
2428
+ SocialNetworking::OnTheMindStatement Load (0.9ms) SELECT "social_networking_on_the_mind_statements".* FROM "social_networking_on_the_mind_statements" ORDER BY "social_networking_on_the_mind_statements"."id" ASC LIMIT 1
2429
+ Participant Load (0.6ms) SELECT "participants"."id", "participants"."study_id" FROM "participants"
2430
+ SocialNetworking::OnTheMindStatement Load (0.6ms) SELECT "social_networking_on_the_mind_statements".* FROM "social_networking_on_the_mind_statements" WHERE "social_networking_on_the_mind_statements"."participant_id" = $1 [["participant_id", 700141617]]
2431
+ SocialNetworking::OnTheMindStatement Load (0.4ms) SELECT "social_networking_on_the_mind_statements".* FROM "social_networking_on_the_mind_statements" WHERE "social_networking_on_the_mind_statements"."participant_id" = $1 [["participant_id", 816972181]]
2432
+ SocialNetworking::OnTheMindStatement Load (0.5ms) SELECT "social_networking_on_the_mind_statements".* FROM "social_networking_on_the_mind_statements" WHERE "social_networking_on_the_mind_statements"."participant_id" = $1 [["participant_id", 129315074]]
2433
+  (0.2ms) ROLLBACK
2434
+  (0.2ms) BEGIN
2435
+ SocialNetworking::OnTheMindStatement Load (0.5ms) SELECT "social_networking_on_the_mind_statements".* FROM "social_networking_on_the_mind_statements"
2436
+  (0.2ms) SAVEPOINT active_record_1
2437
+ SocialNetworking::Comment Load (0.4ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 576803333], ["item_type", "SocialNetworking::OnTheMindStatement"]]
2438
+ SocialNetworking::Like Load (0.8ms) SELECT "social_networking_likes".* FROM "social_networking_likes" WHERE "social_networking_likes"."item_id" = $1 AND "social_networking_likes"."item_type" = $2 [["item_id", 576803333], ["item_type", "SocialNetworking::OnTheMindStatement"]]
2439
+ SQL (0.5ms) DELETE FROM "social_networking_on_the_mind_statements" WHERE "social_networking_on_the_mind_statements"."id" = $1 [["id", 576803333]]
2440
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2441
+  (0.1ms) SAVEPOINT active_record_1
2442
+ SocialNetworking::Comment Load (0.3ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."item_id" = $1 AND "social_networking_comments"."item_type" = $2 [["item_id", 369066228], ["item_type", "SocialNetworking::OnTheMindStatement"]]
2443
+ SocialNetworking::Like Load (0.4ms) SELECT "social_networking_likes".* FROM "social_networking_likes" WHERE "social_networking_likes"."item_id" = $1 AND "social_networking_likes"."item_type" = $2 [["item_id", 369066228], ["item_type", "SocialNetworking::OnTheMindStatement"]]
2444
+ SQL (0.4ms) DELETE FROM "social_networking_on_the_mind_statements" WHERE "social_networking_on_the_mind_statements"."id" = $1 [["id", 369066228]]
2445
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2446
+ Participant Load (0.3ms) SELECT "participants"."id", "participants"."study_id" FROM "participants"
2447
+ SocialNetworking::OnTheMindStatement Load (0.3ms) SELECT "social_networking_on_the_mind_statements".* FROM "social_networking_on_the_mind_statements" WHERE "social_networking_on_the_mind_statements"."participant_id" = $1 [["participant_id", 700141617]]
2448
+ SocialNetworking::OnTheMindStatement Load (0.3ms) SELECT "social_networking_on_the_mind_statements".* FROM "social_networking_on_the_mind_statements" WHERE "social_networking_on_the_mind_statements"."participant_id" = $1 [["participant_id", 816972181]]
2449
+ SocialNetworking::OnTheMindStatement Load (0.3ms) SELECT "social_networking_on_the_mind_statements".* FROM "social_networking_on_the_mind_statements" WHERE "social_networking_on_the_mind_statements"."participant_id" = $1 [["participant_id", 129315074]]
2450
+  (0.2ms) ROLLBACK
2451
+  (0.1ms) BEGIN
2452
+  (0.3ms) ROLLBACK
2453
+  (0.2ms) BEGIN
2454
+ Rendered /Users/ericcf/work/social_networking/app/views/social_networking/profile_pages/_profile_questions.html.erb (1.4ms)
2455
+  (0.3ms) ROLLBACK
2456
+  (0.2ms) BEGIN
2457
+ Rendered /Users/ericcf/work/social_networking/app/views/social_networking/profile_pages/_profile_questions.html.erb (2.1ms)
2458
+  (0.5ms) ROLLBACK
2459
+  (0.2ms) BEGIN
2460
+ Rendered /Users/ericcf/work/social_networking/app/views/social_networking/profile_pages/_profile_questions.html.erb (1.6ms)
2461
+  (0.2ms) ROLLBACK
2462
+  (0.1ms) BEGIN
2463
+ Rendered /Users/ericcf/work/social_networking/app/views/social_networking/profile_pages/_profile_questions.html.erb (1.1ms)
2464
+  (0.3ms) ROLLBACK
2465
+  (0.1ms) BEGIN
2466
+ Rendered /Users/ericcf/work/social_networking/app/views/social_networking/profile_pages/_profile_questions.html.erb (1.1ms)
2467
+  (0.4ms) ROLLBACK
2468
+  (0.2ms) BEGIN
2469
+ Rendered /Users/ericcf/work/social_networking/app/views/social_networking/profile_pages/_profile_questions.html.erb (1.3ms)
2470
+  (0.3ms) ROLLBACK
2471
+  (0.2ms) BEGIN
2472
+ Participant Load (0.3ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
2473
+ SocialNetworking::Like Load (0.6ms) SELECT "social_networking_likes".* FROM "social_networking_likes" WHERE "social_networking_likes"."participant_id" = $1 LIMIT 1 [["participant_id", 700141617]]
2474
+ SocialNetworking::SharedItem Load (0.5ms) SELECT "social_networking_shared_items".* FROM "social_networking_shared_items" WHERE "social_networking_shared_items"."id" = $1 LIMIT 1 [["id", 809335042]]
2475
+ SocialNetworking::Goal Load (0.5ms) SELECT "social_networking_goals".* FROM "social_networking_goals" WHERE "social_networking_goals"."id" = $1 LIMIT 1 [["id", 809335042]]
2476
+ Participant Load (0.5ms) SELECT "participants"."id", "participants"."study_id" FROM "participants"
2477
+ SocialNetworking::Like Load (0.4ms) SELECT "social_networking_likes".* FROM "social_networking_likes" WHERE "social_networking_likes"."participant_id" = $1 [["participant_id", 700141617]]
2478
+ SocialNetworking::SharedItem Load (0.9ms) SELECT "social_networking_shared_items".* FROM "social_networking_shared_items" WHERE "social_networking_shared_items"."id" = $1 LIMIT 1 [["id", 809335042]]
2479
+ SocialNetworking::Goal Load (0.5ms) SELECT "social_networking_goals".* FROM "social_networking_goals" WHERE "social_networking_goals"."id" = $1 LIMIT 1 [["id", 809335042]]
2480
+ Participant Load (0.4ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
2481
+ SocialNetworking::Like Load (0.6ms) SELECT "social_networking_likes".* FROM "social_networking_likes" WHERE "social_networking_likes"."participant_id" = $1 [["participant_id", 816972181]]
2482
+ SocialNetworking::Like Load (0.4ms) SELECT "social_networking_likes".* FROM "social_networking_likes" WHERE "social_networking_likes"."participant_id" = $1 [["participant_id", 129315074]]
2483
+  (0.5ms) SELECT COUNT(*) FROM "social_networking_likes"
2484
+ Participant Load (0.6ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
2485
+  (0.3ms) ROLLBACK
2486
+  (0.2ms) BEGIN
2487
+ SocialNetworking::Like Load (0.5ms) SELECT "social_networking_likes".* FROM "social_networking_likes"
2488
+  (0.2ms) SAVEPOINT active_record_1
2489
+ SQL (0.4ms) DELETE FROM "social_networking_likes" WHERE "social_networking_likes"."id" = $1 [["id", 844093908]]
2490
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2491
+ Participant Load (0.3ms) SELECT "participants"."id", "participants"."study_id" FROM "participants"
2492
+ SocialNetworking::Like Load (0.3ms) SELECT "social_networking_likes".* FROM "social_networking_likes" WHERE "social_networking_likes"."participant_id" = $1 [["participant_id", 700141617]]
2493
+ SocialNetworking::Like Load (0.3ms) SELECT "social_networking_likes".* FROM "social_networking_likes" WHERE "social_networking_likes"."participant_id" = $1 [["participant_id", 816972181]]
2494
+ SocialNetworking::Like Load (0.3ms) SELECT "social_networking_likes".* FROM "social_networking_likes" WHERE "social_networking_likes"."participant_id" = $1 [["participant_id", 129315074]]
2495
+  (0.2ms) ROLLBACK
2496
+  (0.1ms) BEGIN
2497
+ Processing by SocialNetworking::SharedItemController#page as HTML
2498
+ Parameters: {"page"=>"0", "participant_id"=>"987"}
2499
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2500
+  (0.3ms) ROLLBACK
2501
+  (0.1ms) BEGIN
2502
+ Processing by SocialNetworking::SharedItemController#hide as HTML
2503
+ Parameters: {"id"=>"123"}
2504
+ Rendered text template (0.0ms)
2505
+ Completed 202 Accepted in 6ms (Views: 5.2ms | ActiveRecord: 0.0ms)
2506
+  (0.3ms) ROLLBACK
2507
+  (0.2ms) BEGIN
2508
+ Processing by SocialNetworking::ProfilePagesController#show as HTML
2509
+ Rendered /Users/ericcf/work/social_networking/app/views/social_networking/profile_pages/show.html.erb within layouts/tool (0.5ms)
2510
+ Completed 200 OK in 12ms (Views: 11.2ms | ActiveRecord: 0.0ms)
2511
+  (0.4ms) ROLLBACK
2512
+  (0.2ms) BEGIN
2513
+ Processing by SocialNetworking::ProfilePagesController#show as HTML
2514
+ Parameters: {"id"=>"1"}
2515
+ Rendered /Users/ericcf/work/social_networking/app/views/social_networking/profile_pages/show.html.erb within layouts/tool (0.4ms)
2516
+ Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.0ms)
2517
+  (0.5ms) ROLLBACK
2518
+  (0.1ms) BEGIN
2519
+ Processing by SocialNetworking::ProfilePagesController#show as HTML
2520
+ Parameters: {"id"=>"1"}
2521
+ Rendered /Users/ericcf/work/social_networking/app/views/social_networking/profile_pages/show.html.erb within layouts/tool (0.4ms)
2522
+ Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.0ms)
2523
+  (0.3ms) ROLLBACK
2524
+  (0.2ms) BEGIN
2525
+ Rendered /Users/ericcf/work/social_networking/app/views/social_networking/coach/patient_dashboards/tables/nudges/_recipient_nudges.html.erb (1.5ms)
2526
+  (0.3ms) ROLLBACK
2527
+  (0.2ms) BEGIN
2528
+ Rendered /Users/ericcf/work/social_networking/app/views/social_networking/coach/patient_dashboards/tables/nudges/_recipient_nudges.html.erb (1.1ms)
2529
+  (0.4ms) ROLLBACK
2530
+  (0.2ms) BEGIN
2531
+ Rendered /Users/ericcf/work/social_networking/app/views/social_networking/coach/patient_dashboards/tables/nudges/_recipient_nudges.html.erb (0.9ms)
2532
+  (0.3ms) ROLLBACK
2533
+  (0.2ms) BEGIN
2534
+  (0.3ms) ROLLBACK
2535
+  (0.2ms) BEGIN
2536
+ Participant Load (0.5ms) SELECT "participants"."id", "participants"."study_id" FROM "participants"
2537
+ SocialNetworking::Comment Load (0.4ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."participant_id" = $1 [["participant_id", 700141617]]
2538
+ SocialNetworking::SharedItem Load (0.6ms) SELECT "social_networking_shared_items".* FROM "social_networking_shared_items" WHERE "social_networking_shared_items"."id" = $1 LIMIT 1 [["id", 809335042]]
2539
+ SocialNetworking::Goal Load (0.4ms) SELECT "social_networking_goals".* FROM "social_networking_goals" WHERE "social_networking_goals"."id" = $1 LIMIT 1 [["id", 809335042]]
2540
+ SocialNetworking::Comment Load (0.7ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."participant_id" = $1 [["participant_id", 816972181]]
2541
+ SocialNetworking::Comment Load (0.8ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."participant_id" = $1 [["participant_id", 129315074]]
2542
+ Participant Load (0.4ms) SELECT "participants".* FROM "participants" WHERE "participants"."id" = $1 LIMIT 1 [["id", 700141617]]
2543
+ SocialNetworking::Comment Load (0.8ms) SELECT "social_networking_comments".* FROM "social_networking_comments" ORDER BY "social_networking_comments"."id" ASC LIMIT 1
2544
+ SocialNetworking::SharedItem Load (0.7ms) SELECT "social_networking_shared_items".* FROM "social_networking_shared_items" WHERE "social_networking_shared_items"."id" = $1 LIMIT 1 [["id", 809335042]]
2545
+ SocialNetworking::Goal Load (0.5ms) SELECT "social_networking_goals".* FROM "social_networking_goals" WHERE "social_networking_goals"."id" = $1 LIMIT 1 [["id", 809335042]]
2546
+  (0.3ms) ROLLBACK
2547
+  (0.3ms) BEGIN
2548
+ SocialNetworking::Comment Load (0.7ms) SELECT "social_networking_comments".* FROM "social_networking_comments"
2549
+  (0.2ms) SAVEPOINT active_record_1
2550
+ SQL (0.5ms) DELETE FROM "social_networking_comments" WHERE "social_networking_comments"."id" = $1 [["id", 318187876]]
2551
+  (0.3ms) RELEASE SAVEPOINT active_record_1
2552
+ Participant Load (11.0ms) SELECT "participants"."id", "participants"."study_id" FROM "participants"
2553
+ SocialNetworking::Comment Load (0.5ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."participant_id" = $1 [["participant_id", 700141617]]
2554
+ SocialNetworking::Comment Load (0.5ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."participant_id" = $1 [["participant_id", 816972181]]
2555
+ SocialNetworking::Comment Load (0.5ms) SELECT "social_networking_comments".* FROM "social_networking_comments" WHERE "social_networking_comments"."participant_id" = $1 [["participant_id", 129315074]]
2556
+  (0.3ms) ROLLBACK
2557
+ Started GET "/specs?reporters=console&spec" for 127.0.0.1 at 2016-02-16 13:42:09 -0600
2558
+ Processing by JasmineRails::SpecRunnerController#index as HTML
2559
+ Parameters: {"reporters"=>"console", "spec"=>nil}
2560
+ Rendered /Users/ericcf/.rvm/gems/ruby-2.2.2/gems/jasmine-rails-0.12.2/app/views/jasmine_rails/spec_runner/index.html.erb within layouts/jasmine_rails/spec_runner (1.8ms)
2561
+ Compiling jasmine.css to /Users/ericcf/work/social_networking/spec/dummy/tmp/jasmine/assets/jasmine.css
2562
+ Compiling jasmine-specs.css to /Users/ericcf/work/social_networking/spec/dummy/tmp/jasmine/assets/jasmine-specs.css
2563
+ Compiling jasmine.js to /Users/ericcf/work/social_networking/spec/dummy/tmp/jasmine/assets/jasmine.js
2564
+ Compiling jasmine-html.js to /Users/ericcf/work/social_networking/spec/dummy/tmp/jasmine/assets/jasmine-html.js
2565
+ Compiling json2.js to /Users/ericcf/work/social_networking/spec/dummy/tmp/jasmine/assets/json2.js
2566
+ Compiling boot.js to /Users/ericcf/work/social_networking/spec/dummy/tmp/jasmine/assets/boot.js
2567
+ Compiling jasmine-console-shims.js to /Users/ericcf/work/social_networking/spec/dummy/tmp/jasmine/assets/jasmine-console-shims.js
2568
+ Compiling jasmine-console-reporter.js to /Users/ericcf/work/social_networking/spec/dummy/tmp/jasmine/assets/jasmine-console-reporter.js
2569
+ Compiling jasmine-specs.js to /Users/ericcf/work/social_networking/spec/dummy/tmp/jasmine/assets/jasmine-specs.js
2570
+ Completed 200 OK in 467ms (Views: 466.4ms | ActiveRecord: 0.0ms)