lettrics 0.0.3 → 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (34) hide show
  1. data.tar.gz.sig +0 -0
  2. data/README.markdown +9 -3
  3. data/app/assets/javascripts/lettrics.js.coffee +8 -5
  4. data/lib/lettrics/version.rb +1 -1
  5. data/spec/dummy/app/controllers/pages_controller.rb +3 -0
  6. data/spec/dummy/app/views/pages/page_with_javascript.html.erb +8 -0
  7. data/spec/dummy/config/routes.rb +1 -56
  8. data/spec/dummy/db/test.db +0 -0
  9. data/spec/dummy/log/development.log +119 -1278
  10. data/spec/dummy/log/test.log +778 -741
  11. data/spec/dummy/tmp/cache/assets/C75/460/sprockets%2F94da8462fc55e11170903ef0a3703516 +0 -0
  12. data/spec/dummy/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953 +0 -0
  13. data/spec/dummy/tmp/cache/assets/{D2D/DA0/sprockets%2Fa1de6237f30da30581cbc1e078905e4a → D1D/8C0/sprockets%2F89f1b19cd91d129be09467f643940cfb} +0 -0
  14. data/spec/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705 +0 -0
  15. data/spec/dummy/tmp/cache/assets/D41/870/sprockets%2F1afa09c8dd3d1a765472b455c94f582c +0 -0
  16. data/spec/dummy/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655 +0 -0
  17. data/spec/dummy/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6 +0 -0
  18. data/spec/dummy/tmp/cache/assets/{C01/730/sprockets%2F500659744c217844696e2c86676f0c25 → D6A/B00/sprockets%2Fe6e78a5f30cea6f7a3b71d5680504d0b} +0 -0
  19. data/spec/dummy/tmp/cache/assets/{CF3/410/sprockets%2Fde6edfb1186fa00d46866436924946f9 → D7C/550/sprockets%2Fe945639b2b4eca4ce9526885c46d4ccb} +0 -0
  20. data/spec/dummy/tmp/cache/assets/DBC/B60/sprockets%2Fb26a4c1021ae8b88ccbe72b2c96cf01d +0 -0
  21. data/spec/dummy/tmp/cache/assets/{D4B/940/sprockets%2F7675e8ff74c03c57ff006bb46807ce3c → DD0/310/sprockets%2Fdd135b4ad7ccfc82260c72c85ec566fe} +0 -0
  22. data/spec/dummy/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994 +0 -0
  23. data/spec/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af +0 -0
  24. data/spec/features/lettrics_integration_spec.rb +8 -0
  25. metadata +118 -145
  26. metadata.gz.sig +0 -0
  27. checksums.yaml +0 -7
  28. checksums.yaml.gz.sig +0 -0
  29. data/spec/dummy/tmp/cache/assets/CB1/520/sprockets%2F79ca64faa1e80c776248b4a421253785 +0 -0
  30. data/spec/dummy/tmp/cache/assets/CFF/100/sprockets%2F7b8e06d7174372badca3430622e5b52b +0 -0
  31. data/spec/dummy/tmp/cache/assets/D86/BC0/sprockets%2F4e8d94183affe56af668b052e876aed7 +0 -0
  32. data/spec/dummy/tmp/cache/assets/D9D/4F0/sprockets%2F96ddc1374a336ea11c4847c2af6fa7ed +0 -0
  33. data/spec/dummy/tmp/cache/assets/DA6/F80/sprockets%2F08fdba99041ea1fa6c9c68ffd249a373 +0 -0
  34. data/spec/dummy/tmp/cache/assets/E26/F00/sprockets%2F2d3cf5d17d8b4f5a8edb4cfa63b1a50f +0 -0
data.tar.gz.sig CHANGED
Binary file
data/README.markdown CHANGED
@@ -41,9 +41,15 @@ to the counter. In [Bootstrap 2.3](http://getbootstrap.com/2.3.2/base-css.html#t
41
41
 
42
42
  1. Fork it
43
43
  2. Create your feature branch (`git checkout -b my-new-feature`)
44
- 3. Commit your changes (`git commit -am 'Add some feature'`)
45
- 4. Push to the branch (`git push origin my-new-feature`)
46
- 5. Create new Pull Request
44
+ 3. Make your changes: Please run the tests and, in most cases, add a failing
45
+ test of your own. To run the tests (you will need Firefox version < 29):
46
+
47
+ bundle install
48
+ rspec ./spec
49
+
50
+ 4. Commit your changes (`git commit -am 'Add some feature'`)
51
+ 5. Push to the branch (`git push origin my-new-feature`)
52
+ 6. Create new Pull Request
47
53
 
48
54
  Please be sure to test any new features and to run the current test suite with
49
55
  RSpec.
@@ -1,4 +1,4 @@
1
- jQuery ->
1
+ $.fn.lettrify = () ->
2
2
  updateCharacterCountdown = (textarea) ->
3
3
  counter = $(textarea.data('counter'))
4
4
  characterLimit = textarea.data('limit')
@@ -10,13 +10,16 @@ jQuery ->
10
10
  else
11
11
  counter.removeClass('text-error')
12
12
 
13
- $('.lettrify').each (index) ->
13
+ this.each (index) =>
14
14
  counter = $($(this).data('counter'))
15
15
  limit = counter.text()
16
16
  $(this).data('limit', limit)
17
- updateCharacterCountdown($(this))
17
+ updateCharacterCountdown(this)
18
18
 
19
- $('.lettrify').change ->
19
+ this.change ->
20
20
  updateCharacterCountdown($(this))
21
- $('.lettrify').keyup ->
21
+ this.keyup ->
22
22
  updateCharacterCountdown($(this))
23
+
24
+ jQuery ->
25
+ $('.lettrify').lettrify()
@@ -1,3 +1,3 @@
1
1
  module Lettrics
2
- VERSION = "0.0.3"
2
+ VERSION = "0.1.0"
3
3
  end
@@ -10,4 +10,7 @@ class PagesController < ApplicationController
10
10
 
11
11
  def small_text_area
12
12
  end
13
+
14
+ def page_with_javascript
15
+ end
13
16
  end
@@ -0,0 +1,8 @@
1
+ <button>Add lettrified field</button>
2
+
3
+ <script>
4
+ $('button').on('click', function() {
5
+ $('body').append("You may enter <span id='counter1'>4000</span> characters. <textarea class='lettrify' id='textarea' data-counter='#counter1'></textarea> ");
6
+ $('.lettrify').lettrify();
7
+ });
8
+ </script>
@@ -3,60 +3,5 @@ Dummy::Application.routes.draw do
3
3
  match '/text_areas' => 'pages#text_areas'
4
4
  match '/small_text_area' => 'pages#small_text_area'
5
5
  match '/text_area_with_text' => 'pages#text_area_with_text'
6
- # The priority is based upon order of creation:
7
- # first created -> highest priority.
8
-
9
- # Sample of regular route:
10
- # match 'products/:id' => 'catalog#view'
11
- # Keep in mind you can assign values other than :controller and :action
12
-
13
- # Sample of named route:
14
- # match 'products/:id/purchase' => 'catalog#purchase', :as => :purchase
15
- # This route can be invoked with purchase_url(:id => product.id)
16
-
17
- # Sample resource route (maps HTTP verbs to controller actions automatically):
18
- # resources :products
19
-
20
- # Sample resource route with options:
21
- # resources :products do
22
- # member do
23
- # get 'short'
24
- # post 'toggle'
25
- # end
26
- #
27
- # collection do
28
- # get 'sold'
29
- # end
30
- # end
31
-
32
- # Sample resource route with sub-resources:
33
- # resources :products do
34
- # resources :comments, :sales
35
- # resource :seller
36
- # end
37
-
38
- # Sample resource route with more complex sub-resources
39
- # resources :products do
40
- # resources :comments
41
- # resources :sales do
42
- # get 'recent', :on => :collection
43
- # end
44
- # end
45
-
46
- # Sample resource route within a namespace:
47
- # namespace :admin do
48
- # # Directs /admin/products/* to Admin::ProductsController
49
- # # (app/controllers/admin/products_controller.rb)
50
- # resources :products
51
- # end
52
-
53
- # You can have the root of your site routed with "root"
54
- # just remember to delete public/index.html.
55
- # root :to => 'welcome#index'
56
-
57
- # See how all your routes lay out with "rake routes"
58
-
59
- # This is a legacy wild controller route that's not recommended for RESTful applications.
60
- # Note: This route will make all actions in every controller accessible via GET requests.
61
- # match ':controller(/:action(/:id))(.:format)'
6
+ match '/page_with_javascript' => 'pages#page_with_javascript'
62
7
  end
File without changes
@@ -1,1388 +1,229 @@
1
+ Connecting to database specified by database.yml
1
2
 
2
3
 
3
- Started GET "/text_area" for 127.0.0.1 at 2014-03-21 16:52:28 -0400
4
- Connecting to database specified by database.yml
5
-
6
- ActionController::RoutingError (uninitialized constant PagesController):
7
- activesupport (3.2.17) lib/active_support/inflector/methods.rb:230:in `block in constantize'
8
- activesupport (3.2.17) lib/active_support/inflector/methods.rb:229:in `each'
9
- activesupport (3.2.17) lib/active_support/inflector/methods.rb:229:in `constantize'
10
- actionpack (3.2.17) lib/action_dispatch/routing/route_set.rb:69:in `controller_reference'
11
- actionpack (3.2.17) lib/action_dispatch/routing/route_set.rb:54:in `controller'
12
- actionpack (3.2.17) lib/action_dispatch/routing/route_set.rb:32:in `call'
13
- journey (1.0.4) lib/journey/router.rb:68:in `block in call'
14
- journey (1.0.4) lib/journey/router.rb:56:in `each'
15
- journey (1.0.4) lib/journey/router.rb:56:in `call'
16
- actionpack (3.2.17) lib/action_dispatch/routing/route_set.rb:608:in `call'
17
- actionpack (3.2.17) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
18
- rack (1.4.5) lib/rack/etag.rb:23:in `call'
19
- rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
20
- actionpack (3.2.17) lib/action_dispatch/middleware/head.rb:14:in `call'
21
- actionpack (3.2.17) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
22
- actionpack (3.2.17) lib/action_dispatch/middleware/flash.rb:242:in `call'
23
- rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
24
- rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
25
- actionpack (3.2.17) lib/action_dispatch/middleware/cookies.rb:341:in `call'
26
- activerecord (3.2.17) lib/active_record/query_cache.rb:64:in `call'
27
- activerecord (3.2.17) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
28
- actionpack (3.2.17) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
29
- activesupport (3.2.17) lib/active_support/callbacks.rb:405:in `_run__605171992422990082__call__3054062838087158782__callbacks'
30
- activesupport (3.2.17) lib/active_support/callbacks.rb:405:in `__run_callback'
31
- activesupport (3.2.17) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
32
- activesupport (3.2.17) lib/active_support/callbacks.rb:81:in `run_callbacks'
33
- actionpack (3.2.17) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
34
- actionpack (3.2.17) lib/action_dispatch/middleware/reloader.rb:65:in `call'
35
- actionpack (3.2.17) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
36
- actionpack (3.2.17) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
37
- actionpack (3.2.17) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
38
- railties (3.2.17) lib/rails/rack/logger.rb:32:in `call_app'
39
- railties (3.2.17) lib/rails/rack/logger.rb:16:in `block in call'
40
- activesupport (3.2.17) lib/active_support/tagged_logging.rb:22:in `tagged'
41
- railties (3.2.17) lib/rails/rack/logger.rb:16:in `call'
42
- actionpack (3.2.17) lib/action_dispatch/middleware/request_id.rb:22:in `call'
43
- rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
44
- rack (1.4.5) lib/rack/runtime.rb:17:in `call'
45
- activesupport (3.2.17) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
46
- rack (1.4.5) lib/rack/lock.rb:15:in `call'
47
- actionpack (3.2.17) lib/action_dispatch/middleware/static.rb:63:in `call'
48
- railties (3.2.17) lib/rails/engine.rb:484:in `call'
49
- railties (3.2.17) lib/rails/application.rb:231:in `call'
50
- rack (1.4.5) lib/rack/content_length.rb:14:in `call'
51
- railties (3.2.17) lib/rails/rack/log_tailer.rb:17:in `call'
52
- rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
53
- /Users/pmm21/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
54
- /Users/pmm21/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
55
- /Users/pmm21/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
56
-
57
-
58
- Rendered /Users/pmm21/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-3.2.17/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (14.3ms)
59
-
60
-
61
- Started GET "/text_area" for 127.0.0.1 at 2014-03-21 16:52:41 -0400
62
-
63
- LoadError (Expected /Users/pmm21/work/lettrics/spec/dummy/app/controllers/pages_controller.rb to define PagesController):
64
- activesupport (3.2.17) lib/active_support/dependencies.rb:503:in `load_missing_constant'
65
- activesupport (3.2.17) lib/active_support/dependencies.rb:192:in `block in const_missing'
66
- activesupport (3.2.17) lib/active_support/dependencies.rb:190:in `each'
67
- activesupport (3.2.17) lib/active_support/dependencies.rb:190:in `const_missing'
68
- activesupport (3.2.17) lib/active_support/inflector/methods.rb:230:in `block in constantize'
69
- activesupport (3.2.17) lib/active_support/inflector/methods.rb:229:in `each'
70
- activesupport (3.2.17) lib/active_support/inflector/methods.rb:229:in `constantize'
71
- activesupport (3.2.17) lib/active_support/dependencies.rb:554:in `get'
72
- actionpack (3.2.17) lib/action_dispatch/routing/route_set.rb:69:in `controller_reference'
73
- actionpack (3.2.17) lib/action_dispatch/routing/route_set.rb:54:in `controller'
74
- actionpack (3.2.17) lib/action_dispatch/routing/route_set.rb:32:in `call'
75
- journey (1.0.4) lib/journey/router.rb:68:in `block in call'
76
- journey (1.0.4) lib/journey/router.rb:56:in `each'
77
- journey (1.0.4) lib/journey/router.rb:56:in `call'
78
- actionpack (3.2.17) lib/action_dispatch/routing/route_set.rb:608:in `call'
79
- actionpack (3.2.17) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
80
- rack (1.4.5) lib/rack/etag.rb:23:in `call'
81
- rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
82
- actionpack (3.2.17) lib/action_dispatch/middleware/head.rb:14:in `call'
83
- actionpack (3.2.17) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
84
- actionpack (3.2.17) lib/action_dispatch/middleware/flash.rb:242:in `call'
85
- rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
86
- rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
87
- actionpack (3.2.17) lib/action_dispatch/middleware/cookies.rb:341:in `call'
88
- activerecord (3.2.17) lib/active_record/query_cache.rb:64:in `call'
89
- activerecord (3.2.17) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
90
- actionpack (3.2.17) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
91
- activesupport (3.2.17) lib/active_support/callbacks.rb:405:in `_run__605171992422990082__call__3054062838087158782__callbacks'
92
- activesupport (3.2.17) lib/active_support/callbacks.rb:405:in `__run_callback'
93
- activesupport (3.2.17) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
94
- activesupport (3.2.17) lib/active_support/callbacks.rb:81:in `run_callbacks'
95
- actionpack (3.2.17) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
96
- actionpack (3.2.17) lib/action_dispatch/middleware/reloader.rb:65:in `call'
97
- actionpack (3.2.17) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
98
- actionpack (3.2.17) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
99
- actionpack (3.2.17) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
100
- railties (3.2.17) lib/rails/rack/logger.rb:32:in `call_app'
101
- railties (3.2.17) lib/rails/rack/logger.rb:16:in `block in call'
102
- activesupport (3.2.17) lib/active_support/tagged_logging.rb:22:in `tagged'
103
- railties (3.2.17) lib/rails/rack/logger.rb:16:in `call'
104
- actionpack (3.2.17) lib/action_dispatch/middleware/request_id.rb:22:in `call'
105
- rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
106
- rack (1.4.5) lib/rack/runtime.rb:17:in `call'
107
- activesupport (3.2.17) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
108
- rack (1.4.5) lib/rack/lock.rb:15:in `call'
109
- actionpack (3.2.17) lib/action_dispatch/middleware/static.rb:63:in `call'
110
- railties (3.2.17) lib/rails/engine.rb:484:in `call'
111
- railties (3.2.17) lib/rails/application.rb:231:in `call'
112
- rack (1.4.5) lib/rack/content_length.rb:14:in `call'
113
- railties (3.2.17) lib/rails/rack/log_tailer.rb:17:in `call'
114
- rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
115
- /Users/pmm21/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
116
- /Users/pmm21/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
117
- /Users/pmm21/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
118
-
119
-
120
- Rendered /Users/pmm21/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-3.2.17/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.5ms)
121
- Rendered /Users/pmm21/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-3.2.17/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (86.1ms)
122
- Rendered /Users/pmm21/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-3.2.17/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (100.0ms)
123
-
124
-
125
- Started GET "/text_area" for 127.0.0.1 at 2014-03-21 16:52:49 -0400
126
-
127
- NoMethodError (undefined method `action' for PagesController:Class):
128
- actionpack (3.2.17) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
129
- actionpack (3.2.17) lib/action_dispatch/routing/route_set.rb:36:in `call'
130
- journey (1.0.4) lib/journey/router.rb:68:in `block in call'
131
- journey (1.0.4) lib/journey/router.rb:56:in `each'
132
- journey (1.0.4) lib/journey/router.rb:56:in `call'
133
- actionpack (3.2.17) lib/action_dispatch/routing/route_set.rb:608:in `call'
134
- actionpack (3.2.17) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
135
- rack (1.4.5) lib/rack/etag.rb:23:in `call'
136
- rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
137
- actionpack (3.2.17) lib/action_dispatch/middleware/head.rb:14:in `call'
138
- actionpack (3.2.17) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
139
- actionpack (3.2.17) lib/action_dispatch/middleware/flash.rb:242:in `call'
140
- rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
141
- rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
142
- actionpack (3.2.17) lib/action_dispatch/middleware/cookies.rb:341:in `call'
143
- activerecord (3.2.17) lib/active_record/query_cache.rb:64:in `call'
144
- activerecord (3.2.17) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
145
- actionpack (3.2.17) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
146
- activesupport (3.2.17) lib/active_support/callbacks.rb:405:in `_run__605171992422990082__call__3054062838087158782__callbacks'
147
- activesupport (3.2.17) lib/active_support/callbacks.rb:405:in `__run_callback'
148
- activesupport (3.2.17) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
149
- activesupport (3.2.17) lib/active_support/callbacks.rb:81:in `run_callbacks'
150
- actionpack (3.2.17) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
151
- actionpack (3.2.17) lib/action_dispatch/middleware/reloader.rb:65:in `call'
152
- actionpack (3.2.17) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
153
- actionpack (3.2.17) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
154
- actionpack (3.2.17) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
155
- railties (3.2.17) lib/rails/rack/logger.rb:32:in `call_app'
156
- railties (3.2.17) lib/rails/rack/logger.rb:16:in `block in call'
157
- activesupport (3.2.17) lib/active_support/tagged_logging.rb:22:in `tagged'
158
- railties (3.2.17) lib/rails/rack/logger.rb:16:in `call'
159
- actionpack (3.2.17) lib/action_dispatch/middleware/request_id.rb:22:in `call'
160
- rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
161
- rack (1.4.5) lib/rack/runtime.rb:17:in `call'
162
- activesupport (3.2.17) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
163
- rack (1.4.5) lib/rack/lock.rb:15:in `call'
164
- actionpack (3.2.17) lib/action_dispatch/middleware/static.rb:63:in `call'
165
- railties (3.2.17) lib/rails/engine.rb:484:in `call'
166
- railties (3.2.17) lib/rails/application.rb:231:in `call'
167
- rack (1.4.5) lib/rack/content_length.rb:14:in `call'
168
- railties (3.2.17) lib/rails/rack/log_tailer.rb:17:in `call'
169
- rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
170
- /Users/pmm21/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
171
- /Users/pmm21/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
172
- /Users/pmm21/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
173
-
174
-
175
- Rendered /Users/pmm21/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-3.2.17/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.4ms)
176
- Rendered /Users/pmm21/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-3.2.17/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.2ms)
177
- Rendered /Users/pmm21/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-3.2.17/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (9.4ms)
178
-
179
-
180
- Started GET "/text_area" for 127.0.0.1 at 2014-03-21 16:52:58 -0400
181
-
182
- NoMethodError (undefined method `action' for PagesController:Class):
183
- actionpack (3.2.17) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
184
- actionpack (3.2.17) lib/action_dispatch/routing/route_set.rb:36:in `call'
185
- journey (1.0.4) lib/journey/router.rb:68:in `block in call'
186
- journey (1.0.4) lib/journey/router.rb:56:in `each'
187
- journey (1.0.4) lib/journey/router.rb:56:in `call'
188
- actionpack (3.2.17) lib/action_dispatch/routing/route_set.rb:608:in `call'
189
- actionpack (3.2.17) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
190
- rack (1.4.5) lib/rack/etag.rb:23:in `call'
191
- rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
192
- actionpack (3.2.17) lib/action_dispatch/middleware/head.rb:14:in `call'
193
- actionpack (3.2.17) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
194
- actionpack (3.2.17) lib/action_dispatch/middleware/flash.rb:242:in `call'
195
- rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
196
- rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
197
- actionpack (3.2.17) lib/action_dispatch/middleware/cookies.rb:341:in `call'
198
- activerecord (3.2.17) lib/active_record/query_cache.rb:64:in `call'
199
- activerecord (3.2.17) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
200
- actionpack (3.2.17) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
201
- activesupport (3.2.17) lib/active_support/callbacks.rb:405:in `_run__605171992422990082__call__3054062838087158782__callbacks'
202
- activesupport (3.2.17) lib/active_support/callbacks.rb:405:in `__run_callback'
203
- activesupport (3.2.17) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
204
- activesupport (3.2.17) lib/active_support/callbacks.rb:81:in `run_callbacks'
205
- actionpack (3.2.17) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
206
- actionpack (3.2.17) lib/action_dispatch/middleware/reloader.rb:65:in `call'
207
- actionpack (3.2.17) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
208
- actionpack (3.2.17) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
209
- actionpack (3.2.17) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
210
- railties (3.2.17) lib/rails/rack/logger.rb:32:in `call_app'
211
- railties (3.2.17) lib/rails/rack/logger.rb:16:in `block in call'
212
- activesupport (3.2.17) lib/active_support/tagged_logging.rb:22:in `tagged'
213
- railties (3.2.17) lib/rails/rack/logger.rb:16:in `call'
214
- actionpack (3.2.17) lib/action_dispatch/middleware/request_id.rb:22:in `call'
215
- rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
216
- rack (1.4.5) lib/rack/runtime.rb:17:in `call'
217
- activesupport (3.2.17) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
218
- rack (1.4.5) lib/rack/lock.rb:15:in `call'
219
- actionpack (3.2.17) lib/action_dispatch/middleware/static.rb:63:in `call'
220
- railties (3.2.17) lib/rails/engine.rb:484:in `call'
221
- railties (3.2.17) lib/rails/application.rb:231:in `call'
222
- rack (1.4.5) lib/rack/content_length.rb:14:in `call'
223
- railties (3.2.17) lib/rails/rack/log_tailer.rb:17:in `call'
224
- rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
225
- /Users/pmm21/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
226
- /Users/pmm21/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
227
- /Users/pmm21/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
228
-
229
-
230
- Rendered /Users/pmm21/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-3.2.17/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.4ms)
231
- Rendered /Users/pmm21/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-3.2.17/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.9ms)
232
- Rendered /Users/pmm21/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-3.2.17/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (10.9ms)
233
-
234
-
235
- Started GET "/text_area" for 127.0.0.1 at 2014-03-21 16:53:02 -0400
236
-
237
- NoMethodError (undefined method `action' for PagesController:Class):
238
- actionpack (3.2.17) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
239
- actionpack (3.2.17) lib/action_dispatch/routing/route_set.rb:36:in `call'
240
- journey (1.0.4) lib/journey/router.rb:68:in `block in call'
241
- journey (1.0.4) lib/journey/router.rb:56:in `each'
242
- journey (1.0.4) lib/journey/router.rb:56:in `call'
243
- actionpack (3.2.17) lib/action_dispatch/routing/route_set.rb:608:in `call'
244
- actionpack (3.2.17) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
245
- rack (1.4.5) lib/rack/etag.rb:23:in `call'
246
- rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
247
- actionpack (3.2.17) lib/action_dispatch/middleware/head.rb:14:in `call'
248
- actionpack (3.2.17) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
249
- actionpack (3.2.17) lib/action_dispatch/middleware/flash.rb:242:in `call'
250
- rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
251
- rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
252
- actionpack (3.2.17) lib/action_dispatch/middleware/cookies.rb:341:in `call'
253
- activerecord (3.2.17) lib/active_record/query_cache.rb:64:in `call'
254
- activerecord (3.2.17) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
255
- actionpack (3.2.17) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
256
- activesupport (3.2.17) lib/active_support/callbacks.rb:405:in `_run__605171992422990082__call__3054062838087158782__callbacks'
257
- activesupport (3.2.17) lib/active_support/callbacks.rb:405:in `__run_callback'
258
- activesupport (3.2.17) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
259
- activesupport (3.2.17) lib/active_support/callbacks.rb:81:in `run_callbacks'
260
- actionpack (3.2.17) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
261
- actionpack (3.2.17) lib/action_dispatch/middleware/reloader.rb:65:in `call'
262
- actionpack (3.2.17) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
263
- actionpack (3.2.17) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
264
- actionpack (3.2.17) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
265
- railties (3.2.17) lib/rails/rack/logger.rb:32:in `call_app'
266
- railties (3.2.17) lib/rails/rack/logger.rb:16:in `block in call'
267
- activesupport (3.2.17) lib/active_support/tagged_logging.rb:22:in `tagged'
268
- railties (3.2.17) lib/rails/rack/logger.rb:16:in `call'
269
- actionpack (3.2.17) lib/action_dispatch/middleware/request_id.rb:22:in `call'
270
- rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
271
- rack (1.4.5) lib/rack/runtime.rb:17:in `call'
272
- activesupport (3.2.17) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
273
- rack (1.4.5) lib/rack/lock.rb:15:in `call'
274
- actionpack (3.2.17) lib/action_dispatch/middleware/static.rb:63:in `call'
275
- railties (3.2.17) lib/rails/engine.rb:484:in `call'
276
- railties (3.2.17) lib/rails/application.rb:231:in `call'
277
- rack (1.4.5) lib/rack/content_length.rb:14:in `call'
278
- railties (3.2.17) lib/rails/rack/log_tailer.rb:17:in `call'
279
- rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
280
- /Users/pmm21/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
281
- /Users/pmm21/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
282
- /Users/pmm21/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
283
-
284
-
285
- Rendered /Users/pmm21/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-3.2.17/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.5ms)
286
- Rendered /Users/pmm21/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-3.2.17/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.8ms)
287
- Rendered /Users/pmm21/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-3.2.17/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (19.7ms)
288
-
289
-
290
- Started GET "/text_area" for 127.0.0.1 at 2014-03-21 16:53:03 -0400
291
-
292
- NoMethodError (undefined method `action' for PagesController:Class):
293
- actionpack (3.2.17) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
294
- actionpack (3.2.17) lib/action_dispatch/routing/route_set.rb:36:in `call'
295
- journey (1.0.4) lib/journey/router.rb:68:in `block in call'
296
- journey (1.0.4) lib/journey/router.rb:56:in `each'
297
- journey (1.0.4) lib/journey/router.rb:56:in `call'
298
- actionpack (3.2.17) lib/action_dispatch/routing/route_set.rb:608:in `call'
299
- actionpack (3.2.17) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
300
- rack (1.4.5) lib/rack/etag.rb:23:in `call'
301
- rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
302
- actionpack (3.2.17) lib/action_dispatch/middleware/head.rb:14:in `call'
303
- actionpack (3.2.17) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
304
- actionpack (3.2.17) lib/action_dispatch/middleware/flash.rb:242:in `call'
305
- rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
306
- rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
307
- actionpack (3.2.17) lib/action_dispatch/middleware/cookies.rb:341:in `call'
308
- activerecord (3.2.17) lib/active_record/query_cache.rb:64:in `call'
309
- activerecord (3.2.17) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
310
- actionpack (3.2.17) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
311
- activesupport (3.2.17) lib/active_support/callbacks.rb:405:in `_run__605171992422990082__call__3054062838087158782__callbacks'
312
- activesupport (3.2.17) lib/active_support/callbacks.rb:405:in `__run_callback'
313
- activesupport (3.2.17) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
314
- activesupport (3.2.17) lib/active_support/callbacks.rb:81:in `run_callbacks'
315
- actionpack (3.2.17) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
316
- actionpack (3.2.17) lib/action_dispatch/middleware/reloader.rb:65:in `call'
317
- actionpack (3.2.17) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
318
- actionpack (3.2.17) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
319
- actionpack (3.2.17) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
320
- railties (3.2.17) lib/rails/rack/logger.rb:32:in `call_app'
321
- railties (3.2.17) lib/rails/rack/logger.rb:16:in `block in call'
322
- activesupport (3.2.17) lib/active_support/tagged_logging.rb:22:in `tagged'
323
- railties (3.2.17) lib/rails/rack/logger.rb:16:in `call'
324
- actionpack (3.2.17) lib/action_dispatch/middleware/request_id.rb:22:in `call'
325
- rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
326
- rack (1.4.5) lib/rack/runtime.rb:17:in `call'
327
- activesupport (3.2.17) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
328
- rack (1.4.5) lib/rack/lock.rb:15:in `call'
329
- actionpack (3.2.17) lib/action_dispatch/middleware/static.rb:63:in `call'
330
- railties (3.2.17) lib/rails/engine.rb:484:in `call'
331
- railties (3.2.17) lib/rails/application.rb:231:in `call'
332
- rack (1.4.5) lib/rack/content_length.rb:14:in `call'
333
- railties (3.2.17) lib/rails/rack/log_tailer.rb:17:in `call'
334
- rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
335
- /Users/pmm21/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
336
- /Users/pmm21/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
337
- /Users/pmm21/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
338
-
339
-
340
- Rendered /Users/pmm21/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-3.2.17/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms)
341
- Rendered /Users/pmm21/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-3.2.17/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.3ms)
342
- Rendered /Users/pmm21/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-3.2.17/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (10.4ms)
343
-
344
-
345
- Started GET "/text_area" for 127.0.0.1 at 2014-03-21 16:53:18 -0400
346
- Processing by PagesController#text_area as HTML
347
- Completed 500 Internal Server Error in 27.8ms
348
-
349
- ActionView::MissingTemplate (Missing template pages/text_area, application/text_area with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder]}. Searched in:
350
- * "/Users/pmm21/work/lettrics/spec/dummy/app/views"
351
- ):
352
- actionpack (3.2.17) lib/action_view/path_set.rb:58:in `find'
353
- actionpack (3.2.17) lib/action_view/lookup_context.rb:122:in `find'
354
- actionpack (3.2.17) lib/action_view/renderer/abstract_renderer.rb:3:in `find_template'
355
- actionpack (3.2.17) lib/action_view/renderer/template_renderer.rb:34:in `determine_template'
356
- actionpack (3.2.17) lib/action_view/renderer/template_renderer.rb:10:in `render'
357
- actionpack (3.2.17) lib/action_view/renderer/renderer.rb:36:in `render_template'
358
- actionpack (3.2.17) lib/action_view/renderer/renderer.rb:17:in `render'
359
- actionpack (3.2.17) lib/abstract_controller/rendering.rb:110:in `_render_template'
360
- actionpack (3.2.17) lib/action_controller/metal/streaming.rb:225:in `_render_template'
361
- actionpack (3.2.17) lib/abstract_controller/rendering.rb:103:in `render_to_body'
362
- actionpack (3.2.17) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
363
- actionpack (3.2.17) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
364
- actionpack (3.2.17) lib/abstract_controller/rendering.rb:88:in `render'
365
- actionpack (3.2.17) lib/action_controller/metal/rendering.rb:16:in `render'
366
- actionpack (3.2.17) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
367
- activesupport (3.2.17) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
368
- /Users/pmm21/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/benchmark.rb:296:in `realtime'
369
- activesupport (3.2.17) lib/active_support/core_ext/benchmark.rb:5:in `ms'
370
- actionpack (3.2.17) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
371
- actionpack (3.2.17) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
372
- activerecord (3.2.17) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
373
- actionpack (3.2.17) lib/action_controller/metal/instrumentation.rb:39:in `render'
374
- actionpack (3.2.17) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
375
- actionpack (3.2.17) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
376
- actionpack (3.2.17) lib/abstract_controller/base.rb:167:in `process_action'
377
- actionpack (3.2.17) lib/action_controller/metal/rendering.rb:10:in `process_action'
378
- actionpack (3.2.17) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
379
- activesupport (3.2.17) lib/active_support/callbacks.rb:414:in `_run__2549335026949489167__process_action__1293365903386484189__callbacks'
380
- activesupport (3.2.17) lib/active_support/callbacks.rb:405:in `__run_callback'
381
- activesupport (3.2.17) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
382
- activesupport (3.2.17) lib/active_support/callbacks.rb:81:in `run_callbacks'
383
- actionpack (3.2.17) lib/abstract_controller/callbacks.rb:17:in `process_action'
384
- actionpack (3.2.17) lib/action_controller/metal/rescue.rb:29:in `process_action'
385
- actionpack (3.2.17) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
386
- activesupport (3.2.17) lib/active_support/notifications.rb:123:in `block in instrument'
387
- activesupport (3.2.17) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
388
- activesupport (3.2.17) lib/active_support/notifications.rb:123:in `instrument'
389
- actionpack (3.2.17) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
390
- actionpack (3.2.17) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
391
- activerecord (3.2.17) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
392
- actionpack (3.2.17) lib/abstract_controller/base.rb:121:in `process'
393
- actionpack (3.2.17) lib/abstract_controller/rendering.rb:45:in `process'
394
- actionpack (3.2.17) lib/action_controller/metal.rb:203:in `dispatch'
395
- actionpack (3.2.17) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
396
- actionpack (3.2.17) lib/action_controller/metal.rb:246:in `block in action'
397
- actionpack (3.2.17) lib/action_dispatch/routing/route_set.rb:73:in `call'
398
- actionpack (3.2.17) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
399
- actionpack (3.2.17) lib/action_dispatch/routing/route_set.rb:36:in `call'
400
- journey (1.0.4) lib/journey/router.rb:68:in `block in call'
401
- journey (1.0.4) lib/journey/router.rb:56:in `each'
402
- journey (1.0.4) lib/journey/router.rb:56:in `call'
403
- actionpack (3.2.17) lib/action_dispatch/routing/route_set.rb:608:in `call'
404
- actionpack (3.2.17) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
405
- rack (1.4.5) lib/rack/etag.rb:23:in `call'
406
- rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
407
- actionpack (3.2.17) lib/action_dispatch/middleware/head.rb:14:in `call'
408
- actionpack (3.2.17) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
409
- actionpack (3.2.17) lib/action_dispatch/middleware/flash.rb:242:in `call'
410
- rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
411
- rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
412
- actionpack (3.2.17) lib/action_dispatch/middleware/cookies.rb:341:in `call'
413
- activerecord (3.2.17) lib/active_record/query_cache.rb:64:in `call'
414
- activerecord (3.2.17) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
415
- actionpack (3.2.17) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
416
- activesupport (3.2.17) lib/active_support/callbacks.rb:405:in `_run__605171992422990082__call__3054062838087158782__callbacks'
417
- activesupport (3.2.17) lib/active_support/callbacks.rb:405:in `__run_callback'
418
- activesupport (3.2.17) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
419
- activesupport (3.2.17) lib/active_support/callbacks.rb:81:in `run_callbacks'
420
- actionpack (3.2.17) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
421
- actionpack (3.2.17) lib/action_dispatch/middleware/reloader.rb:65:in `call'
422
- actionpack (3.2.17) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
423
- actionpack (3.2.17) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
424
- actionpack (3.2.17) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
425
- railties (3.2.17) lib/rails/rack/logger.rb:32:in `call_app'
426
- railties (3.2.17) lib/rails/rack/logger.rb:16:in `block in call'
427
- activesupport (3.2.17) lib/active_support/tagged_logging.rb:22:in `tagged'
428
- railties (3.2.17) lib/rails/rack/logger.rb:16:in `call'
429
- actionpack (3.2.17) lib/action_dispatch/middleware/request_id.rb:22:in `call'
430
- rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
431
- rack (1.4.5) lib/rack/runtime.rb:17:in `call'
432
- activesupport (3.2.17) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
433
- rack (1.4.5) lib/rack/lock.rb:15:in `call'
434
- actionpack (3.2.17) lib/action_dispatch/middleware/static.rb:63:in `call'
435
- railties (3.2.17) lib/rails/engine.rb:484:in `call'
436
- railties (3.2.17) lib/rails/application.rb:231:in `call'
437
- rack (1.4.5) lib/rack/content_length.rb:14:in `call'
438
- railties (3.2.17) lib/rails/rack/log_tailer.rb:17:in `call'
439
- rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
440
- /Users/pmm21/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
441
- /Users/pmm21/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
442
- /Users/pmm21/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
443
-
444
-
445
- Rendered /Users/pmm21/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-3.2.17/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.6ms)
446
-
447
-
448
- Started GET "/text_area" for 127.0.0.1 at 2014-03-21 16:54:15 -0400
449
- Processing by PagesController#text_area as HTML
450
- Rendered pages/text_area.html within layouts/application (0.8ms)
451
- Compiled application.css (1ms) (pid 80693)
452
- Compiled jquery.js (3ms) (pid 80693)
453
- Compiled jquery_ujs.js (1ms) (pid 80693)
454
- Compiled lettrics.js (676ms) (pid 80693)
455
- Compiled application.js (792ms) (pid 80693)
456
- Completed 200 OK in 926.7ms (Views: 926.4ms | ActiveRecord: 0.0ms)
457
-
458
-
459
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-21 16:54:16 -0400
460
- Served asset /application.css - 200 OK (8ms)
461
-
462
-
463
- Started GET "/assets/lettrics.js?body=1" for 127.0.0.1 at 2014-03-21 16:54:16 -0400
464
- Served asset /lettrics.js - 200 OK (4ms)
465
-
466
-
467
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-21 16:54:16 -0400
468
- Served asset /application.js - 200 OK (14ms)
469
-
470
-
471
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-03-21 16:54:16 -0400
472
- Served asset /jquery.js - 200 OK (2ms)
473
-
474
-
475
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-03-21 16:54:16 -0400
476
- Served asset /jquery_ujs.js - 200 OK (56ms)
477
-
478
-
479
- Started GET "/text_area" for 127.0.0.1 at 2014-03-24 13:52:16 -0400
480
- Connecting to database specified by database.yml
481
- Processing by PagesController#text_area as HTML
482
- Rendered pages/text_area.html within layouts/application (1.7ms)
483
- Compiled application.css (1ms) (pid 95283)
484
- Compiled jquery.js (3ms) (pid 95283)
485
- Compiled jquery_ujs.js (0ms) (pid 95283)
486
- Compiled lettrics.js (260ms) (pid 95283)
487
- Compiled application.js (309ms) (pid 95283)
488
- Completed 200 OK in 421.6ms (Views: 421.0ms | ActiveRecord: 0.0ms)
489
-
490
-
491
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-24 13:52:16 -0400
492
- Served asset /application.css - 200 OK (56ms)
493
-
494
-
495
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-03-24 13:52:17 -0400
496
- Served asset /jquery.js - 200 OK (3ms)
497
-
498
-
499
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-03-24 13:52:17 -0400
500
- Served asset /jquery_ujs.js - 200 OK (3ms)
501
-
502
-
503
- Started GET "/assets/lettrics.js?body=1" for 127.0.0.1 at 2014-03-24 13:52:17 -0400
504
- Served asset /lettrics.js - 200 OK (3ms)
505
-
506
-
507
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-24 13:52:17 -0400
508
- Served asset /application.js - 200 OK (9ms)
509
-
510
-
511
- Started GET "/text_area" for 127.0.0.1 at 2014-03-24 13:53:22 -0400
512
- Processing by PagesController#text_area as HTML
513
- Rendered pages/text_area.html within layouts/application (0.1ms)
514
- Compiled lettrics.js (272ms) (pid 95283)
515
- Compiled application.js (7ms) (pid 95283)
516
- Completed 200 OK in 313.8ms (Views: 313.3ms | ActiveRecord: 0.0ms)
517
-
518
-
519
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-24 13:53:23 -0400
520
- Served asset /application.css - 304 Not Modified (0ms)
521
-
522
-
523
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-03-24 13:53:23 -0400
524
- Served asset /jquery.js - 304 Not Modified (0ms)
525
-
526
-
527
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-24 13:53:23 -0400
528
- Served asset /application.js - 304 Not Modified (9ms)
529
-
530
-
531
- Started GET "/assets/lettrics.js?body=1" for 127.0.0.1 at 2014-03-24 13:53:23 -0400
532
- Served asset /lettrics.js - 200 OK (3ms)
533
-
534
-
535
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-03-24 13:53:23 -0400
536
- Served asset /jquery_ujs.js - 304 Not Modified (0ms)
537
-
538
-
539
- Started GET "/text_area" for 127.0.0.1 at 2014-03-24 13:53:39 -0400
540
- Processing by PagesController#text_area as HTML
541
- Rendered pages/text_area.html within layouts/application (0.0ms)
542
- Completed 200 OK in 5.1ms (Views: 4.9ms | ActiveRecord: 0.0ms)
543
-
544
-
545
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-03-24 13:53:39 -0400
546
- Served asset /jquery.js - 304 Not Modified (0ms)
547
-
548
-
549
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-03-24 13:53:39 -0400
550
- Served asset /jquery_ujs.js - 304 Not Modified (0ms)
551
-
552
-
553
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-24 13:53:39 -0400
554
- Served asset /application.css - 304 Not Modified (0ms)
555
-
556
-
557
- Started GET "/assets/lettrics.js?body=1" for 127.0.0.1 at 2014-03-24 13:53:39 -0400
558
- Served asset /lettrics.js - 304 Not Modified (0ms)
559
-
560
-
561
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-24 13:53:39 -0400
562
- Served asset /application.js - 304 Not Modified (0ms)
563
-
564
-
565
- Started GET "/text_area" for 127.0.0.1 at 2014-03-24 13:54:20 -0400
566
- Processing by PagesController#text_area as HTML
567
- Rendered pages/text_area.html within layouts/application (0.0ms)
568
- Compiled lettrics.js (208ms) (pid 95283)
569
- Compiled application.js (8ms) (pid 95283)
570
- Completed 200 OK in 295.0ms (Views: 294.7ms | ActiveRecord: 0.0ms)
571
-
572
-
573
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-24 13:54:21 -0400
574
- Served asset /application.css - 304 Not Modified (0ms)
575
-
576
-
577
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-03-24 13:54:21 -0400
578
- Served asset /jquery.js - 304 Not Modified (0ms)
579
-
580
-
581
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-03-24 13:54:21 -0400
582
- Served asset /jquery_ujs.js - 304 Not Modified (0ms)
583
-
584
-
585
- Started GET "/assets/lettrics.js?body=1" for 127.0.0.1 at 2014-03-24 13:54:21 -0400
586
- Served asset /lettrics.js - 200 OK (2ms)
587
-
588
-
589
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-24 13:54:21 -0400
590
- Served asset /application.js - 304 Not Modified (6ms)
591
-
592
-
593
- Started GET "/text_area" for 127.0.0.1 at 2014-03-24 13:54:35 -0400
594
- Processing by PagesController#text_area as HTML
595
- Rendered pages/text_area.html within layouts/application (0.1ms)
596
- Compiled lettrics.js (209ms) (pid 95283)
597
- Compiled application.js (5ms) (pid 95283)
598
- Completed 200 OK in 297.1ms (Views: 296.7ms | ActiveRecord: 0.0ms)
599
-
600
-
601
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-24 13:54:36 -0400
602
- Served asset /application.css - 304 Not Modified (0ms)
603
-
604
-
605
- Started GET "/assets/lettrics.js?body=1" for 127.0.0.1 at 2014-03-24 13:54:36 -0400
606
- Served asset /lettrics.js - 200 OK (3ms)
607
-
608
-
609
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-03-24 13:54:36 -0400
610
- Served asset /jquery.js - 304 Not Modified (0ms)
611
-
612
-
613
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-03-24 13:54:36 -0400
614
- Served asset /jquery_ujs.js - 304 Not Modified (0ms)
615
-
616
-
617
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-24 13:54:36 -0400
618
- Served asset /application.js - 304 Not Modified (9ms)
619
-
620
-
621
- Started GET "/text_area" for 127.0.0.1 at 2014-03-24 14:27:34 -0400
622
- Connecting to database specified by database.yml
623
- Processing by PagesController#text_area as HTML
624
- Rendered pages/text_area.html within layouts/application (1.9ms)
625
- Compiled application.css (1ms) (pid 95605)
626
- Compiled jquery.js (7ms) (pid 95605)
627
- Compiled jquery_ujs.js (1ms) (pid 95605)
628
- Compiled lettrics.js (311ms) (pid 95605)
629
- Compiled application.js (369ms) (pid 95605)
630
- Completed 200 OK in 483.8ms (Views: 483.0ms | ActiveRecord: 0.0ms)
631
-
632
-
633
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-24 14:27:35 -0400
634
- Served asset /application.css - 304 Not Modified (10ms)
635
-
636
-
637
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-03-24 14:27:35 -0400
638
- Served asset /jquery.js - 304 Not Modified (4ms)
639
-
640
-
641
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-24 14:27:35 -0400
642
- Served asset /application.js - 304 Not Modified (7ms)
643
-
644
-
645
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-03-24 14:27:35 -0400
646
- Served asset /jquery_ujs.js - 304 Not Modified (2ms)
647
-
648
-
649
- Started GET "/assets/lettrics.js?body=1" for 127.0.0.1 at 2014-03-24 14:27:35 -0400
650
- Served asset /lettrics.js - 200 OK (3ms)
651
-
652
-
653
- Started GET "/text_areas" for 127.0.0.1 at 2014-03-24 14:28:11 -0400
654
- Processing by PagesController#text_areas as HTML
655
- Rendered pages/text_areas.html within layouts/application (0.8ms)
656
- Completed 200 OK in 10.2ms (Views: 9.4ms | ActiveRecord: 0.0ms)
657
-
658
-
659
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-24 14:28:11 -0400
660
- Served asset /application.css - 304 Not Modified (0ms)
661
-
662
-
663
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-03-24 14:28:11 -0400
664
- Served asset /jquery.js - 304 Not Modified (0ms)
665
-
666
-
667
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-24 14:28:11 -0400
668
- Served asset /application.js - 304 Not Modified (0ms)
669
-
670
-
671
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-03-24 14:28:11 -0400
672
- Served asset /jquery_ujs.js - 304 Not Modified (0ms)
673
-
674
-
675
- Started GET "/assets/lettrics.js?body=1" for 127.0.0.1 at 2014-03-24 14:28:11 -0400
676
- Served asset /lettrics.js - 304 Not Modified (0ms)
677
-
678
-
679
- Started GET "/text_areas" for 127.0.0.1 at 2014-03-24 14:28:45 -0400
680
- Processing by PagesController#text_areas as HTML
681
- Rendered pages/text_areas.html within layouts/application (0.0ms)
682
- Completed 200 OK in 7.2ms (Views: 7.0ms | ActiveRecord: 0.0ms)
683
-
684
-
685
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-24 14:28:45 -0400
686
- Served asset /application.css - 304 Not Modified (0ms)
687
-
688
-
689
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-03-24 14:28:45 -0400
690
- Served asset /jquery.js - 304 Not Modified (0ms)
691
-
692
-
693
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-03-24 14:28:45 -0400
694
- Served asset /jquery_ujs.js - 304 Not Modified (0ms)
695
-
696
-
697
- Started GET "/assets/lettrics.js?body=1" for 127.0.0.1 at 2014-03-24 14:28:45 -0400
698
- Served asset /lettrics.js - 304 Not Modified (0ms)
699
-
700
-
701
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-24 14:28:45 -0400
702
- Served asset /application.js - 304 Not Modified (0ms)
703
-
704
-
705
- Started GET "/text_areas" for 127.0.0.1 at 2014-03-24 14:29:07 -0400
706
- Processing by PagesController#text_areas as HTML
707
- Rendered pages/text_areas.html within layouts/application (0.0ms)
708
- Compiled lettrics.js (232ms) (pid 95605)
709
- Compiled application.js (4ms) (pid 95605)
710
- Completed 200 OK in 310.1ms (Views: 309.9ms | ActiveRecord: 0.0ms)
711
-
712
-
713
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-03-24 14:29:08 -0400
714
- Served asset /jquery.js - 304 Not Modified (0ms)
715
-
716
-
717
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-24 14:29:08 -0400
718
- Served asset /application.css - 304 Not Modified (0ms)
719
-
720
-
721
- Started GET "/assets/lettrics.js?body=1" for 127.0.0.1 at 2014-03-24 14:29:08 -0400
722
- Served asset /lettrics.js - 200 OK (3ms)
723
-
724
-
725
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-03-24 14:29:08 -0400
726
- Served asset /jquery_ujs.js - 304 Not Modified (0ms)
727
-
728
-
729
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-24 14:29:08 -0400
730
- Served asset /application.js - 304 Not Modified (7ms)
731
-
732
-
733
- Started GET "/text_areas" for 127.0.0.1 at 2014-03-24 14:29:40 -0400
734
- Processing by PagesController#text_areas as HTML
735
- Rendered pages/text_areas.html within layouts/application (0.0ms)
736
- Completed 200 OK in 4.1ms (Views: 3.9ms | ActiveRecord: 0.0ms)
737
-
738
-
739
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-24 14:29:40 -0400
740
- Served asset /application.css - 304 Not Modified (0ms)
741
-
742
-
743
- Started GET "/assets/lettrics.js?body=1" for 127.0.0.1 at 2014-03-24 14:29:40 -0400
744
- Served asset /lettrics.js - 304 Not Modified (0ms)
745
-
746
-
747
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-24 14:29:40 -0400
748
- Served asset /application.js - 304 Not Modified (0ms)
749
-
750
-
751
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-03-24 14:29:40 -0400
752
- Served asset /jquery.js - 304 Not Modified (0ms)
753
-
754
-
755
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-03-24 14:29:40 -0400
756
- Served asset /jquery_ujs.js - 304 Not Modified (0ms)
757
-
758
-
759
- Started GET "/text_areas" for 127.0.0.1 at 2014-03-24 14:30:36 -0400
760
- Processing by PagesController#text_areas as HTML
761
- Rendered pages/text_areas.html within layouts/application (0.0ms)
762
- Completed 500 Internal Server Error in 263.4ms
763
-
764
- ActionView::Template::Error ([stdin]:5:24: error: unexpected =>
765
- target.on 'change' =>
766
- ^^
767
- (in /Users/pmm21/work/lettrics/app/assets/javascripts/lettrics.js.coffee)):
768
- 3: <head>
769
- 4: <title>Dummy</title>
770
- 5: <%= stylesheet_link_tag "application", :media => "all" %>
771
- 6: <%= javascript_include_tag "application" %>
772
- 7: <%= csrf_meta_tags %>
773
- 8: </head>
774
- 9: <body>
775
- app/views/layouts/application.html.erb:6:in `_app_views_layouts_application_html_erb___1026953525305345591_70263200247960'
776
-
777
-
778
- Rendered /Users/pmm21/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-3.2.17/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.4ms)
779
- Rendered /Users/pmm21/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-3.2.17/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.5ms)
780
- Rendered /Users/pmm21/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-3.2.17/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (16.0ms)
781
-
782
-
783
- Started GET "/text_areas" for 127.0.0.1 at 2014-03-24 14:30:49 -0400
784
- Processing by PagesController#text_areas as HTML
785
- Rendered pages/text_areas.html within layouts/application (0.1ms)
786
- Compiled lettrics.js (224ms) (pid 95605)
787
- Compiled application.js (3ms) (pid 95605)
788
- Completed 200 OK in 312.2ms (Views: 311.7ms | ActiveRecord: 0.0ms)
789
-
790
-
791
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-24 14:30:49 -0400
792
- Served asset /application.css - 304 Not Modified (0ms)
793
-
794
-
795
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-03-24 14:30:49 -0400
796
- Served asset /jquery.js - 304 Not Modified (0ms)
797
-
798
-
799
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-03-24 14:30:49 -0400
800
- Served asset /jquery_ujs.js - 304 Not Modified (0ms)
801
-
802
-
803
- Started GET "/assets/lettrics.js?body=1" for 127.0.0.1 at 2014-03-24 14:30:49 -0400
804
- Served asset /lettrics.js - 200 OK (3ms)
805
-
806
-
807
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-24 14:30:49 -0400
808
- Served asset /application.js - 304 Not Modified (6ms)
809
-
810
-
811
- Started GET "/text_areas" for 127.0.0.1 at 2014-03-24 14:31:11 -0400
812
- Processing by PagesController#text_areas as HTML
813
- Rendered pages/text_areas.html within layouts/application (0.1ms)
814
- Completed 200 OK in 5.6ms (Views: 5.4ms | ActiveRecord: 0.0ms)
815
-
816
-
817
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-03-24 14:31:11 -0400
818
- Served asset /jquery_ujs.js - 304 Not Modified (0ms)
819
-
820
-
821
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-24 14:31:11 -0400
822
- Served asset /application.css - 304 Not Modified (0ms)
823
-
824
-
825
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-03-24 14:31:11 -0400
826
- Served asset /jquery.js - 304 Not Modified (0ms)
827
-
828
-
829
- Started GET "/assets/lettrics.js?body=1" for 127.0.0.1 at 2014-03-24 14:31:11 -0400
830
- Served asset /lettrics.js - 304 Not Modified (0ms)
831
-
832
-
833
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-24 14:31:11 -0400
834
- Served asset /application.js - 304 Not Modified (0ms)
835
-
836
-
837
- Started GET "/text_areas" for 127.0.0.1 at 2014-03-24 14:32:33 -0400
838
- Processing by PagesController#text_areas as HTML
839
- Rendered pages/text_areas.html within layouts/application (0.0ms)
840
- Compiled lettrics.js (256ms) (pid 95605)
841
- Compiled application.js (8ms) (pid 95605)
842
- Completed 200 OK in 295.5ms (Views: 295.2ms | ActiveRecord: 0.0ms)
843
-
844
-
845
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-24 14:32:33 -0400
846
- Served asset /application.css - 304 Not Modified (0ms)
847
-
848
-
849
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-03-24 14:32:33 -0400
850
- Served asset /jquery.js - 304 Not Modified (0ms)
851
-
852
-
853
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-24 14:32:33 -0400
854
- Served asset /application.js - 304 Not Modified (9ms)
855
-
856
-
857
- Started GET "/assets/lettrics.js?body=1" for 127.0.0.1 at 2014-03-24 14:32:33 -0400
858
- Served asset /lettrics.js - 200 OK (3ms)
859
-
860
-
861
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-03-24 14:32:33 -0400
862
- Served asset /jquery_ujs.js - 304 Not Modified (0ms)
863
-
864
-
865
- Started GET "/text_areas" for 127.0.0.1 at 2014-03-24 14:34:09 -0400
866
- Processing by PagesController#text_areas as HTML
867
- Rendered pages/text_areas.html within layouts/application (0.0ms)
868
- Compiled lettrics.js (261ms) (pid 95605)
869
- Compiled application.js (9ms) (pid 95605)
870
- Completed 200 OK in 297.0ms (Views: 296.7ms | ActiveRecord: 0.0ms)
4
+ Started GET "/text_area.html" for 127.0.0.1 at 2014-05-09 12:33:54 -0400
5
+ Connecting to database specified by database.yml
6
+ Processing by PagesController#text_area as HTML
7
+ Rendered pages/text_area.html within layouts/application (1.6ms)
8
+ Compiled application.css (0ms) (pid 69949)
9
+ Compiled jquery.js (2ms) (pid 69949)
10
+ Compiled jquery_ujs.js (0ms) (pid 69949)
11
+ Compiled lettrics.js (107ms) (pid 69949)
12
+ Compiled application.js (125ms) (pid 69949)
13
+ Completed 200 OK in 182.1ms (Views: 181.8ms | ActiveRecord: 0.0ms)
871
14
 
872
15
 
873
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-24 14:34:09 -0400
874
- Served asset /application.css - 304 Not Modified (0ms)
16
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-09 12:33:54 -0400
17
+ Served asset /application.css - 200 OK (2ms)
875
18
 
876
19
 
877
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-03-24 14:34:09 -0400
878
- Served asset /jquery_ujs.js - 304 Not Modified (0ms)
20
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-05-09 12:33:54 -0400
21
+ Served asset /jquery.js - 200 OK (5ms)
879
22
 
880
23
 
881
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-03-24 14:34:09 -0400
882
- Served asset /jquery.js - 304 Not Modified (0ms)
24
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-05-09 12:33:54 -0400
25
+ Served asset /jquery_ujs.js - 200 OK (1ms)
883
26
 
884
27
 
885
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-24 14:34:09 -0400
886
- Served asset /application.js - 304 Not Modified (8ms)
28
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-09 12:33:54 -0400
29
+ Served asset /application.js - 200 OK (4ms)
887
30
 
888
31
 
889
- Started GET "/assets/lettrics.js?body=1" for 127.0.0.1 at 2014-03-24 14:34:09 -0400
890
- Served asset /lettrics.js - 200 OK (2ms)
32
+ Started GET "/assets/lettrics.js?body=1" for 127.0.0.1 at 2014-05-09 12:33:54 -0400
33
+ Served asset /lettrics.js - 200 OK (1ms)
891
34
 
892
35
 
893
- Started GET "/text_areas" for 127.0.0.1 at 2014-03-24 14:34:27 -0400
894
- Processing by PagesController#text_areas as HTML
895
- Rendered pages/text_areas.html within layouts/application (0.0ms)
896
- Compiled lettrics.js (214ms) (pid 95605)
897
- Compiled application.js (5ms) (pid 95605)
898
- Completed 200 OK in 298.9ms (Views: 298.6ms | ActiveRecord: 0.0ms)
36
+ Started GET "/text_area.html" for 127.0.0.1 at 2014-05-09 12:34:17 -0400
37
+ Processing by PagesController#text_area as HTML
38
+ Rendered pages/text_area.html within layouts/application (0.0ms)
39
+ Compiled lettrics.js (80ms) (pid 69949)
40
+ Compiled application.js (2ms) (pid 69949)
41
+ Completed 200 OK in 114.4ms (Views: 114.2ms | ActiveRecord: 0.0ms)
899
42
 
900
43
 
901
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-24 14:34:28 -0400
44
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-09 12:34:17 -0400
902
45
  Served asset /application.css - 304 Not Modified (0ms)
903
46
 
904
47
 
905
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-03-24 14:34:28 -0400
906
- Served asset /jquery_ujs.js - 304 Not Modified (0ms)
907
-
908
-
909
- Started GET "/assets/lettrics.js?body=1" for 127.0.0.1 at 2014-03-24 14:34:28 -0400
910
- Served asset /lettrics.js - 200 OK (3ms)
911
-
912
-
913
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-03-24 14:34:28 -0400
48
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-05-09 12:34:17 -0400
914
49
  Served asset /jquery.js - 304 Not Modified (0ms)
915
50
 
916
51
 
917
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-24 14:34:28 -0400
918
- Served asset /application.js - 304 Not Modified (6ms)
919
-
920
-
921
- Started GET "/text_areas" for 127.0.0.1 at 2014-03-24 14:34:49 -0400
922
- Processing by PagesController#text_areas as HTML
923
- Rendered pages/text_areas.html within layouts/application (0.0ms)
924
- Compiled lettrics.js (216ms) (pid 95605)
925
- Compiled application.js (4ms) (pid 95605)
926
- Completed 200 OK in 304.5ms (Views: 304.3ms | ActiveRecord: 0.0ms)
927
-
928
-
929
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-24 14:34:49 -0400
930
- Served asset /application.css - 304 Not Modified (0ms)
931
-
932
-
933
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-03-24 14:34:49 -0400
934
- Served asset /jquery.js - 304 Not Modified (0ms)
52
+ Started GET "/assets/lettrics.js?body=1" for 127.0.0.1 at 2014-05-09 12:34:17 -0400
53
+ Served asset /lettrics.js - 200 OK (1ms)
935
54
 
936
55
 
937
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-24 14:34:49 -0400
938
- Served asset /application.js - 304 Not Modified (9ms)
56
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-09 12:34:17 -0400
57
+ Served asset /application.js - 304 Not Modified (2ms)
939
58
 
940
59
 
941
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-03-24 14:34:49 -0400
60
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-05-09 12:34:17 -0400
942
61
  Served asset /jquery_ujs.js - 304 Not Modified (0ms)
943
62
 
944
63
 
945
- Started GET "/assets/lettrics.js?body=1" for 127.0.0.1 at 2014-03-24 14:34:49 -0400
946
- Served asset /lettrics.js - 200 OK (2ms)
947
-
948
-
949
- Started GET "/text_areas" for 127.0.0.1 at 2014-03-24 14:35:25 -0400
950
- Processing by PagesController#text_areas as HTML
951
- Rendered pages/text_areas.html within layouts/application (0.0ms)
952
- Compiled lettrics.js (204ms) (pid 95605)
953
- Compiled application.js (3ms) (pid 95605)
954
- Completed 200 OK in 291.9ms (Views: 291.6ms | ActiveRecord: 0.0ms)
955
-
956
-
957
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-24 14:35:26 -0400
958
- Served asset /application.css - 304 Not Modified (0ms)
959
-
960
-
961
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-03-24 14:35:26 -0400
962
- Served asset /jquery_ujs.js - 304 Not Modified (0ms)
963
-
64
+ Started GET "/page_with_javascrpt" for 127.0.0.1 at 2014-05-09 12:35:19 -0400
65
+ Connecting to database specified by database.yml
964
66
 
965
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-24 14:35:26 -0400
966
- Served asset /application.js - 304 Not Modified (6ms)
67
+ ActionController::RoutingError (No route matches [GET] "/page_with_javascrpt"):
68
+ actionpack (3.2.17) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
69
+ actionpack (3.2.17) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
70
+ railties (3.2.17) lib/rails/rack/logger.rb:32:in `call_app'
71
+ railties (3.2.17) lib/rails/rack/logger.rb:16:in `block in call'
72
+ activesupport (3.2.17) lib/active_support/tagged_logging.rb:22:in `tagged'
73
+ railties (3.2.17) lib/rails/rack/logger.rb:16:in `call'
74
+ actionpack (3.2.17) lib/action_dispatch/middleware/request_id.rb:22:in `call'
75
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
76
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
77
+ activesupport (3.2.17) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
78
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
79
+ actionpack (3.2.17) lib/action_dispatch/middleware/static.rb:63:in `call'
80
+ railties (3.2.17) lib/rails/engine.rb:484:in `call'
81
+ railties (3.2.17) lib/rails/application.rb:231:in `call'
82
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
83
+ railties (3.2.17) lib/rails/rack/log_tailer.rb:17:in `call'
84
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
85
+ /Users/pmm21/.rubies/ruby-1.9.3-p545/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
86
+ /Users/pmm21/.rubies/ruby-1.9.3-p545/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
87
+ /Users/pmm21/.rubies/ruby-1.9.3-p545/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
967
88
 
968
89
 
969
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-03-24 14:35:26 -0400
970
- Served asset /jquery.js - 304 Not Modified (0ms)
90
+ Rendered /Users/pmm21/.gem/ruby/1.9.3/gems/actionpack-3.2.17/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (2.0ms)
971
91
 
972
92
 
973
- Started GET "/assets/lettrics.js?body=1" for 127.0.0.1 at 2014-03-24 14:35:26 -0400
974
- Served asset /lettrics.js - 200 OK (2ms)
93
+ Started GET "/page_with_javascript" for 127.0.0.1 at 2014-05-09 12:35:22 -0400
94
+ Processing by PagesController#page_with_javascript as HTML
95
+ Rendered pages/page_with_javascript.html.erb within layouts/application (0.3ms)
96
+ Compiled application.css (0ms) (pid 69968)
97
+ Compiled jquery.js (1ms) (pid 69968)
98
+ Compiled jquery_ujs.js (0ms) (pid 69968)
99
+ Compiled lettrics.js (110ms) (pid 69968)
100
+ Compiled application.js (121ms) (pid 69968)
101
+ Completed 200 OK in 157.7ms (Views: 157.4ms | ActiveRecord: 0.0ms)
975
102
 
976
103
 
977
- Started GET "/text_areas" for 127.0.0.1 at 2014-03-24 14:35:53 -0400
978
- Processing by PagesController#text_areas as HTML
979
- Rendered pages/text_areas.html within layouts/application (0.0ms)
980
- Compiled lettrics.js (204ms) (pid 95605)
981
- Compiled application.js (3ms) (pid 95605)
982
- Completed 200 OK in 286.7ms (Views: 286.4ms | ActiveRecord: 0.0ms)
104
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-09 12:35:22 -0400
105
+ Served asset /application.css - 304 Not Modified (1ms)
983
106
 
984
107
 
985
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-24 14:35:53 -0400
986
- Served asset /application.css - 304 Not Modified (0ms)
108
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-05-09 12:35:22 -0400
109
+ Served asset /jquery.js - 304 Not Modified (3ms)
987
110
 
988
111
 
989
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-03-24 14:35:53 -0400
990
- Served asset /jquery.js - 304 Not Modified (0ms)
112
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-05-09 12:35:22 -0400
113
+ Served asset /jquery_ujs.js - 304 Not Modified (1ms)
991
114
 
992
115
 
993
- Started GET "/assets/lettrics.js?body=1" for 127.0.0.1 at 2014-03-24 14:35:53 -0400
994
- Served asset /lettrics.js - 200 OK (2ms)
116
+ Started GET "/assets/lettrics.js?body=1" for 127.0.0.1 at 2014-05-09 12:35:22 -0400
117
+ Served asset /lettrics.js - 304 Not Modified (0ms)
995
118
 
996
119
 
997
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-03-24 14:35:53 -0400
998
- Served asset /jquery_ujs.js - 304 Not Modified (0ms)
120
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-09 12:35:22 -0400
121
+ Served asset /application.js - 304 Not Modified (3ms)
999
122
 
1000
123
 
1001
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-24 14:35:53 -0400
1002
- Served asset /application.js - 304 Not Modified (8ms)
124
+ Started GET "/page_with_javascript" for 127.0.0.1 at 2014-05-09 12:37:40 -0400
125
+ Processing by PagesController#page_with_javascript as HTML
126
+ Rendered pages/page_with_javascript.html.erb within layouts/application (0.0ms)
127
+ Compiled lettrics.js (92ms) (pid 69968)
128
+ Compiled application.js (2ms) (pid 69968)
129
+ Completed 200 OK in 110.1ms (Views: 110.0ms | ActiveRecord: 0.0ms)
1003
130
 
1004
131
 
1005
- Started GET "/text_areas" for 127.0.0.1 at 2014-03-24 14:36:18 -0400
1006
- Processing by PagesController#text_areas as HTML
1007
- Rendered pages/text_areas.html within layouts/application (0.0ms)
1008
- Compiled lettrics.js (205ms) (pid 95605)
1009
- Compiled application.js (4ms) (pid 95605)
1010
- Completed 200 OK in 290.5ms (Views: 290.2ms | ActiveRecord: 0.0ms)
132
+ Started GET "/assets/lettrics.js?body=1" for 127.0.0.1 at 2014-05-09 12:37:40 -0400
133
+ Served asset /lettrics.js - 200 OK (1ms)
1011
134
 
1012
135
 
1013
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-03-24 14:36:18 -0400
136
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-05-09 12:37:40 -0400
1014
137
  Served asset /jquery.js - 304 Not Modified (0ms)
1015
138
 
1016
139
 
1017
- Started GET "/assets/lettrics.js?body=1" for 127.0.0.1 at 2014-03-24 14:36:18 -0400
1018
- Served asset /lettrics.js - 200 OK (2ms)
1019
-
1020
-
1021
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-24 14:36:18 -0400
1022
- Served asset /application.css - 304 Not Modified (0ms)
1023
-
1024
-
1025
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-24 14:36:18 -0400
140
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-09 12:37:40 -0400
1026
141
  Served asset /application.js - 304 Not Modified (5ms)
1027
142
 
1028
143
 
1029
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-03-24 14:36:18 -0400
144
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-05-09 12:37:40 -0400
1030
145
  Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1031
146
 
1032
147
 
1033
- Started GET "/text_areas" for 127.0.0.1 at 2014-03-24 14:43:45 -0400
1034
- Processing by PagesController#text_areas as HTML
1035
- Rendered pages/text_areas.html within layouts/application (0.5ms)
1036
- Compiled lettrics.js (221ms) (pid 95605)
1037
- Compiled application.js (3ms) (pid 95605)
1038
- Completed 200 OK in 307.0ms (Views: 306.6ms | ActiveRecord: 0.0ms)
1039
-
1040
-
1041
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-24 14:43:45 -0400
148
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-09 12:37:40 -0400
1042
149
  Served asset /application.css - 304 Not Modified (0ms)
1043
150
 
1044
151
 
1045
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-03-24 14:43:45 -0400
1046
- Served asset /jquery.js - 304 Not Modified (0ms)
1047
-
1048
-
1049
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-03-24 14:43:45 -0400
1050
- Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1051
-
1052
-
1053
- Started GET "/assets/lettrics.js?body=1" for 127.0.0.1 at 2014-03-24 14:43:45 -0400
1054
- Served asset /lettrics.js - 200 OK (2ms)
1055
-
1056
-
1057
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-24 14:43:45 -0400
1058
- Served asset /application.js - 304 Not Modified (8ms)
152
+ Started GET "/page_with_javascript" for 127.0.0.1 at 2014-05-09 12:37:47 -0400
153
+ Processing by PagesController#page_with_javascript as HTML
154
+ Rendered pages/page_with_javascript.html.erb within layouts/application (0.0ms)
155
+ Completed 200 OK in 3.2ms (Views: 3.1ms | ActiveRecord: 0.0ms)
1059
156
 
1060
157
 
1061
- Started GET "/text_areas" for 127.0.0.1 at 2014-03-24 14:44:10 -0400
1062
- Processing by PagesController#text_areas as HTML
1063
- Rendered pages/text_areas.html within layouts/application (0.6ms)
1064
- Completed 200 OK in 6.0ms (Views: 5.6ms | ActiveRecord: 0.0ms)
1065
-
1066
-
1067
- Started GET "/assets/lettrics.js?body=1" for 127.0.0.1 at 2014-03-24 14:44:10 -0400
158
+ Started GET "/assets/lettrics.js?body=1" for 127.0.0.1 at 2014-05-09 12:37:48 -0400
1068
159
  Served asset /lettrics.js - 304 Not Modified (0ms)
1069
160
 
1070
161
 
1071
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-24 14:44:10 -0400
1072
- Served asset /application.css - 304 Not Modified (0ms)
1073
-
1074
-
1075
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-03-24 14:44:10 -0400
162
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-05-09 12:37:48 -0400
1076
163
  Served asset /jquery.js - 304 Not Modified (0ms)
1077
164
 
1078
165
 
1079
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-03-24 14:44:10 -0400
1080
- Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1081
-
1082
-
1083
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-24 14:44:10 -0400
166
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-09 12:37:48 -0400
1084
167
  Served asset /application.js - 304 Not Modified (0ms)
1085
168
 
1086
169
 
1087
- Started GET "/text_areas" for 127.0.0.1 at 2014-03-24 14:46:18 -0400
1088
- Processing by PagesController#text_areas as HTML
1089
- Rendered pages/text_areas.html within layouts/application (0.1ms)
1090
- Compiled lettrics.js (257ms) (pid 95605)
1091
- Compiled application.js (7ms) (pid 95605)
1092
- Completed 200 OK in 295.8ms (Views: 295.3ms | ActiveRecord: 0.0ms)
1093
-
1094
-
1095
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-24 14:46:19 -0400
1096
- Served asset /application.css - 304 Not Modified (0ms)
1097
-
1098
-
1099
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-03-24 14:46:19 -0400
1100
- Served asset /jquery.js - 304 Not Modified (0ms)
1101
-
1102
-
1103
- Started GET "/assets/lettrics.js?body=1" for 127.0.0.1 at 2014-03-24 14:46:19 -0400
1104
- Served asset /lettrics.js - 200 OK (4ms)
1105
-
1106
-
1107
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-24 14:46:19 -0400
1108
- Served asset /application.js - 304 Not Modified (6ms)
1109
-
1110
-
1111
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-03-24 14:46:19 -0400
170
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-05-09 12:37:48 -0400
1112
171
  Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1113
172
 
1114
173
 
1115
- Started GET "/text_areas" for 127.0.0.1 at 2014-03-24 14:46:36 -0400
1116
- Processing by PagesController#text_areas as HTML
1117
- Rendered pages/text_areas.html within layouts/application (0.1ms)
1118
- Completed 200 OK in 6.0ms (Views: 5.7ms | ActiveRecord: 0.0ms)
1119
-
1120
-
1121
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-24 14:46:36 -0400
174
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-09 12:37:48 -0400
1122
175
  Served asset /application.css - 304 Not Modified (0ms)
1123
176
 
1124
177
 
1125
- Started GET "/assets/lettrics.js?body=1" for 127.0.0.1 at 2014-03-24 14:46:36 -0400
1126
- Served asset /lettrics.js - 304 Not Modified (0ms)
1127
-
1128
-
1129
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-24 14:46:37 -0400
1130
- Served asset /application.js - 304 Not Modified (0ms)
1131
-
1132
-
1133
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-03-24 14:46:37 -0400
1134
- Served asset /jquery.js - 304 Not Modified (0ms)
1135
-
1136
-
1137
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-03-24 14:46:37 -0400
1138
- Served asset /jquery_ujs.js - 304 Not Modified (0ms)
178
+ Started GET "/page_with_javascript" for 127.0.0.1 at 2014-05-09 12:38:32 -0400
179
+ Processing by PagesController#page_with_javascript as HTML
180
+ Rendered pages/page_with_javascript.html.erb within layouts/application (0.4ms)
181
+ Completed 200 OK in 3.2ms (Views: 3.0ms | ActiveRecord: 0.0ms)
1139
182
 
1140
183
 
1141
- Started GET "/text_areas" for 127.0.0.1 at 2014-03-24 14:47:08 -0400
1142
- Processing by PagesController#text_areas as HTML
1143
- Rendered pages/text_areas.html within layouts/application (0.1ms)
1144
- Compiled lettrics.js (250ms) (pid 95605)
1145
- Compiled application.js (5ms) (pid 95605)
1146
- Completed 200 OK in 285.5ms (Views: 285.2ms | ActiveRecord: 0.0ms)
1147
-
1148
-
1149
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-24 14:47:09 -0400
184
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-09 12:38:32 -0400
1150
185
  Served asset /application.css - 304 Not Modified (0ms)
1151
186
 
1152
187
 
1153
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-03-24 14:47:09 -0400
1154
- Served asset /jquery.js - 304 Not Modified (0ms)
1155
-
1156
-
1157
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-03-24 14:47:09 -0400
188
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-05-09 12:38:32 -0400
1158
189
  Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1159
190
 
1160
191
 
1161
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-24 14:47:09 -0400
1162
- Served asset /application.js - 304 Not Modified (6ms)
1163
-
1164
-
1165
- Started GET "/assets/lettrics.js?body=1" for 127.0.0.1 at 2014-03-24 14:47:09 -0400
1166
- Served asset /lettrics.js - 200 OK (3ms)
1167
-
1168
-
1169
- Started GET "/text_areas" for 127.0.0.1 at 2014-03-24 14:47:47 -0400
1170
- Processing by PagesController#text_areas as HTML
1171
- Rendered pages/text_areas.html within layouts/application (0.1ms)
1172
- Completed 200 OK in 6.6ms (Views: 6.3ms | ActiveRecord: 0.0ms)
1173
-
1174
-
1175
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-24 14:47:47 -0400
1176
- Served asset /application.css - 304 Not Modified (0ms)
1177
-
1178
-
1179
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-03-24 14:47:47 -0400
192
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-05-09 12:38:32 -0400
1180
193
  Served asset /jquery.js - 304 Not Modified (0ms)
1181
194
 
1182
195
 
1183
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-03-24 14:47:47 -0400
1184
- Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1185
-
1186
-
1187
- Started GET "/assets/lettrics.js?body=1" for 127.0.0.1 at 2014-03-24 14:47:47 -0400
196
+ Started GET "/assets/lettrics.js?body=1" for 127.0.0.1 at 2014-05-09 12:38:32 -0400
1188
197
  Served asset /lettrics.js - 304 Not Modified (0ms)
1189
198
 
1190
199
 
1191
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-24 14:47:47 -0400
200
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-09 12:38:32 -0400
1192
201
  Served asset /application.js - 304 Not Modified (0ms)
1193
202
 
1194
203
 
1195
- Started GET "/text_areas" for 127.0.0.1 at 2014-03-24 14:48:47 -0400
1196
- Processing by PagesController#text_areas as HTML
1197
- Rendered pages/text_areas.html within layouts/application (0.1ms)
1198
- Compiled lettrics.js (259ms) (pid 95605)
1199
- Compiled application.js (6ms) (pid 95605)
1200
- Completed 200 OK in 296.0ms (Views: 295.7ms | ActiveRecord: 0.0ms)
1201
-
1202
-
1203
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-24 14:48:48 -0400
1204
- Served asset /application.css - 304 Not Modified (0ms)
204
+ Started GET "/page_with_javascript" for 127.0.0.1 at 2014-05-09 12:39:00 -0400
205
+ Processing by PagesController#page_with_javascript as HTML
206
+ Rendered pages/page_with_javascript.html.erb within layouts/application (0.0ms)
207
+ Compiled lettrics.js (101ms) (pid 69968)
208
+ Compiled application.js (2ms) (pid 69968)
209
+ Completed 200 OK in 117.2ms (Views: 117.1ms | ActiveRecord: 0.0ms)
1205
210
 
1206
211
 
1207
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-03-24 14:48:48 -0400
212
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-05-09 12:39:00 -0400
1208
213
  Served asset /jquery.js - 304 Not Modified (0ms)
1209
214
 
1210
215
 
1211
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-24 14:48:48 -0400
1212
- Served asset /application.js - 304 Not Modified (9ms)
1213
-
1214
-
1215
- Started GET "/assets/lettrics.js?body=1" for 127.0.0.1 at 2014-03-24 14:48:48 -0400
1216
- Served asset /lettrics.js - 200 OK (3ms)
1217
-
1218
-
1219
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-03-24 14:48:48 -0400
1220
- Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1221
-
1222
-
1223
- Started GET "/text_areas" for 127.0.0.1 at 2014-03-24 14:49:43 -0400
1224
- Processing by PagesController#text_areas as HTML
1225
- Rendered pages/text_areas.html within layouts/application (0.1ms)
1226
- Compiled lettrics.js (212ms) (pid 95605)
1227
- Compiled application.js (3ms) (pid 95605)
1228
- Completed 200 OK in 308.4ms (Views: 308.1ms | ActiveRecord: 0.0ms)
1229
-
1230
-
1231
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-24 14:49:44 -0400
1232
- Served asset /application.css - 304 Not Modified (0ms)
1233
-
1234
-
1235
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-24 14:49:44 -0400
1236
- Served asset /application.js - 304 Not Modified (16ms)
1237
-
1238
-
1239
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-03-24 14:49:44 -0400
1240
- Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1241
-
1242
-
1243
- Started GET "/assets/lettrics.js?body=1" for 127.0.0.1 at 2014-03-24 14:49:44 -0400
216
+ Started GET "/assets/lettrics.js?body=1" for 127.0.0.1 at 2014-05-09 12:39:00 -0400
1244
217
  Served asset /lettrics.js - 200 OK (2ms)
1245
218
 
1246
219
 
1247
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-03-24 14:49:44 -0400
1248
- Served asset /jquery.js - 304 Not Modified (0ms)
1249
-
1250
-
1251
- Started GET "/text_areas" for 127.0.0.1 at 2014-03-24 14:50:29 -0400
1252
- Processing by PagesController#text_areas as HTML
1253
- Rendered pages/text_areas.html within layouts/application (0.0ms)
1254
- Compiled lettrics.js (229ms) (pid 95605)
1255
- Compiled application.js (7ms) (pid 95605)
1256
- Completed 200 OK in 321.5ms (Views: 321.2ms | ActiveRecord: 0.0ms)
1257
-
1258
-
1259
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-24 14:50:30 -0400
1260
- Served asset /application.css - 304 Not Modified (0ms)
1261
-
1262
-
1263
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-03-24 14:50:30 -0400
1264
- Served asset /jquery.js - 304 Not Modified (0ms)
1265
-
1266
-
1267
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-03-24 14:50:30 -0400
1268
- Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1269
-
1270
-
1271
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-24 14:50:30 -0400
1272
- Served asset /application.js - 304 Not Modified (5ms)
1273
-
1274
-
1275
- Started GET "/assets/lettrics.js?body=1" for 127.0.0.1 at 2014-03-24 14:50:30 -0400
1276
- Served asset /lettrics.js - 200 OK (3ms)
1277
-
1278
-
1279
- Started GET "/text_areas" for 127.0.0.1 at 2014-03-24 14:50:58 -0400
1280
- Processing by PagesController#text_areas as HTML
1281
- Rendered pages/text_areas.html within layouts/application (0.1ms)
1282
- Compiled lettrics.js (210ms) (pid 95605)
1283
- Compiled application.js (6ms) (pid 95605)
1284
- Completed 200 OK in 295.9ms (Views: 295.6ms | ActiveRecord: 0.0ms)
1285
-
1286
-
1287
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-24 14:50:58 -0400
1288
- Served asset /application.css - 304 Not Modified (0ms)
1289
-
1290
-
1291
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-03-24 14:50:58 -0400
1292
- Served asset /jquery.js - 304 Not Modified (0ms)
1293
-
1294
-
1295
- Started GET "/assets/lettrics.js?body=1" for 127.0.0.1 at 2014-03-24 14:50:58 -0400
1296
- Served asset /lettrics.js - 200 OK (3ms)
1297
-
1298
-
1299
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-24 14:50:58 -0400
1300
- Served asset /application.js - 304 Not Modified (6ms)
1301
-
1302
-
1303
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-03-24 14:50:58 -0400
1304
- Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1305
-
1306
-
1307
- Started GET "/text_areas" for 127.0.0.1 at 2014-03-24 14:54:31 -0400
1308
- Processing by PagesController#text_areas as HTML
1309
- Rendered pages/text_areas.html within layouts/application (0.1ms)
1310
- Compiled lettrics.js (218ms) (pid 95605)
1311
- Compiled application.js (5ms) (pid 95605)
1312
- Completed 200 OK in 252.3ms (Views: 251.9ms | ActiveRecord: 0.0ms)
1313
-
1314
-
1315
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-24 14:54:31 -0400
1316
- Served asset /application.css - 304 Not Modified (0ms)
1317
-
1318
-
1319
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-03-24 14:54:31 -0400
1320
- Served asset /jquery.js - 304 Not Modified (0ms)
1321
-
1322
-
1323
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-24 14:54:31 -0400
1324
- Served asset /application.js - 304 Not Modified (6ms)
1325
-
1326
-
1327
- Started GET "/assets/lettrics.js?body=1" for 127.0.0.1 at 2014-03-24 14:54:31 -0400
1328
- Served asset /lettrics.js - 200 OK (3ms)
1329
-
1330
-
1331
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-03-24 14:54:31 -0400
1332
- Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1333
-
1334
-
1335
- Started GET "/text_areas" for 127.0.0.1 at 2014-03-24 14:58:51 -0400
1336
- Processing by PagesController#text_areas as HTML
1337
- Rendered pages/text_areas.html within layouts/application (0.1ms)
1338
- Compiled lettrics.js (250ms) (pid 95605)
1339
- Compiled application.js (5ms) (pid 95605)
1340
- Completed 200 OK in 285.5ms (Views: 285.2ms | ActiveRecord: 0.0ms)
1341
-
1342
-
1343
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-24 14:58:52 -0400
220
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-09 12:39:00 -0400
1344
221
  Served asset /application.css - 304 Not Modified (0ms)
1345
222
 
1346
223
 
1347
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-03-24 14:58:52 -0400
1348
- Served asset /jquery.js - 304 Not Modified (0ms)
1349
-
1350
-
1351
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-24 14:58:52 -0400
1352
- Served asset /application.js - 304 Not Modified (62ms)
1353
-
1354
-
1355
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-03-24 14:58:52 -0400
224
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-05-09 12:39:00 -0400
1356
225
  Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1357
226
 
1358
227
 
1359
- Started GET "/assets/lettrics.js?body=1" for 127.0.0.1 at 2014-03-24 14:58:52 -0400
1360
- Served asset /lettrics.js - 200 OK (3ms)
1361
-
1362
-
1363
- Started GET "/text_areas" for 127.0.0.1 at 2014-03-24 14:59:14 -0400
1364
- Processing by PagesController#text_areas as HTML
1365
- Rendered pages/text_areas.html within layouts/application (0.1ms)
1366
- Compiled lettrics.js (235ms) (pid 95605)
1367
- Compiled application.js (4ms) (pid 95605)
1368
- Completed 200 OK in 266.2ms (Views: 265.8ms | ActiveRecord: 0.0ms)
1369
-
1370
-
1371
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-24 14:59:14 -0400
1372
- Served asset /application.css - 304 Not Modified (0ms)
1373
-
1374
-
1375
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-24 14:59:14 -0400
1376
- Served asset /application.js - 304 Not Modified (11ms)
1377
-
1378
-
1379
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-03-24 14:59:14 -0400
1380
- Served asset /jquery.js - 304 Not Modified (0ms)
1381
-
1382
-
1383
- Started GET "/assets/lettrics.js?body=1" for 127.0.0.1 at 2014-03-24 14:59:14 -0400
1384
- Served asset /lettrics.js - 200 OK (3ms)
1385
-
1386
-
1387
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-03-24 14:59:14 -0400
1388
- Served asset /jquery_ujs.js - 304 Not Modified (0ms)
228
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-09 12:39:00 -0400
229
+ Served asset /application.js - 304 Not Modified (3ms)