lettrics 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (71) hide show
  1. checksums.yaml +7 -0
  2. checksums.yaml.gz.sig +0 -0
  3. data/MIT-LICENSE +20 -0
  4. data/README.markdown +51 -0
  5. data/Rakefile +38 -0
  6. data/app/assets/javascripts/lettrics.js.coffee +22 -0
  7. data/lib/lettrics/version.rb +3 -0
  8. data/lib/lettrics.rb +6 -0
  9. data/lib/tasks/lettrics_tasks.rake +4 -0
  10. data/spec/dummy/README.rdoc +261 -0
  11. data/spec/dummy/Rakefile +7 -0
  12. data/spec/dummy/app/assets/javascripts/application.js +16 -0
  13. data/spec/dummy/app/assets/stylesheets/application.css +13 -0
  14. data/spec/dummy/app/controllers/application_controller.rb +3 -0
  15. data/spec/dummy/app/controllers/pages_controller.rb +13 -0
  16. data/spec/dummy/app/helpers/application_helper.rb +2 -0
  17. data/spec/dummy/app/views/layouts/application.html.erb +14 -0
  18. data/spec/dummy/app/views/pages/small_text_area.html +3 -0
  19. data/spec/dummy/app/views/pages/text_area.html +3 -0
  20. data/spec/dummy/app/views/pages/text_area_with_text.html +2 -0
  21. data/spec/dummy/app/views/pages/text_areas.html +7 -0
  22. data/spec/dummy/config/application.rb +59 -0
  23. data/spec/dummy/config/boot.rb +10 -0
  24. data/spec/dummy/config/database.yml +25 -0
  25. data/spec/dummy/config/environment.rb +5 -0
  26. data/spec/dummy/config/environments/development.rb +37 -0
  27. data/spec/dummy/config/environments/production.rb +67 -0
  28. data/spec/dummy/config/environments/test.rb +37 -0
  29. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  30. data/spec/dummy/config/initializers/inflections.rb +15 -0
  31. data/spec/dummy/config/initializers/mime_types.rb +5 -0
  32. data/spec/dummy/config/initializers/secret_token.rb +7 -0
  33. data/spec/dummy/config/initializers/session_store.rb +8 -0
  34. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  35. data/spec/dummy/config/locales/en.yml +5 -0
  36. data/spec/dummy/config/routes.rb +62 -0
  37. data/spec/dummy/config.ru +4 -0
  38. data/spec/dummy/db/development.sqlite3 +0 -0
  39. data/spec/dummy/db/test.sqlite3 +0 -0
  40. data/spec/dummy/log/development.log +1388 -0
  41. data/spec/dummy/log/test.log +768 -0
  42. data/spec/dummy/public/404.html +26 -0
  43. data/spec/dummy/public/422.html +26 -0
  44. data/spec/dummy/public/500.html +25 -0
  45. data/spec/dummy/public/favicon.ico +0 -0
  46. data/spec/dummy/script/rails +6 -0
  47. data/spec/dummy/tmp/cache/assets/C01/730/sprockets%2F500659744c217844696e2c86676f0c25 +0 -0
  48. data/spec/dummy/tmp/cache/assets/C75/460/sprockets%2F94da8462fc55e11170903ef0a3703516 +0 -0
  49. data/spec/dummy/tmp/cache/assets/CB1/520/sprockets%2F79ca64faa1e80c776248b4a421253785 +0 -0
  50. data/spec/dummy/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953 +0 -0
  51. data/spec/dummy/tmp/cache/assets/CF3/410/sprockets%2Fde6edfb1186fa00d46866436924946f9 +0 -0
  52. data/spec/dummy/tmp/cache/assets/CFF/100/sprockets%2F7b8e06d7174372badca3430622e5b52b +0 -0
  53. data/spec/dummy/tmp/cache/assets/D2D/DA0/sprockets%2Fa1de6237f30da30581cbc1e078905e4a +0 -0
  54. data/spec/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705 +0 -0
  55. data/spec/dummy/tmp/cache/assets/D41/870/sprockets%2F1afa09c8dd3d1a765472b455c94f582c +0 -0
  56. data/spec/dummy/tmp/cache/assets/D4B/940/sprockets%2F7675e8ff74c03c57ff006bb46807ce3c +0 -0
  57. data/spec/dummy/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655 +0 -0
  58. data/spec/dummy/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6 +0 -0
  59. data/spec/dummy/tmp/cache/assets/D86/BC0/sprockets%2F4e8d94183affe56af668b052e876aed7 +0 -0
  60. data/spec/dummy/tmp/cache/assets/D9D/4F0/sprockets%2F96ddc1374a336ea11c4847c2af6fa7ed +0 -0
  61. data/spec/dummy/tmp/cache/assets/DA6/F80/sprockets%2F08fdba99041ea1fa6c9c68ffd249a373 +0 -0
  62. data/spec/dummy/tmp/cache/assets/DBC/B60/sprockets%2Fb26a4c1021ae8b88ccbe72b2c96cf01d +0 -0
  63. data/spec/dummy/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994 +0 -0
  64. data/spec/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af +0 -0
  65. data/spec/dummy/tmp/cache/assets/E26/F00/sprockets%2F2d3cf5d17d8b4f5a8edb4cfa63b1a50f +0 -0
  66. data/spec/features/lettrics_integration_spec.rb +48 -0
  67. data/spec/lettrics_spec.rb +7 -0
  68. data/spec/spec_helper.rb +9 -0
  69. data.tar.gz.sig +0 -0
  70. metadata +291 -0
  71. metadata.gz.sig +0 -0
@@ -0,0 +1,768 @@
1
+ Connecting to database specified by database.yml
2
+ Started GET "/assets/lettrics.js" for 127.0.0.1 at 2014-03-21 15:45:13 -0400
3
+ Served asset /lettrics.js - 404 Not Found (40ms)
4
+ Connecting to database specified by database.yml
5
+ Started GET "/assets/lettrics.js" for 127.0.0.1 at 2014-03-21 15:49:41 -0400
6
+ Error compiling asset lettrics.js:
7
+ LoadError: cannot load such file -- coffee_script
8
+ (in /Users/pmm21/work/lettrics/spec/dummy/app/assets/javascripts/lettrics.coffee)
9
+ Served asset /lettrics.js - 500 Internal Server Error
10
+
11
+
12
+ Connecting to database specified by database.yml
13
+ Started GET "/assets/lettrics.coffee" for 127.0.0.1 at 2014-03-21 15:51:39 -0400
14
+ Error compiling asset lettrics.coffee:
15
+ LoadError: cannot load such file -- coffee_script
16
+ (in /Users/pmm21/work/lettrics/spec/dummy/app/assets/javascripts/lettrics.coffee)
17
+ Served asset /lettrics.coffee - 500 Internal Server Error
18
+
19
+
20
+ Connecting to database specified by database.yml
21
+ Started GET "/assets/lettrics.coffee" for 127.0.0.1 at 2014-03-21 15:55:12 -0400
22
+ Compiled lettrics.js (1907ms) (pid 80175)
23
+ Served asset /lettrics.coffee - 200 OK (1920ms)
24
+ Connecting to database specified by database.yml
25
+ Started GET "/assets/lettrics.coffee" for 127.0.0.1 at 2014-03-21 15:56:17 -0400
26
+ Compiled lettrics.js (198ms) (pid 80186)
27
+ Served asset /lettrics.coffee - 200 OK (208ms)
28
+ Connecting to database specified by database.yml
29
+ Started GET "/assets/lettrics.coffee" for 127.0.0.1 at 2014-03-21 16:09:17 -0400
30
+ Served asset /lettrics.coffee - 200 OK (5ms)
31
+ Connecting to database specified by database.yml
32
+ Started GET "/assets/lettrics.js" for 127.0.0.1 at 2014-03-21 16:10:10 -0400
33
+ Served asset /lettrics.js - 200 OK (5ms)
34
+ Connecting to database specified by database.yml
35
+ Started GET "/assets/lettrics.js" for 127.0.0.1 at 2014-03-21 16:11:27 -0400
36
+ Compiled lettrics.js (386ms) (pid 80274)
37
+ Served asset /lettrics.js - 200 OK (398ms)
38
+ Connecting to database specified by database.yml
39
+ Started GET "/assets/lettrics.js" for 127.0.0.1 at 2014-03-21 16:11:38 -0400
40
+ Served asset /lettrics.js - 200 OK (7ms)
41
+ Connecting to database specified by database.yml
42
+ Started GET "/assets/lettrics.js" for 127.0.0.1 at 2014-03-21 16:14:40 -0400
43
+ Served asset /lettrics.js - 200 OK (6ms)
44
+ Connecting to database specified by database.yml
45
+ Started GET "/assets/lettrics.js" for 127.0.0.1 at 2014-03-21 16:15:42 -0400
46
+ Served asset /lettrics.js - 200 OK (4ms)
47
+ Connecting to database specified by database.yml
48
+ Started GET "/assets/lettrics.js" for 127.0.0.1 at 2014-03-21 16:16:11 -0400
49
+ Compiled lettrics.js (600ms) (pid 80312)
50
+ Served asset /lettrics.js - 200 OK (613ms)
51
+ Connecting to database specified by database.yml
52
+ Started GET "/assets/lettrics.js" for 127.0.0.1 at 2014-03-21 16:17:31 -0400
53
+ Compiled lettrics.js (244ms) (pid 80323)
54
+ Served asset /lettrics.js - 200 OK (255ms)
55
+ Connecting to database specified by database.yml
56
+ Started GET "/assets/lettrics.js" for 127.0.0.1 at 2014-03-21 16:17:50 -0400
57
+ Served asset /lettrics.js - 200 OK (4ms)
58
+ Connecting to database specified by database.yml
59
+ Started GET "/assets/lettrics.js" for 127.0.0.1 at 2014-03-21 16:24:59 -0400
60
+ Served asset /lettrics.js - 200 OK (109ms)
61
+ Connecting to database specified by database.yml
62
+ Started GET "/assets/lettrics.js" for 127.0.0.1 at 2014-03-21 16:27:59 -0400
63
+ Served asset /lettrics.js - 200 OK (28ms)
64
+ Connecting to database specified by database.yml
65
+ Started GET "/assets/lettrics.js" for 127.0.0.1 at 2014-03-21 16:28:13 -0400
66
+ Served asset /lettrics.js - 200 OK (5ms)
67
+ Connecting to database specified by database.yml
68
+ Started GET "/assets/lettrics.js" for 127.0.0.1 at 2014-03-21 16:28:24 -0400
69
+ Served asset /lettrics.js - 200 OK (4ms)
70
+ Connecting to database specified by database.yml
71
+ Started GET "/assets/lettrics.js" for 127.0.0.1 at 2014-03-21 16:28:36 -0400
72
+ Served asset /lettrics.js - 200 OK (4ms)
73
+ Connecting to database specified by database.yml
74
+ Started GET "/assets/lettrics.js" for 127.0.0.1 at 2014-03-21 16:29:47 -0400
75
+ Served asset /lettrics.js - 200 OK (5ms)
76
+ Connecting to database specified by database.yml
77
+ Started GET "/assets/lettrics.js" for 127.0.0.1 at 2014-03-21 16:31:00 -0400
78
+ Served asset /lettrics.js - 200 OK (23ms)
79
+ Connecting to database specified by database.yml
80
+ Started GET "/assets/lettrics.js" for 127.0.0.1 at 2014-03-21 16:32:25 -0400
81
+ Compiled lettrics.js (910ms) (pid 80519)
82
+ Served asset /lettrics.js - 200 OK (945ms)
83
+ Connecting to database specified by database.yml
84
+ Started GET "/assets/lettrics.js" for 127.0.0.1 at 2014-03-21 16:33:17 -0400
85
+ Served asset /lettrics.js - 200 OK (7ms)
86
+ Connecting to database specified by database.yml
87
+ Started GET "/assets/lettrics.js" for 127.0.0.1 at 2014-03-21 16:34:51 -0400
88
+ Compiled lettrics.js (329ms) (pid 80545)
89
+ Served asset /lettrics.js - 200 OK (341ms)
90
+ Connecting to database specified by database.yml
91
+ Started GET "/assets/lettrics.js" for 127.0.0.1 at 2014-03-21 16:35:16 -0400
92
+ Compiled lettrics.js (225ms) (pid 80558)
93
+ Served asset /lettrics.js - 200 OK (237ms)
94
+ Connecting to database specified by database.yml
95
+ Started GET "/assets/lettrics.js" for 127.0.0.1 at 2014-03-21 16:35:57 -0400
96
+ Compiled lettrics.js (213ms) (pid 80571)
97
+ Served asset /lettrics.js - 200 OK (224ms)
98
+ Connecting to database specified by database.yml
99
+ Started GET "/assets/lettrics.js" for 127.0.0.1 at 2014-03-21 16:39:21 -0400
100
+ Compiled lettrics.js (227ms) (pid 80589)
101
+ Served asset /lettrics.js - 200 OK (238ms)
102
+ Connecting to database specified by database.yml
103
+ Started GET "/assets/lettrics.js" for 127.0.0.1 at 2014-03-21 16:40:58 -0400
104
+ Served asset /lettrics.js - 200 OK (6ms)
105
+ Connecting to database specified by database.yml
106
+ Started GET "/assets/lettrics.js" for 127.0.0.1 at 2014-03-21 16:45:05 -0400
107
+ Compiled lettrics.js (240ms) (pid 80624)
108
+ Served asset /lettrics.js - 200 OK (317ms)
109
+ Connecting to database specified by database.yml
110
+ Started GET "/assets/lettrics.js" for 127.0.0.1 at 2014-03-21 16:45:54 -0400
111
+ Served asset /lettrics.js - 200 OK (6ms)
112
+ Connecting to database specified by database.yml
113
+ Started GET "/assets/lettrics.js" for 127.0.0.1 at 2014-03-21 16:48:52 -0400
114
+ Served asset /lettrics.js - 200 OK (9ms)
115
+ Connecting to database specified by database.yml
116
+ Started GET "/assets/lettrics.js" for 127.0.0.1 at 2014-03-21 16:49:32 -0400
117
+ Served asset /lettrics.js - 200 OK (6ms)
118
+ Connecting to database specified by database.yml
119
+ Started GET "/assets/lettrics.js" for 127.0.0.1 at 2014-03-21 16:51:53 -0400
120
+ Served asset /lettrics.js - 200 OK (5ms)
121
+ Connecting to database specified by database.yml
122
+ Started GET "/assets/lettrics.js" for 127.0.0.1 at 2014-03-21 16:54:33 -0400
123
+ Compiled lettrics.js (221ms) (pid 80708)
124
+ Served asset /lettrics.js - 200 OK (228ms)
125
+ Started GET "/text_area" for 127.0.0.1 at 2014-03-21 16:54:34 -0400
126
+ Processing by PagesController#text_area as HTML
127
+ Rendered pages/text_area.html within layouts/application (1.5ms)
128
+ Completed 200 OK in 14.0ms (Views: 12.9ms | ActiveRecord: 0.0ms)
129
+ Started GET "/text_area" for 127.0.0.1 at 2014-03-21 16:54:42 -0400
130
+ Processing by PagesController#text_area as HTML
131
+ Rendered pages/text_area.html within layouts/application (0.1ms)
132
+ Completed 200 OK in 4.6ms (Views: 4.0ms | ActiveRecord: 0.0ms)
133
+ Started GET "/assets/application.css" for 127.0.0.1 at 2014-03-21 16:54:42 -0400
134
+ Compiled application.css (1ms) (pid 80708)
135
+ Served asset /application.css - 200 OK (41ms)
136
+ Started GET "/assets/application.js" for 127.0.0.1 at 2014-03-21 16:54:42 -0400
137
+ Compiled jquery.js (67ms) (pid 80708)
138
+ Compiled jquery_ujs.js (1ms) (pid 80708)
139
+ Compiled application.js (318ms) (pid 80708)
140
+ Served asset /application.js - 200 OK (521ms)
141
+ Connecting to database specified by database.yml
142
+ Started GET "/assets/lettrics.js" for 127.0.0.1 at 2014-03-24 13:43:24 -0400
143
+ Served asset /lettrics.js - 200 OK (61ms)
144
+ Started GET "/text_area" for 127.0.0.1 at 2014-03-24 13:43:24 -0400
145
+ Processing by PagesController#text_area as HTML
146
+ Rendered pages/text_area.html within layouts/application (2.4ms)
147
+ Completed 200 OK in 34.3ms (Views: 33.8ms | ActiveRecord: 0.0ms)
148
+ Connecting to database specified by database.yml
149
+ Started GET "/assets/lettrics.js" for 127.0.0.1 at 2014-03-24 13:44:09 -0400
150
+ Served asset /lettrics.js - 200 OK (5ms)
151
+ Started GET "/text_area" for 127.0.0.1 at 2014-03-24 13:44:09 -0400
152
+ Processing by PagesController#text_area as HTML
153
+ Rendered pages/text_area.html within layouts/application (2.1ms)
154
+ Completed 200 OK in 13.9ms (Views: 13.4ms | ActiveRecord: 0.0ms)
155
+ Connecting to database specified by database.yml
156
+ Started GET "/assets/lettrics.js" for 127.0.0.1 at 2014-03-24 13:44:25 -0400
157
+ Served asset /lettrics.js - 200 OK (5ms)
158
+ Started GET "/text_area" for 127.0.0.1 at 2014-03-24 13:44:25 -0400
159
+ Processing by PagesController#text_area as HTML
160
+ Rendered pages/text_area.html within layouts/application (1.9ms)
161
+ Completed 200 OK in 13.1ms (Views: 12.6ms | ActiveRecord: 0.0ms)
162
+ Connecting to database specified by database.yml
163
+ Connecting to database specified by database.yml
164
+ Started GET "/assets/lettrics.js" for 127.0.0.1 at 2014-03-24 13:46:44 -0400
165
+ Served asset /lettrics.js - 200 OK (4ms)
166
+ Started GET "/text_area" for 127.0.0.1 at 2014-03-24 13:46:44 -0400
167
+ Processing by PagesController#text_area as HTML
168
+ Rendered pages/text_area.html within layouts/application (1.4ms)
169
+ Completed 200 OK in 15.5ms (Views: 14.8ms | ActiveRecord: 0.0ms)
170
+ Connecting to database specified by database.yml
171
+ Started GET "/assets/lettrics.js" for 127.0.0.1 at 2014-03-24 13:46:53 -0400
172
+ Served asset /lettrics.js - 200 OK (5ms)
173
+ Started GET "/text_area" for 127.0.0.1 at 2014-03-24 13:46:53 -0400
174
+ Processing by PagesController#text_area as HTML
175
+ Rendered pages/text_area.html within layouts/application (1.7ms)
176
+ Completed 200 OK in 12.6ms (Views: 12.0ms | ActiveRecord: 0.0ms)
177
+ Connecting to database specified by database.yml
178
+ Started GET "/assets/lettrics.js" for 127.0.0.1 at 2014-03-24 13:47:09 -0400
179
+ Served asset /lettrics.js - 200 OK (5ms)
180
+ Started GET "/text_area" for 127.0.0.1 at 2014-03-24 13:47:09 -0400
181
+ Processing by PagesController#text_area as HTML
182
+ Rendered pages/text_area.html within layouts/application (1.8ms)
183
+ Completed 200 OK in 13.9ms (Views: 13.2ms | ActiveRecord: 0.0ms)
184
+ Connecting to database specified by database.yml
185
+ Started GET "/assets/lettrics.js" for 127.0.0.1 at 2014-03-24 13:47:23 -0400
186
+ Served asset /lettrics.js - 200 OK (5ms)
187
+ Started GET "/text_area" for 127.0.0.1 at 2014-03-24 13:47:23 -0400
188
+ Processing by PagesController#text_area as HTML
189
+ Rendered pages/text_area.html within layouts/application (2.5ms)
190
+ Completed 200 OK in 14.2ms (Views: 13.6ms | ActiveRecord: 0.0ms)
191
+ Connecting to database specified by database.yml
192
+ Connecting to database specified by database.yml
193
+ Started GET "/assets/lettrics.js" for 127.0.0.1 at 2014-03-24 13:47:44 -0400
194
+ Served asset /lettrics.js - 200 OK (5ms)
195
+ Started GET "/text_area" for 127.0.0.1 at 2014-03-24 13:47:44 -0400
196
+ Processing by PagesController#text_area as HTML
197
+ Rendered pages/text_area.html within layouts/application (1.1ms)
198
+ Completed 200 OK in 9.5ms (Views: 9.0ms | ActiveRecord: 0.0ms)
199
+ Started GET "/text_area" for 127.0.0.1 at 2014-03-24 13:47:47 -0400
200
+ Processing by PagesController#text_area as HTML
201
+ Rendered pages/text_area.html within layouts/application (0.1ms)
202
+ Completed 200 OK in 3.4ms (Views: 3.1ms | ActiveRecord: 0.0ms)
203
+ Started GET "/assets/application.css" for 127.0.0.1 at 2014-03-24 13:47:47 -0400
204
+ Served asset /application.css - 200 OK (25ms)
205
+ Started GET "/assets/application.js" for 127.0.0.1 at 2014-03-24 13:47:47 -0400
206
+ Served asset /application.js - 200 OK (84ms)
207
+ Connecting to database specified by database.yml
208
+ Started GET "/assets/lettrics.js" for 127.0.0.1 at 2014-03-24 13:48:42 -0400
209
+ Compiled lettrics.js (723ms) (pid 95233)
210
+ Served asset /lettrics.js - 200 OK (733ms)
211
+ Started GET "/text_area" for 127.0.0.1 at 2014-03-24 13:48:43 -0400
212
+ Processing by PagesController#text_area as HTML
213
+ Rendered pages/text_area.html within layouts/application (2.1ms)
214
+ Completed 200 OK in 16.8ms (Views: 16.1ms | ActiveRecord: 0.0ms)
215
+ Started GET "/text_area" for 127.0.0.1 at 2014-03-24 13:48:46 -0400
216
+ Processing by PagesController#text_area as HTML
217
+ Rendered pages/text_area.html within layouts/application (0.1ms)
218
+ Completed 200 OK in 3.5ms (Views: 3.0ms | ActiveRecord: 0.0ms)
219
+ Started GET "/assets/application.css" for 127.0.0.1 at 2014-03-24 13:48:46 -0400
220
+ Served asset /application.css - 200 OK (4ms)
221
+ Started GET "/assets/application.js" for 127.0.0.1 at 2014-03-24 13:48:46 -0400
222
+ Compiled application.js (4ms) (pid 95233)
223
+ Served asset /application.js - 200 OK (81ms)
224
+ Connecting to database specified by database.yml
225
+ Started GET "/assets/lettrics.js" for 127.0.0.1 at 2014-03-24 13:49:45 -0400
226
+ Compiled lettrics.js (218ms) (pid 95249)
227
+ Served asset /lettrics.js - 200 OK (228ms)
228
+ Started GET "/text_area" for 127.0.0.1 at 2014-03-24 13:49:45 -0400
229
+ Processing by PagesController#text_area as HTML
230
+ Rendered pages/text_area.html within layouts/application (1.3ms)
231
+ Completed 200 OK in 11.6ms (Views: 10.9ms | ActiveRecord: 0.0ms)
232
+ Started GET "/text_area" for 127.0.0.1 at 2014-03-24 13:49:48 -0400
233
+ Processing by PagesController#text_area as HTML
234
+ Rendered pages/text_area.html within layouts/application (0.1ms)
235
+ Completed 200 OK in 4.0ms (Views: 3.5ms | ActiveRecord: 0.0ms)
236
+ Started GET "/assets/application.css" for 127.0.0.1 at 2014-03-24 13:49:48 -0400
237
+ Served asset /application.css - 200 OK (7ms)
238
+ Started GET "/assets/application.js" for 127.0.0.1 at 2014-03-24 13:49:48 -0400
239
+ Compiled application.js (6ms) (pid 95249)
240
+ Served asset /application.js - 200 OK (80ms)
241
+ Connecting to database specified by database.yml
242
+ Started GET "/assets/lettrics.js" for 127.0.0.1 at 2014-03-24 13:50:53 -0400
243
+ Compiled lettrics.js (218ms) (pid 95265)
244
+ Served asset /lettrics.js - 200 OK (228ms)
245
+ Started GET "/text_area" for 127.0.0.1 at 2014-03-24 13:50:53 -0400
246
+ Processing by PagesController#text_area as HTML
247
+ Rendered pages/text_area.html within layouts/application (1.5ms)
248
+ Completed 200 OK in 13.4ms (Views: 12.8ms | ActiveRecord: 0.0ms)
249
+ Started GET "/text_area" for 127.0.0.1 at 2014-03-24 13:50:57 -0400
250
+ Processing by PagesController#text_area as HTML
251
+ Rendered pages/text_area.html within layouts/application (0.1ms)
252
+ Completed 200 OK in 3.0ms (Views: 2.6ms | ActiveRecord: 0.0ms)
253
+ Started GET "/assets/application.css" for 127.0.0.1 at 2014-03-24 13:50:57 -0400
254
+ Served asset /application.css - 200 OK (4ms)
255
+ Started GET "/assets/application.js" for 127.0.0.1 at 2014-03-24 13:50:57 -0400
256
+ Compiled application.js (3ms) (pid 95265)
257
+ Served asset /application.js - 200 OK (78ms)
258
+ Connecting to database specified by database.yml
259
+ Started GET "/assets/lettrics.js" for 127.0.0.1 at 2014-03-24 13:51:18 -0400
260
+ Compiled lettrics.js (214ms) (pid 95278)
261
+ Served asset /lettrics.js - 200 OK (225ms)
262
+ Started GET "/text_area" for 127.0.0.1 at 2014-03-24 13:51:18 -0400
263
+ Processing by PagesController#text_area as HTML
264
+ Rendered pages/text_area.html within layouts/application (2.0ms)
265
+ Completed 200 OK in 13.2ms (Views: 12.4ms | ActiveRecord: 0.0ms)
266
+ Started GET "/text_area" for 127.0.0.1 at 2014-03-24 13:51:22 -0400
267
+ Processing by PagesController#text_area as HTML
268
+ Rendered pages/text_area.html within layouts/application (0.1ms)
269
+ Completed 200 OK in 3.3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
270
+ Started GET "/assets/application.css" for 127.0.0.1 at 2014-03-24 13:51:22 -0400
271
+ Served asset /application.css - 200 OK (4ms)
272
+ Started GET "/assets/application.js" for 127.0.0.1 at 2014-03-24 13:51:22 -0400
273
+ Compiled application.js (4ms) (pid 95278)
274
+ Served asset /application.js - 200 OK (77ms)
275
+ Connecting to database specified by database.yml
276
+ Started GET "/assets/lettrics.js" for 127.0.0.1 at 2014-03-24 13:55:00 -0400
277
+ Compiled lettrics.js (216ms) (pid 95300)
278
+ Served asset /lettrics.js - 200 OK (227ms)
279
+ Started GET "/text_area" for 127.0.0.1 at 2014-03-24 13:55:00 -0400
280
+ Processing by PagesController#text_area as HTML
281
+ Rendered pages/text_area.html within layouts/application (1.4ms)
282
+ Completed 200 OK in 12.6ms (Views: 11.7ms | ActiveRecord: 0.0ms)
283
+ Started GET "/text_area" for 127.0.0.1 at 2014-03-24 13:55:04 -0400
284
+ Processing by PagesController#text_area as HTML
285
+ Rendered pages/text_area.html within layouts/application (0.1ms)
286
+ Completed 200 OK in 4.0ms (Views: 3.5ms | ActiveRecord: 0.0ms)
287
+ Started GET "/assets/application.css" for 127.0.0.1 at 2014-03-24 13:55:04 -0400
288
+ Compiled application.css (1ms) (pid 95300)
289
+ Served asset /application.css - 200 OK (14ms)
290
+ Started GET "/assets/application.js" for 127.0.0.1 at 2014-03-24 13:55:04 -0400
291
+ Compiled jquery.js (64ms) (pid 95300)
292
+ Compiled jquery_ujs.js (0ms) (pid 95300)
293
+ Compiled application.js (86ms) (pid 95300)
294
+ Served asset /application.js - 200 OK (99ms)
295
+ Connecting to database specified by database.yml
296
+ Started GET "/assets/lettrics.js" for 127.0.0.1 at 2014-03-24 13:55:41 -0400
297
+ Served asset /lettrics.js - 200 OK (5ms)
298
+ Started GET "/text_area" for 127.0.0.1 at 2014-03-24 13:55:41 -0400
299
+ Processing by PagesController#text_area as HTML
300
+ Rendered pages/text_area.html within layouts/application (1.1ms)
301
+ Completed 200 OK in 9.1ms (Views: 8.7ms | ActiveRecord: 0.0ms)
302
+ Started GET "/text_area" for 127.0.0.1 at 2014-03-24 13:55:44 -0400
303
+ Processing by PagesController#text_area as HTML
304
+ Rendered pages/text_area.html within layouts/application (0.1ms)
305
+ Completed 200 OK in 4.3ms (Views: 3.7ms | ActiveRecord: 0.0ms)
306
+ Started GET "/assets/application.css" for 127.0.0.1 at 2014-03-24 13:55:44 -0400
307
+ Served asset /application.css - 200 OK (3ms)
308
+ Started GET "/assets/application.js" for 127.0.0.1 at 2014-03-24 13:55:44 -0400
309
+ Served asset /application.js - 200 OK (10ms)
310
+ Connecting to database specified by database.yml
311
+ Started GET "/assets/lettrics.js" for 127.0.0.1 at 2014-03-24 13:56:24 -0400
312
+ Served asset /lettrics.js - 200 OK (5ms)
313
+ Started GET "/text_area" for 127.0.0.1 at 2014-03-24 13:56:24 -0400
314
+ Processing by PagesController#text_area as HTML
315
+ Rendered pages/text_area.html within layouts/application (1.1ms)
316
+ Completed 200 OK in 9.7ms (Views: 9.3ms | ActiveRecord: 0.0ms)
317
+ Started GET "/text_area" for 127.0.0.1 at 2014-03-24 13:56:28 -0400
318
+ Processing by PagesController#text_area as HTML
319
+ Rendered pages/text_area.html within layouts/application (0.1ms)
320
+ Completed 200 OK in 2.9ms (Views: 2.5ms | ActiveRecord: 0.0ms)
321
+ Started GET "/assets/application.css" for 127.0.0.1 at 2014-03-24 13:56:28 -0400
322
+ Served asset /application.css - 200 OK (4ms)
323
+ Started GET "/assets/application.js" for 127.0.0.1 at 2014-03-24 13:56:28 -0400
324
+ Served asset /application.js - 200 OK (9ms)
325
+ Started GET "/small_text_area" for 127.0.0.1 at 2014-03-24 13:56:28 -0400
326
+ Processing by PagesController#small_text_area as HTML
327
+ Rendered pages/small_text_area.html within layouts/application (0.7ms)
328
+ Completed 200 OK in 4.9ms (Views: 4.0ms | ActiveRecord: 0.0ms)
329
+ Connecting to database specified by database.yml
330
+ Started GET "/assets/lettrics.js" for 127.0.0.1 at 2014-03-24 14:02:03 -0400
331
+ Served asset /lettrics.js - 200 OK (5ms)
332
+ Started GET "/text_area" for 127.0.0.1 at 2014-03-24 14:02:03 -0400
333
+ Processing by PagesController#text_area as HTML
334
+ Rendered pages/text_area.html within layouts/application (1.4ms)
335
+ Completed 200 OK in 9.5ms (Views: 9.1ms | ActiveRecord: 0.0ms)
336
+ Started GET "/text_area" for 127.0.0.1 at 2014-03-24 14:02:07 -0400
337
+ Processing by PagesController#text_area as HTML
338
+ Rendered pages/text_area.html within layouts/application (0.1ms)
339
+ Completed 200 OK in 3.6ms (Views: 3.1ms | ActiveRecord: 0.0ms)
340
+ Started GET "/assets/application.css" for 127.0.0.1 at 2014-03-24 14:02:07 -0400
341
+ Served asset /application.css - 200 OK (6ms)
342
+ Started GET "/assets/application.js" for 127.0.0.1 at 2014-03-24 14:02:07 -0400
343
+ Served asset /application.js - 200 OK (10ms)
344
+ Started GET "/small_text_area" for 127.0.0.1 at 2014-03-24 14:02:07 -0400
345
+ Processing by PagesController#small_text_area as HTML
346
+ Rendered pages/small_text_area.html within layouts/application (0.5ms)
347
+ Completed 200 OK in 3.6ms (Views: 3.0ms | ActiveRecord: 0.0ms)
348
+ Connecting to database specified by database.yml
349
+ Started GET "/assets/lettrics.js" for 127.0.0.1 at 2014-03-24 14:05:07 -0400
350
+ Served asset /lettrics.js - 200 OK (6ms)
351
+ Started GET "/text_area" for 127.0.0.1 at 2014-03-24 14:05:07 -0400
352
+ Processing by PagesController#text_area as HTML
353
+ Rendered pages/text_area.html within layouts/application (1.1ms)
354
+ Completed 200 OK in 9.0ms (Views: 8.5ms | ActiveRecord: 0.0ms)
355
+ Started GET "/text_area" for 127.0.0.1 at 2014-03-24 14:05:11 -0400
356
+ Processing by PagesController#text_area as HTML
357
+ Rendered pages/text_area.html within layouts/application (0.1ms)
358
+ Completed 200 OK in 2.6ms (Views: 2.3ms | ActiveRecord: 0.0ms)
359
+ Started GET "/assets/application.css" for 127.0.0.1 at 2014-03-24 14:05:11 -0400
360
+ Served asset /application.css - 200 OK (4ms)
361
+ Started GET "/assets/application.js" for 127.0.0.1 at 2014-03-24 14:05:11 -0400
362
+ Served asset /application.js - 200 OK (8ms)
363
+ Started GET "/small_text_area" for 127.0.0.1 at 2014-03-24 14:05:12 -0400
364
+ Processing by PagesController#small_text_area as HTML
365
+ Rendered pages/small_text_area.html within layouts/application (0.9ms)
366
+ Completed 200 OK in 4.6ms (Views: 4.0ms | ActiveRecord: 0.0ms)
367
+ Started GET "/text_area_with_text" for 127.0.0.1 at 2014-03-24 14:05:12 -0400
368
+ Processing by PagesController#text_area_with_text as HTML
369
+ Rendered pages/text_area_with_text.html within layouts/application (0.6ms)
370
+ Completed 200 OK in 4.2ms (Views: 3.6ms | ActiveRecord: 0.0ms)
371
+ Connecting to database specified by database.yml
372
+ Started GET "/assets/lettrics.js" for 127.0.0.1 at 2014-03-24 14:05:26 -0400
373
+ Served asset /lettrics.js - 200 OK (7ms)
374
+ Started GET "/text_area" for 127.0.0.1 at 2014-03-24 14:05:26 -0400
375
+ Processing by PagesController#text_area as HTML
376
+ Rendered pages/text_area.html within layouts/application (1.5ms)
377
+ Completed 200 OK in 12.1ms (Views: 11.6ms | ActiveRecord: 0.0ms)
378
+ Started GET "/text_area" for 127.0.0.1 at 2014-03-24 14:05:30 -0400
379
+ Processing by PagesController#text_area as HTML
380
+ Rendered pages/text_area.html within layouts/application (0.1ms)
381
+ Completed 200 OK in 4.8ms (Views: 4.3ms | ActiveRecord: 0.0ms)
382
+ Started GET "/assets/application.css" for 127.0.0.1 at 2014-03-24 14:05:30 -0400
383
+ Served asset /application.css - 200 OK (7ms)
384
+ Started GET "/assets/application.js" for 127.0.0.1 at 2014-03-24 14:05:30 -0400
385
+ Served asset /application.js - 200 OK (11ms)
386
+ Started GET "/small_text_area" for 127.0.0.1 at 2014-03-24 14:05:30 -0400
387
+ Processing by PagesController#small_text_area as HTML
388
+ Rendered pages/small_text_area.html within layouts/application (0.9ms)
389
+ Completed 200 OK in 5.7ms (Views: 5.0ms | ActiveRecord: 0.0ms)
390
+ Started GET "/text_area_with_text" for 127.0.0.1 at 2014-03-24 14:05:31 -0400
391
+ Processing by PagesController#text_area_with_text as HTML
392
+ Rendered pages/text_area_with_text.html within layouts/application (0.5ms)
393
+ Completed 200 OK in 3.7ms (Views: 3.0ms | ActiveRecord: 0.0ms)
394
+ Connecting to database specified by database.yml
395
+ Started GET "/text_areas" for 127.0.0.1 at 2014-03-24 14:13:44 -0400
396
+ Processing by PagesController#text_areas as HTML
397
+ Rendered pages/text_areas.html within layouts/application (1.7ms)
398
+ Completed 200 OK in 12.0ms (Views: 11.4ms | ActiveRecord: 0.0ms)
399
+ Started GET "/assets/application.css" for 127.0.0.1 at 2014-03-24 14:13:44 -0400
400
+ Served asset /application.css - 200 OK (8ms)
401
+ Started GET "/assets/application.js" for 127.0.0.1 at 2014-03-24 14:13:44 -0400
402
+ Served asset /application.js - 200 OK (7ms)
403
+ Connecting to database specified by database.yml
404
+ Started GET "/text_areas" for 127.0.0.1 at 2014-03-24 14:14:23 -0400
405
+ Processing by PagesController#text_areas as HTML
406
+ Rendered pages/text_areas.html within layouts/application (1.9ms)
407
+ Completed 200 OK in 16.1ms (Views: 15.1ms | ActiveRecord: 0.0ms)
408
+ Started GET "/assets/application.css" for 127.0.0.1 at 2014-03-24 14:14:23 -0400
409
+ Served asset /application.css - 200 OK (9ms)
410
+ Started GET "/assets/application.js" for 127.0.0.1 at 2014-03-24 14:14:23 -0400
411
+ Served asset /application.js - 200 OK (9ms)
412
+ Connecting to database specified by database.yml
413
+ Started GET "/text_areas" for 127.0.0.1 at 2014-03-24 14:15:14 -0400
414
+ Processing by PagesController#text_areas as HTML
415
+ Rendered pages/text_areas.html within layouts/application (2.1ms)
416
+ Completed 200 OK in 14.2ms (Views: 13.5ms | ActiveRecord: 0.0ms)
417
+ Started GET "/assets/application.css" for 127.0.0.1 at 2014-03-24 14:15:14 -0400
418
+ Served asset /application.css - 200 OK (8ms)
419
+ Started GET "/assets/application.js" for 127.0.0.1 at 2014-03-24 14:15:14 -0400
420
+ Compiled lettrics.js (244ms) (pid 95531)
421
+ Compiled application.js (7ms) (pid 95531)
422
+ Served asset /application.js - 200 OK (272ms)
423
+ Connecting to database specified by database.yml
424
+ Started GET "/text_areas" for 127.0.0.1 at 2014-03-24 14:16:19 -0400
425
+ Processing by PagesController#text_areas as HTML
426
+ Rendered pages/text_areas.html within layouts/application (1.6ms)
427
+ Completed 200 OK in 14.8ms (Views: 14.1ms | ActiveRecord: 0.0ms)
428
+ Started GET "/assets/application.css" for 127.0.0.1 at 2014-03-24 14:16:19 -0400
429
+ Served asset /application.css - 200 OK (9ms)
430
+ Started GET "/assets/application.js" for 127.0.0.1 at 2014-03-24 14:16:19 -0400
431
+ Compiled lettrics.js (249ms) (pid 95547)
432
+ Compiled application.js (4ms) (pid 95547)
433
+ Served asset /application.js - 200 OK (274ms)
434
+ Connecting to database specified by database.yml
435
+ Started GET "/text_areas" for 127.0.0.1 at 2014-03-24 14:21:27 -0400
436
+ Processing by PagesController#text_areas as HTML
437
+ Rendered pages/text_areas.html within layouts/application (1.5ms)
438
+ Completed 200 OK in 15.0ms (Views: 13.9ms | ActiveRecord: 0.0ms)
439
+ Started GET "/assets/application.js" for 127.0.0.1 at 2014-03-24 14:21:27 -0400
440
+ Served asset /application.js - 200 OK (100ms)
441
+ Started GET "/assets/application.css" for 127.0.0.1 at 2014-03-24 14:21:27 -0400
442
+ Served asset /application.css - 200 OK (4ms)
443
+ Connecting to database specified by database.yml
444
+ Started GET "/text_areas" for 127.0.0.1 at 2014-03-24 14:26:35 -0400
445
+ Processing by PagesController#text_areas as HTML
446
+ Rendered pages/text_areas.html within layouts/application (1.8ms)
447
+ Completed 200 OK in 13.9ms (Views: 13.1ms | ActiveRecord: 0.0ms)
448
+ Started GET "/assets/application.css" for 127.0.0.1 at 2014-03-24 14:26:35 -0400
449
+ Served asset /application.css - 200 OK (9ms)
450
+ Started GET "/assets/application.js" for 127.0.0.1 at 2014-03-24 14:26:35 -0400
451
+ Compiled lettrics.js (286ms) (pid 95587)
452
+ Compiled application.js (7ms) (pid 95587)
453
+ Served asset /application.js - 200 OK (373ms)
454
+ Connecting to database specified by database.yml
455
+ Started GET "/text_areas" for 127.0.0.1 at 2014-03-24 14:27:18 -0400
456
+ Processing by PagesController#text_areas as HTML
457
+ Rendered pages/text_areas.html within layouts/application (1.6ms)
458
+ Completed 200 OK in 16.8ms (Views: 15.8ms | ActiveRecord: 0.0ms)
459
+ Started GET "/assets/application.css" for 127.0.0.1 at 2014-03-24 14:27:18 -0400
460
+ Served asset /application.css - 200 OK (8ms)
461
+ Started GET "/assets/application.js" for 127.0.0.1 at 2014-03-24 14:27:18 -0400
462
+ Compiled lettrics.js (243ms) (pid 95600)
463
+ Compiled application.js (5ms) (pid 95600)
464
+ Served asset /application.js - 200 OK (329ms)
465
+ Connecting to database specified by database.yml
466
+ Started GET "/text_areas" for 127.0.0.1 at 2014-03-24 15:00:04 -0400
467
+ Processing by PagesController#text_areas as HTML
468
+ Rendered pages/text_areas.html within layouts/application (1.7ms)
469
+ Completed 200 OK in 36.9ms (Views: 36.1ms | ActiveRecord: 0.0ms)
470
+ Started GET "/assets/application.css" for 127.0.0.1 at 2014-03-24 15:00:04 -0400
471
+ Compiled application.css (1ms) (pid 95686)
472
+ Served asset /application.css - 200 OK (76ms)
473
+ Started GET "/assets/application.js" for 127.0.0.1 at 2014-03-24 15:00:04 -0400
474
+ Compiled jquery.js (4ms) (pid 95686)
475
+ Compiled jquery_ujs.js (0ms) (pid 95686)
476
+ Compiled lettrics.js (337ms) (pid 95686)
477
+ Compiled application.js (362ms) (pid 95686)
478
+ Served asset /application.js - 200 OK (375ms)
479
+ Connecting to database specified by database.yml
480
+ Started GET "/assets/lettrics.js" for 127.0.0.1 at 2014-03-24 15:09:42 -0400
481
+ Served asset /lettrics.js - 200 OK (32ms)
482
+ Started GET "/text_area" for 127.0.0.1 at 2014-03-24 15:09:42 -0400
483
+ Processing by PagesController#text_area as HTML
484
+ Rendered pages/text_area.html within layouts/application (1.8ms)
485
+ Completed 200 OK in 13.5ms (Views: 12.9ms | ActiveRecord: 0.0ms)
486
+ Started GET "/text_area" for 127.0.0.1 at 2014-03-24 15:09:46 -0400
487
+ Processing by PagesController#text_area as HTML
488
+ Rendered pages/text_area.html within layouts/application (0.1ms)
489
+ Completed 200 OK in 2.8ms (Views: 2.4ms | ActiveRecord: 0.0ms)
490
+ Started GET "/assets/application.css" for 127.0.0.1 at 2014-03-24 15:09:46 -0400
491
+ Served asset /application.css - 200 OK (5ms)
492
+ Started GET "/assets/application.js" for 127.0.0.1 at 2014-03-24 15:09:46 -0400
493
+ Served asset /application.js - 200 OK (7ms)
494
+ Started GET "/small_text_area" for 127.0.0.1 at 2014-03-24 15:09:49 -0400
495
+ Processing by PagesController#small_text_area as HTML
496
+ Rendered pages/small_text_area.html within layouts/application (0.7ms)
497
+ Completed 200 OK in 4.9ms (Views: 4.3ms | ActiveRecord: 0.0ms)
498
+ Started GET "/text_area_with_text" for 127.0.0.1 at 2014-03-24 15:09:51 -0400
499
+ Processing by PagesController#text_area_with_text as HTML
500
+ Rendered pages/text_area_with_text.html within layouts/application (0.6ms)
501
+ Completed 200 OK in 4.3ms (Views: 3.7ms | ActiveRecord: 0.0ms)
502
+ Started GET "/text_areas" for 127.0.0.1 at 2014-03-24 15:09:53 -0400
503
+ Processing by PagesController#text_areas as HTML
504
+ Rendered pages/text_areas.html within layouts/application (0.4ms)
505
+ Completed 200 OK in 3.0ms (Views: 2.5ms | ActiveRecord: 0.0ms)
506
+ Connecting to database specified by database.yml
507
+ Started GET "/assets/lettrics.js" for 127.0.0.1 at 2014-03-24 15:10:28 -0400
508
+ Served asset /lettrics.js - 200 OK (5ms)
509
+ Started GET "/text_area" for 127.0.0.1 at 2014-03-24 15:10:28 -0400
510
+ Processing by PagesController#text_area as HTML
511
+ Rendered pages/text_area.html within layouts/application (1.5ms)
512
+ Completed 200 OK in 13.1ms (Views: 12.5ms | ActiveRecord: 0.0ms)
513
+ Started GET "/text_area" for 127.0.0.1 at 2014-03-24 15:10:31 -0400
514
+ Processing by PagesController#text_area as HTML
515
+ Rendered pages/text_area.html within layouts/application (0.1ms)
516
+ Completed 200 OK in 3.3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
517
+ Started GET "/assets/application.css" for 127.0.0.1 at 2014-03-24 15:10:31 -0400
518
+ Served asset /application.css - 200 OK (5ms)
519
+ Started GET "/assets/application.js" for 127.0.0.1 at 2014-03-24 15:10:31 -0400
520
+ Served asset /application.js - 200 OK (6ms)
521
+ Started GET "/small_text_area" for 127.0.0.1 at 2014-03-24 15:10:33 -0400
522
+ Processing by PagesController#small_text_area as HTML
523
+ Rendered pages/small_text_area.html within layouts/application (0.5ms)
524
+ Completed 200 OK in 3.3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
525
+ Started GET "/text_area_with_text" for 127.0.0.1 at 2014-03-24 15:10:36 -0400
526
+ Processing by PagesController#text_area_with_text as HTML
527
+ Rendered pages/text_area_with_text.html within layouts/application (0.4ms)
528
+ Completed 200 OK in 3.3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
529
+ Started GET "/text_areas" for 127.0.0.1 at 2014-03-24 15:10:38 -0400
530
+ Processing by PagesController#text_areas as HTML
531
+ Rendered pages/text_areas.html within layouts/application (0.7ms)
532
+ Completed 200 OK in 5.9ms (Views: 5.2ms | ActiveRecord: 0.0ms)
533
+ Connecting to database specified by database.yml
534
+ Started GET "/assets/lettrics.js" for 127.0.0.1 at 2014-03-24 15:11:13 -0400
535
+ Served asset /lettrics.js - 200 OK (6ms)
536
+ Started GET "/text_area" for 127.0.0.1 at 2014-03-24 15:11:13 -0400
537
+ Processing by PagesController#text_area as HTML
538
+ Rendered pages/text_area.html within layouts/application (1.0ms)
539
+ Completed 200 OK in 9.2ms (Views: 8.7ms | ActiveRecord: 0.0ms)
540
+ Started GET "/text_area" for 127.0.0.1 at 2014-03-24 15:11:17 -0400
541
+ Processing by PagesController#text_area as HTML
542
+ Rendered pages/text_area.html within layouts/application (0.1ms)
543
+ Completed 200 OK in 4.2ms (Views: 3.6ms | ActiveRecord: 0.0ms)
544
+ Started GET "/assets/application.css" for 127.0.0.1 at 2014-03-24 15:11:17 -0400
545
+ Served asset /application.css - 200 OK (8ms)
546
+ Started GET "/assets/application.js" for 127.0.0.1 at 2014-03-24 15:11:17 -0400
547
+ Served asset /application.js - 200 OK (7ms)
548
+ Started GET "/small_text_area" for 127.0.0.1 at 2014-03-24 15:11:17 -0400
549
+ Processing by PagesController#small_text_area as HTML
550
+ Rendered pages/small_text_area.html within layouts/application (0.7ms)
551
+ Completed 200 OK in 4.6ms (Views: 3.8ms | ActiveRecord: 0.0ms)
552
+ Started GET "/text_area_with_text" for 127.0.0.1 at 2014-03-24 15:11:20 -0400
553
+ Processing by PagesController#text_area_with_text as HTML
554
+ Rendered pages/text_area_with_text.html within layouts/application (0.5ms)
555
+ Completed 200 OK in 3.2ms (Views: 2.7ms | ActiveRecord: 0.0ms)
556
+ Started GET "/text_areas" for 127.0.0.1 at 2014-03-24 15:11:22 -0400
557
+ Processing by PagesController#text_areas as HTML
558
+ Rendered pages/text_areas.html within layouts/application (0.4ms)
559
+ Completed 200 OK in 3.2ms (Views: 2.7ms | ActiveRecord: 0.0ms)
560
+ Connecting to database specified by database.yml
561
+ Started GET "/assets/lettrics.js" for 127.0.0.1 at 2014-03-24 15:11:46 -0400
562
+ Served asset /lettrics.js - 200 OK (4ms)
563
+ Started GET "/text_area" for 127.0.0.1 at 2014-03-24 15:11:46 -0400
564
+ Processing by PagesController#text_area as HTML
565
+ Rendered pages/text_area.html within layouts/application (1.7ms)
566
+ Completed 200 OK in 14.0ms (Views: 13.5ms | ActiveRecord: 0.0ms)
567
+ Started GET "/text_area" for 127.0.0.1 at 2014-03-24 15:11:50 -0400
568
+ Processing by PagesController#text_area as HTML
569
+ Rendered pages/text_area.html within layouts/application (0.1ms)
570
+ Completed 200 OK in 3.5ms (Views: 3.1ms | ActiveRecord: 0.0ms)
571
+ Started GET "/assets/application.css" for 127.0.0.1 at 2014-03-24 15:11:50 -0400
572
+ Served asset /application.css - 200 OK (7ms)
573
+ Started GET "/assets/application.js" for 127.0.0.1 at 2014-03-24 15:11:50 -0400
574
+ Served asset /application.js - 200 OK (7ms)
575
+ Started GET "/small_text_area" for 127.0.0.1 at 2014-03-24 15:11:51 -0400
576
+ Processing by PagesController#small_text_area as HTML
577
+ Rendered pages/small_text_area.html within layouts/application (0.8ms)
578
+ Completed 200 OK in 4.9ms (Views: 4.3ms | ActiveRecord: 0.0ms)
579
+ Started GET "/text_area_with_text" for 127.0.0.1 at 2014-03-24 15:11:53 -0400
580
+ Processing by PagesController#text_area_with_text as HTML
581
+ Rendered pages/text_area_with_text.html within layouts/application (0.4ms)
582
+ Completed 200 OK in 3.4ms (Views: 2.7ms | ActiveRecord: 0.0ms)
583
+ Started GET "/text_areas" for 127.0.0.1 at 2014-03-24 15:11:55 -0400
584
+ Processing by PagesController#text_areas as HTML
585
+ Rendered pages/text_areas.html within layouts/application (0.7ms)
586
+ Completed 200 OK in 4.5ms (Views: 3.8ms | ActiveRecord: 0.0ms)
587
+ Connecting to database specified by database.yml
588
+ Started GET "/assets/lettrics.js" for 127.0.0.1 at 2014-03-24 15:12:09 -0400
589
+ Served asset /lettrics.js - 200 OK (5ms)
590
+ Started GET "/text_area" for 127.0.0.1 at 2014-03-24 15:12:09 -0400
591
+ Processing by PagesController#text_area as HTML
592
+ Rendered pages/text_area.html within layouts/application (1.1ms)
593
+ Completed 200 OK in 9.7ms (Views: 9.2ms | ActiveRecord: 0.0ms)
594
+ Started GET "/text_area" for 127.0.0.1 at 2014-03-24 15:12:13 -0400
595
+ Processing by PagesController#text_area as HTML
596
+ Rendered pages/text_area.html within layouts/application (0.1ms)
597
+ Completed 200 OK in 3.4ms (Views: 3.1ms | ActiveRecord: 0.0ms)
598
+ Started GET "/assets/application.css" for 127.0.0.1 at 2014-03-24 15:12:13 -0400
599
+ Served asset /application.css - 200 OK (5ms)
600
+ Started GET "/assets/application.js" for 127.0.0.1 at 2014-03-24 15:12:13 -0400
601
+ Served asset /application.js - 200 OK (7ms)
602
+ Started GET "/small_text_area" for 127.0.0.1 at 2014-03-24 15:12:14 -0400
603
+ Processing by PagesController#small_text_area as HTML
604
+ Rendered pages/small_text_area.html within layouts/application (0.9ms)
605
+ Completed 200 OK in 5.8ms (Views: 4.9ms | ActiveRecord: 0.0ms)
606
+ Started GET "/text_area_with_text" for 127.0.0.1 at 2014-03-24 15:12:14 -0400
607
+ Processing by PagesController#text_area_with_text as HTML
608
+ Rendered pages/text_area_with_text.html within layouts/application (0.7ms)
609
+ Completed 200 OK in 5.0ms (Views: 4.2ms | ActiveRecord: 0.0ms)
610
+ Started GET "/text_areas" for 127.0.0.1 at 2014-03-24 15:12:16 -0400
611
+ Processing by PagesController#text_areas as HTML
612
+ Rendered pages/text_areas.html within layouts/application (0.6ms)
613
+ Completed 200 OK in 15.5ms (Views: 14.8ms | ActiveRecord: 0.0ms)
614
+ Connecting to database specified by database.yml
615
+ Started GET "/assets/lettrics.js" for 127.0.0.1 at 2014-03-24 15:13:01 -0400
616
+ Served asset /lettrics.js - 200 OK (5ms)
617
+ Started GET "/text_area" for 127.0.0.1 at 2014-03-24 15:13:01 -0400
618
+ Processing by PagesController#text_area as HTML
619
+ Rendered pages/text_area.html within layouts/application (1.1ms)
620
+ Completed 200 OK in 9.3ms (Views: 8.7ms | ActiveRecord: 0.0ms)
621
+ Started GET "/text_area" for 127.0.0.1 at 2014-03-24 15:13:05 -0400
622
+ Processing by PagesController#text_area as HTML
623
+ Rendered pages/text_area.html within layouts/application (0.1ms)
624
+ Completed 200 OK in 3.4ms (Views: 2.9ms | ActiveRecord: 0.0ms)
625
+ Started GET "/assets/application.css" for 127.0.0.1 at 2014-03-24 15:13:05 -0400
626
+ Served asset /application.css - 200 OK (6ms)
627
+ Started GET "/assets/application.js" for 127.0.0.1 at 2014-03-24 15:13:05 -0400
628
+ Served asset /application.js - 200 OK (7ms)
629
+ Started GET "/small_text_area" for 127.0.0.1 at 2014-03-24 15:13:05 -0400
630
+ Processing by PagesController#small_text_area as HTML
631
+ Rendered pages/small_text_area.html within layouts/application (0.8ms)
632
+ Completed 200 OK in 5.0ms (Views: 4.2ms | ActiveRecord: 0.0ms)
633
+ Started GET "/text_area_with_text" for 127.0.0.1 at 2014-03-24 15:13:05 -0400
634
+ Processing by PagesController#text_area_with_text as HTML
635
+ Rendered pages/text_area_with_text.html within layouts/application (0.5ms)
636
+ Completed 200 OK in 3.5ms (Views: 3.0ms | ActiveRecord: 0.0ms)
637
+ Started GET "/text_areas" for 127.0.0.1 at 2014-03-24 15:13:06 -0400
638
+ Processing by PagesController#text_areas as HTML
639
+ Rendered pages/text_areas.html within layouts/application (0.7ms)
640
+ Completed 200 OK in 4.9ms (Views: 4.1ms | ActiveRecord: 0.0ms)
641
+ Connecting to database specified by database.yml
642
+ Started GET "/assets/lettrics.js" for 127.0.0.1 at 2014-03-24 15:15:41 -0400
643
+ Served asset /lettrics.js - 200 OK (7ms)
644
+ Started GET "/text_area" for 127.0.0.1 at 2014-03-24 15:15:41 -0400
645
+ Processing by PagesController#text_area as HTML
646
+ Rendered pages/text_area.html within layouts/application (1.9ms)
647
+ Completed 200 OK in 12.0ms (Views: 11.5ms | ActiveRecord: 0.0ms)
648
+ Started GET "/text_area" for 127.0.0.1 at 2014-03-24 15:15:45 -0400
649
+ Processing by PagesController#text_area as HTML
650
+ Rendered pages/text_area.html within layouts/application (0.1ms)
651
+ Completed 200 OK in 4.2ms (Views: 3.6ms | ActiveRecord: 0.0ms)
652
+ Started GET "/assets/application.css" for 127.0.0.1 at 2014-03-24 15:15:45 -0400
653
+ Served asset /application.css - 200 OK (5ms)
654
+ Started GET "/assets/application.js" for 127.0.0.1 at 2014-03-24 15:15:45 -0400
655
+ Served asset /application.js - 200 OK (7ms)
656
+ Started GET "/small_text_area" for 127.0.0.1 at 2014-03-24 15:15:45 -0400
657
+ Processing by PagesController#small_text_area as HTML
658
+ Rendered pages/small_text_area.html within layouts/application (0.6ms)
659
+ Completed 200 OK in 4.1ms (Views: 3.4ms | ActiveRecord: 0.0ms)
660
+ Started GET "/text_area_with_text" for 127.0.0.1 at 2014-03-24 15:15:45 -0400
661
+ Processing by PagesController#text_area_with_text as HTML
662
+ Rendered pages/text_area_with_text.html within layouts/application (0.5ms)
663
+ Completed 200 OK in 3.8ms (Views: 3.3ms | ActiveRecord: 0.0ms)
664
+ Started GET "/text_areas" for 127.0.0.1 at 2014-03-24 15:15:46 -0400
665
+ Processing by PagesController#text_areas as HTML
666
+ Rendered pages/text_areas.html within layouts/application (0.4ms)
667
+ Completed 200 OK in 3.5ms (Views: 2.9ms | ActiveRecord: 0.0ms)
668
+ Connecting to database specified by database.yml
669
+ Started GET "/assets/lettrics.js" for 127.0.0.1 at 2014-03-24 15:17:21 -0400
670
+ Served asset /lettrics.js - 200 OK (4ms)
671
+ Started GET "/text_area" for 127.0.0.1 at 2014-03-24 15:17:21 -0400
672
+ Processing by PagesController#text_area as HTML
673
+ Rendered pages/text_area.html within layouts/application (1.3ms)
674
+ Completed 200 OK in 9.5ms (Views: 9.0ms | ActiveRecord: 0.0ms)
675
+ Started GET "/text_area" for 127.0.0.1 at 2014-03-24 15:17:25 -0400
676
+ Processing by PagesController#text_area as HTML
677
+ Rendered pages/text_area.html within layouts/application (0.1ms)
678
+ Completed 200 OK in 3.6ms (Views: 3.1ms | ActiveRecord: 0.0ms)
679
+ Started GET "/assets/application.css" for 127.0.0.1 at 2014-03-24 15:17:25 -0400
680
+ Served asset /application.css - 200 OK (4ms)
681
+ Started GET "/assets/application.js" for 127.0.0.1 at 2014-03-24 15:17:25 -0400
682
+ Served asset /application.js - 200 OK (61ms)
683
+ Started GET "/small_text_area" for 127.0.0.1 at 2014-03-24 15:17:25 -0400
684
+ Processing by PagesController#small_text_area as HTML
685
+ Rendered pages/small_text_area.html within layouts/application (0.8ms)
686
+ Completed 200 OK in 5.2ms (Views: 4.4ms | ActiveRecord: 0.0ms)
687
+ Started GET "/text_area_with_text" for 127.0.0.1 at 2014-03-24 15:17:25 -0400
688
+ Processing by PagesController#text_area_with_text as HTML
689
+ Rendered pages/text_area_with_text.html within layouts/application (0.7ms)
690
+ Completed 200 OK in 4.1ms (Views: 3.5ms | ActiveRecord: 0.0ms)
691
+ Started GET "/text_areas" for 127.0.0.1 at 2014-03-24 15:17:26 -0400
692
+ Processing by PagesController#text_areas as HTML
693
+ Rendered pages/text_areas.html within layouts/application (0.4ms)
694
+ Completed 200 OK in 3.5ms (Views: 3.0ms | ActiveRecord: 0.0ms)
695
+ Started GET "/small-text-area" for 127.0.0.1 at 2014-03-24 15:17:26 -0400
696
+ Connecting to database specified by database.yml
697
+ Started GET "/small_text_area" for 127.0.0.1 at 2014-03-24 15:17:40 -0400
698
+ Processing by PagesController#small_text_area as HTML
699
+ Rendered pages/small_text_area.html within layouts/application (1.2ms)
700
+ Completed 200 OK in 9.9ms (Views: 9.3ms | ActiveRecord: 0.0ms)
701
+ Connecting to database specified by database.yml
702
+ Started GET "/small_text_area" for 127.0.0.1 at 2014-03-24 15:18:33 -0400
703
+ Processing by PagesController#small_text_area as HTML
704
+ Rendered pages/small_text_area.html within layouts/application (1.1ms)
705
+ Completed 200 OK in 10.4ms (Views: 9.7ms | ActiveRecord: 0.0ms)
706
+ Connecting to database specified by database.yml
707
+ Started GET "/small_text_area" for 127.0.0.1 at 2014-03-24 15:18:45 -0400
708
+ Processing by PagesController#small_text_area as HTML
709
+ Rendered pages/small_text_area.html within layouts/application (1.4ms)
710
+ Completed 200 OK in 12.7ms (Views: 12.2ms | ActiveRecord: 0.0ms)
711
+ Connecting to database specified by database.yml
712
+ Started GET "/small_text_area" for 127.0.0.1 at 2014-03-24 15:19:11 -0400
713
+ Processing by PagesController#small_text_area as HTML
714
+ Rendered pages/small_text_area.html within layouts/application (2.3ms)
715
+ Completed 200 OK in 13.7ms (Views: 12.9ms | ActiveRecord: 0.0ms)
716
+ Started GET "/assets/application.css" for 127.0.0.1 at 2014-03-24 15:19:11 -0400
717
+ Served asset /application.css - 200 OK (8ms)
718
+ Started GET "/assets/application.js" for 127.0.0.1 at 2014-03-24 15:19:11 -0400
719
+ Served asset /application.js - 200 OK (8ms)
720
+ Connecting to database specified by database.yml
721
+ Started GET "/small_text_area" for 127.0.0.1 at 2014-03-24 15:19:28 -0400
722
+ Processing by PagesController#small_text_area as HTML
723
+ Rendered pages/small_text_area.html within layouts/application (1.7ms)
724
+ Completed 200 OK in 13.1ms (Views: 12.5ms | ActiveRecord: 0.0ms)
725
+ Started GET "/assets/application.css" for 127.0.0.1 at 2014-03-24 15:19:28 -0400
726
+ Served asset /application.css - 200 OK (7ms)
727
+ Started GET "/assets/application.js" for 127.0.0.1 at 2014-03-24 15:19:28 -0400
728
+ Served asset /application.js - 200 OK (7ms)
729
+ Connecting to database specified by database.yml
730
+ Started GET "/small_text_area" for 127.0.0.1 at 2014-03-24 15:20:05 -0400
731
+ Processing by PagesController#small_text_area as HTML
732
+ Rendered pages/small_text_area.html within layouts/application (1.3ms)
733
+ Completed 200 OK in 13.1ms (Views: 11.9ms | ActiveRecord: 0.0ms)
734
+ Started GET "/assets/application.css" for 127.0.0.1 at 2014-03-24 15:20:05 -0400
735
+ Served asset /application.css - 200 OK (9ms)
736
+ Started GET "/assets/application.js" for 127.0.0.1 at 2014-03-24 15:20:05 -0400
737
+ Served asset /application.js - 200 OK (9ms)
738
+ Connecting to database specified by database.yml
739
+ Started GET "/assets/lettrics.js" for 127.0.0.1 at 2014-03-24 15:26:27 -0400
740
+ Served asset /lettrics.js - 200 OK (5ms)
741
+ Started GET "/text_area" for 127.0.0.1 at 2014-03-24 15:26:28 -0400
742
+ Processing by PagesController#text_area as HTML
743
+ Rendered pages/text_area.html within layouts/application (1.1ms)
744
+ Completed 200 OK in 9.1ms (Views: 8.6ms | ActiveRecord: 0.0ms)
745
+ Started GET "/text_area" for 127.0.0.1 at 2014-03-24 15:26:32 -0400
746
+ Processing by PagesController#text_area as HTML
747
+ Rendered pages/text_area.html within layouts/application (0.1ms)
748
+ Completed 200 OK in 2.9ms (Views: 2.6ms | ActiveRecord: 0.0ms)
749
+ Started GET "/assets/application.css" for 127.0.0.1 at 2014-03-24 15:26:32 -0400
750
+ Served asset /application.css - 200 OK (4ms)
751
+ Started GET "/assets/application.js" for 127.0.0.1 at 2014-03-24 15:26:32 -0400
752
+ Served asset /application.js - 200 OK (9ms)
753
+ Started GET "/small_text_area" for 127.0.0.1 at 2014-03-24 15:26:32 -0400
754
+ Processing by PagesController#small_text_area as HTML
755
+ Rendered pages/small_text_area.html within layouts/application (0.9ms)
756
+ Completed 200 OK in 5.7ms (Views: 4.8ms | ActiveRecord: 0.0ms)
757
+ Started GET "/text_area_with_text" for 127.0.0.1 at 2014-03-24 15:26:33 -0400
758
+ Processing by PagesController#text_area_with_text as HTML
759
+ Rendered pages/text_area_with_text.html within layouts/application (0.5ms)
760
+ Completed 200 OK in 3.5ms (Views: 3.0ms | ActiveRecord: 0.0ms)
761
+ Started GET "/text_areas" for 127.0.0.1 at 2014-03-24 15:26:33 -0400
762
+ Processing by PagesController#text_areas as HTML
763
+ Rendered pages/text_areas.html within layouts/application (0.8ms)
764
+ Completed 200 OK in 6.4ms (Views: 5.7ms | ActiveRecord: 0.0ms)
765
+ Started GET "/small_text_area" for 127.0.0.1 at 2014-03-24 15:26:34 -0400
766
+ Processing by PagesController#small_text_area as HTML
767
+ Rendered pages/small_text_area.html within layouts/application (0.0ms)
768
+ Completed 200 OK in 1.8ms (Views: 1.6ms | ActiveRecord: 0.0ms)