written 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (65) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +3 -0
  3. data/Gemfile +15 -0
  4. data/Gemfile.lock +128 -0
  5. data/Rakefile +83 -0
  6. data/lib/written/app/assets/javascripts/vendors/prism.js +1411 -0
  7. data/lib/written/app/assets/javascripts/written/core/content.coffee +106 -0
  8. data/lib/written/app/assets/javascripts/written/core/cursor.coffee +59 -0
  9. data/lib/written/app/assets/javascripts/written/core/document.coffee +19 -0
  10. data/lib/written/app/assets/javascripts/written/core/ext.coffee +109 -0
  11. data/lib/written/app/assets/javascripts/written/core/extensions.coffee +2 -0
  12. data/lib/written/app/assets/javascripts/written/core/history.coffee +16 -0
  13. data/lib/written/app/assets/javascripts/written/core/observer.coffee +29 -0
  14. data/lib/written/app/assets/javascripts/written/extensions/clipboard.coffee +114 -0
  15. data/lib/written/app/assets/javascripts/written/extensions/image.coffee +91 -0
  16. data/lib/written/app/assets/javascripts/written/parsers/block/code.coffee +25 -0
  17. data/lib/written/app/assets/javascripts/written/parsers/block/heading.coffee +10 -0
  18. data/lib/written/app/assets/javascripts/written/parsers/block/image.coffee +18 -0
  19. data/lib/written/app/assets/javascripts/written/parsers/block/olist.coffee +18 -0
  20. data/lib/written/app/assets/javascripts/written/parsers/block/paragraph.coffee +10 -0
  21. data/lib/written/app/assets/javascripts/written/parsers/block/ulist.coffee +17 -0
  22. data/lib/written/app/assets/javascripts/written/parsers/inline/italic.coffee +13 -0
  23. data/lib/written/app/assets/javascripts/written/parsers/inline/link.coffee +16 -0
  24. data/lib/written/app/assets/javascripts/written/parsers/inline/strong.coffee +12 -0
  25. data/lib/written/app/assets/javascripts/written/parsers/parsers.coffee +98 -0
  26. data/lib/written/app/assets/javascripts/written.coffee +4 -0
  27. data/lib/written/app/assets/stylesheets/vendors/prism.css +138 -0
  28. data/lib/written/app/assets/stylesheets/written.scss +21 -0
  29. data/lib/written/document.rb +42 -0
  30. data/lib/written/node.rb +21 -0
  31. data/lib/written/nodes/code.rb +65 -0
  32. data/lib/written/nodes/heading.rb +15 -0
  33. data/lib/written/nodes/image.rb +14 -0
  34. data/lib/written/nodes/ordered_list.rb +18 -0
  35. data/lib/written/nodes/unordered_list.rb +19 -0
  36. data/lib/written/parsers/base.rb +26 -0
  37. data/lib/written/parsers/code.rb +60 -0
  38. data/lib/written/parsers/heading.rb +19 -0
  39. data/lib/written/parsers/image.rb +19 -0
  40. data/lib/written/parsers/link.rb +12 -0
  41. data/lib/written/parsers/list.rb +33 -0
  42. data/lib/written/parsers/word.rb +16 -0
  43. data/lib/written/parsers.rb +11 -0
  44. data/lib/written/railtie.rb +20 -0
  45. data/lib/written/version.rb +3 -0
  46. data/lib/written.rb +14 -0
  47. data/test/javascript/assertions/assert.coffee +3 -0
  48. data/test/javascript/polyfills/HTMLULListElement.coffee +0 -0
  49. data/test/javascript/polyfills/Text.coffee +0 -0
  50. data/test/javascript/polyfills.coffee +2 -0
  51. data/test/javascript/runner.coffee +46 -0
  52. data/test/javascript/tests/initialization.coffee +16 -0
  53. data/test/javascript/tests/parsing.coffee +9 -0
  54. data/test/ruby/blank_test.rb +83 -0
  55. data/test/server/app/assets/javascripts/application.coffee +3 -0
  56. data/test/server/app/assets/stylesheets/application.scss +10 -0
  57. data/test/server/app/controllers/application_controller.rb +2 -0
  58. data/test/server/app/controllers/posts_controller.rb +4 -0
  59. data/test/server/app/views/layouts/application.html.erb +14 -0
  60. data/test/server/app/views/posts/show.html.erb +14 -0
  61. data/test/server/application.rb +12 -0
  62. data/test/server/config.ru +5 -0
  63. data/test/server/log/test.log +570 -0
  64. data/written.gemspec +17 -0
  65. metadata +106 -0
@@ -0,0 +1,570 @@
1
+ Started GET "/" for 127.0.0.1 at 2015-11-08 16:56:06 -0500
2
+ Processing by PostsController#show as HTML
3
+ Rendered posts/show.html.erb within layouts/application (0.7ms)
4
+ Completed 200 OK in 207ms (Views: 207.4ms)
5
+ Started GET "/assets/application.self.css?body=1" for 127.0.0.1 at 2015-11-08 16:56:07 -0500
6
+ Started GET "/javascripts/tests.js" for 127.0.0.1 at 2015-11-08 16:56:07 -0500
7
+
8
+ ActionController::RoutingError (No route matches [GET] "/javascripts/tests.js"):
9
+ actionpack (4.2.4) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
10
+ actionpack (4.2.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
11
+ railties (4.2.4) lib/rails/rack/logger.rb:38:in `call_app'
12
+ railties (4.2.4) lib/rails/rack/logger.rb:20:in `block in call'
13
+ activesupport (4.2.4) lib/active_support/tagged_logging.rb:68:in `block in tagged'
14
+ activesupport (4.2.4) lib/active_support/tagged_logging.rb:26:in `tagged'
15
+ activesupport (4.2.4) lib/active_support/tagged_logging.rb:68:in `tagged'
16
+ railties (4.2.4) lib/rails/rack/logger.rb:20:in `call'
17
+ actionpack (4.2.4) lib/action_dispatch/middleware/request_id.rb:21:in `call'
18
+ rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
19
+ rack (1.6.4) lib/rack/runtime.rb:18:in `call'
20
+ activesupport (4.2.4) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
21
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
22
+ actionpack (4.2.4) lib/action_dispatch/middleware/static.rb:116:in `call'
23
+ rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
24
+ railties (4.2.4) lib/rails/engine.rb:518:in `call'
25
+ railties (4.2.4) lib/rails/application.rb:165:in `call'
26
+ rack (1.6.4) lib/rack/content_length.rb:15:in `call'
27
+ thin (1.6.4) lib/thin/connection.rb:86:in `block in pre_process'
28
+ thin (1.6.4) lib/thin/connection.rb:84:in `catch'
29
+ thin (1.6.4) lib/thin/connection.rb:84:in `pre_process'
30
+ thin (1.6.4) lib/thin/connection.rb:53:in `process'
31
+ thin (1.6.4) lib/thin/connection.rb:39:in `receive_data'
32
+ eventmachine (1.0.8) lib/eventmachine.rb:193:in `run_machine'
33
+ eventmachine (1.0.8) lib/eventmachine.rb:193:in `run'
34
+ thin (1.6.4) lib/thin/backends/base.rb:73:in `start'
35
+ thin (1.6.4) lib/thin/server.rb:162:in `start'
36
+ rack (1.6.4) lib/rack/handler/thin.rb:19:in `run'
37
+ rack (1.6.4) lib/rack/server.rb:286:in `start'
38
+ railties (4.2.4) lib/rails/commands/server.rb:80:in `start'
39
+ /Users/pothibo/Develop/blank/Rakefile:57:in `block (2 levels) in <top (required)>'
40
+ /Users/pothibo/Develop/blank/Rakefile:33:in `chdir'
41
+ /Users/pothibo/Develop/blank/Rakefile:33:in `block in <top (required)>'
42
+ /Users/pothibo/.rbenv/versions/2.2.3/lib/ruby/2.2.0/rake/task.rb:240:in `call'
43
+ /Users/pothibo/.rbenv/versions/2.2.3/lib/ruby/2.2.0/rake/task.rb:240:in `block in execute'
44
+ /Users/pothibo/.rbenv/versions/2.2.3/lib/ruby/2.2.0/rake/task.rb:235:in `each'
45
+ /Users/pothibo/.rbenv/versions/2.2.3/lib/ruby/2.2.0/rake/task.rb:235:in `execute'
46
+ /Users/pothibo/.rbenv/versions/2.2.3/lib/ruby/2.2.0/rake/task.rb:179:in `block in invoke_with_call_chain'
47
+ /Users/pothibo/.rbenv/versions/2.2.3/lib/ruby/2.2.0/monitor.rb:211:in `mon_synchronize'
48
+ /Users/pothibo/.rbenv/versions/2.2.3/lib/ruby/2.2.0/rake/task.rb:172:in `invoke_with_call_chain'
49
+ /Users/pothibo/.rbenv/versions/2.2.3/lib/ruby/2.2.0/rake/task.rb:165:in `invoke'
50
+ /Users/pothibo/.rbenv/versions/2.2.3/lib/ruby/2.2.0/rake/application.rb:150:in `invoke_task'
51
+ /Users/pothibo/.rbenv/versions/2.2.3/lib/ruby/2.2.0/rake/application.rb:106:in `block (2 levels) in top_level'
52
+ /Users/pothibo/.rbenv/versions/2.2.3/lib/ruby/2.2.0/rake/application.rb:106:in `each'
53
+ /Users/pothibo/.rbenv/versions/2.2.3/lib/ruby/2.2.0/rake/application.rb:106:in `block in top_level'
54
+ /Users/pothibo/.rbenv/versions/2.2.3/lib/ruby/2.2.0/rake/application.rb:115:in `run_with_threads'
55
+ /Users/pothibo/.rbenv/versions/2.2.3/lib/ruby/2.2.0/rake/application.rb:100:in `top_level'
56
+ /Users/pothibo/.rbenv/versions/2.2.3/lib/ruby/2.2.0/rake/application.rb:78:in `block in run'
57
+ /Users/pothibo/.rbenv/versions/2.2.3/lib/ruby/2.2.0/rake/application.rb:176:in `standard_exception_handling'
58
+ /Users/pothibo/.rbenv/versions/2.2.3/lib/ruby/2.2.0/rake/application.rb:75:in `run'
59
+ /Users/pothibo/.rbenv/versions/2.2.3/bin/rake:33:in `<main>'
60
+
61
+
62
+ Started GET "/assets/HTMLULListElement.self.js?body=1" for 127.0.0.1 at 2015-11-08 16:56:07 -0500
63
+ Started GET "/assets/Text.self.js?body=1" for 127.0.0.1 at 2015-11-08 16:56:07 -0500
64
+ Started GET "/assets/polyfills.self.js?body=1" for 127.0.0.1 at 2015-11-08 16:56:07 -0500
65
+ Started GET "/assets/vendors/prism.self.js?body=1" for 127.0.0.1 at 2015-11-08 16:56:07 -0500
66
+ Started GET "/assets/blank/core/content.self.js?body=1" for 127.0.0.1 at 2015-11-08 16:56:07 -0500
67
+ Started GET "/assets/blank/core/parsers.self.js?body=1" for 127.0.0.1 at 2015-11-08 16:56:07 -0500
68
+ Started GET "/assets/blank/core/cursor.self.js?body=1" for 127.0.0.1 at 2015-11-08 16:56:07 -0500
69
+ Started GET "/assets/blank/core/ext.self.js?body=1" for 127.0.0.1 at 2015-11-08 16:56:07 -0500
70
+ Started GET "/assets/blank/core/linefeed.self.js?body=1" for 127.0.0.1 at 2015-11-08 16:56:07 -0500
71
+ Started GET "/assets/blank/core/mutations.self.js?body=1" for 127.0.0.1 at 2015-11-08 16:56:07 -0500
72
+ Started GET "/assets/blank/extensions/clipboard.self.js?body=1" for 127.0.0.1 at 2015-11-08 16:56:07 -0500
73
+ Started GET "/assets/blank/extensions/image.self.js?body=1" for 127.0.0.1 at 2015-11-08 16:56:07 -0500
74
+ Started GET "/assets/blank/parsers/code.self.js?body=1" for 127.0.0.1 at 2015-11-08 16:56:07 -0500
75
+ Started GET "/assets/blank/parsers/heading.self.js?body=1" for 127.0.0.1 at 2015-11-08 16:56:07 -0500
76
+ Started GET "/assets/blank/parsers/image.self.js?body=1" for 127.0.0.1 at 2015-11-08 16:56:07 -0500
77
+ Started GET "/assets/blank/parsers/link.self.js?body=1" for 127.0.0.1 at 2015-11-08 16:56:07 -0500
78
+ Started GET "/assets/blank/parsers/lists.self.js?body=1" for 127.0.0.1 at 2015-11-08 16:56:07 -0500
79
+ Started GET "/assets/blank/parsers/word.self.js?body=1" for 127.0.0.1 at 2015-11-08 16:56:07 -0500
80
+ Started GET "/assets/blank.self.js?body=1" for 127.0.0.1 at 2015-11-08 16:56:07 -0500
81
+ Started GET "/assets/blank/all.self.js?body=1" for 127.0.0.1 at 2015-11-08 16:56:07 -0500
82
+ Started GET "/assets/application.self.js?body=1" for 127.0.0.1 at 2015-11-08 16:56:07 -0500
83
+ Started GET "/" for 127.0.0.1 at 2015-11-08 16:56:10 -0500
84
+ Processing by PostsController#show as HTML
85
+ Rendered posts/show.html.erb within layouts/application (0.1ms)
86
+ Completed 200 OK in 65ms (Views: 64.8ms)
87
+ Started GET "/assets/application.self.css?body=1" for 127.0.0.1 at 2015-11-08 16:56:10 -0500
88
+ Started GET "/javascripts/tests.js" for 127.0.0.1 at 2015-11-08 16:56:10 -0500
89
+
90
+ ActionController::RoutingError (No route matches [GET] "/javascripts/tests.js"):
91
+ actionpack (4.2.4) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
92
+ actionpack (4.2.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
93
+ railties (4.2.4) lib/rails/rack/logger.rb:38:in `call_app'
94
+ railties (4.2.4) lib/rails/rack/logger.rb:20:in `block in call'
95
+ activesupport (4.2.4) lib/active_support/tagged_logging.rb:68:in `block in tagged'
96
+ activesupport (4.2.4) lib/active_support/tagged_logging.rb:26:in `tagged'
97
+ activesupport (4.2.4) lib/active_support/tagged_logging.rb:68:in `tagged'
98
+ railties (4.2.4) lib/rails/rack/logger.rb:20:in `call'
99
+ actionpack (4.2.4) lib/action_dispatch/middleware/request_id.rb:21:in `call'
100
+ rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
101
+ rack (1.6.4) lib/rack/runtime.rb:18:in `call'
102
+ activesupport (4.2.4) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
103
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
104
+ actionpack (4.2.4) lib/action_dispatch/middleware/static.rb:116:in `call'
105
+ rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
106
+ railties (4.2.4) lib/rails/engine.rb:518:in `call'
107
+ railties (4.2.4) lib/rails/application.rb:165:in `call'
108
+ rack (1.6.4) lib/rack/content_length.rb:15:in `call'
109
+ thin (1.6.4) lib/thin/connection.rb:86:in `block in pre_process'
110
+ thin (1.6.4) lib/thin/connection.rb:84:in `catch'
111
+ thin (1.6.4) lib/thin/connection.rb:84:in `pre_process'
112
+ thin (1.6.4) lib/thin/connection.rb:53:in `process'
113
+ thin (1.6.4) lib/thin/connection.rb:39:in `receive_data'
114
+ eventmachine (1.0.8) lib/eventmachine.rb:193:in `run_machine'
115
+ eventmachine (1.0.8) lib/eventmachine.rb:193:in `run'
116
+ thin (1.6.4) lib/thin/backends/base.rb:73:in `start'
117
+ thin (1.6.4) lib/thin/server.rb:162:in `start'
118
+ rack (1.6.4) lib/rack/handler/thin.rb:19:in `run'
119
+ rack (1.6.4) lib/rack/server.rb:286:in `start'
120
+ railties (4.2.4) lib/rails/commands/server.rb:80:in `start'
121
+ /Users/pothibo/Develop/blank/Rakefile:57:in `block (2 levels) in <top (required)>'
122
+ /Users/pothibo/Develop/blank/Rakefile:33:in `chdir'
123
+ /Users/pothibo/Develop/blank/Rakefile:33:in `block in <top (required)>'
124
+ /Users/pothibo/.rbenv/versions/2.2.3/lib/ruby/2.2.0/rake/task.rb:240:in `call'
125
+ /Users/pothibo/.rbenv/versions/2.2.3/lib/ruby/2.2.0/rake/task.rb:240:in `block in execute'
126
+ /Users/pothibo/.rbenv/versions/2.2.3/lib/ruby/2.2.0/rake/task.rb:235:in `each'
127
+ /Users/pothibo/.rbenv/versions/2.2.3/lib/ruby/2.2.0/rake/task.rb:235:in `execute'
128
+ /Users/pothibo/.rbenv/versions/2.2.3/lib/ruby/2.2.0/rake/task.rb:179:in `block in invoke_with_call_chain'
129
+ /Users/pothibo/.rbenv/versions/2.2.3/lib/ruby/2.2.0/monitor.rb:211:in `mon_synchronize'
130
+ /Users/pothibo/.rbenv/versions/2.2.3/lib/ruby/2.2.0/rake/task.rb:172:in `invoke_with_call_chain'
131
+ /Users/pothibo/.rbenv/versions/2.2.3/lib/ruby/2.2.0/rake/task.rb:165:in `invoke'
132
+ /Users/pothibo/.rbenv/versions/2.2.3/lib/ruby/2.2.0/rake/application.rb:150:in `invoke_task'
133
+ /Users/pothibo/.rbenv/versions/2.2.3/lib/ruby/2.2.0/rake/application.rb:106:in `block (2 levels) in top_level'
134
+ /Users/pothibo/.rbenv/versions/2.2.3/lib/ruby/2.2.0/rake/application.rb:106:in `each'
135
+ /Users/pothibo/.rbenv/versions/2.2.3/lib/ruby/2.2.0/rake/application.rb:106:in `block in top_level'
136
+ /Users/pothibo/.rbenv/versions/2.2.3/lib/ruby/2.2.0/rake/application.rb:115:in `run_with_threads'
137
+ /Users/pothibo/.rbenv/versions/2.2.3/lib/ruby/2.2.0/rake/application.rb:100:in `top_level'
138
+ /Users/pothibo/.rbenv/versions/2.2.3/lib/ruby/2.2.0/rake/application.rb:78:in `block in run'
139
+ /Users/pothibo/.rbenv/versions/2.2.3/lib/ruby/2.2.0/rake/application.rb:176:in `standard_exception_handling'
140
+ /Users/pothibo/.rbenv/versions/2.2.3/lib/ruby/2.2.0/rake/application.rb:75:in `run'
141
+ /Users/pothibo/.rbenv/versions/2.2.3/bin/rake:33:in `<main>'
142
+
143
+
144
+ Started GET "/assets/HTMLULListElement.self.js?body=1" for 127.0.0.1 at 2015-11-08 16:56:10 -0500
145
+ Started GET "/assets/Text.self.js?body=1" for 127.0.0.1 at 2015-11-08 16:56:10 -0500
146
+ Started GET "/assets/polyfills.self.js?body=1" for 127.0.0.1 at 2015-11-08 16:56:10 -0500
147
+ Started GET "/assets/vendors/prism.self.js?body=1" for 127.0.0.1 at 2015-11-08 16:56:10 -0500
148
+ Started GET "/assets/blank/core/mutations.self.js?body=1" for 127.0.0.1 at 2015-11-08 16:56:10 -0500
149
+ Started GET "/assets/blank/core/content.self.js?body=1" for 127.0.0.1 at 2015-11-08 16:56:10 -0500
150
+ Started GET "/assets/blank/core/cursor.self.js?body=1" for 127.0.0.1 at 2015-11-08 16:56:10 -0500
151
+ Started GET "/assets/blank/core/ext.self.js?body=1" for 127.0.0.1 at 2015-11-08 16:56:10 -0500
152
+ Started GET "/assets/blank/core/linefeed.self.js?body=1" for 127.0.0.1 at 2015-11-08 16:56:10 -0500
153
+ Started GET "/assets/blank/core/parsers.self.js?body=1" for 127.0.0.1 at 2015-11-08 16:56:10 -0500
154
+ Started GET "/assets/blank/extensions/clipboard.self.js?body=1" for 127.0.0.1 at 2015-11-08 16:56:10 -0500
155
+ Started GET "/assets/blank/extensions/image.self.js?body=1" for 127.0.0.1 at 2015-11-08 16:56:10 -0500
156
+ Started GET "/assets/blank/parsers/code.self.js?body=1" for 127.0.0.1 at 2015-11-08 16:56:10 -0500
157
+ Started GET "/assets/blank/parsers/heading.self.js?body=1" for 127.0.0.1 at 2015-11-08 16:56:10 -0500
158
+ Started GET "/assets/blank/parsers/image.self.js?body=1" for 127.0.0.1 at 2015-11-08 16:56:10 -0500
159
+ Started GET "/assets/blank/parsers/link.self.js?body=1" for 127.0.0.1 at 2015-11-08 16:56:10 -0500
160
+ Started GET "/assets/blank/parsers/lists.self.js?body=1" for 127.0.0.1 at 2015-11-08 16:56:10 -0500
161
+ Started GET "/assets/blank/parsers/word.self.js?body=1" for 127.0.0.1 at 2015-11-08 16:56:10 -0500
162
+ Started GET "/assets/blank.self.js?body=1" for 127.0.0.1 at 2015-11-08 16:56:10 -0500
163
+ Started GET "/assets/blank/all.self.js?body=1" for 127.0.0.1 at 2015-11-08 16:56:10 -0500
164
+ Started GET "/assets/application.self.js?body=1" for 127.0.0.1 at 2015-11-08 16:56:10 -0500
165
+ Started GET "/" for 127.0.0.1 at 2015-11-08 16:56:50 -0500
166
+ Processing by PostsController#show as HTML
167
+ Rendered posts/show.html.erb within layouts/application (0.0ms)
168
+ Completed 200 OK in 35ms (Views: 35.1ms)
169
+ Started GET "/assets/application.self.css?body=1" for 127.0.0.1 at 2015-11-08 16:56:50 -0500
170
+ Started GET "/javascripts/tests.js" for 127.0.0.1 at 2015-11-08 16:56:50 -0500
171
+
172
+ ActionController::RoutingError (No route matches [GET] "/javascripts/tests.js"):
173
+ actionpack (4.2.4) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
174
+ actionpack (4.2.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
175
+ railties (4.2.4) lib/rails/rack/logger.rb:38:in `call_app'
176
+ railties (4.2.4) lib/rails/rack/logger.rb:20:in `block in call'
177
+ activesupport (4.2.4) lib/active_support/tagged_logging.rb:68:in `block in tagged'
178
+ activesupport (4.2.4) lib/active_support/tagged_logging.rb:26:in `tagged'
179
+ activesupport (4.2.4) lib/active_support/tagged_logging.rb:68:in `tagged'
180
+ railties (4.2.4) lib/rails/rack/logger.rb:20:in `call'
181
+ actionpack (4.2.4) lib/action_dispatch/middleware/request_id.rb:21:in `call'
182
+ rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
183
+ rack (1.6.4) lib/rack/runtime.rb:18:in `call'
184
+ activesupport (4.2.4) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
185
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
186
+ actionpack (4.2.4) lib/action_dispatch/middleware/static.rb:116:in `call'
187
+ rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
188
+ railties (4.2.4) lib/rails/engine.rb:518:in `call'
189
+ railties (4.2.4) lib/rails/application.rb:165:in `call'
190
+ rack (1.6.4) lib/rack/content_length.rb:15:in `call'
191
+ thin (1.6.4) lib/thin/connection.rb:86:in `block in pre_process'
192
+ thin (1.6.4) lib/thin/connection.rb:84:in `catch'
193
+ thin (1.6.4) lib/thin/connection.rb:84:in `pre_process'
194
+ thin (1.6.4) lib/thin/connection.rb:53:in `process'
195
+ thin (1.6.4) lib/thin/connection.rb:39:in `receive_data'
196
+ eventmachine (1.0.8) lib/eventmachine.rb:193:in `run_machine'
197
+ eventmachine (1.0.8) lib/eventmachine.rb:193:in `run'
198
+ thin (1.6.4) lib/thin/backends/base.rb:73:in `start'
199
+ thin (1.6.4) lib/thin/server.rb:162:in `start'
200
+ rack (1.6.4) lib/rack/handler/thin.rb:19:in `run'
201
+ rack (1.6.4) lib/rack/server.rb:286:in `start'
202
+ railties (4.2.4) lib/rails/commands/server.rb:80:in `start'
203
+ /Users/pothibo/Develop/blank/Rakefile:57:in `block (2 levels) in <top (required)>'
204
+ /Users/pothibo/Develop/blank/Rakefile:33:in `chdir'
205
+ /Users/pothibo/Develop/blank/Rakefile:33:in `block in <top (required)>'
206
+ /Users/pothibo/.rbenv/versions/2.2.3/lib/ruby/2.2.0/rake/task.rb:240:in `call'
207
+ /Users/pothibo/.rbenv/versions/2.2.3/lib/ruby/2.2.0/rake/task.rb:240:in `block in execute'
208
+ /Users/pothibo/.rbenv/versions/2.2.3/lib/ruby/2.2.0/rake/task.rb:235:in `each'
209
+ /Users/pothibo/.rbenv/versions/2.2.3/lib/ruby/2.2.0/rake/task.rb:235:in `execute'
210
+ /Users/pothibo/.rbenv/versions/2.2.3/lib/ruby/2.2.0/rake/task.rb:179:in `block in invoke_with_call_chain'
211
+ /Users/pothibo/.rbenv/versions/2.2.3/lib/ruby/2.2.0/monitor.rb:211:in `mon_synchronize'
212
+ /Users/pothibo/.rbenv/versions/2.2.3/lib/ruby/2.2.0/rake/task.rb:172:in `invoke_with_call_chain'
213
+ /Users/pothibo/.rbenv/versions/2.2.3/lib/ruby/2.2.0/rake/task.rb:165:in `invoke'
214
+ /Users/pothibo/.rbenv/versions/2.2.3/lib/ruby/2.2.0/rake/application.rb:150:in `invoke_task'
215
+ /Users/pothibo/.rbenv/versions/2.2.3/lib/ruby/2.2.0/rake/application.rb:106:in `block (2 levels) in top_level'
216
+ /Users/pothibo/.rbenv/versions/2.2.3/lib/ruby/2.2.0/rake/application.rb:106:in `each'
217
+ /Users/pothibo/.rbenv/versions/2.2.3/lib/ruby/2.2.0/rake/application.rb:106:in `block in top_level'
218
+ /Users/pothibo/.rbenv/versions/2.2.3/lib/ruby/2.2.0/rake/application.rb:115:in `run_with_threads'
219
+ /Users/pothibo/.rbenv/versions/2.2.3/lib/ruby/2.2.0/rake/application.rb:100:in `top_level'
220
+ /Users/pothibo/.rbenv/versions/2.2.3/lib/ruby/2.2.0/rake/application.rb:78:in `block in run'
221
+ /Users/pothibo/.rbenv/versions/2.2.3/lib/ruby/2.2.0/rake/application.rb:176:in `standard_exception_handling'
222
+ /Users/pothibo/.rbenv/versions/2.2.3/lib/ruby/2.2.0/rake/application.rb:75:in `run'
223
+ /Users/pothibo/.rbenv/versions/2.2.3/bin/rake:33:in `<main>'
224
+
225
+
226
+ Started GET "/assets/HTMLULListElement.self.js?body=1" for 127.0.0.1 at 2015-11-08 16:56:50 -0500
227
+ Started GET "/assets/Text.self.js?body=1" for 127.0.0.1 at 2015-11-08 16:56:50 -0500
228
+ Started GET "/assets/polyfills.self.js?body=1" for 127.0.0.1 at 2015-11-08 16:56:50 -0500
229
+ Started GET "/assets/vendors/prism.self.js?body=1" for 127.0.0.1 at 2015-11-08 16:56:50 -0500
230
+ Started GET "/assets/blank/core/content.self.js?body=1" for 127.0.0.1 at 2015-11-08 16:56:50 -0500
231
+ Started GET "/assets/blank/core/cursor.self.js?body=1" for 127.0.0.1 at 2015-11-08 16:56:50 -0500
232
+ Started GET "/assets/blank/core/ext.self.js?body=1" for 127.0.0.1 at 2015-11-08 16:56:50 -0500
233
+ Started GET "/assets/blank/core/linefeed.self.js?body=1" for 127.0.0.1 at 2015-11-08 16:56:50 -0500
234
+ Started GET "/assets/blank/core/mutations.self.js?body=1" for 127.0.0.1 at 2015-11-08 16:56:50 -0500
235
+ Started GET "/assets/blank/core/parsers.self.js?body=1" for 127.0.0.1 at 2015-11-08 16:56:50 -0500
236
+ Started GET "/assets/blank/extensions/clipboard.self.js?body=1" for 127.0.0.1 at 2015-11-08 16:56:50 -0500
237
+ Started GET "/assets/blank/extensions/image.self.js?body=1" for 127.0.0.1 at 2015-11-08 16:56:50 -0500
238
+ Started GET "/assets/blank/parsers/code.self.js?body=1" for 127.0.0.1 at 2015-11-08 16:56:50 -0500
239
+ Started GET "/assets/blank/parsers/heading.self.js?body=1" for 127.0.0.1 at 2015-11-08 16:56:50 -0500
240
+ Started GET "/assets/blank/parsers/image.self.js?body=1" for 127.0.0.1 at 2015-11-08 16:56:51 -0500
241
+ Started GET "/assets/blank/parsers/link.self.js?body=1" for 127.0.0.1 at 2015-11-08 16:56:51 -0500
242
+ Started GET "/assets/blank/parsers/lists.self.js?body=1" for 127.0.0.1 at 2015-11-08 16:56:51 -0500
243
+ Started GET "/assets/blank/parsers/word.self.js?body=1" for 127.0.0.1 at 2015-11-08 16:56:51 -0500
244
+ Started GET "/assets/blank.self.js?body=1" for 127.0.0.1 at 2015-11-08 16:56:51 -0500
245
+ Started GET "/assets/blank/all.self.js?body=1" for 127.0.0.1 at 2015-11-08 16:56:51 -0500
246
+ Started GET "/assets/application.self.js?body=1" for 127.0.0.1 at 2015-11-08 16:56:51 -0500
247
+ Started GET "/" for 127.0.0.1 at 2015-11-08 16:57:18 -0500
248
+ Processing by PostsController#show as HTML
249
+ Rendered posts/show.html.erb within layouts/application (0.0ms)
250
+ Completed 200 OK in 58ms (Views: 57.4ms)
251
+ Started GET "/assets/application.self.css?body=1" for 127.0.0.1 at 2015-11-08 16:57:18 -0500
252
+ Started GET "/javascripts/tests.js" for 127.0.0.1 at 2015-11-08 16:57:18 -0500
253
+
254
+ ActionController::RoutingError (No route matches [GET] "/javascripts/tests.js"):
255
+ actionpack (4.2.4) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
256
+ actionpack (4.2.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
257
+ railties (4.2.4) lib/rails/rack/logger.rb:38:in `call_app'
258
+ railties (4.2.4) lib/rails/rack/logger.rb:20:in `block in call'
259
+ activesupport (4.2.4) lib/active_support/tagged_logging.rb:68:in `block in tagged'
260
+ activesupport (4.2.4) lib/active_support/tagged_logging.rb:26:in `tagged'
261
+ activesupport (4.2.4) lib/active_support/tagged_logging.rb:68:in `tagged'
262
+ railties (4.2.4) lib/rails/rack/logger.rb:20:in `call'
263
+ actionpack (4.2.4) lib/action_dispatch/middleware/request_id.rb:21:in `call'
264
+ rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
265
+ rack (1.6.4) lib/rack/runtime.rb:18:in `call'
266
+ activesupport (4.2.4) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
267
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
268
+ actionpack (4.2.4) lib/action_dispatch/middleware/static.rb:116:in `call'
269
+ rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
270
+ railties (4.2.4) lib/rails/engine.rb:518:in `call'
271
+ railties (4.2.4) lib/rails/application.rb:165:in `call'
272
+ rack (1.6.4) lib/rack/content_length.rb:15:in `call'
273
+ thin (1.6.4) lib/thin/connection.rb:86:in `block in pre_process'
274
+ thin (1.6.4) lib/thin/connection.rb:84:in `catch'
275
+ thin (1.6.4) lib/thin/connection.rb:84:in `pre_process'
276
+ thin (1.6.4) lib/thin/connection.rb:53:in `process'
277
+ thin (1.6.4) lib/thin/connection.rb:39:in `receive_data'
278
+ eventmachine (1.0.8) lib/eventmachine.rb:193:in `run_machine'
279
+ eventmachine (1.0.8) lib/eventmachine.rb:193:in `run'
280
+ thin (1.6.4) lib/thin/backends/base.rb:73:in `start'
281
+ thin (1.6.4) lib/thin/server.rb:162:in `start'
282
+ rack (1.6.4) lib/rack/handler/thin.rb:19:in `run'
283
+ rack (1.6.4) lib/rack/server.rb:286:in `start'
284
+ railties (4.2.4) lib/rails/commands/server.rb:80:in `start'
285
+ /Users/pothibo/Develop/blank/Rakefile:57:in `block (2 levels) in <top (required)>'
286
+ /Users/pothibo/Develop/blank/Rakefile:33:in `chdir'
287
+ /Users/pothibo/Develop/blank/Rakefile:33:in `block in <top (required)>'
288
+ /Users/pothibo/.rbenv/versions/2.2.3/lib/ruby/2.2.0/rake/task.rb:240:in `call'
289
+ /Users/pothibo/.rbenv/versions/2.2.3/lib/ruby/2.2.0/rake/task.rb:240:in `block in execute'
290
+ /Users/pothibo/.rbenv/versions/2.2.3/lib/ruby/2.2.0/rake/task.rb:235:in `each'
291
+ /Users/pothibo/.rbenv/versions/2.2.3/lib/ruby/2.2.0/rake/task.rb:235:in `execute'
292
+ /Users/pothibo/.rbenv/versions/2.2.3/lib/ruby/2.2.0/rake/task.rb:179:in `block in invoke_with_call_chain'
293
+ /Users/pothibo/.rbenv/versions/2.2.3/lib/ruby/2.2.0/monitor.rb:211:in `mon_synchronize'
294
+ /Users/pothibo/.rbenv/versions/2.2.3/lib/ruby/2.2.0/rake/task.rb:172:in `invoke_with_call_chain'
295
+ /Users/pothibo/.rbenv/versions/2.2.3/lib/ruby/2.2.0/rake/task.rb:165:in `invoke'
296
+ /Users/pothibo/.rbenv/versions/2.2.3/lib/ruby/2.2.0/rake/application.rb:150:in `invoke_task'
297
+ /Users/pothibo/.rbenv/versions/2.2.3/lib/ruby/2.2.0/rake/application.rb:106:in `block (2 levels) in top_level'
298
+ /Users/pothibo/.rbenv/versions/2.2.3/lib/ruby/2.2.0/rake/application.rb:106:in `each'
299
+ /Users/pothibo/.rbenv/versions/2.2.3/lib/ruby/2.2.0/rake/application.rb:106:in `block in top_level'
300
+ /Users/pothibo/.rbenv/versions/2.2.3/lib/ruby/2.2.0/rake/application.rb:115:in `run_with_threads'
301
+ /Users/pothibo/.rbenv/versions/2.2.3/lib/ruby/2.2.0/rake/application.rb:100:in `top_level'
302
+ /Users/pothibo/.rbenv/versions/2.2.3/lib/ruby/2.2.0/rake/application.rb:78:in `block in run'
303
+ /Users/pothibo/.rbenv/versions/2.2.3/lib/ruby/2.2.0/rake/application.rb:176:in `standard_exception_handling'
304
+ /Users/pothibo/.rbenv/versions/2.2.3/lib/ruby/2.2.0/rake/application.rb:75:in `run'
305
+ /Users/pothibo/.rbenv/versions/2.2.3/bin/rake:33:in `<main>'
306
+
307
+
308
+ Started GET "/javascripts/polyfills.js" for 127.0.0.1 at 2015-11-08 16:57:18 -0500
309
+
310
+ ActionController::RoutingError (No route matches [GET] "/javascripts/polyfills.js"):
311
+ actionpack (4.2.4) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
312
+ actionpack (4.2.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
313
+ railties (4.2.4) lib/rails/rack/logger.rb:38:in `call_app'
314
+ railties (4.2.4) lib/rails/rack/logger.rb:20:in `block in call'
315
+ activesupport (4.2.4) lib/active_support/tagged_logging.rb:68:in `block in tagged'
316
+ activesupport (4.2.4) lib/active_support/tagged_logging.rb:26:in `tagged'
317
+ activesupport (4.2.4) lib/active_support/tagged_logging.rb:68:in `tagged'
318
+ railties (4.2.4) lib/rails/rack/logger.rb:20:in `call'
319
+ actionpack (4.2.4) lib/action_dispatch/middleware/request_id.rb:21:in `call'
320
+ rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
321
+ rack (1.6.4) lib/rack/runtime.rb:18:in `call'
322
+ activesupport (4.2.4) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
323
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
324
+ actionpack (4.2.4) lib/action_dispatch/middleware/static.rb:116:in `call'
325
+ rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
326
+ railties (4.2.4) lib/rails/engine.rb:518:in `call'
327
+ railties (4.2.4) lib/rails/application.rb:165:in `call'
328
+ rack (1.6.4) lib/rack/content_length.rb:15:in `call'
329
+ thin (1.6.4) lib/thin/connection.rb:86:in `block in pre_process'
330
+ thin (1.6.4) lib/thin/connection.rb:84:in `catch'
331
+ thin (1.6.4) lib/thin/connection.rb:84:in `pre_process'
332
+ thin (1.6.4) lib/thin/connection.rb:53:in `process'
333
+ thin (1.6.4) lib/thin/connection.rb:39:in `receive_data'
334
+ eventmachine (1.0.8) lib/eventmachine.rb:193:in `run_machine'
335
+ eventmachine (1.0.8) lib/eventmachine.rb:193:in `run'
336
+ thin (1.6.4) lib/thin/backends/base.rb:73:in `start'
337
+ thin (1.6.4) lib/thin/server.rb:162:in `start'
338
+ rack (1.6.4) lib/rack/handler/thin.rb:19:in `run'
339
+ rack (1.6.4) lib/rack/server.rb:286:in `start'
340
+ railties (4.2.4) lib/rails/commands/server.rb:80:in `start'
341
+ /Users/pothibo/Develop/blank/Rakefile:57:in `block (2 levels) in <top (required)>'
342
+ /Users/pothibo/Develop/blank/Rakefile:33:in `chdir'
343
+ /Users/pothibo/Develop/blank/Rakefile:33:in `block in <top (required)>'
344
+ /Users/pothibo/.rbenv/versions/2.2.3/lib/ruby/2.2.0/rake/task.rb:240:in `call'
345
+ /Users/pothibo/.rbenv/versions/2.2.3/lib/ruby/2.2.0/rake/task.rb:240:in `block in execute'
346
+ /Users/pothibo/.rbenv/versions/2.2.3/lib/ruby/2.2.0/rake/task.rb:235:in `each'
347
+ /Users/pothibo/.rbenv/versions/2.2.3/lib/ruby/2.2.0/rake/task.rb:235:in `execute'
348
+ /Users/pothibo/.rbenv/versions/2.2.3/lib/ruby/2.2.0/rake/task.rb:179:in `block in invoke_with_call_chain'
349
+ /Users/pothibo/.rbenv/versions/2.2.3/lib/ruby/2.2.0/monitor.rb:211:in `mon_synchronize'
350
+ /Users/pothibo/.rbenv/versions/2.2.3/lib/ruby/2.2.0/rake/task.rb:172:in `invoke_with_call_chain'
351
+ /Users/pothibo/.rbenv/versions/2.2.3/lib/ruby/2.2.0/rake/task.rb:165:in `invoke'
352
+ /Users/pothibo/.rbenv/versions/2.2.3/lib/ruby/2.2.0/rake/application.rb:150:in `invoke_task'
353
+ /Users/pothibo/.rbenv/versions/2.2.3/lib/ruby/2.2.0/rake/application.rb:106:in `block (2 levels) in top_level'
354
+ /Users/pothibo/.rbenv/versions/2.2.3/lib/ruby/2.2.0/rake/application.rb:106:in `each'
355
+ /Users/pothibo/.rbenv/versions/2.2.3/lib/ruby/2.2.0/rake/application.rb:106:in `block in top_level'
356
+ /Users/pothibo/.rbenv/versions/2.2.3/lib/ruby/2.2.0/rake/application.rb:115:in `run_with_threads'
357
+ /Users/pothibo/.rbenv/versions/2.2.3/lib/ruby/2.2.0/rake/application.rb:100:in `top_level'
358
+ /Users/pothibo/.rbenv/versions/2.2.3/lib/ruby/2.2.0/rake/application.rb:78:in `block in run'
359
+ /Users/pothibo/.rbenv/versions/2.2.3/lib/ruby/2.2.0/rake/application.rb:176:in `standard_exception_handling'
360
+ /Users/pothibo/.rbenv/versions/2.2.3/lib/ruby/2.2.0/rake/application.rb:75:in `run'
361
+ /Users/pothibo/.rbenv/versions/2.2.3/bin/rake:33:in `<main>'
362
+
363
+
364
+ Started GET "/assets/vendors/prism.self.js?body=1" for 127.0.0.1 at 2015-11-08 16:57:18 -0500
365
+ Started GET "/assets/blank/core/content.self.js?body=1" for 127.0.0.1 at 2015-11-08 16:57:18 -0500
366
+ Started GET "/assets/blank/core/cursor.self.js?body=1" for 127.0.0.1 at 2015-11-08 16:57:18 -0500
367
+ Started GET "/assets/blank/core/ext.self.js?body=1" for 127.0.0.1 at 2015-11-08 16:57:18 -0500
368
+ Started GET "/assets/blank/core/parsers.self.js?body=1" for 127.0.0.1 at 2015-11-08 16:57:18 -0500
369
+ Started GET "/assets/blank/core/linefeed.self.js?body=1" for 127.0.0.1 at 2015-11-08 16:57:18 -0500
370
+ Started GET "/assets/blank/core/mutations.self.js?body=1" for 127.0.0.1 at 2015-11-08 16:57:18 -0500
371
+ Started GET "/assets/blank/extensions/clipboard.self.js?body=1" for 127.0.0.1 at 2015-11-08 16:57:18 -0500
372
+ Started GET "/assets/blank/extensions/image.self.js?body=1" for 127.0.0.1 at 2015-11-08 16:57:18 -0500
373
+ Started GET "/assets/blank/parsers/code.self.js?body=1" for 127.0.0.1 at 2015-11-08 16:57:18 -0500
374
+ Started GET "/assets/blank/parsers/heading.self.js?body=1" for 127.0.0.1 at 2015-11-08 16:57:18 -0500
375
+ Started GET "/assets/blank/parsers/image.self.js?body=1" for 127.0.0.1 at 2015-11-08 16:57:18 -0500
376
+ Started GET "/assets/blank/parsers/link.self.js?body=1" for 127.0.0.1 at 2015-11-08 16:57:18 -0500
377
+ Started GET "/assets/blank/parsers/lists.self.js?body=1" for 127.0.0.1 at 2015-11-08 16:57:18 -0500
378
+ Started GET "/assets/blank/parsers/word.self.js?body=1" for 127.0.0.1 at 2015-11-08 16:57:18 -0500
379
+ Started GET "/assets/blank.self.js?body=1" for 127.0.0.1 at 2015-11-08 16:57:18 -0500
380
+ Started GET "/assets/blank/all.self.js?body=1" for 127.0.0.1 at 2015-11-08 16:57:18 -0500
381
+ Started GET "/assets/application.self.js?body=1" for 127.0.0.1 at 2015-11-08 16:57:18 -0500
382
+ Started GET "/" for 127.0.0.1 at 2015-11-08 16:57:36 -0500
383
+ Processing by PostsController#show as HTML
384
+ Rendered posts/show.html.erb within layouts/application (0.1ms)
385
+ Completed 200 OK in 35ms (Views: 35.1ms)
386
+ Started GET "/assets/application.self.css?body=1" for 127.0.0.1 at 2015-11-08 16:57:36 -0500
387
+ Started GET "/javascripts/tests.js" for 127.0.0.1 at 2015-11-08 16:57:36 -0500
388
+
389
+ ActionController::RoutingError (No route matches [GET] "/javascripts/tests.js"):
390
+ actionpack (4.2.4) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
391
+ actionpack (4.2.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
392
+ railties (4.2.4) lib/rails/rack/logger.rb:38:in `call_app'
393
+ railties (4.2.4) lib/rails/rack/logger.rb:20:in `block in call'
394
+ activesupport (4.2.4) lib/active_support/tagged_logging.rb:68:in `block in tagged'
395
+ activesupport (4.2.4) lib/active_support/tagged_logging.rb:26:in `tagged'
396
+ activesupport (4.2.4) lib/active_support/tagged_logging.rb:68:in `tagged'
397
+ railties (4.2.4) lib/rails/rack/logger.rb:20:in `call'
398
+ actionpack (4.2.4) lib/action_dispatch/middleware/request_id.rb:21:in `call'
399
+ rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
400
+ rack (1.6.4) lib/rack/runtime.rb:18:in `call'
401
+ activesupport (4.2.4) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
402
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
403
+ actionpack (4.2.4) lib/action_dispatch/middleware/static.rb:116:in `call'
404
+ rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
405
+ railties (4.2.4) lib/rails/engine.rb:518:in `call'
406
+ railties (4.2.4) lib/rails/application.rb:165:in `call'
407
+ rack (1.6.4) lib/rack/content_length.rb:15:in `call'
408
+ thin (1.6.4) lib/thin/connection.rb:86:in `block in pre_process'
409
+ thin (1.6.4) lib/thin/connection.rb:84:in `catch'
410
+ thin (1.6.4) lib/thin/connection.rb:84:in `pre_process'
411
+ thin (1.6.4) lib/thin/connection.rb:53:in `process'
412
+ thin (1.6.4) lib/thin/connection.rb:39:in `receive_data'
413
+ eventmachine (1.0.8) lib/eventmachine.rb:193:in `run_machine'
414
+ eventmachine (1.0.8) lib/eventmachine.rb:193:in `run'
415
+ thin (1.6.4) lib/thin/backends/base.rb:73:in `start'
416
+ thin (1.6.4) lib/thin/server.rb:162:in `start'
417
+ rack (1.6.4) lib/rack/handler/thin.rb:19:in `run'
418
+ rack (1.6.4) lib/rack/server.rb:286:in `start'
419
+ railties (4.2.4) lib/rails/commands/server.rb:80:in `start'
420
+ /Users/pothibo/Develop/blank/Rakefile:57:in `block (2 levels) in <top (required)>'
421
+ /Users/pothibo/Develop/blank/Rakefile:33:in `chdir'
422
+ /Users/pothibo/Develop/blank/Rakefile:33:in `block in <top (required)>'
423
+ /Users/pothibo/.rbenv/versions/2.2.3/lib/ruby/2.2.0/rake/task.rb:240:in `call'
424
+ /Users/pothibo/.rbenv/versions/2.2.3/lib/ruby/2.2.0/rake/task.rb:240:in `block in execute'
425
+ /Users/pothibo/.rbenv/versions/2.2.3/lib/ruby/2.2.0/rake/task.rb:235:in `each'
426
+ /Users/pothibo/.rbenv/versions/2.2.3/lib/ruby/2.2.0/rake/task.rb:235:in `execute'
427
+ /Users/pothibo/.rbenv/versions/2.2.3/lib/ruby/2.2.0/rake/task.rb:179:in `block in invoke_with_call_chain'
428
+ /Users/pothibo/.rbenv/versions/2.2.3/lib/ruby/2.2.0/monitor.rb:211:in `mon_synchronize'
429
+ /Users/pothibo/.rbenv/versions/2.2.3/lib/ruby/2.2.0/rake/task.rb:172:in `invoke_with_call_chain'
430
+ /Users/pothibo/.rbenv/versions/2.2.3/lib/ruby/2.2.0/rake/task.rb:165:in `invoke'
431
+ /Users/pothibo/.rbenv/versions/2.2.3/lib/ruby/2.2.0/rake/application.rb:150:in `invoke_task'
432
+ /Users/pothibo/.rbenv/versions/2.2.3/lib/ruby/2.2.0/rake/application.rb:106:in `block (2 levels) in top_level'
433
+ /Users/pothibo/.rbenv/versions/2.2.3/lib/ruby/2.2.0/rake/application.rb:106:in `each'
434
+ /Users/pothibo/.rbenv/versions/2.2.3/lib/ruby/2.2.0/rake/application.rb:106:in `block in top_level'
435
+ /Users/pothibo/.rbenv/versions/2.2.3/lib/ruby/2.2.0/rake/application.rb:115:in `run_with_threads'
436
+ /Users/pothibo/.rbenv/versions/2.2.3/lib/ruby/2.2.0/rake/application.rb:100:in `top_level'
437
+ /Users/pothibo/.rbenv/versions/2.2.3/lib/ruby/2.2.0/rake/application.rb:78:in `block in run'
438
+ /Users/pothibo/.rbenv/versions/2.2.3/lib/ruby/2.2.0/rake/application.rb:176:in `standard_exception_handling'
439
+ /Users/pothibo/.rbenv/versions/2.2.3/lib/ruby/2.2.0/rake/application.rb:75:in `run'
440
+ /Users/pothibo/.rbenv/versions/2.2.3/bin/rake:33:in `<main>'
441
+
442
+
443
+ Started GET "/javascripts/polyfills.js" for 127.0.0.1 at 2015-11-08 16:57:36 -0500
444
+
445
+ ActionController::RoutingError (No route matches [GET] "/javascripts/polyfills.js"):
446
+ actionpack (4.2.4) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
447
+ actionpack (4.2.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
448
+ railties (4.2.4) lib/rails/rack/logger.rb:38:in `call_app'
449
+ railties (4.2.4) lib/rails/rack/logger.rb:20:in `block in call'
450
+ activesupport (4.2.4) lib/active_support/tagged_logging.rb:68:in `block in tagged'
451
+ activesupport (4.2.4) lib/active_support/tagged_logging.rb:26:in `tagged'
452
+ activesupport (4.2.4) lib/active_support/tagged_logging.rb:68:in `tagged'
453
+ railties (4.2.4) lib/rails/rack/logger.rb:20:in `call'
454
+ actionpack (4.2.4) lib/action_dispatch/middleware/request_id.rb:21:in `call'
455
+ rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
456
+ rack (1.6.4) lib/rack/runtime.rb:18:in `call'
457
+ activesupport (4.2.4) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
458
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
459
+ actionpack (4.2.4) lib/action_dispatch/middleware/static.rb:116:in `call'
460
+ rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
461
+ railties (4.2.4) lib/rails/engine.rb:518:in `call'
462
+ railties (4.2.4) lib/rails/application.rb:165:in `call'
463
+ rack (1.6.4) lib/rack/content_length.rb:15:in `call'
464
+ thin (1.6.4) lib/thin/connection.rb:86:in `block in pre_process'
465
+ thin (1.6.4) lib/thin/connection.rb:84:in `catch'
466
+ thin (1.6.4) lib/thin/connection.rb:84:in `pre_process'
467
+ thin (1.6.4) lib/thin/connection.rb:53:in `process'
468
+ thin (1.6.4) lib/thin/connection.rb:39:in `receive_data'
469
+ eventmachine (1.0.8) lib/eventmachine.rb:193:in `run_machine'
470
+ eventmachine (1.0.8) lib/eventmachine.rb:193:in `run'
471
+ thin (1.6.4) lib/thin/backends/base.rb:73:in `start'
472
+ thin (1.6.4) lib/thin/server.rb:162:in `start'
473
+ rack (1.6.4) lib/rack/handler/thin.rb:19:in `run'
474
+ rack (1.6.4) lib/rack/server.rb:286:in `start'
475
+ railties (4.2.4) lib/rails/commands/server.rb:80:in `start'
476
+ /Users/pothibo/Develop/blank/Rakefile:57:in `block (2 levels) in <top (required)>'
477
+ /Users/pothibo/Develop/blank/Rakefile:33:in `chdir'
478
+ /Users/pothibo/Develop/blank/Rakefile:33:in `block in <top (required)>'
479
+ /Users/pothibo/.rbenv/versions/2.2.3/lib/ruby/2.2.0/rake/task.rb:240:in `call'
480
+ /Users/pothibo/.rbenv/versions/2.2.3/lib/ruby/2.2.0/rake/task.rb:240:in `block in execute'
481
+ /Users/pothibo/.rbenv/versions/2.2.3/lib/ruby/2.2.0/rake/task.rb:235:in `each'
482
+ /Users/pothibo/.rbenv/versions/2.2.3/lib/ruby/2.2.0/rake/task.rb:235:in `execute'
483
+ /Users/pothibo/.rbenv/versions/2.2.3/lib/ruby/2.2.0/rake/task.rb:179:in `block in invoke_with_call_chain'
484
+ /Users/pothibo/.rbenv/versions/2.2.3/lib/ruby/2.2.0/monitor.rb:211:in `mon_synchronize'
485
+ /Users/pothibo/.rbenv/versions/2.2.3/lib/ruby/2.2.0/rake/task.rb:172:in `invoke_with_call_chain'
486
+ /Users/pothibo/.rbenv/versions/2.2.3/lib/ruby/2.2.0/rake/task.rb:165:in `invoke'
487
+ /Users/pothibo/.rbenv/versions/2.2.3/lib/ruby/2.2.0/rake/application.rb:150:in `invoke_task'
488
+ /Users/pothibo/.rbenv/versions/2.2.3/lib/ruby/2.2.0/rake/application.rb:106:in `block (2 levels) in top_level'
489
+ /Users/pothibo/.rbenv/versions/2.2.3/lib/ruby/2.2.0/rake/application.rb:106:in `each'
490
+ /Users/pothibo/.rbenv/versions/2.2.3/lib/ruby/2.2.0/rake/application.rb:106:in `block in top_level'
491
+ /Users/pothibo/.rbenv/versions/2.2.3/lib/ruby/2.2.0/rake/application.rb:115:in `run_with_threads'
492
+ /Users/pothibo/.rbenv/versions/2.2.3/lib/ruby/2.2.0/rake/application.rb:100:in `top_level'
493
+ /Users/pothibo/.rbenv/versions/2.2.3/lib/ruby/2.2.0/rake/application.rb:78:in `block in run'
494
+ /Users/pothibo/.rbenv/versions/2.2.3/lib/ruby/2.2.0/rake/application.rb:176:in `standard_exception_handling'
495
+ /Users/pothibo/.rbenv/versions/2.2.3/lib/ruby/2.2.0/rake/application.rb:75:in `run'
496
+ /Users/pothibo/.rbenv/versions/2.2.3/bin/rake:33:in `<main>'
497
+
498
+
499
+ Started GET "/assets/vendors/prism.self.js?body=1" for 127.0.0.1 at 2015-11-08 16:57:36 -0500
500
+ Started GET "/assets/blank/core/content.self.js?body=1" for 127.0.0.1 at 2015-11-08 16:57:36 -0500
501
+ Started GET "/assets/blank/core/cursor.self.js?body=1" for 127.0.0.1 at 2015-11-08 16:57:36 -0500
502
+ Started GET "/assets/blank/core/ext.self.js?body=1" for 127.0.0.1 at 2015-11-08 16:57:36 -0500
503
+ Started GET "/assets/blank/core/linefeed.self.js?body=1" for 127.0.0.1 at 2015-11-08 16:57:36 -0500
504
+ Started GET "/assets/blank/core/mutations.self.js?body=1" for 127.0.0.1 at 2015-11-08 16:57:36 -0500
505
+ Started GET "/assets/blank/core/parsers.self.js?body=1" for 127.0.0.1 at 2015-11-08 16:57:36 -0500
506
+ Started GET "/assets/blank/extensions/clipboard.self.js?body=1" for 127.0.0.1 at 2015-11-08 16:57:36 -0500
507
+ Started GET "/assets/blank/extensions/image.self.js?body=1" for 127.0.0.1 at 2015-11-08 16:57:36 -0500
508
+ Started GET "/assets/blank/parsers/code.self.js?body=1" for 127.0.0.1 at 2015-11-08 16:57:36 -0500
509
+ Started GET "/assets/blank/parsers/heading.self.js?body=1" for 127.0.0.1 at 2015-11-08 16:57:36 -0500
510
+ Started GET "/assets/blank/parsers/image.self.js?body=1" for 127.0.0.1 at 2015-11-08 16:57:36 -0500
511
+ Started GET "/assets/blank/parsers/link.self.js?body=1" for 127.0.0.1 at 2015-11-08 16:57:36 -0500
512
+ Started GET "/assets/blank/parsers/lists.self.js?body=1" for 127.0.0.1 at 2015-11-08 16:57:36 -0500
513
+ Started GET "/assets/blank/parsers/word.self.js?body=1" for 127.0.0.1 at 2015-11-08 16:57:36 -0500
514
+ Started GET "/assets/blank.self.js?body=1" for 127.0.0.1 at 2015-11-08 16:57:36 -0500
515
+ Started GET "/assets/blank/all.self.js?body=1" for 127.0.0.1 at 2015-11-08 16:57:36 -0500
516
+ Started GET "/assets/application.self.js?body=1" for 127.0.0.1 at 2015-11-08 16:57:36 -0500
517
+ Started GET "/" for 127.0.0.1 at 2015-11-08 17:02:57 -0500
518
+ Processing by PostsController#show as HTML
519
+ Rendered posts/show.html.erb within layouts/application (0.8ms)
520
+ Completed 200 OK in 324ms (Views: 323.8ms)
521
+ Started GET "/assets/tests.self.js?body=1" for 127.0.0.1 at 2015-11-08 17:02:57 -0500
522
+ Started GET "/assets/polyfills/HTMLULListElement.self.js?body=1" for 127.0.0.1 at 2015-11-08 17:02:57 -0500
523
+ Started GET "/assets/application.self.css?body=1" for 127.0.0.1 at 2015-11-08 17:02:57 -0500
524
+ Started GET "/assets/polyfills/Text.self.js?body=1" for 127.0.0.1 at 2015-11-08 17:02:57 -0500
525
+ Started GET "/assets/polyfills.self.js?body=1" for 127.0.0.1 at 2015-11-08 17:02:57 -0500
526
+ Started GET "/assets/vendors/prism.self.js?body=1" for 127.0.0.1 at 2015-11-08 17:02:57 -0500
527
+ Started GET "/assets/blank/core/content.self.js?body=1" for 127.0.0.1 at 2015-11-08 17:02:57 -0500
528
+ Started GET "/assets/blank/core/cursor.self.js?body=1" for 127.0.0.1 at 2015-11-08 17:02:57 -0500
529
+ Started GET "/assets/blank/core/mutations.self.js?body=1" for 127.0.0.1 at 2015-11-08 17:02:57 -0500
530
+ Started GET "/assets/blank/core/ext.self.js?body=1" for 127.0.0.1 at 2015-11-08 17:02:57 -0500
531
+ Started GET "/assets/blank/core/linefeed.self.js?body=1" for 127.0.0.1 at 2015-11-08 17:02:57 -0500
532
+ Started GET "/assets/blank/core/parsers.self.js?body=1" for 127.0.0.1 at 2015-11-08 17:02:57 -0500
533
+ Started GET "/assets/blank/extensions/clipboard.self.js?body=1" for 127.0.0.1 at 2015-11-08 17:02:57 -0500
534
+ Started GET "/assets/blank/extensions/image.self.js?body=1" for 127.0.0.1 at 2015-11-08 17:02:57 -0500
535
+ Started GET "/assets/blank/parsers/code.self.js?body=1" for 127.0.0.1 at 2015-11-08 17:02:57 -0500
536
+ Started GET "/assets/blank/parsers/heading.self.js?body=1" for 127.0.0.1 at 2015-11-08 17:02:57 -0500
537
+ Started GET "/assets/blank/parsers/image.self.js?body=1" for 127.0.0.1 at 2015-11-08 17:02:57 -0500
538
+ Started GET "/assets/blank/parsers/link.self.js?body=1" for 127.0.0.1 at 2015-11-08 17:02:57 -0500
539
+ Started GET "/assets/blank/parsers/lists.self.js?body=1" for 127.0.0.1 at 2015-11-08 17:02:57 -0500
540
+ Started GET "/assets/blank/parsers/word.self.js?body=1" for 127.0.0.1 at 2015-11-08 17:02:57 -0500
541
+ Started GET "/assets/blank.self.js?body=1" for 127.0.0.1 at 2015-11-08 17:02:57 -0500
542
+ Started GET "/assets/blank/all.self.js?body=1" for 127.0.0.1 at 2015-11-08 17:02:57 -0500
543
+ Started GET "/assets/application.self.js?body=1" for 127.0.0.1 at 2015-11-08 17:02:57 -0500
544
+ Started GET "/" for 127.0.0.1 at 2015-11-08 17:03:07 -0500
545
+ Processing by PostsController#show as HTML
546
+ Rendered posts/show.html.erb within layouts/application (0.1ms)
547
+ Completed 200 OK in 46ms (Views: 45.7ms)
548
+ Started GET "/assets/application.self.css?body=1" for 127.0.0.1 at 2015-11-08 17:03:07 -0500
549
+ Started GET "/assets/tests.self.js?body=1" for 127.0.0.1 at 2015-11-08 17:03:07 -0500
550
+ Started GET "/assets/polyfills.self.js?body=1" for 127.0.0.1 at 2015-11-08 17:03:07 -0500
551
+ Started GET "/assets/polyfills/HTMLULListElement.self.js?body=1" for 127.0.0.1 at 2015-11-08 17:03:07 -0500
552
+ Started GET "/assets/polyfills/Text.self.js?body=1" for 127.0.0.1 at 2015-11-08 17:03:07 -0500
553
+ Started GET "/assets/vendors/prism.self.js?body=1" for 127.0.0.1 at 2015-11-08 17:03:07 -0500
554
+ Started GET "/assets/blank/core/content.self.js?body=1" for 127.0.0.1 at 2015-11-08 17:03:07 -0500
555
+ Started GET "/assets/blank/core/parsers.self.js?body=1" for 127.0.0.1 at 2015-11-08 17:03:07 -0500
556
+ Started GET "/assets/blank/core/cursor.self.js?body=1" for 127.0.0.1 at 2015-11-08 17:03:07 -0500
557
+ Started GET "/assets/blank/core/ext.self.js?body=1" for 127.0.0.1 at 2015-11-08 17:03:07 -0500
558
+ Started GET "/assets/blank/core/linefeed.self.js?body=1" for 127.0.0.1 at 2015-11-08 17:03:07 -0500
559
+ Started GET "/assets/blank/core/mutations.self.js?body=1" for 127.0.0.1 at 2015-11-08 17:03:07 -0500
560
+ Started GET "/assets/blank/extensions/clipboard.self.js?body=1" for 127.0.0.1 at 2015-11-08 17:03:07 -0500
561
+ Started GET "/assets/blank/extensions/image.self.js?body=1" for 127.0.0.1 at 2015-11-08 17:03:07 -0500
562
+ Started GET "/assets/blank/parsers/code.self.js?body=1" for 127.0.0.1 at 2015-11-08 17:03:07 -0500
563
+ Started GET "/assets/blank/parsers/image.self.js?body=1" for 127.0.0.1 at 2015-11-08 17:03:07 -0500
564
+ Started GET "/assets/blank/parsers/link.self.js?body=1" for 127.0.0.1 at 2015-11-08 17:03:07 -0500
565
+ Started GET "/assets/blank/parsers/lists.self.js?body=1" for 127.0.0.1 at 2015-11-08 17:03:07 -0500
566
+ Started GET "/assets/blank/parsers/heading.self.js?body=1" for 127.0.0.1 at 2015-11-08 17:03:07 -0500
567
+ Started GET "/assets/blank/parsers/word.self.js?body=1" for 127.0.0.1 at 2015-11-08 17:03:07 -0500
568
+ Started GET "/assets/blank/all.self.js?body=1" for 127.0.0.1 at 2015-11-08 17:03:07 -0500
569
+ Started GET "/assets/application.self.js?body=1" for 127.0.0.1 at 2015-11-08 17:03:07 -0500
570
+ Started GET "/assets/blank.self.js?body=1" for 127.0.0.1 at 2015-11-08 17:03:07 -0500
data/written.gemspec ADDED
@@ -0,0 +1,17 @@
1
+ lib = File.expand_path('../lib', __FILE__)
2
+ $:.unshift(lib) unless $LOAD_PATH.include?(lib)
3
+
4
+ require 'written/version'
5
+
6
+ Gem::Specification.new do |s|
7
+ s.name = 'written'
8
+ s.version = Written::VERSION
9
+ s.summary = "HTML and Ruby Markdown Editor"
10
+ s.description = "Written is a rich Markdown editor for the web."
11
+ s.authors = ["Pier-Olivier Thibault"]
12
+ s.email = 'pothibo@gmail.com'
13
+ s.files = `git ls-files -z`.split("\x0")
14
+ s.require_path = 'lib'
15
+ s.homepage = 'https://github.com/pothibo/written'
16
+ s.license = 'MIT'
17
+ end