dashing-rails 1.0.3 → 2.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (94) hide show
  1. data/.gitignore +10 -0
  2. data/.rspec +1 -0
  3. data/.travis.yml +5 -0
  4. data/CHANGELOG.md +22 -0
  5. data/Gemfile +21 -0
  6. data/Gemfile.lock +150 -0
  7. data/README.md +34 -62
  8. data/app/assets/javascripts/dashing/application.js +1 -12
  9. data/app/assets/stylesheets/dashing/application.css +1 -5
  10. data/app/controllers/dashing/dashboards_controller.rb +3 -3
  11. data/app/controllers/dashing/widgets_controller.rb +2 -7
  12. data/app/views/dashing/{default_widgets/clock → widgets}/clock.html +0 -0
  13. data/app/views/dashing/{default_widgets/comments → widgets}/comments.html +0 -0
  14. data/app/views/dashing/{default_widgets/graph → widgets}/graph.html +0 -0
  15. data/app/views/dashing/{default_widgets/iframe → widgets}/iframe.html +0 -0
  16. data/app/views/dashing/{default_widgets/image → widgets}/image.html +0 -0
  17. data/app/views/dashing/{default_widgets/list → widgets}/list.html +0 -0
  18. data/app/views/dashing/{default_widgets/meter → widgets}/meter.html +0 -0
  19. data/app/views/dashing/{default_widgets/number → widgets}/number.html +0 -0
  20. data/app/views/dashing/{default_widgets/text → widgets}/text.html +0 -0
  21. data/bin/rails +8 -0
  22. data/dashing.gemspec +31 -0
  23. data/lib/dashing.rb +1 -1
  24. data/lib/dashing/configuration.rb +29 -12
  25. data/lib/dashing/engine.rb +7 -3
  26. data/lib/dashing/version.rb +1 -1
  27. data/lib/generators/dashing/install_generator.rb +2 -2
  28. data/lib/generators/dashing/widget_generator.rb +17 -0
  29. data/lib/generators/templates/dashboards/sample.html.erb +1 -1
  30. data/lib/generators/templates/initializer.rb +15 -15
  31. data/lib/generators/templates/widgets/new.coffee +9 -0
  32. data/lib/generators/templates/widgets/new.html +1 -0
  33. data/lib/generators/templates/widgets/new.scss +10 -0
  34. data/spec/dummy/app/{views/dashing/widgets/foo/foo.coffee → assets/images/.keep} +0 -0
  35. data/spec/dummy/app/{views/dashing/widgets/foo/foo.html → assets/javascripts/dashing/widgets/foo.coffee} +0 -0
  36. data/{app/views/dashing/default_widgets → spec/dummy/app/assets/javascripts/dashing/widgets}/index.js +0 -0
  37. data/spec/dummy/app/{views/dashing/widgets/foo → assets/stylesheets/dashing/widgets}/foo.scss +0 -0
  38. data/{app/views/dashing/default_widgets → spec/dummy/app/assets/stylesheets/dashing/widgets}/index.css +0 -0
  39. data/spec/dummy/app/controllers/concerns/.keep +0 -0
  40. data/spec/dummy/app/jobs/sample.rb +9 -0
  41. data/spec/dummy/app/mailers/.keep +0 -0
  42. data/spec/dummy/app/models/.keep +0 -0
  43. data/spec/dummy/app/models/concerns/.keep +0 -0
  44. data/spec/dummy/app/views/dashing/dashboards/sample.html.erb +28 -0
  45. data/spec/dummy/app/views/dashing/widgets/foo.html +0 -0
  46. data/spec/dummy/config/initializers/dashing.rb +57 -0
  47. data/spec/dummy/config/routes.rb +1 -2
  48. data/spec/dummy/lib/assets/.keep +0 -0
  49. data/spec/dummy/log/.keep +0 -0
  50. data/spec/lib/dashing/configuration_spec.rb +19 -9
  51. data/spec/lib/dashing_spec.rb +2 -2
  52. data/{app → vendor}/assets/fonts/dashing/fontawesome-webfont.eot +0 -0
  53. data/{app → vendor}/assets/fonts/dashing/fontawesome-webfont.svg +0 -0
  54. data/{app → vendor}/assets/fonts/dashing/fontawesome-webfont.ttf +0 -0
  55. data/{app → vendor}/assets/fonts/dashing/fontawesome-webfont.woff +0 -0
  56. data/{lib/assets/javascripts → vendor/assets/javascripts/dashing}/batman.jquery.js +0 -0
  57. data/{lib/assets/javascripts → vendor/assets/javascripts/dashing}/batman.js +0 -0
  58. data/{lib/assets/javascripts → vendor/assets/javascripts/dashing}/d3-3.2.8.min.js +0 -0
  59. data/{app → vendor}/assets/javascripts/dashing/dashing-src.coffee +0 -0
  60. data/{lib/assets/javascripts → vendor/assets/javascripts/dashing}/es5-shim.js +0 -0
  61. data/vendor/assets/javascripts/dashing/index.js +24 -0
  62. data/{lib/assets/javascripts → vendor/assets/javascripts/dashing}/jquery.gridster.js +0 -0
  63. data/{lib/assets/javascripts → vendor/assets/javascripts/dashing}/jquery.js +0 -0
  64. data/{lib/assets/javascripts → vendor/assets/javascripts/dashing}/jquery.knob.js +0 -0
  65. data/{lib/assets/javascripts → vendor/assets/javascripts/dashing}/jquery.leanModal.min.js +0 -0
  66. data/{lib/assets/javascripts → vendor/assets/javascripts/dashing}/jquery.timeago.js +0 -0
  67. data/{lib/assets/javascripts → vendor/assets/javascripts/dashing}/moment.min.js +0 -0
  68. data/{lib/assets/javascripts → vendor/assets/javascripts/dashing}/rickshaw-1.4.3.min.js +0 -0
  69. data/{app/views/dashing/default_widgets/clock → vendor/assets/javascripts/dashing/widgets}/clock.coffee +0 -0
  70. data/{app/views/dashing/default_widgets/comments → vendor/assets/javascripts/dashing/widgets}/comments.coffee +0 -0
  71. data/{app/views/dashing/default_widgets/graph → vendor/assets/javascripts/dashing/widgets}/graph.coffee +0 -0
  72. data/{app/views/dashing/default_widgets/iframe → vendor/assets/javascripts/dashing/widgets}/iframe.coffee +0 -0
  73. data/{app/views/dashing/default_widgets/image → vendor/assets/javascripts/dashing/widgets}/image.coffee +0 -0
  74. data/vendor/assets/javascripts/dashing/widgets/index.js +13 -0
  75. data/{app/views/dashing/default_widgets/list → vendor/assets/javascripts/dashing/widgets}/list.coffee +0 -0
  76. data/{app/views/dashing/default_widgets/meter → vendor/assets/javascripts/dashing/widgets}/meter.coffee +0 -0
  77. data/{app/views/dashing/default_widgets/number → vendor/assets/javascripts/dashing/widgets}/number.coffee +0 -0
  78. data/{app/views/dashing/default_widgets/text → vendor/assets/javascripts/dashing/widgets}/text.coffee +0 -0
  79. data/{app/assets/stylesheets/dashing/dashing.scss → vendor/assets/stylesheets/dashing/dashing-src.scss} +0 -0
  80. data/{lib/assets/stylesheets → vendor/assets/stylesheets/dashing}/font-awesome.css +0 -0
  81. data/vendor/assets/stylesheets/dashing/index.css +15 -0
  82. data/{lib/assets/stylesheets → vendor/assets/stylesheets/dashing}/jquery.gridster.css +0 -0
  83. data/{app/views/dashing/default_widgets/clock → vendor/assets/stylesheets/dashing/widgets}/clock.scss +0 -0
  84. data/{app/views/dashing/default_widgets/comments → vendor/assets/stylesheets/dashing/widgets}/comments.scss +0 -0
  85. data/{app/views/dashing/default_widgets/graph → vendor/assets/stylesheets/dashing/widgets}/graph.scss +0 -0
  86. data/{app/views/dashing/default_widgets/iframe → vendor/assets/stylesheets/dashing/widgets}/iframe.scss +0 -0
  87. data/{app/views/dashing/default_widgets/image → vendor/assets/stylesheets/dashing/widgets}/image.scss +0 -0
  88. data/vendor/assets/stylesheets/dashing/widgets/index.css +12 -0
  89. data/{app/views/dashing/default_widgets/list → vendor/assets/stylesheets/dashing/widgets}/list.scss +0 -0
  90. data/{app/views/dashing/default_widgets/meter → vendor/assets/stylesheets/dashing/widgets}/meter.scss +0 -0
  91. data/{app/views/dashing/default_widgets/number → vendor/assets/stylesheets/dashing/widgets}/number.scss +0 -0
  92. data/{app/views/dashing/default_widgets/text → vendor/assets/stylesheets/dashing/widgets}/text.scss +0 -0
  93. metadata +111 -73
  94. data/spec/dummy/log/test.log +0 -421
@@ -1,421 +0,0 @@
1
- Processing by Dashing::WidgetsController#show as HTML
2
- Parameters: {"name"=>"foo"}
3
- Rendered dashing/widgets/foo/foo.html (0.2ms)
4
- Completed 200 OK in 27ms (Views: 26.5ms | ActiveRecord: 0.0ms)
5
- Processing by Dashing::WidgetsController#show as HTML
6
- Parameters: {"name"=>"text"}
7
- Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
8
- Processing by Dashing::WidgetsController#show as HTML
9
- Completed 500 Internal Server Error in 0ms
10
- Processing by Dashing::WidgetsController#show as HTML
11
- Parameters: {"name"=>"bar"}
12
- Completed 500 Internal Server Error in 2ms
13
- Processing by Dashing::WidgetsController#update as HTML
14
- Parameters: {"name"=>"foo"}
15
- Completed 200 OK in 4ms (Views: 2.0ms | ActiveRecord: 0.0ms)
16
- Processing by Dashing::WidgetsController#update as HTML
17
- Completed 500 Internal Server Error in 0ms
18
- Processing by Dashing::DashboardsController#index as HTML
19
- Completed 200 OK in 5ms (Views: 4.1ms | ActiveRecord: 0.0ms)
20
- Processing by Dashing::DashboardsController#show as HTML
21
- Parameters: {"name"=>"foo"}
22
- Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
23
- Processing by Dashing::DashboardsController#show as HTML
24
- Completed 500 Internal Server Error in 0ms
25
- Processing by Dashing::DashboardsController#show as HTML
26
- Parameters: {"name"=>"bar"}
27
- Completed 500 Internal Server Error in 2ms
28
- Processing by Dashing::DashboardsController#show as HTML
29
- Parameters: {"name"=>"bar"}
30
- Completed 500 Internal Server Error in 11ms
31
- Processing by Dashing::DashboardsController#show as HTML
32
- Completed 500 Internal Server Error in 0ms
33
- Processing by Dashing::DashboardsController#show as HTML
34
- Parameters: {"name"=>"foo"}
35
- Completed 200 OK in 24ms (Views: 23.2ms | ActiveRecord: 0.0ms)
36
- Processing by Dashing::DashboardsController#index as HTML
37
- Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
38
- Processing by Dashing::WidgetsController#update as HTML
39
- Completed 500 Internal Server Error in 0ms
40
- Processing by Dashing::WidgetsController#update as HTML
41
- Parameters: {"name"=>"foo"}
42
- Completed 500 Internal Server Error in 2ms
43
- Processing by Dashing::WidgetsController#show as HTML
44
- Parameters: {"name"=>"text"}
45
- Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.0ms)
46
- Processing by Dashing::WidgetsController#show as HTML
47
- Parameters: {"name"=>"foo"}
48
- Completed 200 OK in 3ms (Views: 2.1ms | ActiveRecord: 0.0ms)
49
- Processing by Dashing::WidgetsController#show as HTML
50
- Parameters: {"name"=>"bar"}
51
- Completed 500 Internal Server Error in 2ms
52
- Processing by Dashing::WidgetsController#show as HTML
53
- Completed 500 Internal Server Error in 0ms
54
- Processing by Dashing::DashboardsController#index as HTML
55
- Rendered dashing/dashboards/foo.erb within layouts/dashing/dashboard (1.9ms)
56
- Completed 200 OK in 27ms (Views: 26.4ms | ActiveRecord: 0.0ms)
57
- Processing by Dashing::DashboardsController#show as HTML
58
- Parameters: {"name"=>"foo"}
59
- Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
60
- Processing by Dashing::DashboardsController#show as HTML
61
- Completed 500 Internal Server Error in 0ms
62
- Processing by Dashing::DashboardsController#show as HTML
63
- Parameters: {"name"=>"bar"}
64
- Completed 500 Internal Server Error in 2ms
65
- Processing by Dashing::WidgetsController#show as HTML
66
- Parameters: {"name"=>"text"}
67
- Completed 500 Internal Server Error in 1ms
68
- Processing by Dashing::WidgetsController#show as HTML
69
- Completed 500 Internal Server Error in 1ms
70
- Processing by Dashing::WidgetsController#show as HTML
71
- Parameters: {"name"=>"bar"}
72
- Completed 500 Internal Server Error in 1ms
73
- Processing by Dashing::WidgetsController#show as HTML
74
- Parameters: {"name"=>"foo"}
75
- Completed 500 Internal Server Error in 1ms
76
- Processing by Dashing::WidgetsController#update as HTML
77
- Parameters: {"name"=>"foo"}
78
- Completed 500 Internal Server Error in 1ms
79
- Processing by Dashing::WidgetsController#update as HTML
80
- Completed 500 Internal Server Error in 1ms
81
- Processing by Dashing::DashboardsController#index as HTML
82
- Completed 200 OK in 11ms (Views: 10.5ms | ActiveRecord: 0.0ms)
83
- Processing by Dashing::DashboardsController#show as HTML
84
- Parameters: {"name"=>"foo"}
85
- Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
86
- Processing by Dashing::DashboardsController#show as HTML
87
- Completed 500 Internal Server Error in 0ms
88
- Processing by Dashing::DashboardsController#show as HTML
89
- Parameters: {"name"=>"bar"}
90
- Completed 500 Internal Server Error in 2ms
91
- Processing by Dashing::WidgetsController#show as HTML
92
- Parameters: {"name"=>"text"}
93
- Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.0ms)
94
- Processing by Dashing::WidgetsController#show as HTML
95
- Completed 500 Internal Server Error in 0ms
96
- Processing by Dashing::WidgetsController#show as HTML
97
- Parameters: {"name"=>"bar"}
98
- Completed 500 Internal Server Error in 2ms
99
- Processing by Dashing::WidgetsController#show as HTML
100
- Parameters: {"name"=>"foo"}
101
- Completed 200 OK in 3ms (Views: 2.1ms | ActiveRecord: 0.0ms)
102
- Processing by Dashing::WidgetsController#update as HTML
103
- Parameters: {"name"=>"foo"}
104
- Completed 200 OK in 5ms (Views: 3.4ms | ActiveRecord: 0.0ms)
105
- Processing by Dashing::WidgetsController#update as HTML
106
- Completed 500 Internal Server Error in 0ms
107
- Processing by Dashing::DashboardsController#index as HTML
108
- Completed 200 OK in 14ms (Views: 13.3ms | ActiveRecord: 0.0ms)
109
- Processing by Dashing::DashboardsController#show as HTML
110
- Parameters: {"name"=>"foo"}
111
- Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
112
- Processing by Dashing::DashboardsController#show as HTML
113
- Completed 500 Internal Server Error in 0ms
114
- Processing by Dashing::DashboardsController#show as HTML
115
- Parameters: {"name"=>"bar"}
116
- Completed 500 Internal Server Error in 2ms
117
- Processing by Dashing::WidgetsController#show as HTML
118
- Completed 500 Internal Server Error in 0ms
119
- Processing by Dashing::WidgetsController#show as HTML
120
- Parameters: {"name"=>"bar"}
121
- Completed 500 Internal Server Error in 2ms
122
- Processing by Dashing::WidgetsController#show as HTML
123
- Parameters: {"name"=>"foo"}
124
- Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.0ms)
125
- Processing by Dashing::WidgetsController#show as HTML
126
- Parameters: {"name"=>"text"}
127
- Completed 200 OK in 3ms (Views: 2.2ms | ActiveRecord: 0.0ms)
128
- Processing by Dashing::WidgetsController#update as HTML
129
- Parameters: {"name"=>"foo"}
130
- Completed 500 Internal Server Error in 2ms
131
- Processing by Dashing::WidgetsController#update as HTML
132
- Completed 500 Internal Server Error in 0ms
133
- Processing by Dashing::WidgetsController#show as HTML
134
- Parameters: {"name"=>"text"}
135
- Rendered /Users/pierrelouisgottfrois/Code/dashing-rails/app/views/dashing/default_widgets/text/text.html (0.2ms)
136
- Completed 200 OK in 27ms (Views: 26.5ms | ActiveRecord: 0.0ms)
137
- Processing by Dashing::WidgetsController#show as HTML
138
- Parameters: {"name"=>"foo"}
139
- Completed 200 OK in 3ms (Views: 2.2ms | ActiveRecord: 0.0ms)
140
- Processing by Dashing::WidgetsController#show as HTML
141
- Completed 500 Internal Server Error in 0ms
142
- Processing by Dashing::WidgetsController#show as HTML
143
- Parameters: {"name"=>"bar"}
144
- Completed 500 Internal Server Error in 2ms
145
- Processing by Dashing::WidgetsController#update as HTML
146
- Parameters: {"name"=>"foo"}
147
- Completed 200 OK in 6ms (Views: 4.7ms | ActiveRecord: 0.0ms)
148
- Processing by Dashing::WidgetsController#update as HTML
149
- Completed 500 Internal Server Error in 0ms
150
- Processing by Dashing::DashboardsController#index as HTML
151
- Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.0ms)
152
- Processing by Dashing::DashboardsController#show as HTML
153
- Parameters: {"name"=>"foo"}
154
- Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
155
- Processing by Dashing::DashboardsController#show as HTML
156
- Completed 500 Internal Server Error in 0ms
157
- Processing by Dashing::DashboardsController#show as HTML
158
- Parameters: {"name"=>"bar"}
159
- Completed 500 Internal Server Error in 2ms
160
- Processing by Dashing::WidgetsController#show as HTML
161
- Completed 500 Internal Server Error in 0ms
162
- Processing by Dashing::WidgetsController#show as HTML
163
- Parameters: {"name"=>"bar"}
164
- Completed 500 Internal Server Error in 8ms
165
- Processing by Dashing::WidgetsController#show as HTML
166
- Parameters: {"name"=>"foo"}
167
- Completed 200 OK in 4ms (Views: 3.2ms | ActiveRecord: 0.0ms)
168
- Processing by Dashing::WidgetsController#show as HTML
169
- Parameters: {"name"=>"text"}
170
- Completed 200 OK in 3ms (Views: 2.2ms | ActiveRecord: 0.0ms)
171
- Processing by Dashing::WidgetsController#update as HTML
172
- Parameters: {"name"=>"foo"}
173
- Completed 200 OK in 3ms (Views: 1.5ms | ActiveRecord: 0.0ms)
174
- Processing by Dashing::WidgetsController#update as HTML
175
- Completed 500 Internal Server Error in 0ms
176
- Processing by Dashing::DashboardsController#index as HTML
177
- Completed 200 OK in 5ms (Views: 4.1ms | ActiveRecord: 0.0ms)
178
- Processing by Dashing::DashboardsController#show as HTML
179
- Parameters: {"name"=>"foo"}
180
- Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
181
- Processing by Dashing::DashboardsController#show as HTML
182
- Completed 500 Internal Server Error in 0ms
183
- Processing by Dashing::DashboardsController#show as HTML
184
- Parameters: {"name"=>"bar"}
185
- Completed 500 Internal Server Error in 2ms
186
- Processing by Dashing::WidgetsController#show as HTML
187
- Completed 500 Internal Server Error in 0ms
188
- Processing by Dashing::WidgetsController#show as HTML
189
- Parameters: {"name"=>"bar"}
190
- Completed 500 Internal Server Error in 8ms
191
- Processing by Dashing::WidgetsController#show as HTML
192
- Parameters: {"name"=>"foo"}
193
- Completed 200 OK in 4ms (Views: 3.5ms | ActiveRecord: 0.0ms)
194
- Processing by Dashing::WidgetsController#show as HTML
195
- Parameters: {"name"=>"text"}
196
- Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
197
- Processing by Dashing::WidgetsController#update as HTML
198
- Parameters: {"name"=>"foo"}
199
- Completed 200 OK in 3ms (Views: 1.7ms | ActiveRecord: 0.0ms)
200
- Processing by Dashing::WidgetsController#update as HTML
201
- Completed 500 Internal Server Error in 0ms
202
- Processing by Dashing::DashboardsController#index as HTML
203
- Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.0ms)
204
- Processing by Dashing::DashboardsController#show as HTML
205
- Parameters: {"name"=>"foo"}
206
- Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
207
- Processing by Dashing::DashboardsController#show as HTML
208
- Completed 500 Internal Server Error in 0ms
209
- Processing by Dashing::DashboardsController#show as HTML
210
- Parameters: {"name"=>"bar"}
211
- Completed 500 Internal Server Error in 2ms
212
- Processing by Dashing::DashboardsController#index as HTML
213
- Rendered dashing/dashboards/foo.erb within layouts/dashing/dashboard (2.0ms)
214
- Completed 200 OK in 11ms (Views: 10.7ms | ActiveRecord: 0.0ms)
215
- Processing by Dashing::DashboardsController#show as HTML
216
- Parameters: {"name"=>"foo"}
217
- Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
218
- Processing by Dashing::DashboardsController#show as HTML
219
- Completed 500 Internal Server Error in 0ms
220
- Processing by Dashing::DashboardsController#show as HTML
221
- Parameters: {"name"=>"bar"}
222
- Completed 500 Internal Server Error in 2ms
223
- Processing by Dashing::WidgetsController#show as HTML
224
- Parameters: {"name"=>"text"}
225
- Completed 200 OK in 5ms (Views: 4.2ms | ActiveRecord: 0.0ms)
226
- Processing by Dashing::WidgetsController#show as HTML
227
- Completed 500 Internal Server Error in 0ms
228
- Processing by Dashing::WidgetsController#show as HTML
229
- Parameters: {"name"=>"bar"}
230
- Completed 500 Internal Server Error in 2ms
231
- Processing by Dashing::WidgetsController#show as HTML
232
- Parameters: {"name"=>"foo"}
233
- Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.0ms)
234
- Processing by Dashing::WidgetsController#update as HTML
235
- Parameters: {"name"=>"foo"}
236
- Completed 200 OK in 3ms (Views: 1.8ms | ActiveRecord: 0.0ms)
237
- Processing by Dashing::WidgetsController#update as HTML
238
- Completed 500 Internal Server Error in 0ms
239
- Processing by Dashing::WidgetsController#show as HTML
240
- Completed 500 Internal Server Error in 0ms
241
- Processing by Dashing::WidgetsController#show as HTML
242
- Parameters: {"name"=>"bar"}
243
- Completed 500 Internal Server Error in 8ms
244
- Processing by Dashing::WidgetsController#show as HTML
245
- Parameters: {"name"=>"foo"}
246
- Completed 200 OK in 4ms (Views: 3.5ms | ActiveRecord: 0.0ms)
247
- Processing by Dashing::WidgetsController#show as HTML
248
- Parameters: {"name"=>"text"}
249
- Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
250
- Processing by Dashing::WidgetsController#update as HTML
251
- Parameters: {"name"=>"foo"}
252
- Completed 200 OK in 4ms (Views: 1.7ms | ActiveRecord: 0.0ms)
253
- Processing by Dashing::WidgetsController#update as HTML
254
- Completed 500 Internal Server Error in 0ms
255
- Processing by Dashing::DashboardsController#index as HTML
256
- Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.0ms)
257
- Processing by Dashing::DashboardsController#show as HTML
258
- Parameters: {"name"=>"foo"}
259
- Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
260
- Processing by Dashing::DashboardsController#show as HTML
261
- Completed 500 Internal Server Error in 0ms
262
- Processing by Dashing::DashboardsController#show as HTML
263
- Parameters: {"name"=>"bar"}
264
- Completed 500 Internal Server Error in 24ms
265
- Processing by Dashing::WidgetsController#show as HTML
266
- Parameters: {"name"=>"foo"}
267
- Rendered dashing/widgets/foo/foo.html (0.3ms)
268
- Completed 200 OK in 10ms (Views: 9.6ms | ActiveRecord: 0.0ms)
269
- Processing by Dashing::WidgetsController#show as HTML
270
- Parameters: {"name"=>"text"}
271
- Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
272
- Processing by Dashing::WidgetsController#show as HTML
273
- Completed 500 Internal Server Error in 0ms
274
- Processing by Dashing::WidgetsController#show as HTML
275
- Parameters: {"name"=>"bar"}
276
- Completed 500 Internal Server Error in 2ms
277
- Processing by Dashing::WidgetsController#update as HTML
278
- Parameters: {"name"=>"foo"}
279
- Completed 200 OK in 3ms (Views: 1.6ms | ActiveRecord: 0.0ms)
280
- Processing by Dashing::WidgetsController#update as HTML
281
- Completed 500 Internal Server Error in 0ms
282
- Processing by Dashing::DashboardsController#index as HTML
283
- Completed 200 OK in 5ms (Views: 4.2ms | ActiveRecord: 0.0ms)
284
- Processing by Dashing::DashboardsController#show as HTML
285
- Parameters: {"name"=>"foo"}
286
- Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
287
- Processing by Dashing::DashboardsController#show as HTML
288
- Completed 500 Internal Server Error in 0ms
289
- Processing by Dashing::DashboardsController#show as HTML
290
- Parameters: {"name"=>"bar"}
291
- Completed 500 Internal Server Error in 2ms
292
- Processing by Dashing::WidgetsController#show as HTML
293
- Completed 500 Internal Server Error in 0ms
294
- Processing by Dashing::WidgetsController#show as HTML
295
- Parameters: {"name"=>"bar"}
296
- Completed 500 Internal Server Error in 8ms
297
- Processing by Dashing::WidgetsController#show as HTML
298
- Parameters: {"name"=>"text"}
299
- Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.0ms)
300
- Processing by Dashing::WidgetsController#show as HTML
301
- Parameters: {"name"=>"foo"}
302
- Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.0ms)
303
- Processing by Dashing::WidgetsController#update as HTML
304
- Parameters: {"name"=>"foo"}
305
- Completed 200 OK in 4ms (Views: 1.6ms | ActiveRecord: 0.0ms)
306
- Processing by Dashing::WidgetsController#update as HTML
307
- Completed 500 Internal Server Error in 0ms
308
- Processing by Dashing::DashboardsController#index as HTML
309
- Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.0ms)
310
- Processing by Dashing::DashboardsController#show as HTML
311
- Parameters: {"name"=>"foo"}
312
- Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
313
- Processing by Dashing::DashboardsController#show as HTML
314
- Completed 500 Internal Server Error in 0ms
315
- Processing by Dashing::DashboardsController#show as HTML
316
- Parameters: {"name"=>"bar"}
317
- Completed 500 Internal Server Error in 2ms
318
- Processing by Dashing::WidgetsController#update as HTML
319
- Completed 500 Internal Server Error in 0ms
320
- Processing by Dashing::WidgetsController#update as HTML
321
- Parameters: {"name"=>"foo"}
322
- Completed 200 OK in 10ms (Views: 8.6ms | ActiveRecord: 0.0ms)
323
- Processing by Dashing::WidgetsController#show as HTML
324
- Parameters: {"name"=>"text"}
325
- Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.0ms)
326
- Processing by Dashing::WidgetsController#show as HTML
327
- Parameters: {"name"=>"bar"}
328
- Completed 500 Internal Server Error in 2ms
329
- Processing by Dashing::WidgetsController#show as HTML
330
- Completed 500 Internal Server Error in 0ms
331
- Processing by Dashing::WidgetsController#show as HTML
332
- Parameters: {"name"=>"foo"}
333
- Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
334
- Processing by Dashing::DashboardsController#show as HTML
335
- Parameters: {"name"=>"bar"}
336
- Completed 500 Internal Server Error in 2ms
337
- Processing by Dashing::DashboardsController#show as HTML
338
- Completed 500 Internal Server Error in 0ms
339
- Processing by Dashing::DashboardsController#show as HTML
340
- Parameters: {"name"=>"foo"}
341
- Completed 200 OK in 27ms (Views: 26.4ms | ActiveRecord: 0.0ms)
342
- Processing by Dashing::DashboardsController#index as HTML
343
- Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
344
- Processing by Dashing::WidgetsController#show as HTML
345
- Completed 500 Internal Server Error in 0ms
346
- Processing by Dashing::WidgetsController#show as HTML
347
- Parameters: {"name"=>"bar"}
348
- Completed 500 Internal Server Error in 30ms
349
- Processing by Dashing::WidgetsController#show as HTML
350
- Parameters: {"name"=>"foo"}
351
- Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.0ms)
352
- Processing by Dashing::WidgetsController#show as HTML
353
- Parameters: {"name"=>"text"}
354
- Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
355
- Processing by Dashing::WidgetsController#update as HTML
356
- Parameters: {"name"=>"foo"}
357
- Completed 200 OK in 4ms (Views: 2.1ms | ActiveRecord: 0.0ms)
358
- Processing by Dashing::WidgetsController#update as HTML
359
- Completed 500 Internal Server Error in 0ms
360
- Processing by Dashing::DashboardsController#index as HTML
361
- Completed 200 OK in 6ms (Views: 4.9ms | ActiveRecord: 0.0ms)
362
- Processing by Dashing::DashboardsController#show as HTML
363
- Parameters: {"name"=>"foo"}
364
- Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
365
- Processing by Dashing::DashboardsController#show as HTML
366
- Completed 500 Internal Server Error in 0ms
367
- Processing by Dashing::DashboardsController#show as HTML
368
- Parameters: {"name"=>"bar"}
369
- Completed 500 Internal Server Error in 2ms
370
- Processing by Dashing::WidgetsController#show as HTML
371
- Parameters: {"name"=>"text"}
372
- Completed 200 OK in 12ms (Views: 11.1ms | ActiveRecord: 0.0ms)
373
- Processing by Dashing::WidgetsController#show as HTML
374
- Parameters: {"name"=>"foo"}
375
- Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
376
- Processing by Dashing::WidgetsController#show as HTML
377
- Completed 500 Internal Server Error in 0ms
378
- Processing by Dashing::WidgetsController#show as HTML
379
- Parameters: {"name"=>"bar"}
380
- Completed 500 Internal Server Error in 2ms
381
- Processing by Dashing::WidgetsController#update as HTML
382
- Parameters: {"name"=>"foo"}
383
- Completed 200 OK in 4ms (Views: 1.7ms | ActiveRecord: 0.0ms)
384
- Processing by Dashing::WidgetsController#update as HTML
385
- Completed 500 Internal Server Error in 0ms
386
- Processing by Dashing::DashboardsController#index as HTML
387
- Completed 200 OK in 28ms (Views: 27.7ms | ActiveRecord: 0.0ms)
388
- Processing by Dashing::DashboardsController#show as HTML
389
- Parameters: {"name"=>"foo"}
390
- Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
391
- Processing by Dashing::DashboardsController#show as HTML
392
- Completed 500 Internal Server Error in 0ms
393
- Processing by Dashing::DashboardsController#show as HTML
394
- Parameters: {"name"=>"bar"}
395
- Completed 500 Internal Server Error in 2ms
396
- Processing by Dashing::DashboardsController#show as HTML
397
- Parameters: {"name"=>"bar"}
398
- Completed 500 Internal Server Error in 28ms
399
- Processing by Dashing::DashboardsController#show as HTML
400
- Completed 500 Internal Server Error in 0ms
401
- Processing by Dashing::DashboardsController#show as HTML
402
- Parameters: {"name"=>"foo"}
403
- Completed 200 OK in 4ms (Views: 4.2ms | ActiveRecord: 0.0ms)
404
- Processing by Dashing::DashboardsController#index as HTML
405
- Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
406
- Processing by Dashing::WidgetsController#update as HTML
407
- Completed 500 Internal Server Error in 0ms
408
- Processing by Dashing::WidgetsController#update as HTML
409
- Parameters: {"name"=>"foo"}
410
- Completed 200 OK in 5ms (Views: 2.7ms | ActiveRecord: 0.0ms)
411
- Processing by Dashing::WidgetsController#show as HTML
412
- Parameters: {"name"=>"text"}
413
- Completed 200 OK in 4ms (Views: 4.0ms | ActiveRecord: 0.0ms)
414
- Processing by Dashing::WidgetsController#show as HTML
415
- Parameters: {"name"=>"bar"}
416
- Completed 500 Internal Server Error in 2ms
417
- Processing by Dashing::WidgetsController#show as HTML
418
- Completed 500 Internal Server Error in 0ms
419
- Processing by Dashing::WidgetsController#show as HTML
420
- Parameters: {"name"=>"foo"}
421
- Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.0ms)