remetric 0.0.2 → 0.0.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (209) hide show
  1. checksums.yaml +4 -4
  2. data/{LICENSE.txt → MIT-LICENSE} +1 -3
  3. data/README.rdoc +7 -0
  4. data/Rakefile +32 -1
  5. data/app/assets/images/remetric/loading_logo.gif +0 -0
  6. data/app/assets/images/remetric/logo.png +0 -0
  7. data/app/assets/javascripts/remetric/app.js.coffee +22 -0
  8. data/app/assets/javascripts/remetric/application.js +16 -0
  9. data/app/assets/javascripts/remetric/dialog.js.coffee +21 -0
  10. data/app/assets/javascripts/remetric/messages.js.coffee +21 -0
  11. data/app/assets/javascripts/remetric/search.js.coffee +8 -0
  12. data/app/assets/javascripts/remetric/window.js.coffee +12 -0
  13. data/app/assets/stylesheets/remetric/app.css.scss +103 -0
  14. data/app/assets/stylesheets/remetric/application.css +16 -0
  15. data/app/assets/stylesheets/remetric/dialog.css.scss +100 -0
  16. data/app/assets/stylesheets/remetric/nav.css.scss +57 -0
  17. data/app/assets/stylesheets/remetric/reset.css +61 -0
  18. data/app/assets/stylesheets/remetric/search.css.scss +31 -0
  19. data/app/assets/stylesheets/remetric/tables.css.scss +25 -0
  20. data/app/controllers/remetric/application_controller.rb +9 -0
  21. data/app/controllers/remetric/dashboard_controller.rb +11 -0
  22. data/app/controllers/remetric/events_controller.rb +42 -0
  23. data/app/controllers/remetric/trackables_controller.rb +91 -0
  24. data/app/models/remetric/event.rb +60 -0
  25. data/app/models/remetric/trackable.rb +30 -0
  26. data/app/views/layouts/remetric/application.html.erb +29 -0
  27. data/app/views/remetric/application/_footer.html.erb +17 -0
  28. data/app/views/remetric/application/_nav.html.erb +21 -0
  29. data/app/views/remetric/dashboard/index.html.erb +1 -0
  30. data/app/views/remetric/dashboard/settings.html.erb +8 -0
  31. data/app/views/remetric/events/index.html.erb +30 -0
  32. data/app/views/remetric/events/show.html.erb +7 -0
  33. data/app/views/remetric/trackables/_form.html.erb +17 -0
  34. data/app/views/remetric/trackables/_trackable.html.erb +7 -0
  35. data/app/views/remetric/trackables/edit.html.erb +6 -0
  36. data/app/views/remetric/trackables/index.html.erb +68 -0
  37. data/app/views/remetric/trackables/index.js.erb +3 -0
  38. data/app/views/remetric/trackables/new.html.erb +5 -0
  39. data/app/views/remetric/trackables/show.html.erb +7 -0
  40. data/config/routes.rb +12 -0
  41. data/db/migrate/20140412130825_create_remetric_people.rb +8 -0
  42. data/db/migrate/20140412174234_create_remetric_trackables.rb +8 -0
  43. data/lib/remetric.rb +6 -45
  44. data/lib/remetric/engine.rb +17 -0
  45. data/lib/remetric/version.rb +2 -2
  46. data/lib/tasks/remetric_tasks.rake +4 -0
  47. data/test/dummy/README.rdoc +28 -0
  48. data/test/dummy/Rakefile +6 -0
  49. data/test/dummy/app/assets/javascripts/application.js +13 -0
  50. data/test/dummy/app/assets/stylesheets/application.css +15 -0
  51. data/test/dummy/app/assets/stylesheets/scaffold.css +56 -0
  52. data/test/dummy/app/controllers/application_controller.rb +5 -0
  53. data/test/dummy/app/helpers/application_helper.rb +2 -0
  54. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  55. data/test/dummy/bin/bundle +3 -0
  56. data/test/dummy/bin/rails +4 -0
  57. data/test/dummy/bin/rake +4 -0
  58. data/test/dummy/config.ru +4 -0
  59. data/test/dummy/config/application.rb +23 -0
  60. data/test/dummy/config/boot.rb +5 -0
  61. data/test/dummy/config/database.yml +24 -0
  62. data/test/dummy/config/environment.rb +5 -0
  63. data/test/dummy/config/environments/development.rb +34 -0
  64. data/test/dummy/config/environments/production.rb +80 -0
  65. data/test/dummy/config/environments/test.rb +39 -0
  66. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  67. data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
  68. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  69. data/test/dummy/config/initializers/inflections.rb +16 -0
  70. data/test/dummy/config/initializers/mime_types.rb +4 -0
  71. data/test/dummy/config/initializers/remetric.rb +15 -0
  72. data/test/dummy/config/initializers/session_store.rb +3 -0
  73. data/test/dummy/config/initializers/wrap_parameters.rb +9 -0
  74. data/test/dummy/config/locales/en.yml +23 -0
  75. data/test/dummy/config/mongoid.yml +69 -0
  76. data/test/dummy/config/routes.rb +4 -0
  77. data/test/dummy/config/secrets.yml +22 -0
  78. data/test/dummy/db/schema.rb +20 -0
  79. data/test/dummy/log/development.log +77955 -0
  80. data/test/dummy/log/test.log +467 -0
  81. data/test/dummy/public/404.html +67 -0
  82. data/test/dummy/public/422.html +67 -0
  83. data/test/dummy/public/500.html +66 -0
  84. data/test/dummy/public/favicon.ico +0 -0
  85. data/test/dummy/tmp/cache/assets/development/sass/b3d404bff8ad98818c7006bbb375fc1377b98253/app.css.scssc +0 -0
  86. data/test/dummy/tmp/cache/assets/development/sass/b3d404bff8ad98818c7006bbb375fc1377b98253/dialog.css.scssc +0 -0
  87. data/test/dummy/tmp/cache/assets/development/sass/b3d404bff8ad98818c7006bbb375fc1377b98253/nav.css.scssc +0 -0
  88. data/test/dummy/tmp/cache/assets/development/sass/b3d404bff8ad98818c7006bbb375fc1377b98253/search.css.scssc +0 -0
  89. data/test/dummy/tmp/cache/assets/development/sass/b3d404bff8ad98818c7006bbb375fc1377b98253/tables.css.scssc +0 -0
  90. data/test/dummy/tmp/cache/assets/development/sass/b3d404bff8ad98818c7006bbb375fc1377b98253/topbar.css.scssc +0 -0
  91. data/test/dummy/tmp/cache/assets/development/sass/ef6ae779781469a1465ad72c03c0938d2b0957c7/app.css.scssc +0 -0
  92. data/test/dummy/tmp/cache/assets/development/sass/ef6ae779781469a1465ad72c03c0938d2b0957c7/nav.css.scssc +0 -0
  93. data/test/dummy/tmp/cache/assets/development/sass/ef6ae779781469a1465ad72c03c0938d2b0957c7/tables.css.scssc +0 -0
  94. data/test/dummy/tmp/cache/assets/development/sprockets/036811149d0b235dc6a5d390b4cb7798 +0 -0
  95. data/test/dummy/tmp/cache/assets/development/sprockets/06044aa6fe90933931b87690cac756bb +0 -0
  96. data/test/dummy/tmp/cache/assets/development/sprockets/06523dcd5742577ca664780dccd6580d +0 -0
  97. data/test/dummy/tmp/cache/assets/development/sprockets/06cc1493872f7a7a686e7ceb15dc1edf +0 -0
  98. data/test/dummy/tmp/cache/assets/development/sprockets/08489a22fa3cea1f692673a79aeccc4d +0 -0
  99. data/test/dummy/tmp/cache/assets/development/sprockets/0d0cd4d3626b8b7af859b848bb261b3b +0 -0
  100. data/test/dummy/tmp/cache/assets/development/sprockets/0ff64eb5301cc3a431a373318ef77ba9 +0 -0
  101. data/test/dummy/tmp/cache/assets/development/sprockets/10777ee134d29c9933492eeb5f6a9a2e +0 -0
  102. data/test/dummy/tmp/cache/assets/development/sprockets/11a53c34e9d924ddcee8311e550e2a6a +0 -0
  103. data/test/dummy/tmp/cache/assets/development/sprockets/129284b0ab310e7cd9e25d84f9ee36ce +0 -0
  104. data/test/dummy/tmp/cache/assets/development/sprockets/14ff5f14de79dc5534dda36eed0dc845 +0 -0
  105. data/test/dummy/tmp/cache/assets/development/sprockets/16bc847779945aa181449f07c9100ce4 +0 -0
  106. data/test/dummy/tmp/cache/assets/development/sprockets/1bc5ddb997a9674aa1ecf3596bcdea3b +0 -0
  107. data/test/dummy/tmp/cache/assets/development/sprockets/1f7d448c7dd65aed702d885795263877 +0 -0
  108. data/test/dummy/tmp/cache/assets/development/sprockets/220d17e65184e9dc17578233e30285fc +0 -0
  109. data/test/dummy/tmp/cache/assets/development/sprockets/22359219f7d258ed678aa744625a1ff7 +0 -0
  110. data/test/dummy/tmp/cache/assets/development/sprockets/23666533c8ff01f445bafdb2f1f02f86 +0 -0
  111. data/test/dummy/tmp/cache/assets/development/sprockets/27aa9a37df2520f26820676eed4f3700 +0 -0
  112. data/test/dummy/tmp/cache/assets/development/sprockets/281c6ce161cccf80f16cdb17ab4418cd +0 -0
  113. data/test/dummy/tmp/cache/assets/development/sprockets/29cf8dc04f0a517a0942324f7b779454 +0 -0
  114. data/test/dummy/tmp/cache/assets/development/sprockets/2c11af377df23e6b6cdb35d040ce2e11 +0 -0
  115. data/test/dummy/tmp/cache/assets/development/sprockets/2ca8c93fa70493848ec54ace98c8a74e +0 -0
  116. data/test/dummy/tmp/cache/assets/development/sprockets/2d61509baca84dc502058ddd3248ec90 +0 -0
  117. data/test/dummy/tmp/cache/assets/development/sprockets/2d6d573978d9d81e29432df0ea46d478 +0 -0
  118. data/test/dummy/tmp/cache/assets/development/sprockets/317da10b37ae905e1542a67d23559e69 +0 -0
  119. data/test/dummy/tmp/cache/assets/development/sprockets/32415ecae858572a5f3f19657e9fb686 +0 -0
  120. data/test/dummy/tmp/cache/assets/development/sprockets/396258e541c9223b9e7125c90bb3858b +0 -0
  121. data/test/dummy/tmp/cache/assets/development/sprockets/399fe27d4c9f18008f13282aebe13bce +0 -0
  122. data/test/dummy/tmp/cache/assets/development/sprockets/39f8aac6fdfbd8e63ad64acfff6f11f6 +0 -0
  123. data/test/dummy/tmp/cache/assets/development/sprockets/3b016f440de7952117708d55661662d6 +0 -0
  124. data/test/dummy/tmp/cache/assets/development/sprockets/3ca240f453c6ec94f2e9c5a27d7001f8 +0 -0
  125. data/test/dummy/tmp/cache/assets/development/sprockets/3e5365e32d57e4ac856f716b1cd3459e +0 -0
  126. data/test/dummy/tmp/cache/assets/development/sprockets/3f9ed1aa1e459fc046192c14ed163a6c +0 -0
  127. data/test/dummy/tmp/cache/assets/development/sprockets/41444136ce4142d1170281f949577191 +0 -0
  128. data/test/dummy/tmp/cache/assets/development/sprockets/42c1ebcb98209b8dd066f44a6f6e91a4 +0 -0
  129. data/test/dummy/tmp/cache/assets/development/sprockets/43a4bb43dd1715ec2eb67640a4988b50 +0 -0
  130. data/test/dummy/tmp/cache/assets/development/sprockets/45e79781056c40dc5cb1ed347f77706f +0 -0
  131. data/test/dummy/tmp/cache/assets/development/sprockets/507aa6d1fad718f18dac9753b23c1134 +0 -0
  132. data/test/dummy/tmp/cache/assets/development/sprockets/53e9204c5b6f9c911b53e6e7094c70cf +0 -0
  133. data/test/dummy/tmp/cache/assets/development/sprockets/559c497c5bc5a3b0d6424b06c25fd993 +0 -0
  134. data/test/dummy/tmp/cache/assets/development/sprockets/5e0f4b04d24167f4992c12c5debd3d8c +0 -0
  135. data/test/dummy/tmp/cache/assets/development/sprockets/5ed4dfea5ce8c0191e138a49420dac41 +0 -0
  136. data/test/dummy/tmp/cache/assets/development/sprockets/61ae00e63e21dfb8ebec7b02b5dd422b +0 -0
  137. data/test/dummy/tmp/cache/assets/development/sprockets/6690911b74d6cd9a2551a8e7712f5ba4 +0 -0
  138. data/test/dummy/tmp/cache/assets/development/sprockets/698af75cb266cf67de8b35c5fbb87424 +0 -0
  139. data/test/dummy/tmp/cache/assets/development/sprockets/6d872803bfb95566f660e9798b3cc34c +0 -0
  140. data/test/dummy/tmp/cache/assets/development/sprockets/6e15f97a017c405492d9fc87477ad721 +0 -0
  141. data/test/dummy/tmp/cache/assets/development/sprockets/6e956f97a9713501d948b2d083a4a020 +0 -0
  142. data/test/dummy/tmp/cache/assets/development/sprockets/6febf106bc4ae38f75f0887d1592de37 +0 -0
  143. data/test/dummy/tmp/cache/assets/development/sprockets/702c0722c0c5b287d25a402f7ee117f0 +0 -0
  144. data/test/dummy/tmp/cache/assets/development/sprockets/7064b9323802e4196822328ae83e9628 +0 -0
  145. data/test/dummy/tmp/cache/assets/development/sprockets/71e500b75cfd9b76b02bf67e12b3c833 +0 -0
  146. data/test/dummy/tmp/cache/assets/development/sprockets/72419c0eb8026ff0ce7f259890db2503 +0 -0
  147. data/test/dummy/tmp/cache/assets/development/sprockets/724b47e2fc60f39379329a90781df725 +0 -0
  148. data/test/dummy/tmp/cache/assets/development/sprockets/726ba6daceacbfd72d591ee2b20f55d0 +0 -0
  149. data/test/dummy/tmp/cache/assets/development/sprockets/730529e519077e2969563e5e07f4fc00 +0 -0
  150. data/test/dummy/tmp/cache/assets/development/sprockets/741b2378e393e0588e5f82ab58a24082 +0 -0
  151. data/test/dummy/tmp/cache/assets/development/sprockets/76f4fb7efdd4f6c2acd738e55ea07d2f +0 -0
  152. data/test/dummy/tmp/cache/assets/development/sprockets/7a29d789acb5ef53d4dc3e9a2a6cc762 +0 -0
  153. data/test/dummy/tmp/cache/assets/development/sprockets/7b6dd538f069c113f1f9c8e76c9db372 +0 -0
  154. data/test/dummy/tmp/cache/assets/development/sprockets/808bfcd132560482630ba70dc6e282c8 +0 -0
  155. data/test/dummy/tmp/cache/assets/development/sprockets/8dfcdf65937789aca525d56adf1a4656 +0 -0
  156. data/test/dummy/tmp/cache/assets/development/sprockets/9093f4594b2a064c24fc65f610e92e29 +0 -0
  157. data/test/dummy/tmp/cache/assets/development/sprockets/94b993ea74b11163bd3bd728ae31d051 +0 -0
  158. data/test/dummy/tmp/cache/assets/development/sprockets/9538978dc1870cad6434d9c702a08d78 +0 -0
  159. data/test/dummy/tmp/cache/assets/development/sprockets/9b1a83d18767d300d400470a03bc4f7b +0 -0
  160. data/test/dummy/tmp/cache/assets/development/sprockets/9b4fb1df1100690f915b3c08dc3b6e12 +0 -0
  161. data/test/dummy/tmp/cache/assets/development/sprockets/9fe904495c3e56e07f56a2234def4ce3 +0 -0
  162. data/test/dummy/tmp/cache/assets/development/sprockets/a095af3c7e60e112ec29d7629c8af830 +0 -0
  163. data/test/dummy/tmp/cache/assets/development/sprockets/a14ef177cbf5fcfae6e7eaac56e034b9 +0 -0
  164. data/test/dummy/tmp/cache/assets/development/sprockets/a31bbb879540ba0d456b98d902190384 +0 -0
  165. data/test/dummy/tmp/cache/assets/development/sprockets/a3e3e63eb8abde2bd1dd81e850cf80e1 +0 -0
  166. data/test/dummy/tmp/cache/assets/development/sprockets/a52f913105047ed83d060e708c394961 +0 -0
  167. data/test/dummy/tmp/cache/assets/development/sprockets/a776b0cf1650a70054f5da91283fecc4 +0 -0
  168. data/test/dummy/tmp/cache/assets/development/sprockets/b0785de9897c1eadef94fdaf024915f9 +0 -0
  169. data/test/dummy/tmp/cache/assets/development/sprockets/b49c711ecdbc2fff4f119705e2e53e4d +0 -0
  170. data/test/dummy/tmp/cache/assets/development/sprockets/bc613cfb0adcb20734431cf9b9d07141 +0 -0
  171. data/test/dummy/tmp/cache/assets/development/sprockets/bdae695e1d71988ce570d79394f0247e +0 -0
  172. data/test/dummy/tmp/cache/assets/development/sprockets/c195f58c840031e93dcf040048d5386b +0 -0
  173. data/test/dummy/tmp/cache/assets/development/sprockets/c2a902f3266b677f365fc3ce5a7bd820 +0 -0
  174. data/test/dummy/tmp/cache/assets/development/sprockets/c7bd9cf81453a7911957b783ec6ecf5c +0 -0
  175. data/test/dummy/tmp/cache/assets/development/sprockets/c8bb4469accab5fc441d923464873c47 +0 -0
  176. data/test/dummy/tmp/cache/assets/development/sprockets/c9ab7f296b30469ef9170c3ab336cdf4 +0 -0
  177. data/test/dummy/tmp/cache/assets/development/sprockets/c9bd5507d8142fbe02e5034485314999 +0 -0
  178. data/test/dummy/tmp/cache/assets/development/sprockets/cb13c3985fc61edc836f19c9fd5f9a01 +0 -0
  179. data/test/dummy/tmp/cache/assets/development/sprockets/cbf388d3208ecbd03a788db6891d2781 +0 -0
  180. data/test/dummy/tmp/cache/assets/development/sprockets/cc6c1b77f34a8e580980b31eb35b441b +0 -0
  181. data/test/dummy/tmp/cache/assets/development/sprockets/cc8e5fb7cbde151721ea55b7ad2d35dc +0 -0
  182. data/test/dummy/tmp/cache/assets/development/sprockets/cca380662516cb1daca88d3f2c9a3b9e +0 -0
  183. data/test/dummy/tmp/cache/assets/development/sprockets/d0796c18ca312aaa9f18fcf1091835a6 +0 -0
  184. data/test/dummy/tmp/cache/assets/development/sprockets/d15eb2bca16eb0f31c2089c5f397c5e2 +0 -0
  185. data/test/dummy/tmp/cache/assets/development/sprockets/da0a32f5a80c68a1464a23861b172ea8 +0 -0
  186. data/test/dummy/tmp/cache/assets/development/sprockets/db25052d96407ff539ebf9992cc5ba53 +0 -0
  187. data/test/dummy/tmp/cache/assets/development/sprockets/dbef3e25a00efadb8ebc056530ea9c77 +0 -0
  188. data/test/dummy/tmp/cache/assets/development/sprockets/dfdd2dcf54d51f737c704e8bb3d74997 +0 -0
  189. data/test/dummy/tmp/cache/assets/development/sprockets/e6ca11d406eb8e17f4bd3db3c73117d5 +0 -0
  190. data/test/dummy/tmp/cache/assets/development/sprockets/e8e21ae1f6a7630e209b12d622cb6581 +0 -0
  191. data/test/dummy/tmp/cache/assets/development/sprockets/ecdddb465b19971df1d705261890c12e +0 -0
  192. data/test/dummy/tmp/cache/assets/development/sprockets/eec9cdbbe1ffd8783ec43c910318e77a +0 -0
  193. data/test/dummy/tmp/cache/assets/development/sprockets/ef1ae4e5869278227bd877dc5b9c1ed1 +0 -0
  194. data/test/dummy/tmp/cache/assets/development/sprockets/ef55b424d975f62aa8ace6d8e6d1420b +0 -0
  195. data/test/dummy/tmp/cache/assets/development/sprockets/f58a02ac7bddf274a99d091aff62f179 +0 -0
  196. data/test/dummy/tmp/cache/assets/development/sprockets/f703d7f63b064f4c9363a37b6c8f7102 +0 -0
  197. data/test/dummy/tmp/cache/assets/development/sprockets/fa73f084d9c960b3822e9a670eddd6e9 +0 -0
  198. data/test/dummy/tmp/cache/assets/development/sprockets/fad64d3cc1d38839f623367e9e8bdab7 +0 -0
  199. data/test/dummy/tmp/cache/assets/development/sprockets/ff91cdc7d41ec915a2db3524da4c962f +0 -0
  200. data/test/fixtures/remetric/people.yml +11 -0
  201. data/test/fixtures/remetric/trackables.yml +11 -0
  202. data/test/models/remetric/event_test.rb +17 -0
  203. data/test/remetric_test.rb +7 -0
  204. data/test/test_helper.rb +15 -0
  205. metadata +464 -27
  206. data/.gitignore +0 -1
  207. data/Gemfile +0 -6
  208. data/README.md +0 -49
  209. data/remetric.gemspec +0 -23
@@ -0,0 +1,467 @@
1
+ -------------------------------------------------------
2
+ Remetric::ContactsControllerTest: test_should_get_index
3
+ -------------------------------------------------------
4
+ -------------------------------------------------------
5
+ Remetric::SettingsControllerTest: test_should_get_index
6
+ -------------------------------------------------------
7
+ ----------------------------------------------------------------
8
+ Remetric::TrackablesControllerTest: test_should_create_trackable
9
+ ----------------------------------------------------------------
10
+ -----------------------------------------------------------------
11
+ Remetric::TrackablesControllerTest: test_should_destroy_trackable
12
+ -----------------------------------------------------------------
13
+ --------------------------------------------------------
14
+ Remetric::TrackablesControllerTest: test_should_get_edit
15
+ --------------------------------------------------------
16
+ ---------------------------------------------------------
17
+ Remetric::TrackablesControllerTest: test_should_get_index
18
+ ---------------------------------------------------------
19
+ -------------------------------------------------------
20
+ Remetric::TrackablesControllerTest: test_should_get_new
21
+ -------------------------------------------------------
22
+ --------------------------------------------------------------
23
+ Remetric::TrackablesControllerTest: test_should_show_trackable
24
+ --------------------------------------------------------------
25
+ ----------------------------------------------------------------
26
+ Remetric::TrackablesControllerTest: test_should_update_trackable
27
+ ----------------------------------------------------------------
28
+ ------------------------
29
+ RemetricTest: test_truth
30
+ ------------------------
31
+ -------------------------------------------------------
32
+ Remetric::ContactsControllerTest: test_should_get_index
33
+ -------------------------------------------------------
34
+ -------------------------------------------------------
35
+ Remetric::SettingsControllerTest: test_should_get_index
36
+ -------------------------------------------------------
37
+ ----------------------------------------------------------------
38
+ Remetric::TrackablesControllerTest: test_should_create_trackable
39
+ ----------------------------------------------------------------
40
+ -----------------------------------------------------------------
41
+ Remetric::TrackablesControllerTest: test_should_destroy_trackable
42
+ -----------------------------------------------------------------
43
+ --------------------------------------------------------
44
+ Remetric::TrackablesControllerTest: test_should_get_edit
45
+ --------------------------------------------------------
46
+ ---------------------------------------------------------
47
+ Remetric::TrackablesControllerTest: test_should_get_index
48
+ ---------------------------------------------------------
49
+ -------------------------------------------------------
50
+ Remetric::TrackablesControllerTest: test_should_get_new
51
+ -------------------------------------------------------
52
+ --------------------------------------------------------------
53
+ Remetric::TrackablesControllerTest: test_should_show_trackable
54
+ --------------------------------------------------------------
55
+ ----------------------------------------------------------------
56
+ Remetric::TrackablesControllerTest: test_should_update_trackable
57
+ ----------------------------------------------------------------
58
+ ------------------------
59
+ RemetricTest: test_truth
60
+ ------------------------
61
+ ------------------------
62
+ RemetricTest: test_truth
63
+ ------------------------
64
+ ------------------------
65
+ RemetricTest: test_truth
66
+ ------------------------
67
+ -----------------------------------
68
+ Remetric::EventTest: test_the_truth
69
+ -----------------------------------
70
+ MOPED: 127.0.0.1:27017 COMMAND database=admin command={:ismaster=>1} runtime: 1.0540ms
71
+ MOPED: 127.0.0.1:27017 INSERT database=dummy_test collection=remetric_events documents=[{"_id"=>BSON::ObjectId('534998a4616972a0da000000'), "description"=>"Do this.", "contact"=>{:key=>123, :name=>"Awesome Person"}}] flags=[]
72
+ COMMAND database=dummy_test command={:getlasterror=>1, :w=>1} runtime: 595.8490ms
73
+ ------------------------
74
+ RemetricTest: test_truth
75
+ ------------------------
76
+ -----------------------------------
77
+ Remetric::EventTest: test_the_truth
78
+ -----------------------------------
79
+ MOPED: 127.0.0.1:27017 COMMAND database=admin command={:ismaster=>1} runtime: 1.0540ms
80
+ MOPED: 127.0.0.1:27017 INSERT database=dummy_test collection=remetric_events documents=[{"_id"=>BSON::ObjectId('534998be616972a112000000'), "description"=>"Do this.", "contact"=>{:key=>123, :name=>"Awesome Person"}}] flags=[]
81
+ COMMAND database=dummy_test command={:getlasterror=>1, :w=>1} runtime: 0.4890ms
82
+ ------------------------
83
+ RemetricTest: test_truth
84
+ ------------------------
85
+ -----------------------------------
86
+ Remetric::EventTest: test_the_truth
87
+ -----------------------------------
88
+ MOPED: 127.0.0.1:27017 COMMAND database=admin command={:ismaster=>1} runtime: 1.5030ms
89
+ MOPED: 127.0.0.1:27017 INSERT database=dummy_test collection=remetric_events documents=[{"_id"=>BSON::ObjectId('534998ce616972a146000000'), "description"=>"{{ contact.name }} did this thing.", "contact"=>{:key=>123, :name=>"Awesome Person"}}] flags=[]
90
+ COMMAND database=dummy_test command={:getlasterror=>1, :w=>1} runtime: 0.7270ms
91
+ ------------------------
92
+ RemetricTest: test_truth
93
+ ------------------------
94
+ -----------------------------------
95
+ Remetric::EventTest: test_the_truth
96
+ -----------------------------------
97
+ MOPED: 127.0.0.1:27017 COMMAND database=admin command={:ismaster=>1} runtime: 1.4620ms
98
+ MOPED: 127.0.0.1:27017 INSERT database=dummy_test collection=remetric_events documents=[{"_id"=>BSON::ObjectId('534998e6616972a17a000000'), "description"=>"{{ contact.name }} did this thing.", "contact"=>{:key=>123, :name=>"Awesome Person"}}] flags=[]
99
+ COMMAND database=dummy_test command={:getlasterror=>1, :w=>1} runtime: 0.7010ms
100
+ ------------------------
101
+ RemetricTest: test_truth
102
+ ------------------------
103
+ -----------------------------------
104
+ Remetric::EventTest: test_the_truth
105
+ -----------------------------------
106
+ MOPED: 127.0.0.1:27017 COMMAND database=admin command={:ismaster=>1} runtime: 1.1010ms
107
+ MOPED: 127.0.0.1:27017 INSERT database=dummy_test collection=remetric_events documents=[{"_id"=>BSON::ObjectId('53499901616972a1b1000000'), "description"=>"{{ contact.name }} did this thing.", "contact"=>{:key=>123, :name=>"Awesome Person"}}] flags=[]
108
+ COMMAND database=dummy_test command={:getlasterror=>1, :w=>1} runtime: 0.6560ms
109
+ ------------------------
110
+ RemetricTest: test_truth
111
+ ------------------------
112
+ -----------------------------------
113
+ Remetric::EventTest: test_the_truth
114
+ -----------------------------------
115
+ MOPED: 127.0.0.1:27017 COMMAND database=admin command={:ismaster=>1} runtime: 1.0540ms
116
+ MOPED: 127.0.0.1:27017 INSERT database=dummy_test collection=remetric_events documents=[{"_id"=>BSON::ObjectId('53499939616972a1f0000000'), "description"=>"{{ contact.name }} did this thing.", "contact"=>{:key=>123, :name=>"Awesome Person"}}] flags=[]
117
+ COMMAND database=dummy_test command={:getlasterror=>1, :w=>1} runtime: 0.4810ms
118
+ MOPED: 127.0.0.1:27017 QUERY database=dummy_test collection=remetric_trackables selector={"$query"=>{}, "$orderby"=>{:_id=>-1}} flags=[] limit=-1 skip=0 batch_size=nil fields=nil runtime: 0.9630ms
119
+ ------------------------
120
+ RemetricTest: test_truth
121
+ ------------------------
122
+ -----------------------------------
123
+ Remetric::EventTest: test_the_truth
124
+ -----------------------------------
125
+ MOPED: 127.0.0.1:27017 COMMAND database=admin command={:ismaster=>1} runtime: 1.3270ms
126
+ MOPED: 127.0.0.1:27017 INSERT database=dummy_test collection=remetric_events documents=[{"_id"=>BSON::ObjectId('53499949616972a226000000'), "description"=>"{{ contact.name }} did this thing.", "contact"=>{:key=>123, :name=>"Awesome Person"}}] flags=[]
127
+ COMMAND database=dummy_test command={:getlasterror=>1, :w=>1} runtime: 0.5070ms
128
+ ------------------------
129
+ RemetricTest: test_truth
130
+ ------------------------
131
+ -----------------------------------
132
+ Remetric::EventTest: test_the_truth
133
+ -----------------------------------
134
+ MOPED: 127.0.0.1:27017 COMMAND database=admin command={:ismaster=>1} runtime: 1.1120ms
135
+ MOPED: 127.0.0.1:27017 QUERY database=dummy_test collection=remetric_trackables selector={"$query"=>{"key"=>"", "model"=>:contact}, "$orderby"=>{:_id=>1}} flags=[] limit=-1 skip=0 batch_size=nil fields=nil runtime: 0.7660ms
136
+ MOPED: 127.0.0.1:27017 QUERY database=dummy_test collection=remetric_trackables selector={"model"=>:contact, "key"=>""} flags=[] limit=-1 skip=0 batch_size=nil fields={:_id=>1} runtime: 0.5500ms
137
+ MOPED: 127.0.0.1:27017 INSERT database=dummy_test collection=remetric_events documents=[{"_id"=>BSON::ObjectId('5349995c616972a25a000000'), "description"=>"{{ contact.name }} did this thing.", "contact"=>{:key=>123, :name=>"Awesome Person"}}] flags=[]
138
+ COMMAND database=dummy_test command={:getlasterror=>1, :w=>1} runtime: 0.5190ms
139
+ ------------------------
140
+ RemetricTest: test_truth
141
+ ------------------------
142
+ -----------------------------------
143
+ Remetric::EventTest: test_the_truth
144
+ -----------------------------------
145
+ MOPED: 127.0.0.1:27017 COMMAND database=admin command={:ismaster=>1} runtime: 1.6970ms
146
+ MOPED: 127.0.0.1:27017 QUERY database=dummy_test collection=remetric_trackables selector={"$query"=>{"key"=>"", "model"=>:contact}, "$orderby"=>{:_id=>1}} flags=[] limit=-1 skip=0 batch_size=nil fields=nil runtime: 1.0200ms
147
+ MOPED: 127.0.0.1:27017 QUERY database=dummy_test collection=remetric_trackables selector={"model"=>:contact, "key"=>""} flags=[] limit=-1 skip=0 batch_size=nil fields={:_id=>1} runtime: 0.6160ms
148
+ MOPED: 127.0.0.1:27017 INSERT database=dummy_test collection=remetric_events documents=[{"_id"=>BSON::ObjectId('53499966616972a28e000000'), "description"=>"{{ contact.name }} did this thing.", "contact"=>{:key=>123, :name=>"Awesome Person"}}] flags=[]
149
+ COMMAND database=dummy_test command={:getlasterror=>1, :w=>1} runtime: 0.6990ms
150
+ ------------------------
151
+ RemetricTest: test_truth
152
+ ------------------------
153
+ -----------------------------------
154
+ Remetric::EventTest: test_the_truth
155
+ -----------------------------------
156
+ MOPED: 127.0.0.1:27017 COMMAND database=admin command={:ismaster=>1} runtime: 0.9260ms
157
+ MOPED: 127.0.0.1:27017 QUERY database=dummy_test collection=remetric_trackables selector={"$query"=>{"key"=>"", "model"=>:contact}, "$orderby"=>{:_id=>1}} flags=[] limit=-1 skip=0 batch_size=nil fields=nil runtime: 0.7730ms
158
+ MOPED: 127.0.0.1:27017 QUERY database=dummy_test collection=remetric_trackables selector={"model"=>:contact, "key"=>""} flags=[] limit=-1 skip=0 batch_size=nil fields={:_id=>1} runtime: 0.5520ms
159
+ MOPED: 127.0.0.1:27017 INSERT database=dummy_test collection=remetric_events documents=[{"_id"=>BSON::ObjectId('53499979616972a2c2000000'), "description"=>"{{ contact.name }} did this thing.", "contact"=>{:key=>123, :name=>"Awesome Person"}}] flags=[]
160
+ COMMAND database=dummy_test command={:getlasterror=>1, :w=>1} runtime: 0.7760ms
161
+ ------------------------
162
+ RemetricTest: test_truth
163
+ ------------------------
164
+ -----------------------------------
165
+ Remetric::EventTest: test_the_truth
166
+ -----------------------------------
167
+ MOPED: 127.0.0.1:27017 COMMAND database=admin command={:ismaster=>1} runtime: 1.3680ms
168
+ MOPED: 127.0.0.1:27017 QUERY database=dummy_test collection=remetric_trackables selector={"$query"=>{"key"=>"", "model"=>:contact}, "$orderby"=>{:_id=>1}} flags=[] limit=-1 skip=0 batch_size=nil fields=nil runtime: 1.0090ms
169
+ MOPED: 127.0.0.1:27017 QUERY database=dummy_test collection=remetric_trackables selector={"model"=>:contact, "key"=>""} flags=[] limit=-1 skip=0 batch_size=nil fields={:_id=>1} runtime: 0.5630ms
170
+ MOPED: 127.0.0.1:27017 INSERT database=dummy_test collection=remetric_events documents=[{"_id"=>BSON::ObjectId('534999ad616972a2ff000000'), "description"=>"{{ contact.name }} did this thing.", "contact"=>{:key=>123, :name=>"Awesome Person"}}] flags=[]
171
+ COMMAND database=dummy_test command={:getlasterror=>1, :w=>1} runtime: 0.7700ms
172
+ ------------------------
173
+ RemetricTest: test_truth
174
+ ------------------------
175
+ -----------------------------------
176
+ Remetric::EventTest: test_the_truth
177
+ -----------------------------------
178
+ MOPED: 127.0.0.1:27017 COMMAND database=admin command={:ismaster=>1} runtime: 1.1350ms
179
+ MOPED: 127.0.0.1:27017 QUERY database=dummy_test collection=remetric_trackables selector={"$query"=>{"key"=>"", "model"=>:contact}, "$orderby"=>{:_id=>1}} flags=[] limit=-1 skip=0 batch_size=nil fields=nil runtime: 0.7310ms
180
+ MOPED: 127.0.0.1:27017 QUERY database=dummy_test collection=remetric_trackables selector={"model"=>:contact, "key"=>""} flags=[] limit=-1 skip=0 batch_size=nil fields={:_id=>1} runtime: 0.4830ms
181
+ MOPED: 127.0.0.1:27017 INSERT database=dummy_test collection=remetric_events documents=[{"_id"=>BSON::ObjectId('534999b6616972a336000000'), "description"=>"{{ contact.name }} did this thing.", "contact"=>{:key=>123, :name=>"Awesome Person"}}] flags=[]
182
+ COMMAND database=dummy_test command={:getlasterror=>1, :w=>1} runtime: 0.5360ms
183
+ ------------------------
184
+ RemetricTest: test_truth
185
+ ------------------------
186
+ -----------------------------------
187
+ Remetric::EventTest: test_the_truth
188
+ -----------------------------------
189
+ MOPED: 127.0.0.1:27017 COMMAND database=admin command={:ismaster=>1} runtime: 1.3810ms
190
+ MOPED: 127.0.0.1:27017 QUERY database=dummy_test collection=remetric_trackables selector={"$query"=>{"key"=>"", "model"=>:contact}, "$orderby"=>{:_id=>1}} flags=[] limit=-1 skip=0 batch_size=nil fields=nil runtime: 1.0300ms
191
+ MOPED: 127.0.0.1:27017 QUERY database=dummy_test collection=remetric_trackables selector={"model"=>:contact, "key"=>""} flags=[] limit=-1 skip=0 batch_size=nil fields={:_id=>1} runtime: 0.6250ms
192
+ MOPED: 127.0.0.1:27017 INSERT database=dummy_test collection=remetric_events documents=[{"_id"=>BSON::ObjectId('53499a03616972a372000000'), "description"=>"{{ contact.name }} did this thing.", "contact"=>{:key=>123, :name=>"Awesome Person"}}] flags=[]
193
+ COMMAND database=dummy_test command={:getlasterror=>1, :w=>1} runtime: 0.6280ms
194
+ ------------------------
195
+ RemetricTest: test_truth
196
+ ------------------------
197
+ -----------------------------------
198
+ Remetric::EventTest: test_the_truth
199
+ -----------------------------------
200
+ MOPED: 127.0.0.1:27017 COMMAND database=admin command={:ismaster=>1} runtime: 1.5670ms
201
+ MOPED: 127.0.0.1:27017 QUERY database=dummy_test collection=remetric_trackables selector={"$query"=>{"key"=>"", "model"=>:contact}, "$orderby"=>{:_id=>1}} flags=[] limit=-1 skip=0 batch_size=nil fields=nil runtime: 0.7840ms
202
+ MOPED: 127.0.0.1:27017 QUERY database=dummy_test collection=remetric_trackables selector={"model"=>:contact, "key"=>""} flags=[] limit=-1 skip=0 batch_size=nil fields={:_id=>1} runtime: 0.5350ms
203
+ MOPED: 127.0.0.1:27017 INSERT database=dummy_test collection=remetric_events documents=[{"_id"=>BSON::ObjectId('53499a84616972a3eb000000'), "description"=>"{{ contact.name }} did this thing.", "contact"=>{:key=>123, :name=>"Awesome Person"}}] flags=[]
204
+ COMMAND database=dummy_test command={:getlasterror=>1, :w=>1} runtime: 0.4890ms
205
+ ------------------------
206
+ RemetricTest: test_truth
207
+ ------------------------
208
+ -----------------------------------
209
+ Remetric::EventTest: test_the_truth
210
+ -----------------------------------
211
+ MOPED: 127.0.0.1:27017 COMMAND database=admin command={:ismaster=>1} runtime: 1.6470ms
212
+ MOPED: 127.0.0.1:27017 QUERY database=dummy_test collection=remetric_trackables selector={"$query"=>{"key"=>"", "model"=>:contact}, "$orderby"=>{:_id=>1}} flags=[] limit=-1 skip=0 batch_size=nil fields=nil runtime: 0.9420ms
213
+ MOPED: 127.0.0.1:27017 QUERY database=dummy_test collection=remetric_trackables selector={"model"=>:contact, "key"=>""} flags=[] limit=-1 skip=0 batch_size=nil fields={:_id=>1} runtime: 0.4890ms
214
+ MOPED: 127.0.0.1:27017 INSERT database=dummy_test collection=remetric_events documents=[{"_id"=>BSON::ObjectId('53499afe616972a434000000'), "description"=>"{{ contact.name }} did this thing.", "contact"=>{:key=>123, :name=>"Awesome Person"}}] flags=[]
215
+ COMMAND database=dummy_test command={:getlasterror=>1, :w=>1} runtime: 0.5090ms
216
+ MOPED: 127.0.0.1:27017 COMMAND database=dummy_test command={:count=>"remetric_events", :query=>{}} runtime: 0.3170ms
217
+ ------------------------
218
+ RemetricTest: test_truth
219
+ ------------------------
220
+ -----------------------------------
221
+ Remetric::EventTest: test_the_truth
222
+ -----------------------------------
223
+ MOPED: 127.0.0.1:27017 COMMAND database=admin command={:ismaster=>1} runtime: 1.2320ms
224
+ MOPED: 127.0.0.1:27017 QUERY database=dummy_test collection=remetric_trackables selector={"$query"=>{"key"=>"", "model"=>:contact}, "$orderby"=>{:_id=>1}} flags=[] limit=-1 skip=0 batch_size=nil fields=nil runtime: 0.7300ms
225
+ MOPED: 127.0.0.1:27017 QUERY database=dummy_test collection=remetric_trackables selector={"model"=>:contact, "key"=>""} flags=[] limit=-1 skip=0 batch_size=nil fields={:_id=>1} runtime: 0.5400ms
226
+ MOPED: 127.0.0.1:27017 INSERT database=dummy_test collection=remetric_events documents=[{"_id"=>BSON::ObjectId('53499b05616972a466000000'), "description"=>"{{ contact.name }} did this thing.", "contact"=>{:key=>123, :name=>"Awesome Person"}}] flags=[]
227
+ COMMAND database=dummy_test command={:getlasterror=>1, :w=>1} runtime: 0.8830ms
228
+ MOPED: 127.0.0.1:27017 COMMAND database=dummy_test command={:count=>"remetric_events", :query=>{}} runtime: 0.4300ms
229
+ ------------------------
230
+ RemetricTest: test_truth
231
+ ------------------------
232
+ -----------------------------------
233
+ Remetric::EventTest: test_the_truth
234
+ -----------------------------------
235
+ MOPED: 127.0.0.1:27017 COMMAND database=admin command={:ismaster=>1} runtime: 1.1100ms
236
+ MOPED: 127.0.0.1:27017 QUERY database=dummy_test collection=remetric_trackables selector={"$query"=>{"key"=>"", "model"=>:contact}, "$orderby"=>{:_id=>1}} flags=[] limit=-1 skip=0 batch_size=nil fields=nil runtime: 1.3070ms
237
+ MOPED: 127.0.0.1:27017 QUERY database=dummy_test collection=remetric_trackables selector={"model"=>:contact, "key"=>""} flags=[] limit=-1 skip=0 batch_size=nil fields={:_id=>1} runtime: 0.5740ms
238
+ MOPED: 127.0.0.1:27017 INSERT database=dummy_test collection=remetric_events documents=[{"_id"=>BSON::ObjectId('53499b0e616972a49b000000'), "description"=>"{{ contact.name }} did this thing.", "contact"=>{:key=>123, :name=>"Awesome Person"}}] flags=[]
239
+ COMMAND database=dummy_test command={:getlasterror=>1, :w=>1} runtime: 0.8540ms
240
+ MOPED: 127.0.0.1:27017 COMMAND database=dummy_test command={:count=>"remetric_trackables", :query=>{}} runtime: 0.4710ms
241
+ ------------------------
242
+ RemetricTest: test_truth
243
+ ------------------------
244
+ -----------------------------------
245
+ Remetric::EventTest: test_the_truth
246
+ -----------------------------------
247
+ MOPED: 127.0.0.1:27017 COMMAND database=admin command={:ismaster=>1} runtime: 0.9700ms
248
+ MOPED: 127.0.0.1:27017 QUERY database=dummy_test collection=remetric_trackables selector={"$query"=>{"key"=>"", "model"=>:contact}, "$orderby"=>{:_id=>1}} flags=[] limit=-1 skip=0 batch_size=nil fields=nil runtime: 0.7550ms
249
+ MOPED: 127.0.0.1:27017 QUERY database=dummy_test collection=remetric_trackables selector={"model"=>:contact, "key"=>""} flags=[] limit=-1 skip=0 batch_size=nil fields={:_id=>1} runtime: 0.4780ms
250
+ MOPED: 127.0.0.1:27017 INSERT database=dummy_test collection=remetric_events documents=[{"_id"=>BSON::ObjectId('53499b13616972a4ce000000'), "description"=>"{{ contact.name }} did this thing.", "contact"=>{:key=>123, :name=>"Awesome Person"}}] flags=[]
251
+ COMMAND database=dummy_test command={:getlasterror=>1, :w=>1} runtime: 0.6210ms
252
+ MOPED: 127.0.0.1:27017 COMMAND database=dummy_test command={:count=>"remetric_trackables", :query=>{}} runtime: 0.4040ms
253
+ ------------------------
254
+ RemetricTest: test_truth
255
+ ------------------------
256
+ -----------------------------------
257
+ Remetric::EventTest: test_the_truth
258
+ -----------------------------------
259
+ MOPED: 127.0.0.1:27017 COMMAND database=admin command={:ismaster=>1} runtime: 1.0340ms
260
+ MOPED: 127.0.0.1:27017 QUERY database=dummy_test collection=remetric_trackables selector={"$query"=>{"key"=>"", "model"=>:contact}, "$orderby"=>{:_id=>1}} flags=[] limit=-1 skip=0 batch_size=nil fields=nil runtime: 0.8080ms
261
+ MOPED: 127.0.0.1:27017 QUERY database=dummy_test collection=remetric_trackables selector={"model"=>:contact, "key"=>""} flags=[] limit=-1 skip=0 batch_size=nil fields={:_id=>1} runtime: 0.4920ms
262
+ MOPED: 127.0.0.1:27017 INSERT database=dummy_test collection=remetric_events documents=[{"_id"=>BSON::ObjectId('53499b81616972a513000000'), "description"=>"{{ contact.name }} did this thing.", "contact"=>{:key=>123, :name=>"Awesome Person"}}] flags=[]
263
+ COMMAND database=dummy_test command={:getlasterror=>1, :w=>1} runtime: 0.5530ms
264
+ ------------------------
265
+ RemetricTest: test_truth
266
+ ------------------------
267
+ -----------------------------------
268
+ Remetric::EventTest: test_the_truth
269
+ -----------------------------------
270
+ MOPED: 127.0.0.1:27017 COMMAND database=admin command={:ismaster=>1} runtime: 1.0230ms
271
+ MOPED: 127.0.0.1:27017 QUERY database=dummy_test collection=remetric_trackables selector={"$query"=>{"key"=>"", "model"=>"contact"}, "$orderby"=>{:_id=>1}} flags=[] limit=-1 skip=0 batch_size=nil fields=nil runtime: 0.8130ms
272
+ MOPED: 127.0.0.1:27017 QUERY database=dummy_test collection=remetric_trackables selector={"model"=>"contact", "key"=>""} flags=[] limit=-1 skip=0 batch_size=nil fields={:_id=>1} runtime: 0.4640ms
273
+ MOPED: 127.0.0.1:27017 INSERT database=dummy_test collection=remetric_events documents=[{"_id"=>BSON::ObjectId('53499bc9616972a553000000'), "description"=>"{{ contact.name }} did this thing.", "contact"=>{:key=>123, :name=>"Awesome Person"}}] flags=[]
274
+ COMMAND database=dummy_test command={:getlasterror=>1, :w=>1} runtime: 0.8310ms
275
+ ------------------------
276
+ RemetricTest: test_truth
277
+ ------------------------
278
+ -----------------------------------
279
+ Remetric::EventTest: test_the_truth
280
+ -----------------------------------
281
+ MOPED: 127.0.0.1:27017 COMMAND database=admin command={:ismaster=>1} runtime: 0.9790ms
282
+ MOPED: 127.0.0.1:27017 QUERY database=dummy_test collection=remetric_trackables selector={"$query"=>{"key"=>"", "model"=>:contact}, "$orderby"=>{:_id=>1}} flags=[] limit=-1 skip=0 batch_size=nil fields=nil runtime: 0.8510ms
283
+ MOPED: 127.0.0.1:27017 QUERY database=dummy_test collection=remetric_trackables selector={"model"=>:contact, "key"=>""} flags=[] limit=-1 skip=0 batch_size=nil fields={:_id=>1} runtime: 0.4840ms
284
+ MOPED: 127.0.0.1:27017 INSERT database=dummy_test collection=remetric_events documents=[{"_id"=>BSON::ObjectId('53499bd6616972a58a000000'), "description"=>"{{ contact.name }} did this thing.", "contact"=>{:key=>123, :name=>"Awesome Person"}}] flags=[]
285
+ COMMAND database=dummy_test command={:getlasterror=>1, :w=>1} runtime: 0.5810ms
286
+ ------------------------
287
+ RemetricTest: test_truth
288
+ ------------------------
289
+ -----------------------------------
290
+ Remetric::EventTest: test_the_truth
291
+ -----------------------------------
292
+ MOPED: 127.0.0.1:27017 COMMAND database=admin command={:ismaster=>1} runtime: 1.1900ms
293
+ MOPED: 127.0.0.1:27017 QUERY database=dummy_test collection=remetric_trackables selector={"$query"=>{"key"=>"", "model"=>"contact"}, "$orderby"=>{:_id=>1}} flags=[] limit=-1 skip=0 batch_size=nil fields=nil runtime: 0.8160ms
294
+ MOPED: 127.0.0.1:27017 QUERY database=dummy_test collection=remetric_trackables selector={"model"=>"contact", "key"=>""} flags=[] limit=-1 skip=0 batch_size=nil fields={:_id=>1} runtime: 0.5240ms
295
+ MOPED: 127.0.0.1:27017 INSERT database=dummy_test collection=remetric_events documents=[{"_id"=>BSON::ObjectId('53499bf2616972a5c4000000'), "description"=>"{{ contact.name }} did this thing.", "contact"=>{:key=>123, :name=>"Awesome Person"}}] flags=[]
296
+ COMMAND database=dummy_test command={:getlasterror=>1, :w=>1} runtime: 0.7270ms
297
+ ------------------------
298
+ RemetricTest: test_truth
299
+ ------------------------
300
+ -----------------------------------
301
+ Remetric::EventTest: test_the_truth
302
+ -----------------------------------
303
+ MOPED: 127.0.0.1:27017 COMMAND database=admin command={:ismaster=>1} runtime: 1.3070ms
304
+ MOPED: 127.0.0.1:27017 QUERY database=dummy_test collection=remetric_trackables selector={"$query"=>{"key"=>"", "model"=>"contact"}, "$orderby"=>{:_id=>1}} flags=[] limit=-1 skip=0 batch_size=nil fields=nil runtime: 0.7880ms
305
+ MOPED: 127.0.0.1:27017 QUERY database=dummy_test collection=remetric_trackables selector={"model"=>"contact", "key"=>""} flags=[] limit=-1 skip=0 batch_size=nil fields={:_id=>1} runtime: 0.4180ms
306
+ MOPED: 127.0.0.1:27017 INSERT database=dummy_test collection=remetric_events documents=[{"_id"=>BSON::ObjectId('53499db9616972a78d000000'), "description"=>"{{ contact.name }} did this thing.", "contact"=>{:key=>123, :name=>"Awesome Person"}}] flags=[]
307
+ COMMAND database=dummy_test command={:getlasterror=>1, :w=>1} runtime: 0.4810ms
308
+ ------------------------
309
+ RemetricTest: test_truth
310
+ ------------------------
311
+ -----------------------------------
312
+ Remetric::EventTest: test_the_truth
313
+ -----------------------------------
314
+ MOPED: 127.0.0.1:27017 COMMAND database=admin command={:ismaster=>1} runtime: 1.1060ms
315
+ MOPED: 127.0.0.1:27017 QUERY database=dummy_test collection=remetric_trackables selector={"$query"=>{"key"=>"", "model"=>"contact"}, "$orderby"=>{:_id=>1}} flags=[] limit=-1 skip=0 batch_size=nil fields=nil runtime: 0.8470ms
316
+ MOPED: 127.0.0.1:27017 QUERY database=dummy_test collection=remetric_trackables selector={"model"=>"contact", "key"=>""} flags=[] limit=-1 skip=0 batch_size=nil fields={:_id=>1} runtime: 0.4860ms
317
+ ------------------------
318
+ RemetricTest: test_truth
319
+ ------------------------
320
+ -----------------------------------
321
+ Remetric::EventTest: test_the_truth
322
+ -----------------------------------
323
+ MOPED: 127.0.0.1:27017 COMMAND database=admin command={:ismaster=>1} runtime: 1.2350ms
324
+ MOPED: 127.0.0.1:27017 QUERY database=dummy_test collection=remetric_trackables selector={"$query"=>{"key"=>"", "model"=>"contact"}, "$orderby"=>{:_id=>1}} flags=[] limit=-1 skip=0 batch_size=nil fields=nil runtime: 0.6110ms
325
+ MOPED: 127.0.0.1:27017 QUERY database=dummy_test collection=remetric_trackables selector={"model"=>"contact", "key"=>""} flags=[] limit=-1 skip=0 batch_size=nil fields={:_id=>1} runtime: 0.6090ms
326
+ MOPED: 127.0.0.1:27017 INSERT database=dummy_test collection=remetric_events documents=[{"_id"=>BSON::ObjectId('53499e5a616972a808000000'), "description"=>"{{ contact.name }} did this thing.", "contact"=>{:key=>"123", :name=>"Awesome Person"}}] flags=[]
327
+ COMMAND database=dummy_test command={:getlasterror=>1, :w=>1} runtime: 0.6630ms
328
+ ------------------------
329
+ RemetricTest: test_truth
330
+ ------------------------
331
+ -----------------------------------
332
+ Remetric::EventTest: test_the_truth
333
+ -----------------------------------
334
+ MOPED: 127.0.0.1:27017 COMMAND database=admin command={:ismaster=>1} runtime: 1.0870ms
335
+ MOPED: 127.0.0.1:27017 QUERY database=dummy_test collection=remetric_trackables selector={"$query"=>{"key"=>"", "model"=>"contact"}, "$orderby"=>{:_id=>1}} flags=[] limit=-1 skip=0 batch_size=nil fields=nil runtime: 0.7620ms
336
+ MOPED: 127.0.0.1:27017 QUERY database=dummy_test collection=remetric_trackables selector={"model"=>"contact", "key"=>""} flags=[] limit=-1 skip=0 batch_size=nil fields={:_id=>1} runtime: 0.4740ms
337
+ MOPED: 127.0.0.1:27017 INSERT database=dummy_test collection=remetric_events documents=[{"_id"=>BSON::ObjectId('53499e91616972a84a000000'), "description"=>"{{ contact.name }} did this thing.", "contact"=>{:key=>"123", :name=>"Awesome Person"}}] flags=[]
338
+ COMMAND database=dummy_test command={:getlasterror=>1, :w=>1} runtime: 0.4980ms
339
+ ------------------------
340
+ RemetricTest: test_truth
341
+ ------------------------
342
+ -----------------------------------
343
+ Remetric::EventTest: test_the_truth
344
+ -----------------------------------
345
+ MOPED: 127.0.0.1:27017 COMMAND database=admin command={:ismaster=>1} runtime: 0.9740ms
346
+ MOPED: 127.0.0.1:27017 QUERY database=dummy_test collection=remetric_trackables selector={"$query"=>{"key"=>"", "model"=>"contact"}, "$orderby"=>{:_id=>1}} flags=[] limit=-1 skip=0 batch_size=nil fields=nil runtime: 0.7790ms
347
+ MOPED: 127.0.0.1:27017 QUERY database=dummy_test collection=remetric_trackables selector={"model"=>"contact", "key"=>""} flags=[] limit=-1 skip=0 batch_size=nil fields={:_id=>1} runtime: 0.4930ms
348
+ MOPED: 127.0.0.1:27017 INSERT database=dummy_test collection=remetric_events documents=[{"_id"=>BSON::ObjectId('53499e98616972a880000000'), "description"=>"{{ contact.name }} did this thing.", "contact"=>{:key=>"123", :name=>"Awesome Person"}}] flags=[]
349
+ COMMAND database=dummy_test command={:getlasterror=>1, :w=>1} runtime: 0.5650ms
350
+ ------------------------
351
+ RemetricTest: test_truth
352
+ ------------------------
353
+ -----------------------------------
354
+ Remetric::EventTest: test_the_truth
355
+ -----------------------------------
356
+ MOPED: 127.0.0.1:27017 COMMAND database=admin command={:ismaster=>1} runtime: 1.0840ms
357
+ MOPED: 127.0.0.1:27017 QUERY database=dummy_test collection=remetric_trackables selector={"$query"=>{"key"=>"", "model"=>"contact"}, "$orderby"=>{:_id=>1}} flags=[] limit=-1 skip=0 batch_size=nil fields=nil runtime: 0.7590ms
358
+ MOPED: 127.0.0.1:27017 QUERY database=dummy_test collection=remetric_trackables selector={"model"=>"contact", "key"=>""} flags=[] limit=-1 skip=0 batch_size=nil fields={:_id=>1} runtime: 0.6660ms
359
+ MOPED: 127.0.0.1:27017 INSERT database=dummy_test collection=remetric_events documents=[{"_id"=>BSON::ObjectId('53499eb9616972a8b8000000'), "description"=>"{{ contact.name }} did this thing.", "contact"=>{:key=>"123", :name=>"Awesome Person"}}] flags=[]
360
+ COMMAND database=dummy_test command={:getlasterror=>1, :w=>1} runtime: 0.6630ms
361
+ ------------------------
362
+ RemetricTest: test_truth
363
+ ------------------------
364
+ -----------------------------------
365
+ Remetric::EventTest: test_the_truth
366
+ -----------------------------------
367
+ MOPED: 127.0.0.1:27017 COMMAND database=admin command={:ismaster=>1} runtime: 1.5180ms
368
+ MOPED: 127.0.0.1:27017 QUERY database=dummy_test collection=remetric_trackables selector={"$query"=>{"key"=>"", "model"=>"contact"}, "$orderby"=>{:_id=>1}} flags=[] limit=-1 skip=0 batch_size=nil fields=nil runtime: 0.7250ms
369
+ MOPED: 127.0.0.1:27017 QUERY database=dummy_test collection=remetric_trackables selector={"model"=>"contact", "key"=>""} flags=[] limit=-1 skip=0 batch_size=nil fields={:_id=>1} runtime: 0.6000ms
370
+ MOPED: 127.0.0.1:27017 INSERT database=dummy_test collection=remetric_events documents=[{"_id"=>BSON::ObjectId('53499ec4616972a8ee000000'), "description"=>"{{ contact.name }} did this thing.", "contact"=>{:key=>"123", :name=>"Awesome Person"}}] flags=[]
371
+ COMMAND database=dummy_test command={:getlasterror=>1, :w=>1} runtime: 0.8590ms
372
+ ------------------------
373
+ RemetricTest: test_truth
374
+ ------------------------
375
+ -----------------------------------
376
+ Remetric::EventTest: test_the_truth
377
+ -----------------------------------
378
+ MOPED: 127.0.0.1:27017 COMMAND database=admin command={:ismaster=>1} runtime: 1.2600ms
379
+ MOPED: 127.0.0.1:27017 QUERY database=dummy_test collection=remetric_trackables selector={"$query"=>{"key"=>"", "model"=>"contact"}, "$orderby"=>{:_id=>1}} flags=[] limit=-1 skip=0 batch_size=nil fields=nil runtime: 0.7210ms
380
+ MOPED: 127.0.0.1:27017 QUERY database=dummy_test collection=remetric_trackables selector={"model"=>"contact", "key"=>""} flags=[] limit=-1 skip=0 batch_size=nil fields={:_id=>1} runtime: 0.4780ms
381
+ MOPED: 127.0.0.1:27017 INSERT database=dummy_test collection=remetric_events documents=[{"_id"=>BSON::ObjectId('53499ede616972a92b000000'), "description"=>"{{ contact.name }} did this thing.", "contact"=>{:key=>"123", :name=>"Awesome Person"}}] flags=[]
382
+ COMMAND database=dummy_test command={:getlasterror=>1, :w=>1} runtime: 0.5080ms
383
+ ------------------------
384
+ RemetricTest: test_truth
385
+ ------------------------
386
+ -----------------------------------
387
+ Remetric::EventTest: test_the_truth
388
+ -----------------------------------
389
+ MOPED: 127.0.0.1:27017 COMMAND database=admin command={:ismaster=>1} runtime: 1.4700ms
390
+ MOPED: 127.0.0.1:27017 QUERY database=dummy_test collection=remetric_trackables selector={"$query"=>{"key"=>"", "model"=>"contact"}, "$orderby"=>{:_id=>1}} flags=[] limit=-1 skip=0 batch_size=nil fields=nil runtime: 1.8280ms
391
+ MOPED: 127.0.0.1:27017 QUERY database=dummy_test collection=remetric_trackables selector={"model"=>"contact", "key"=>""} flags=[] limit=-1 skip=0 batch_size=nil fields={:_id=>1} runtime: 0.6110ms
392
+ MOPED: 127.0.0.1:27017 INSERT database=dummy_test collection=remetric_events documents=[{"_id"=>BSON::ObjectId('53499ee9616972a962000000'), "description"=>"{{ contact.name }} did this thing.", "contact"=>{:key=>"123", :name=>"Awesome Person"}}] flags=[]
393
+ COMMAND database=dummy_test command={:getlasterror=>1, :w=>1} runtime: 0.8160ms
394
+ ------------------------
395
+ RemetricTest: test_truth
396
+ ------------------------
397
+ -----------------------------------
398
+ Remetric::EventTest: test_the_truth
399
+ -----------------------------------
400
+ MOPED: 127.0.0.1:27017 COMMAND database=admin command={:ismaster=>1} runtime: 0.9750ms
401
+ MOPED: 127.0.0.1:27017 QUERY database=dummy_test collection=remetric_trackables selector={"$query"=>{"key"=>"", "model"=>"contact"}, "$orderby"=>{:_id=>1}} flags=[] limit=-1 skip=0 batch_size=nil fields=nil runtime: 1.0370ms
402
+ MOPED: 127.0.0.1:27017 QUERY database=dummy_test collection=remetric_trackables selector={"model"=>"contact", "key"=>""} flags=[] limit=-1 skip=0 batch_size=nil fields={:_id=>1} runtime: 0.5100ms
403
+ MOPED: 127.0.0.1:27017 INSERT database=dummy_test collection=remetric_events documents=[{"_id"=>BSON::ObjectId('53499ef1616972a997000000'), "description"=>"{{ contact.name }} did this thing.", "contact"=>{:key=>"123", :name=>"Awesome Person"}}] flags=[]
404
+ COMMAND database=dummy_test command={:getlasterror=>1, :w=>1} runtime: 0.6140ms
405
+ ------------------------
406
+ RemetricTest: test_truth
407
+ ------------------------
408
+ -----------------------------------
409
+ Remetric::EventTest: test_the_truth
410
+ -----------------------------------
411
+ MOPED: 127.0.0.1:27017 COMMAND database=admin command={:ismaster=>1} runtime: 1.4530ms
412
+ MOPED: 127.0.0.1:27017 QUERY database=dummy_test collection=remetric_trackables selector={"$query"=>{"key"=>"", "model"=>"contact"}, "$orderby"=>{:_id=>1}} flags=[] limit=-1 skip=0 batch_size=nil fields=nil runtime: 0.7270ms
413
+ MOPED: 127.0.0.1:27017 QUERY database=dummy_test collection=remetric_trackables selector={"model"=>"contact", "key"=>""} flags=[] limit=-1 skip=0 batch_size=nil fields={:_id=>1} runtime: 0.5440ms
414
+ MOPED: 127.0.0.1:27017 INSERT database=dummy_test collection=remetric_events documents=[{"_id"=>BSON::ObjectId('53499efa616972a9cd000000'), "description"=>"{{ contact.name }} did this thing.", "contact"=>{:key=>"123", :name=>"Awesome Person"}}] flags=[]
415
+ COMMAND database=dummy_test command={:getlasterror=>1, :w=>1} runtime: 0.6150ms
416
+ ------------------------
417
+ RemetricTest: test_truth
418
+ ------------------------
419
+ -----------------------------------
420
+ Remetric::EventTest: test_the_truth
421
+ -----------------------------------
422
+ MOPED: 127.0.0.1:27017 COMMAND database=admin command={:ismaster=>1} runtime: 1.2660ms
423
+ MOPED: 127.0.0.1:27017 QUERY database=dummy_test collection=remetric_trackables selector={"$query"=>{"key"=>"123", "model"=>"contact"}, "$orderby"=>{:_id=>1}} flags=[] limit=-1 skip=0 batch_size=nil fields=nil runtime: 1.5360ms
424
+ MOPED: 127.0.0.1:27017 QUERY database=dummy_test collection=remetric_trackables selector={"model"=>"contact", "key"=>"123"} flags=[] limit=-1 skip=0 batch_size=nil fields={:_id=>1} runtime: 0.5570ms
425
+ MOPED: 127.0.0.1:27017 INSERT database=dummy_test collection=remetric_trackables documents=[{"_id"=>BSON::ObjectId('53499f1c616972aa04000000'), "key"=>"123", "model"=>"contact", "data"=>{:id=>"123", :name=>"Awesome Person"}}] flags=[]
426
+ COMMAND database=dummy_test command={:getlasterror=>1, :w=>1} runtime: 1.5880ms
427
+ MOPED: 127.0.0.1:27017 INSERT database=dummy_test collection=remetric_events documents=[{"_id"=>BSON::ObjectId('53499f1c616972aa04010000'), "description"=>"{{ contact.name }} did this thing.", "contact"=>{:id=>"123", :name=>"Awesome Person"}}] flags=[]
428
+ COMMAND database=dummy_test command={:getlasterror=>1, :w=>1} runtime: 0.6250ms
429
+ ------------------------
430
+ RemetricTest: test_truth
431
+ ------------------------
432
+ -----------------------------------
433
+ Remetric::EventTest: test_the_truth
434
+ -----------------------------------
435
+ MOPED: 127.0.0.1:27017 COMMAND database=admin command={:ismaster=>1} runtime: 1.0670ms
436
+ MOPED: 127.0.0.1:27017 QUERY database=dummy_test collection=remetric_trackables selector={"$query"=>{"key"=>"123", "model"=>"contact"}, "$orderby"=>{:_id=>1}} flags=[] limit=-1 skip=0 batch_size=nil fields=nil runtime: 0.7670ms
437
+ MOPED: 127.0.0.1:27017 UPDATE database=dummy_test collection=remetric_trackables selector={"_id"=>BSON::ObjectId('53499f1c616972aa04000000')} update={"$set"=>{"data"=>{"id"=>"123", "name"=>"Awesome Person", :id=>"123", :name=>"Awesome Person"}}} flags=[]
438
+ COMMAND database=dummy_test command={:getlasterror=>1, :w=>1} runtime: 0.7870ms
439
+ MOPED: 127.0.0.1:27017 INSERT database=dummy_test collection=remetric_events documents=[{"_id"=>BSON::ObjectId('53499f25616972aa3b000000'), "description"=>"{{ contact.name }} did this thing.", "contact"=>{"id"=>"123", "name"=>"Awesome Person", :id=>"123", :name=>"Awesome Person"}}] flags=[]
440
+ COMMAND database=dummy_test command={:getlasterror=>1, :w=>1} runtime: 0.7560ms
441
+ ------------------------
442
+ RemetricTest: test_truth
443
+ ------------------------
444
+ -----------------------------------
445
+ Remetric::EventTest: test_the_truth
446
+ -----------------------------------
447
+ MOPED: 127.0.0.1:27017 COMMAND database=admin command={:ismaster=>1} runtime: 1.3810ms
448
+ MOPED: 127.0.0.1:27017 QUERY database=dummy_test collection=remetric_trackables selector={"$query"=>{"key"=>"123", "model"=>"contact"}, "$orderby"=>{:_id=>1}} flags=[] limit=-1 skip=0 batch_size=nil fields=nil runtime: 0.6680ms
449
+ MOPED: 127.0.0.1:27017 UPDATE database=dummy_test collection=remetric_trackables selector={"_id"=>BSON::ObjectId('53499f1c616972aa04000000')} update={"$set"=>{"data"=>{"id"=>"123", "name"=>"Awesome Person", :id=>"123", :name=>"Awesome Person"}}} flags=[]
450
+ COMMAND database=dummy_test command={:getlasterror=>1, :w=>1} runtime: 0.6950ms
451
+ MOPED: 127.0.0.1:27017 INSERT database=dummy_test collection=remetric_events documents=[{"_id"=>BSON::ObjectId('53499f2d616972aa70000000'), "description"=>"{{ contact.name }} did this thing.", "contact"=>{"id"=>"123", "name"=>"Awesome Person", :id=>"123", :name=>"Awesome Person"}}] flags=[]
452
+ COMMAND database=dummy_test command={:getlasterror=>1, :w=>1} runtime: 0.6860ms
453
+ ------------------------
454
+ RemetricTest: test_truth
455
+ ------------------------
456
+ -----------------------------------
457
+ Remetric::EventTest: test_the_truth
458
+ -----------------------------------
459
+ MOPED: 127.0.0.1:27017 COMMAND database=admin command={:ismaster=>1} runtime: 1.2030ms
460
+ MOPED: 127.0.0.1:27017 QUERY database=dummy_test collection=remetric_trackables selector={"$query"=>{"key"=>"123", "model"=>"contact"}, "$orderby"=>{:_id=>1}} flags=[] limit=-1 skip=0 batch_size=nil fields=nil runtime: 0.5970ms
461
+ MOPED: 127.0.0.1:27017 UPDATE database=dummy_test collection=remetric_trackables selector={"_id"=>BSON::ObjectId('53499f1c616972aa04000000')} update={"$set"=>{"data"=>{"id"=>"123", "name"=>"Awesome Person", :id=>"123", :name=>"Awesome Person"}}} flags=[]
462
+ COMMAND database=dummy_test command={:getlasterror=>1, :w=>1} runtime: 0.6890ms
463
+ MOPED: 127.0.0.1:27017 INSERT database=dummy_test collection=remetric_events documents=[{"_id"=>BSON::ObjectId('53499f35616972aaa6000000'), "description"=>"{{ contact.name }} did this thing.", "contact"=>{"id"=>"123", "name"=>"Awesome Person", :id=>"123", :name=>"Awesome Person"}}] flags=[]
464
+ COMMAND database=dummy_test command={:getlasterror=>1, :w=>1} runtime: 0.7540ms
465
+ ------------------------
466
+ RemetricTest: test_truth
467
+ ------------------------