bootstrap-grid-system 0.1.2

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 (64) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.md +89 -0
  4. data/Rakefile +32 -0
  5. data/lib/bootstrap_grid_system/version.rb +3 -0
  6. data/lib/bootstrap_grid_system.rb +127 -0
  7. data/lib/tasks/bootstrap_grid_system_tasks.rake +4 -0
  8. data/test/bootstrap_grid_system_test.rb +7 -0
  9. data/test/dummy/README.rdoc +28 -0
  10. data/test/dummy/Rakefile +6 -0
  11. data/test/dummy/app/assets/javascripts/application.js +13 -0
  12. data/test/dummy/app/assets/javascripts/test.js +2 -0
  13. data/test/dummy/app/assets/stylesheets/application.css +15 -0
  14. data/test/dummy/app/assets/stylesheets/test.css +4 -0
  15. data/test/dummy/app/controllers/application_controller.rb +5 -0
  16. data/test/dummy/app/controllers/test_controller.rb +4 -0
  17. data/test/dummy/app/helpers/application_helper.rb +2 -0
  18. data/test/dummy/app/helpers/test_helper.rb +2 -0
  19. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  20. data/test/dummy/app/views/test/index.html.erb +15 -0
  21. data/test/dummy/bin/bundle +3 -0
  22. data/test/dummy/bin/rails +4 -0
  23. data/test/dummy/bin/rake +4 -0
  24. data/test/dummy/config/application.rb +23 -0
  25. data/test/dummy/config/boot.rb +5 -0
  26. data/test/dummy/config/database.yml +25 -0
  27. data/test/dummy/config/environment.rb +5 -0
  28. data/test/dummy/config/environments/development.rb +37 -0
  29. data/test/dummy/config/environments/production.rb +78 -0
  30. data/test/dummy/config/environments/test.rb +39 -0
  31. data/test/dummy/config/initializers/assets.rb +8 -0
  32. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  33. data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
  34. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  35. data/test/dummy/config/initializers/inflections.rb +16 -0
  36. data/test/dummy/config/initializers/mime_types.rb +4 -0
  37. data/test/dummy/config/initializers/session_store.rb +3 -0
  38. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  39. data/test/dummy/config/locales/en.yml +23 -0
  40. data/test/dummy/config/routes.rb +58 -0
  41. data/test/dummy/config/secrets.yml +22 -0
  42. data/test/dummy/config.ru +4 -0
  43. data/test/dummy/db/development.sqlite3 +0 -0
  44. data/test/dummy/log/development.log +418 -0
  45. data/test/dummy/public/404.html +67 -0
  46. data/test/dummy/public/422.html +67 -0
  47. data/test/dummy/public/500.html +66 -0
  48. data/test/dummy/public/favicon.ico +0 -0
  49. data/test/dummy/test/controllers/test_controller_test.rb +9 -0
  50. data/test/dummy/test/helpers/test_helper_test.rb +4 -0
  51. data/test/dummy/tmp/cache/assets/development/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
  52. data/test/dummy/tmp/cache/assets/development/sprockets/1d49437364bff753ad2f70fdb5ef7612 +0 -0
  53. data/test/dummy/tmp/cache/assets/development/sprockets/293460f7bea2aea456231b769212f36f +0 -0
  54. data/test/dummy/tmp/cache/assets/development/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
  55. data/test/dummy/tmp/cache/assets/development/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
  56. data/test/dummy/tmp/cache/assets/development/sprockets/5daa64d9601a1dd14726112003d08364 +0 -0
  57. data/test/dummy/tmp/cache/assets/development/sprockets/9f0902c766a7e3fededcdcb9650526da +0 -0
  58. data/test/dummy/tmp/cache/assets/development/sprockets/b45890d98668c132fee5cae4b15320d9 +0 -0
  59. data/test/dummy/tmp/cache/assets/development/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
  60. data/test/dummy/tmp/cache/assets/development/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
  61. data/test/dummy/tmp/cache/assets/development/sprockets/daa0e3c217673cb0ebb89d97438a1b80 +0 -0
  62. data/test/dummy/tmp/cache/assets/development/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
  63. data/test/test_helper.rb +16 -0
  64. metadata +190 -0
@@ -0,0 +1,8 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Version of your assets, change this if you want to expire all your assets.
4
+ Rails.application.config.assets.version = '1.0'
5
+
6
+ # Precompile additional assets.
7
+ # application.js, application.css, and all non-JS/CSS in app/assets folder are already added.
8
+ # Rails.application.config.assets.precompile += %w( search.js )
@@ -0,0 +1,7 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces.
4
+ # Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ }
5
+
6
+ # You can also remove all the silencers if you're trying to debug a problem that might stem from framework code.
7
+ # Rails.backtrace_cleaner.remove_silencers!
@@ -0,0 +1,3 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ Rails.application.config.action_dispatch.cookies_serializer = :json
@@ -0,0 +1,4 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Configure sensitive parameters which will be filtered from the log file.
4
+ Rails.application.config.filter_parameters += [:password]
@@ -0,0 +1,16 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new inflection rules using the following format. Inflections
4
+ # are locale specific, and you may define rules for as many different
5
+ # locales as you wish. All of these examples are active by default:
6
+ # ActiveSupport::Inflector.inflections(:en) do |inflect|
7
+ # inflect.plural /^(ox)$/i, '\1en'
8
+ # inflect.singular /^(ox)en/i, '\1'
9
+ # inflect.irregular 'person', 'people'
10
+ # inflect.uncountable %w( fish sheep )
11
+ # end
12
+
13
+ # These inflection rules are supported but not enabled by default:
14
+ # ActiveSupport::Inflector.inflections(:en) do |inflect|
15
+ # inflect.acronym 'RESTful'
16
+ # end
@@ -0,0 +1,4 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new mime types for use in respond_to blocks:
4
+ # Mime::Type.register "text/richtext", :rtf
@@ -0,0 +1,3 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ Rails.application.config.session_store :cookie_store, key: '_dummy_session'
@@ -0,0 +1,14 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # This file contains settings for ActionController::ParamsWrapper which
4
+ # is enabled by default.
5
+
6
+ # Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
7
+ ActiveSupport.on_load(:action_controller) do
8
+ wrap_parameters format: [:json] if respond_to?(:wrap_parameters)
9
+ end
10
+
11
+ # To enable root element in JSON for ActiveRecord objects.
12
+ # ActiveSupport.on_load(:active_record) do
13
+ # self.include_root_in_json = true
14
+ # end
@@ -0,0 +1,23 @@
1
+ # Files in the config/locales directory are used for internationalization
2
+ # and are automatically loaded by Rails. If you want to use locales other
3
+ # than English, add the necessary files in this directory.
4
+ #
5
+ # To use the locales, use `I18n.t`:
6
+ #
7
+ # I18n.t 'hello'
8
+ #
9
+ # In views, this is aliased to just `t`:
10
+ #
11
+ # <%= t('hello') %>
12
+ #
13
+ # To use a different locale, set it with `I18n.locale`:
14
+ #
15
+ # I18n.locale = :es
16
+ #
17
+ # This would use the information in config/locales/es.yml.
18
+ #
19
+ # To learn more, please read the Rails Internationalization guide
20
+ # available at http://guides.rubyonrails.org/i18n.html.
21
+
22
+ en:
23
+ hello: "Hello world"
@@ -0,0 +1,58 @@
1
+ Rails.application.routes.draw do
2
+ get 'test/index'
3
+
4
+ # The priority is based upon order of creation: first created -> highest priority.
5
+ # See how all your routes lay out with "rake routes".
6
+
7
+ # You can have the root of your site routed with "root"
8
+ # root 'welcome#index'
9
+
10
+ # Example of regular route:
11
+ # get 'products/:id' => 'catalog#view'
12
+
13
+ # Example of named route that can be invoked with purchase_url(id: product.id)
14
+ # get 'products/:id/purchase' => 'catalog#purchase', as: :purchase
15
+
16
+ # Example resource route (maps HTTP verbs to controller actions automatically):
17
+ # resources :products
18
+
19
+ # Example resource route with options:
20
+ # resources :products do
21
+ # member do
22
+ # get 'short'
23
+ # post 'toggle'
24
+ # end
25
+ #
26
+ # collection do
27
+ # get 'sold'
28
+ # end
29
+ # end
30
+
31
+ # Example resource route with sub-resources:
32
+ # resources :products do
33
+ # resources :comments, :sales
34
+ # resource :seller
35
+ # end
36
+
37
+ # Example resource route with more complex sub-resources:
38
+ # resources :products do
39
+ # resources :comments
40
+ # resources :sales do
41
+ # get 'recent', on: :collection
42
+ # end
43
+ # end
44
+
45
+ # Example resource route with concerns:
46
+ # concern :toggleable do
47
+ # post 'toggle'
48
+ # end
49
+ # resources :posts, concerns: :toggleable
50
+ # resources :photos, concerns: :toggleable
51
+
52
+ # Example resource route within a namespace:
53
+ # namespace :admin do
54
+ # # Directs /admin/products/* to Admin::ProductsController
55
+ # # (app/controllers/admin/products_controller.rb)
56
+ # resources :products
57
+ # end
58
+ end
@@ -0,0 +1,22 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Your secret key is used for verifying the integrity of signed cookies.
4
+ # If you change this key, all old signed cookies will become invalid!
5
+
6
+ # Make sure the secret is at least 30 characters and all random,
7
+ # no regular words or you'll be exposed to dictionary attacks.
8
+ # You can use `rake secret` to generate a secure secret key.
9
+
10
+ # Make sure the secrets in this file are kept private
11
+ # if you're sharing your code publicly.
12
+
13
+ development:
14
+ secret_key_base: a0e65f686fd9d55605838f7098934dd7da64acc7e6eeaff175359f896a4a8d83c631cd0520bf5728b4091c2c2dfcac282f515f654f1a3e2eba9ec1daaef8b43c
15
+
16
+ test:
17
+ secret_key_base: 3413896064a72924787022e3f3124c077931cf3d1e33eb1c8c9863375cbadaee29223c06ccb408d9c29bd487538673a734833d0491ceec408b7a925e4096037c
18
+
19
+ # Do not keep production secrets in the repository,
20
+ # instead read values from the environment.
21
+ production:
22
+ secret_key_base: <%= ENV["SECRET_KEY_BASE"] %>
@@ -0,0 +1,4 @@
1
+ # This file is used by Rack-based servers to start the application.
2
+
3
+ require ::File.expand_path('../config/environment', __FILE__)
4
+ run Rails.application
File without changes
@@ -0,0 +1,418 @@
1
+
2
+
3
+ Started GET "/" for 127.0.0.1 at 2014-12-21 15:21:09 +0300
4
+ Processing by Rails::WelcomeController#index as HTML
5
+ Rendered /Users/Nikolay_Lipovtsev/.rvm/gems/ruby-2.1.3/gems/railties-4.1.8/lib/rails/templates/rails/welcome/index.html.erb (1.2ms)
6
+ Completed 200 OK in 5ms (Views: 5.3ms | ActiveRecord: 0.0ms)
7
+
8
+
9
+ Started GET "/apple-touch-icon-precomposed.png" for 127.0.0.1 at 2014-12-21 15:21:09 +0300
10
+
11
+ ActionController::RoutingError (No route matches [GET] "/apple-touch-icon-precomposed.png"):
12
+ actionpack (4.1.8) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
13
+ actionpack (4.1.8) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
14
+ railties (4.1.8) lib/rails/rack/logger.rb:38:in `call_app'
15
+ railties (4.1.8) lib/rails/rack/logger.rb:20:in `block in call'
16
+ activesupport (4.1.8) lib/active_support/tagged_logging.rb:68:in `block in tagged'
17
+ activesupport (4.1.8) lib/active_support/tagged_logging.rb:26:in `tagged'
18
+ activesupport (4.1.8) lib/active_support/tagged_logging.rb:68:in `tagged'
19
+ railties (4.1.8) lib/rails/rack/logger.rb:20:in `call'
20
+ actionpack (4.1.8) lib/action_dispatch/middleware/request_id.rb:21:in `call'
21
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
22
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
23
+ activesupport (4.1.8) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
24
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
25
+ actionpack (4.1.8) lib/action_dispatch/middleware/static.rb:84:in `call'
26
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
27
+ railties (4.1.8) lib/rails/engine.rb:514:in `call'
28
+ railties (4.1.8) lib/rails/application.rb:144:in `call'
29
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
30
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
31
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
32
+ /Users/Nikolay_Lipovtsev/.rvm/rubies/ruby-2.1.3/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
33
+ /Users/Nikolay_Lipovtsev/.rvm/rubies/ruby-2.1.3/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
34
+ /Users/Nikolay_Lipovtsev/.rvm/rubies/ruby-2.1.3/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
35
+
36
+
37
+ Rendered /Users/Nikolay_Lipovtsev/.rvm/gems/ruby-2.1.3/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms)
38
+ Rendered /Users/Nikolay_Lipovtsev/.rvm/gems/ruby-2.1.3/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.0ms)
39
+ Rendered /Users/Nikolay_Lipovtsev/.rvm/gems/ruby-2.1.3/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/routes/_table.html.erb (5.1ms)
40
+ Rendered /Users/Nikolay_Lipovtsev/.rvm/gems/ruby-2.1.3/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (21.7ms)
41
+
42
+
43
+ Started GET "/apple-touch-icon.png" for 127.0.0.1 at 2014-12-21 15:21:09 +0300
44
+
45
+ ActionController::RoutingError (No route matches [GET] "/apple-touch-icon.png"):
46
+ actionpack (4.1.8) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
47
+ actionpack (4.1.8) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
48
+ railties (4.1.8) lib/rails/rack/logger.rb:38:in `call_app'
49
+ railties (4.1.8) lib/rails/rack/logger.rb:20:in `block in call'
50
+ activesupport (4.1.8) lib/active_support/tagged_logging.rb:68:in `block in tagged'
51
+ activesupport (4.1.8) lib/active_support/tagged_logging.rb:26:in `tagged'
52
+ activesupport (4.1.8) lib/active_support/tagged_logging.rb:68:in `tagged'
53
+ railties (4.1.8) lib/rails/rack/logger.rb:20:in `call'
54
+ actionpack (4.1.8) lib/action_dispatch/middleware/request_id.rb:21:in `call'
55
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
56
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
57
+ activesupport (4.1.8) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
58
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
59
+ actionpack (4.1.8) lib/action_dispatch/middleware/static.rb:84:in `call'
60
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
61
+ railties (4.1.8) lib/rails/engine.rb:514:in `call'
62
+ railties (4.1.8) lib/rails/application.rb:144:in `call'
63
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
64
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
65
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
66
+ /Users/Nikolay_Lipovtsev/.rvm/rubies/ruby-2.1.3/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
67
+ /Users/Nikolay_Lipovtsev/.rvm/rubies/ruby-2.1.3/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
68
+ /Users/Nikolay_Lipovtsev/.rvm/rubies/ruby-2.1.3/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
69
+
70
+
71
+ Rendered /Users/Nikolay_Lipovtsev/.rvm/gems/ruby-2.1.3/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.8ms)
72
+ Rendered /Users/Nikolay_Lipovtsev/.rvm/gems/ruby-2.1.3/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.5ms)
73
+ Rendered /Users/Nikolay_Lipovtsev/.rvm/gems/ruby-2.1.3/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.8ms)
74
+ Rendered /Users/Nikolay_Lipovtsev/.rvm/gems/ruby-2.1.3/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (10.6ms)
75
+
76
+
77
+ Started GET "/test/index" for 127.0.0.1 at 2014-12-21 15:21:10 +0300
78
+ Processing by TestController#index as HTML
79
+ Rendered test/index.html.erb within layouts/application (0.7ms)
80
+ Completed 200 OK in 86ms (Views: 86.0ms | ActiveRecord: 0.0ms)
81
+
82
+
83
+ Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2014-12-21 15:21:10 +0300
84
+
85
+
86
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-12-21 15:21:10 +0300
87
+
88
+
89
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-12-21 15:21:10 +0300
90
+
91
+
92
+ Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2014-12-21 15:21:10 +0300
93
+
94
+
95
+ Started GET "/apple-touch-icon-precomposed.png" for 127.0.0.1 at 2014-12-21 15:21:10 +0300
96
+
97
+ ActionController::RoutingError (No route matches [GET] "/apple-touch-icon-precomposed.png"):
98
+ actionpack (4.1.8) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
99
+ actionpack (4.1.8) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
100
+ railties (4.1.8) lib/rails/rack/logger.rb:38:in `call_app'
101
+ railties (4.1.8) lib/rails/rack/logger.rb:20:in `block in call'
102
+ activesupport (4.1.8) lib/active_support/tagged_logging.rb:68:in `block in tagged'
103
+ activesupport (4.1.8) lib/active_support/tagged_logging.rb:26:in `tagged'
104
+ activesupport (4.1.8) lib/active_support/tagged_logging.rb:68:in `tagged'
105
+ railties (4.1.8) lib/rails/rack/logger.rb:20:in `call'
106
+ actionpack (4.1.8) lib/action_dispatch/middleware/request_id.rb:21:in `call'
107
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
108
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
109
+ activesupport (4.1.8) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
110
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
111
+ actionpack (4.1.8) lib/action_dispatch/middleware/static.rb:84:in `call'
112
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
113
+ railties (4.1.8) lib/rails/engine.rb:514:in `call'
114
+ railties (4.1.8) lib/rails/application.rb:144:in `call'
115
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
116
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
117
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
118
+ /Users/Nikolay_Lipovtsev/.rvm/rubies/ruby-2.1.3/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
119
+ /Users/Nikolay_Lipovtsev/.rvm/rubies/ruby-2.1.3/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
120
+ /Users/Nikolay_Lipovtsev/.rvm/rubies/ruby-2.1.3/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
121
+
122
+
123
+ Rendered /Users/Nikolay_Lipovtsev/.rvm/gems/ruby-2.1.3/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.8ms)
124
+ Rendered /Users/Nikolay_Lipovtsev/.rvm/gems/ruby-2.1.3/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms)
125
+ Rendered /Users/Nikolay_Lipovtsev/.rvm/gems/ruby-2.1.3/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms)
126
+ Rendered /Users/Nikolay_Lipovtsev/.rvm/gems/ruby-2.1.3/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (11.2ms)
127
+
128
+
129
+ Started GET "/apple-touch-icon.png" for 127.0.0.1 at 2014-12-21 15:21:10 +0300
130
+
131
+ ActionController::RoutingError (No route matches [GET] "/apple-touch-icon.png"):
132
+ actionpack (4.1.8) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
133
+ actionpack (4.1.8) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
134
+ railties (4.1.8) lib/rails/rack/logger.rb:38:in `call_app'
135
+ railties (4.1.8) lib/rails/rack/logger.rb:20:in `block in call'
136
+ activesupport (4.1.8) lib/active_support/tagged_logging.rb:68:in `block in tagged'
137
+ activesupport (4.1.8) lib/active_support/tagged_logging.rb:26:in `tagged'
138
+ activesupport (4.1.8) lib/active_support/tagged_logging.rb:68:in `tagged'
139
+ railties (4.1.8) lib/rails/rack/logger.rb:20:in `call'
140
+ actionpack (4.1.8) lib/action_dispatch/middleware/request_id.rb:21:in `call'
141
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
142
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
143
+ activesupport (4.1.8) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
144
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
145
+ actionpack (4.1.8) lib/action_dispatch/middleware/static.rb:84:in `call'
146
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
147
+ railties (4.1.8) lib/rails/engine.rb:514:in `call'
148
+ railties (4.1.8) lib/rails/application.rb:144:in `call'
149
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
150
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
151
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
152
+ /Users/Nikolay_Lipovtsev/.rvm/rubies/ruby-2.1.3/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
153
+ /Users/Nikolay_Lipovtsev/.rvm/rubies/ruby-2.1.3/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
154
+ /Users/Nikolay_Lipovtsev/.rvm/rubies/ruby-2.1.3/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
155
+
156
+
157
+ Rendered /Users/Nikolay_Lipovtsev/.rvm/gems/ruby-2.1.3/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.8ms)
158
+ Rendered /Users/Nikolay_Lipovtsev/.rvm/gems/ruby-2.1.3/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms)
159
+ Rendered /Users/Nikolay_Lipovtsev/.rvm/gems/ruby-2.1.3/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.2ms)
160
+ Rendered /Users/Nikolay_Lipovtsev/.rvm/gems/ruby-2.1.3/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (12.7ms)
161
+
162
+
163
+ Started GET "/test/index" for 127.0.0.1 at 2014-12-21 15:28:45 +0300
164
+ Processing by TestController#index as HTML
165
+ Rendered test/index.html.erb within layouts/application (1.1ms)
166
+ Completed 200 OK in 18ms (Views: 17.7ms | ActiveRecord: 0.0ms)
167
+
168
+
169
+ Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2014-12-21 15:28:45 +0300
170
+
171
+
172
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-12-21 15:28:45 +0300
173
+
174
+
175
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-12-21 15:28:45 +0300
176
+
177
+
178
+ Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2014-12-21 15:28:45 +0300
179
+
180
+
181
+ Started GET "/apple-touch-icon-precomposed.png" for 127.0.0.1 at 2014-12-21 15:28:46 +0300
182
+
183
+ ActionController::RoutingError (No route matches [GET] "/apple-touch-icon-precomposed.png"):
184
+ actionpack (4.1.8) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
185
+ actionpack (4.1.8) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
186
+ railties (4.1.8) lib/rails/rack/logger.rb:38:in `call_app'
187
+ railties (4.1.8) lib/rails/rack/logger.rb:20:in `block in call'
188
+ activesupport (4.1.8) lib/active_support/tagged_logging.rb:68:in `block in tagged'
189
+ activesupport (4.1.8) lib/active_support/tagged_logging.rb:26:in `tagged'
190
+ activesupport (4.1.8) lib/active_support/tagged_logging.rb:68:in `tagged'
191
+ railties (4.1.8) lib/rails/rack/logger.rb:20:in `call'
192
+ actionpack (4.1.8) lib/action_dispatch/middleware/request_id.rb:21:in `call'
193
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
194
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
195
+ activesupport (4.1.8) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
196
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
197
+ actionpack (4.1.8) lib/action_dispatch/middleware/static.rb:84:in `call'
198
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
199
+ railties (4.1.8) lib/rails/engine.rb:514:in `call'
200
+ railties (4.1.8) lib/rails/application.rb:144:in `call'
201
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
202
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
203
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
204
+ /Users/Nikolay_Lipovtsev/.rvm/rubies/ruby-2.1.3/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
205
+ /Users/Nikolay_Lipovtsev/.rvm/rubies/ruby-2.1.3/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
206
+ /Users/Nikolay_Lipovtsev/.rvm/rubies/ruby-2.1.3/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
207
+
208
+
209
+ Rendered /Users/Nikolay_Lipovtsev/.rvm/gems/ruby-2.1.3/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms)
210
+ Rendered /Users/Nikolay_Lipovtsev/.rvm/gems/ruby-2.1.3/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms)
211
+ Rendered /Users/Nikolay_Lipovtsev/.rvm/gems/ruby-2.1.3/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.2ms)
212
+ Rendered /Users/Nikolay_Lipovtsev/.rvm/gems/ruby-2.1.3/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (14.0ms)
213
+
214
+
215
+ Started GET "/apple-touch-icon.png" for 127.0.0.1 at 2014-12-21 15:28:46 +0300
216
+
217
+ ActionController::RoutingError (No route matches [GET] "/apple-touch-icon.png"):
218
+ actionpack (4.1.8) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
219
+ actionpack (4.1.8) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
220
+ railties (4.1.8) lib/rails/rack/logger.rb:38:in `call_app'
221
+ railties (4.1.8) lib/rails/rack/logger.rb:20:in `block in call'
222
+ activesupport (4.1.8) lib/active_support/tagged_logging.rb:68:in `block in tagged'
223
+ activesupport (4.1.8) lib/active_support/tagged_logging.rb:26:in `tagged'
224
+ activesupport (4.1.8) lib/active_support/tagged_logging.rb:68:in `tagged'
225
+ railties (4.1.8) lib/rails/rack/logger.rb:20:in `call'
226
+ actionpack (4.1.8) lib/action_dispatch/middleware/request_id.rb:21:in `call'
227
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
228
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
229
+ activesupport (4.1.8) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
230
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
231
+ actionpack (4.1.8) lib/action_dispatch/middleware/static.rb:84:in `call'
232
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
233
+ railties (4.1.8) lib/rails/engine.rb:514:in `call'
234
+ railties (4.1.8) lib/rails/application.rb:144:in `call'
235
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
236
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
237
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
238
+ /Users/Nikolay_Lipovtsev/.rvm/rubies/ruby-2.1.3/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
239
+ /Users/Nikolay_Lipovtsev/.rvm/rubies/ruby-2.1.3/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
240
+ /Users/Nikolay_Lipovtsev/.rvm/rubies/ruby-2.1.3/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
241
+
242
+
243
+ Rendered /Users/Nikolay_Lipovtsev/.rvm/gems/ruby-2.1.3/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms)
244
+ Rendered /Users/Nikolay_Lipovtsev/.rvm/gems/ruby-2.1.3/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms)
245
+ Rendered /Users/Nikolay_Lipovtsev/.rvm/gems/ruby-2.1.3/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.2ms)
246
+ Rendered /Users/Nikolay_Lipovtsev/.rvm/gems/ruby-2.1.3/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (18.1ms)
247
+
248
+
249
+ Started GET "/test/index" for 127.0.0.1 at 2014-12-21 15:42:26 +0300
250
+ Processing by TestController#index as HTML
251
+ Rendered test/index.html.erb within layouts/application (1.7ms)
252
+ Completed 200 OK in 38ms (Views: 37.9ms | ActiveRecord: 0.0ms)
253
+
254
+
255
+ Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2014-12-21 15:42:27 +0300
256
+
257
+
258
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-12-21 15:42:27 +0300
259
+
260
+
261
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-12-21 15:42:27 +0300
262
+
263
+
264
+ Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2014-12-21 15:42:27 +0300
265
+
266
+
267
+ Started GET "/apple-touch-icon-precomposed.png" for 127.0.0.1 at 2014-12-21 15:42:27 +0300
268
+
269
+ ActionController::RoutingError (No route matches [GET] "/apple-touch-icon-precomposed.png"):
270
+ actionpack (4.1.8) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
271
+ actionpack (4.1.8) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
272
+ railties (4.1.8) lib/rails/rack/logger.rb:38:in `call_app'
273
+ railties (4.1.8) lib/rails/rack/logger.rb:20:in `block in call'
274
+ activesupport (4.1.8) lib/active_support/tagged_logging.rb:68:in `block in tagged'
275
+ activesupport (4.1.8) lib/active_support/tagged_logging.rb:26:in `tagged'
276
+ activesupport (4.1.8) lib/active_support/tagged_logging.rb:68:in `tagged'
277
+ railties (4.1.8) lib/rails/rack/logger.rb:20:in `call'
278
+ actionpack (4.1.8) lib/action_dispatch/middleware/request_id.rb:21:in `call'
279
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
280
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
281
+ activesupport (4.1.8) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
282
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
283
+ actionpack (4.1.8) lib/action_dispatch/middleware/static.rb:84:in `call'
284
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
285
+ railties (4.1.8) lib/rails/engine.rb:514:in `call'
286
+ railties (4.1.8) lib/rails/application.rb:144:in `call'
287
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
288
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
289
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
290
+ /Users/Nikolay_Lipovtsev/.rvm/rubies/ruby-2.1.3/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
291
+ /Users/Nikolay_Lipovtsev/.rvm/rubies/ruby-2.1.3/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
292
+ /Users/Nikolay_Lipovtsev/.rvm/rubies/ruby-2.1.3/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
293
+
294
+
295
+ Rendered /Users/Nikolay_Lipovtsev/.rvm/gems/ruby-2.1.3/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms)
296
+ Rendered /Users/Nikolay_Lipovtsev/.rvm/gems/ruby-2.1.3/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms)
297
+ Rendered /Users/Nikolay_Lipovtsev/.rvm/gems/ruby-2.1.3/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/routes/_table.html.erb (6.8ms)
298
+ Rendered /Users/Nikolay_Lipovtsev/.rvm/gems/ruby-2.1.3/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (22.5ms)
299
+
300
+
301
+ Started GET "/apple-touch-icon.png" for 127.0.0.1 at 2014-12-21 15:42:27 +0300
302
+
303
+ ActionController::RoutingError (No route matches [GET] "/apple-touch-icon.png"):
304
+ actionpack (4.1.8) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
305
+ actionpack (4.1.8) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
306
+ railties (4.1.8) lib/rails/rack/logger.rb:38:in `call_app'
307
+ railties (4.1.8) lib/rails/rack/logger.rb:20:in `block in call'
308
+ activesupport (4.1.8) lib/active_support/tagged_logging.rb:68:in `block in tagged'
309
+ activesupport (4.1.8) lib/active_support/tagged_logging.rb:26:in `tagged'
310
+ activesupport (4.1.8) lib/active_support/tagged_logging.rb:68:in `tagged'
311
+ railties (4.1.8) lib/rails/rack/logger.rb:20:in `call'
312
+ actionpack (4.1.8) lib/action_dispatch/middleware/request_id.rb:21:in `call'
313
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
314
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
315
+ activesupport (4.1.8) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
316
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
317
+ actionpack (4.1.8) lib/action_dispatch/middleware/static.rb:84:in `call'
318
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
319
+ railties (4.1.8) lib/rails/engine.rb:514:in `call'
320
+ railties (4.1.8) lib/rails/application.rb:144:in `call'
321
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
322
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
323
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
324
+ /Users/Nikolay_Lipovtsev/.rvm/rubies/ruby-2.1.3/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
325
+ /Users/Nikolay_Lipovtsev/.rvm/rubies/ruby-2.1.3/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
326
+ /Users/Nikolay_Lipovtsev/.rvm/rubies/ruby-2.1.3/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
327
+
328
+
329
+ Rendered /Users/Nikolay_Lipovtsev/.rvm/gems/ruby-2.1.3/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms)
330
+ Rendered /Users/Nikolay_Lipovtsev/.rvm/gems/ruby-2.1.3/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms)
331
+ Rendered /Users/Nikolay_Lipovtsev/.rvm/gems/ruby-2.1.3/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.8ms)
332
+ Rendered /Users/Nikolay_Lipovtsev/.rvm/gems/ruby-2.1.3/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (16.2ms)
333
+
334
+
335
+ Started GET "/test/index" for 127.0.0.1 at 2014-12-21 15:44:35 +0300
336
+ Processing by TestController#index as HTML
337
+ Rendered test/index.html.erb within layouts/application (1.8ms)
338
+ Completed 200 OK in 37ms (Views: 36.5ms | ActiveRecord: 0.0ms)
339
+
340
+
341
+ Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2014-12-21 15:44:35 +0300
342
+
343
+
344
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-12-21 15:44:35 +0300
345
+
346
+
347
+ Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2014-12-21 15:44:35 +0300
348
+
349
+
350
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-12-21 15:44:35 +0300
351
+
352
+
353
+ Started GET "/apple-touch-icon-precomposed.png" for 127.0.0.1 at 2014-12-21 15:44:35 +0300
354
+
355
+ ActionController::RoutingError (No route matches [GET] "/apple-touch-icon-precomposed.png"):
356
+ actionpack (4.1.8) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
357
+ actionpack (4.1.8) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
358
+ railties (4.1.8) lib/rails/rack/logger.rb:38:in `call_app'
359
+ railties (4.1.8) lib/rails/rack/logger.rb:20:in `block in call'
360
+ activesupport (4.1.8) lib/active_support/tagged_logging.rb:68:in `block in tagged'
361
+ activesupport (4.1.8) lib/active_support/tagged_logging.rb:26:in `tagged'
362
+ activesupport (4.1.8) lib/active_support/tagged_logging.rb:68:in `tagged'
363
+ railties (4.1.8) lib/rails/rack/logger.rb:20:in `call'
364
+ actionpack (4.1.8) lib/action_dispatch/middleware/request_id.rb:21:in `call'
365
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
366
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
367
+ activesupport (4.1.8) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
368
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
369
+ actionpack (4.1.8) lib/action_dispatch/middleware/static.rb:84:in `call'
370
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
371
+ railties (4.1.8) lib/rails/engine.rb:514:in `call'
372
+ railties (4.1.8) lib/rails/application.rb:144:in `call'
373
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
374
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
375
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
376
+ /Users/Nikolay_Lipovtsev/.rvm/rubies/ruby-2.1.3/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
377
+ /Users/Nikolay_Lipovtsev/.rvm/rubies/ruby-2.1.3/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
378
+ /Users/Nikolay_Lipovtsev/.rvm/rubies/ruby-2.1.3/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
379
+
380
+
381
+ Rendered /Users/Nikolay_Lipovtsev/.rvm/gems/ruby-2.1.3/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms)
382
+ Rendered /Users/Nikolay_Lipovtsev/.rvm/gems/ruby-2.1.3/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms)
383
+ Rendered /Users/Nikolay_Lipovtsev/.rvm/gems/ruby-2.1.3/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/routes/_table.html.erb (6.0ms)
384
+ Rendered /Users/Nikolay_Lipovtsev/.rvm/gems/ruby-2.1.3/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (21.3ms)
385
+
386
+
387
+ Started GET "/apple-touch-icon.png" for 127.0.0.1 at 2014-12-21 15:44:35 +0300
388
+
389
+ ActionController::RoutingError (No route matches [GET] "/apple-touch-icon.png"):
390
+ actionpack (4.1.8) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
391
+ actionpack (4.1.8) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
392
+ railties (4.1.8) lib/rails/rack/logger.rb:38:in `call_app'
393
+ railties (4.1.8) lib/rails/rack/logger.rb:20:in `block in call'
394
+ activesupport (4.1.8) lib/active_support/tagged_logging.rb:68:in `block in tagged'
395
+ activesupport (4.1.8) lib/active_support/tagged_logging.rb:26:in `tagged'
396
+ activesupport (4.1.8) lib/active_support/tagged_logging.rb:68:in `tagged'
397
+ railties (4.1.8) lib/rails/rack/logger.rb:20:in `call'
398
+ actionpack (4.1.8) lib/action_dispatch/middleware/request_id.rb:21:in `call'
399
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
400
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
401
+ activesupport (4.1.8) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
402
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
403
+ actionpack (4.1.8) lib/action_dispatch/middleware/static.rb:84:in `call'
404
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
405
+ railties (4.1.8) lib/rails/engine.rb:514:in `call'
406
+ railties (4.1.8) lib/rails/application.rb:144:in `call'
407
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
408
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
409
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
410
+ /Users/Nikolay_Lipovtsev/.rvm/rubies/ruby-2.1.3/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
411
+ /Users/Nikolay_Lipovtsev/.rvm/rubies/ruby-2.1.3/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
412
+ /Users/Nikolay_Lipovtsev/.rvm/rubies/ruby-2.1.3/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
413
+
414
+
415
+ Rendered /Users/Nikolay_Lipovtsev/.rvm/gems/ruby-2.1.3/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms)
416
+ Rendered /Users/Nikolay_Lipovtsev/.rvm/gems/ruby-2.1.3/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms)
417
+ Rendered /Users/Nikolay_Lipovtsev/.rvm/gems/ruby-2.1.3/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms)
418
+ Rendered /Users/Nikolay_Lipovtsev/.rvm/gems/ruby-2.1.3/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (16.0ms)