tegaki_jan_rails 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (64) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/Rakefile +32 -0
  4. data/app/assets/fonts/tegaki-jan.woff +0 -0
  5. data/app/assets/stylesheets/tegaki-jan.css.erb +22 -0
  6. data/app/helpers/tegaki_jan_rails/icon_helper.rb +7 -0
  7. data/lib/tasks/tegaki_jan_rails_tasks.rake +4 -0
  8. data/lib/tegaki_jan_rails.rb +3 -0
  9. data/lib/tegaki_jan_rails/version.rb +3 -0
  10. data/test/dummy/README.rdoc +28 -0
  11. data/test/dummy/Rakefile +6 -0
  12. data/test/dummy/app/assets/javascripts/application.js +13 -0
  13. data/test/dummy/app/assets/stylesheets/application.css +19 -0
  14. data/test/dummy/app/controllers/application_controller.rb +5 -0
  15. data/test/dummy/app/controllers/main_controller.rb +4 -0
  16. data/test/dummy/app/helpers/application_helper.rb +2 -0
  17. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  18. data/test/dummy/app/views/main/index.html.erb +3 -0
  19. data/test/dummy/bin/bundle +3 -0
  20. data/test/dummy/bin/rails +4 -0
  21. data/test/dummy/bin/rake +4 -0
  22. data/test/dummy/config.ru +4 -0
  23. data/test/dummy/config/application.rb +23 -0
  24. data/test/dummy/config/boot.rb +5 -0
  25. data/test/dummy/config/database.yml +25 -0
  26. data/test/dummy/config/environment.rb +5 -0
  27. data/test/dummy/config/environments/development.rb +37 -0
  28. data/test/dummy/config/environments/production.rb +83 -0
  29. data/test/dummy/config/environments/test.rb +39 -0
  30. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  31. data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
  32. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  33. data/test/dummy/config/initializers/inflections.rb +16 -0
  34. data/test/dummy/config/initializers/mime_types.rb +4 -0
  35. data/test/dummy/config/initializers/session_store.rb +3 -0
  36. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  37. data/test/dummy/config/locales/en.yml +23 -0
  38. data/test/dummy/config/routes.rb +58 -0
  39. data/test/dummy/config/secrets.yml +22 -0
  40. data/test/dummy/db/development.sqlite3 +0 -0
  41. data/test/dummy/log/development.log +572 -0
  42. data/test/dummy/public/404.html +67 -0
  43. data/test/dummy/public/422.html +67 -0
  44. data/test/dummy/public/500.html +66 -0
  45. data/test/dummy/public/favicon.ico +0 -0
  46. data/test/dummy/tmp/cache/assets/development/sass/fbb9b73ec9795d93d9e013512caad6d38a109349/tegaki-jan.css.sass.erbc +0 -0
  47. data/test/dummy/tmp/cache/assets/development/sprockets/04adcde1198774833041b75e739f35cd +0 -0
  48. data/test/dummy/tmp/cache/assets/development/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
  49. data/test/dummy/tmp/cache/assets/development/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
  50. data/test/dummy/tmp/cache/assets/development/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
  51. data/test/dummy/tmp/cache/assets/development/sprockets/3ab242aae19c1cbcd3f0e9d1691a74fd +0 -0
  52. data/test/dummy/tmp/cache/assets/development/sprockets/4bca4fd614db200c18ff3e27f218ecb2 +0 -0
  53. data/test/dummy/tmp/cache/assets/development/sprockets/a0d186cbaf1c399d82657535d30c0dac +0 -0
  54. data/test/dummy/tmp/cache/assets/development/sprockets/a1226b8ce84bece1e28368f18e22055d +0 -0
  55. data/test/dummy/tmp/cache/assets/development/sprockets/a7d88fbf004880776db506fa7f03547a +0 -0
  56. data/test/dummy/tmp/cache/assets/development/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
  57. data/test/dummy/tmp/cache/assets/development/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
  58. data/test/dummy/tmp/cache/assets/development/sprockets/dcc54e17ad1adedbd484a647110c66a2 +0 -0
  59. data/test/dummy/tmp/cache/assets/development/sprockets/eddcb0bc7a3b08d1d9d5ccda81b7750b +0 -0
  60. data/test/dummy/tmp/cache/assets/development/sprockets/ef49c39b3ccbd02e602ac057cbf6b81c +0 -0
  61. data/test/dummy/tmp/cache/assets/development/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
  62. data/test/tegaki_jan_rails_test.rb +7 -0
  63. data/test/test_helper.rb +15 -0
  64. metadata +188 -0
@@ -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
+ root 'main#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: 3b0ae0778d6cca55d6b083783fc0e43dc5d75f3407ffc6fb31038346a7fe2a49d8a96bfaa1405b2e05fb8761095c18c830c886194836dc26be68736405915cc8
15
+
16
+ test:
17
+ secret_key_base: ec8c050a17644f47eb9e4c2b9f125b6b90b3b95473931678d22fce6bfbcc9c446dc16641cccb2f3ab5916c41d5c37e5b620d60f97dd7cf7e967671613031cf0a
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"] %>
File without changes
@@ -0,0 +1,572 @@
1
+
2
+
3
+ Started GET "/" for 127.0.0.1 at 2014-04-27 12:58:10 +0900
4
+ Processing by Rails::WelcomeController#index as HTML
5
+ Rendered /home/mtsmfm/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/railties-4.1.0/lib/rails/templates/rails/welcome/index.html.erb (1.7ms)
6
+ Completed 200 OK in 8ms (Views: 7.6ms | ActiveRecord: 0.0ms)
7
+
8
+
9
+ Started GET "/" for 127.0.0.1 at 2014-04-27 12:58:11 +0900
10
+ Processing by Rails::WelcomeController#index as HTML
11
+ Rendered /home/mtsmfm/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/railties-4.1.0/lib/rails/templates/rails/welcome/index.html.erb (0.1ms)
12
+ Completed 200 OK in 1ms (Views: 1.2ms | ActiveRecord: 0.0ms)
13
+
14
+
15
+ Started GET "/" for 127.0.0.1 at 2014-04-27 13:01:04 +0900
16
+ Processing by MainController#index as HTML
17
+ Rendered main/index.html.erb within layouts/application (1.1ms)
18
+ Completed 200 OK in 28ms (Views: 27.8ms | ActiveRecord: 0.0ms)
19
+
20
+
21
+ Started GET "/stylesheets/application.css" for 127.0.0.1 at 2014-04-27 13:01:05 +0900
22
+
23
+ ActionController::RoutingError (No route matches [GET] "/stylesheets/application.css"):
24
+ actionpack (4.1.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
25
+ actionpack (4.1.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
26
+ railties (4.1.0) lib/rails/rack/logger.rb:38:in `call_app'
27
+ railties (4.1.0) lib/rails/rack/logger.rb:20:in `block in call'
28
+ activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
29
+ activesupport (4.1.0) lib/active_support/tagged_logging.rb:26:in `tagged'
30
+ activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `tagged'
31
+ railties (4.1.0) lib/rails/rack/logger.rb:20:in `call'
32
+ actionpack (4.1.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
33
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
34
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
35
+ activesupport (4.1.0) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
36
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
37
+ actionpack (4.1.0) lib/action_dispatch/middleware/static.rb:64:in `call'
38
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
39
+ railties (4.1.0) lib/rails/engine.rb:514:in `call'
40
+ railties (4.1.0) lib/rails/application.rb:144:in `call'
41
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
42
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
43
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
44
+ /home/mtsmfm/.rbenv/versions/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
45
+ /home/mtsmfm/.rbenv/versions/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
46
+ /home/mtsmfm/.rbenv/versions/2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
47
+
48
+
49
+ Rendered /home/mtsmfm/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms)
50
+ Rendered /home/mtsmfm/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.1ms)
51
+ Rendered /home/mtsmfm/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (7.5ms)
52
+ Rendered /home/mtsmfm/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (30.6ms)
53
+
54
+
55
+ Started GET "/javascripts/application.js" for 127.0.0.1 at 2014-04-27 13:01:05 +0900
56
+
57
+ ActionController::RoutingError (No route matches [GET] "/javascripts/application.js"):
58
+ actionpack (4.1.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
59
+ actionpack (4.1.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
60
+ railties (4.1.0) lib/rails/rack/logger.rb:38:in `call_app'
61
+ railties (4.1.0) lib/rails/rack/logger.rb:20:in `block in call'
62
+ activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
63
+ activesupport (4.1.0) lib/active_support/tagged_logging.rb:26:in `tagged'
64
+ activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `tagged'
65
+ railties (4.1.0) lib/rails/rack/logger.rb:20:in `call'
66
+ actionpack (4.1.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
67
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
68
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
69
+ activesupport (4.1.0) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
70
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
71
+ actionpack (4.1.0) lib/action_dispatch/middleware/static.rb:64:in `call'
72
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
73
+ railties (4.1.0) lib/rails/engine.rb:514:in `call'
74
+ railties (4.1.0) lib/rails/application.rb:144:in `call'
75
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
76
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
77
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
78
+ /home/mtsmfm/.rbenv/versions/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
79
+ /home/mtsmfm/.rbenv/versions/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
80
+ /home/mtsmfm/.rbenv/versions/2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
81
+
82
+
83
+ Rendered /home/mtsmfm/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms)
84
+ Rendered /home/mtsmfm/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.9ms)
85
+ Rendered /home/mtsmfm/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.2ms)
86
+ Rendered /home/mtsmfm/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (13.9ms)
87
+
88
+
89
+ Started GET "/" for 127.0.0.1 at 2014-04-27 13:01:56 +0900
90
+ Processing by MainController#index as HTML
91
+ Rendered main/index.html.erb within layouts/application (0.5ms)
92
+ Completed 200 OK in 21ms (Views: 20.4ms | ActiveRecord: 0.0ms)
93
+
94
+
95
+ Started GET "/stylesheets/application.css" for 127.0.0.1 at 2014-04-27 13:01:56 +0900
96
+
97
+ ActionController::RoutingError (No route matches [GET] "/stylesheets/application.css"):
98
+ actionpack (4.1.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
99
+ actionpack (4.1.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
100
+ railties (4.1.0) lib/rails/rack/logger.rb:38:in `call_app'
101
+ railties (4.1.0) lib/rails/rack/logger.rb:20:in `block in call'
102
+ activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
103
+ activesupport (4.1.0) lib/active_support/tagged_logging.rb:26:in `tagged'
104
+ activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `tagged'
105
+ railties (4.1.0) lib/rails/rack/logger.rb:20:in `call'
106
+ actionpack (4.1.0) 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.0) 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.0) lib/action_dispatch/middleware/static.rb:64:in `call'
112
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
113
+ railties (4.1.0) lib/rails/engine.rb:514:in `call'
114
+ railties (4.1.0) 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
+ /home/mtsmfm/.rbenv/versions/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
119
+ /home/mtsmfm/.rbenv/versions/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
120
+ /home/mtsmfm/.rbenv/versions/2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
121
+
122
+
123
+ Rendered /home/mtsmfm/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms)
124
+ Rendered /home/mtsmfm/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.9ms)
125
+ Rendered /home/mtsmfm/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.3ms)
126
+ Rendered /home/mtsmfm/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (21.3ms)
127
+
128
+
129
+ Started GET "/javascripts/application.js" for 127.0.0.1 at 2014-04-27 13:01:56 +0900
130
+
131
+ ActionController::RoutingError (No route matches [GET] "/javascripts/application.js"):
132
+ actionpack (4.1.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
133
+ actionpack (4.1.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
134
+ railties (4.1.0) lib/rails/rack/logger.rb:38:in `call_app'
135
+ railties (4.1.0) lib/rails/rack/logger.rb:20:in `block in call'
136
+ activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
137
+ activesupport (4.1.0) lib/active_support/tagged_logging.rb:26:in `tagged'
138
+ activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `tagged'
139
+ railties (4.1.0) lib/rails/rack/logger.rb:20:in `call'
140
+ actionpack (4.1.0) 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.0) 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.0) lib/action_dispatch/middleware/static.rb:64:in `call'
146
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
147
+ railties (4.1.0) lib/rails/engine.rb:514:in `call'
148
+ railties (4.1.0) 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
+ /home/mtsmfm/.rbenv/versions/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
153
+ /home/mtsmfm/.rbenv/versions/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
154
+ /home/mtsmfm/.rbenv/versions/2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
155
+
156
+
157
+ Rendered /home/mtsmfm/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms)
158
+ Rendered /home/mtsmfm/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.0ms)
159
+ Rendered /home/mtsmfm/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.2ms)
160
+ Rendered /home/mtsmfm/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (14.0ms)
161
+
162
+
163
+ Started GET "/" for 127.0.0.1 at 2014-04-27 13:02:41 +0900
164
+ Processing by MainController#index as HTML
165
+ Rendered main/index.html.erb within layouts/application (1.0ms)
166
+ Completed 200 OK in 31ms (Views: 30.5ms | ActiveRecord: 0.0ms)
167
+
168
+
169
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-27 13:02:41 +0900
170
+
171
+
172
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-27 13:02:41 +0900
173
+
174
+
175
+ Started GET "/" for 127.0.0.1 at 2014-04-27 13:04:29 +0900
176
+ Processing by MainController#index as HTML
177
+ Rendered main/index.html.erb within layouts/application (0.5ms)
178
+ Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.0ms)
179
+
180
+
181
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-27 13:04:29 +0900
182
+
183
+
184
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-27 13:04:29 +0900
185
+
186
+
187
+ Started GET "/" for 127.0.0.1 at 2014-04-27 13:06:41 +0900
188
+
189
+ Gem::LoadError (Specified 'sqlite3' for database adapter, but the gem is not loaded. Add `gem 'sqlite3'` to your Gemfile (and ensure its version is at the minimum required by ActiveRecord).):
190
+ activerecord (4.1.0) lib/active_record/connection_adapters/connection_specification.rb:190:in `rescue in spec'
191
+ activerecord (4.1.0) lib/active_record/connection_adapters/connection_specification.rb:187:in `spec'
192
+ activerecord (4.1.0) lib/active_record/connection_handling.rb:50:in `establish_connection'
193
+ activerecord (4.1.0) lib/active_record/railtie.rb:129:in `block (2 levels) in <class:Railtie>'
194
+ activesupport (4.1.0) lib/active_support/lazy_load_hooks.rb:38:in `instance_eval'
195
+ activesupport (4.1.0) lib/active_support/lazy_load_hooks.rb:38:in `execute_hook'
196
+ activesupport (4.1.0) lib/active_support/lazy_load_hooks.rb:45:in `block in run_load_hooks'
197
+ activesupport (4.1.0) lib/active_support/lazy_load_hooks.rb:44:in `each'
198
+ activesupport (4.1.0) lib/active_support/lazy_load_hooks.rb:44:in `run_load_hooks'
199
+ activerecord (4.1.0) lib/active_record/base.rb:326:in `<module:ActiveRecord>'
200
+ activerecord (4.1.0) lib/active_record/base.rb:23:in `<top (required)>'
201
+ activerecord (4.1.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:628:in `rescue in call'
202
+ activerecord (4.1.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:619:in `call'
203
+ activerecord (4.1.0) lib/active_record/migration.rb:380:in `call'
204
+ actionpack (4.1.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
205
+ activesupport (4.1.0) lib/active_support/callbacks.rb:82:in `run_callbacks'
206
+ actionpack (4.1.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
207
+ actionpack (4.1.0) lib/action_dispatch/middleware/reloader.rb:73:in `call'
208
+ actionpack (4.1.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
209
+ actionpack (4.1.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
210
+ actionpack (4.1.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
211
+ railties (4.1.0) lib/rails/rack/logger.rb:38:in `call_app'
212
+ railties (4.1.0) lib/rails/rack/logger.rb:20:in `block in call'
213
+ activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
214
+ activesupport (4.1.0) lib/active_support/tagged_logging.rb:26:in `tagged'
215
+ activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `tagged'
216
+ railties (4.1.0) lib/rails/rack/logger.rb:20:in `call'
217
+ actionpack (4.1.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
218
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
219
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
220
+ activesupport (4.1.0) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
221
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
222
+ actionpack (4.1.0) lib/action_dispatch/middleware/static.rb:64:in `call'
223
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
224
+ railties (4.1.0) lib/rails/engine.rb:514:in `call'
225
+ railties (4.1.0) lib/rails/application.rb:144:in `call'
226
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
227
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
228
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
229
+ /home/mtsmfm/.rbenv/versions/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
230
+ /home/mtsmfm/.rbenv/versions/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
231
+ /home/mtsmfm/.rbenv/versions/2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
232
+
233
+
234
+ Rendered /home/mtsmfm/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.7ms)
235
+ Rendered /home/mtsmfm/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms)
236
+ Rendered /home/mtsmfm/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms)
237
+ Rendered /home/mtsmfm/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (13.8ms)
238
+
239
+
240
+ Started GET "/" for 127.0.0.1 at 2014-04-27 13:07:13 +0900
241
+ Processing by MainController#index as HTML
242
+ Rendered main/index.html.erb within layouts/application (1.3ms)
243
+ Completed 200 OK in 42ms (Views: 42.0ms | ActiveRecord: 0.0ms)
244
+
245
+
246
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-27 13:07:13 +0900
247
+
248
+
249
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-27 13:07:13 +0900
250
+
251
+
252
+ Started GET "/" for 127.0.0.1 at 2014-04-27 13:07:22 +0900
253
+ Processing by MainController#index as HTML
254
+ Rendered main/index.html.erb within layouts/application (1.7ms)
255
+ Completed 200 OK in 28ms (Views: 28.0ms | ActiveRecord: 0.0ms)
256
+
257
+
258
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-27 13:07:22 +0900
259
+
260
+
261
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-27 13:07:22 +0900
262
+
263
+
264
+ Started GET "/" for 127.0.0.1 at 2014-04-27 13:08:16 +0900
265
+ Processing by MainController#index as HTML
266
+ Rendered main/index.html.erb within layouts/application (0.1ms)
267
+ Completed 500 Internal Server Error in 15ms
268
+
269
+ ActionView::Template::Error (couldn't find file 'tegaki-jan'
270
+ (in /home/mtsmfm/workspace/tegaki_jan_rails/test/dummy/app/assets/stylesheets/application.css:13)):
271
+ 2: <html>
272
+ 3: <head>
273
+ 4: <title>Dummy</title>
274
+ 5: <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
275
+ 6: <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
276
+ 7: <%= csrf_meta_tags %>
277
+ 8: </head>
278
+ app/views/layouts/application.html.erb:5:in `_app_views_layouts_application_html_erb___1394670456724021972_70143954006840'
279
+
280
+
281
+ Rendered /home/mtsmfm/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms)
282
+ Rendered /home/mtsmfm/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.6ms)
283
+ Rendered /home/mtsmfm/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (11.5ms)
284
+
285
+
286
+ Started GET "/" for 127.0.0.1 at 2014-04-27 13:10:32 +0900
287
+ Processing by MainController#index as HTML
288
+ Rendered main/index.html.erb within layouts/application (0.1ms)
289
+ Completed 500 Internal Server Error in 8ms
290
+
291
+ ActionView::Template::Error (couldn't find file 'tegaki-jan'
292
+ (in /home/mtsmfm/workspace/tegaki_jan_rails/test/dummy/app/assets/stylesheets/application.css:13)):
293
+ 2: <html>
294
+ 3: <head>
295
+ 4: <title>Dummy</title>
296
+ 5: <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
297
+ 6: <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
298
+ 7: <%= csrf_meta_tags %>
299
+ 8: </head>
300
+ app/views/layouts/application.html.erb:5:in `_app_views_layouts_application_html_erb___1394670456724021972_70143954006840'
301
+
302
+
303
+ Rendered /home/mtsmfm/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms)
304
+ Rendered /home/mtsmfm/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.4ms)
305
+ Rendered /home/mtsmfm/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (10.3ms)
306
+
307
+
308
+ Started GET "/" for 127.0.0.1 at 2014-04-27 13:11:05 +0900
309
+ Processing by MainController#index as HTML
310
+ Rendered main/index.html.erb within layouts/application (1.1ms)
311
+ Completed 200 OK in 67ms (Views: 66.9ms | ActiveRecord: 0.0ms)
312
+
313
+
314
+ Started GET "/assets/tegaki-jan.css?body=1" for 127.0.0.1 at 2014-04-27 13:11:06 +0900
315
+
316
+
317
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-27 13:11:06 +0900
318
+
319
+
320
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-27 13:11:06 +0900
321
+
322
+
323
+ Started GET "/" for 127.0.0.1 at 2014-04-27 13:11:52 +0900
324
+ Processing by MainController#index as HTML
325
+ Rendered main/index.html.erb within layouts/application (0.1ms)
326
+ Completed 200 OK in 41ms (Views: 40.8ms | ActiveRecord: 0.0ms)
327
+
328
+
329
+ Started GET "/assets/tegaki-jan.css?body=1" for 127.0.0.1 at 2014-04-27 13:11:53 +0900
330
+
331
+
332
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-27 13:11:53 +0900
333
+
334
+
335
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-27 13:11:53 +0900
336
+
337
+
338
+ Started GET "/" for 127.0.0.1 at 2014-04-27 13:12:37 +0900
339
+ Processing by MainController#index as HTML
340
+ Rendered main/index.html.erb within layouts/application (0.5ms)
341
+ Completed 200 OK in 6ms (Views: 5.6ms | ActiveRecord: 0.0ms)
342
+
343
+
344
+ Started GET "/assets/tegaki-jan.css?body=1" for 127.0.0.1 at 2014-04-27 13:12:38 +0900
345
+
346
+
347
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-27 13:12:38 +0900
348
+
349
+
350
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-27 13:12:38 +0900
351
+
352
+
353
+ Started GET "/assets/tegaki-jan.woff" for 127.0.0.1 at 2014-04-27 13:12:38 +0900
354
+
355
+
356
+ Started GET "/" for 127.0.0.1 at 2014-04-27 13:12:51 +0900
357
+ Processing by MainController#index as HTML
358
+ Rendered main/index.html.erb within layouts/application (0.4ms)
359
+ Completed 200 OK in 5ms (Views: 4.2ms | ActiveRecord: 0.0ms)
360
+
361
+
362
+ Started GET "/assets/tegaki-jan.css?body=1" for 127.0.0.1 at 2014-04-27 13:12:51 +0900
363
+
364
+
365
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-27 13:12:51 +0900
366
+
367
+
368
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-27 13:12:51 +0900
369
+
370
+
371
+ Started GET "/" for 127.0.0.1 at 2014-04-27 13:13:21 +0900
372
+ Processing by MainController#index as HTML
373
+ Rendered main/index.html.erb within layouts/application (0.1ms)
374
+ Completed 200 OK in 13ms (Views: 12.5ms | ActiveRecord: 0.0ms)
375
+
376
+
377
+ Started GET "/assets/tegaki-jan.css?body=1" for 127.0.0.1 at 2014-04-27 13:13:21 +0900
378
+
379
+
380
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-27 13:13:21 +0900
381
+
382
+
383
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-27 13:13:21 +0900
384
+
385
+
386
+ Started GET "/" for 127.0.0.1 at 2014-04-27 13:13:25 +0900
387
+ Processing by MainController#index as HTML
388
+ Rendered main/index.html.erb within layouts/application (0.1ms)
389
+ Completed 200 OK in 11ms (Views: 10.8ms | ActiveRecord: 0.0ms)
390
+
391
+
392
+ Started GET "/assets/tegaki-jan.css?body=1" for 127.0.0.1 at 2014-04-27 13:13:25 +0900
393
+
394
+
395
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-27 13:13:25 +0900
396
+
397
+
398
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-27 13:13:25 +0900
399
+
400
+
401
+ Started GET "/" for 127.0.0.1 at 2014-04-27 13:14:13 +0900
402
+ Processing by MainController#index as HTML
403
+ Rendered main/index.html.erb within layouts/application (0.1ms)
404
+ Completed 200 OK in 36ms (Views: 35.7ms | ActiveRecord: 0.0ms)
405
+
406
+
407
+ Started GET "/assets/tegaki-jan.css?body=1" for 127.0.0.1 at 2014-04-27 13:14:13 +0900
408
+
409
+
410
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-27 13:14:14 +0900
411
+
412
+
413
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-27 13:14:14 +0900
414
+
415
+
416
+ Started GET "/" for 127.0.0.1 at 2014-04-27 13:14:56 +0900
417
+ Processing by MainController#index as HTML
418
+ Rendered main/index.html.erb within layouts/application (0.1ms)
419
+ Completed 200 OK in 19ms (Views: 18.3ms | ActiveRecord: 0.0ms)
420
+
421
+
422
+ Started GET "/assets/tegaki-jan.css?body=1" for 127.0.0.1 at 2014-04-27 13:14:57 +0900
423
+
424
+
425
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-27 13:14:57 +0900
426
+
427
+
428
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-27 13:14:57 +0900
429
+
430
+
431
+ Started GET "/" for 127.0.0.1 at 2014-04-27 13:16:44 +0900
432
+ Processing by MainController#index as HTML
433
+ Rendered main/index.html.erb within layouts/application (0.1ms)
434
+ Completed 200 OK in 23ms (Views: 22.2ms | ActiveRecord: 0.0ms)
435
+
436
+
437
+ Started GET "/assets/tegaki-jan.css?body=1" for 127.0.0.1 at 2014-04-27 13:16:44 +0900
438
+
439
+
440
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-27 13:16:44 +0900
441
+
442
+
443
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-27 13:16:44 +0900
444
+
445
+
446
+ Started GET "/assets/tegaki-jan.woff" for 127.0.0.1 at 2014-04-27 13:16:44 +0900
447
+
448
+
449
+ Started GET "/" for 127.0.0.1 at 2014-04-27 13:17:05 +0900
450
+ Processing by MainController#index as HTML
451
+ Rendered main/index.html.erb within layouts/application (0.1ms)
452
+ Completed 200 OK in 29ms (Views: 28.2ms | ActiveRecord: 0.0ms)
453
+
454
+
455
+ Started GET "/assets/tegaki-jan.css?body=1" for 127.0.0.1 at 2014-04-27 13:17:05 +0900
456
+
457
+
458
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-27 13:17:05 +0900
459
+
460
+
461
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-27 13:17:05 +0900
462
+
463
+
464
+ Started GET "/" for 127.0.0.1 at 2014-04-27 13:17:27 +0900
465
+ Processing by MainController#index as HTML
466
+ Rendered main/index.html.erb within layouts/application (1.3ms)
467
+ Completed 200 OK in 31ms (Views: 30.8ms | ActiveRecord: 0.0ms)
468
+
469
+
470
+ Started GET "/assets/tegaki-jan.css?body=1" for 127.0.0.1 at 2014-04-27 13:17:27 +0900
471
+
472
+
473
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-27 13:17:27 +0900
474
+
475
+
476
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-27 13:17:27 +0900
477
+
478
+
479
+ Started GET "/" for 127.0.0.1 at 2014-04-27 13:26:59 +0900
480
+ Processing by MainController#index as HTML
481
+ Rendered main/index.html.erb within layouts/application (1.6ms)
482
+ Completed 200 OK in 62ms (Views: 61.4ms | ActiveRecord: 0.0ms)
483
+
484
+
485
+ Started GET "/assets/tegaki-jan.css?body=1" for 127.0.0.1 at 2014-04-27 13:27:00 +0900
486
+
487
+
488
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-27 13:27:00 +0900
489
+
490
+
491
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-27 13:27:00 +0900
492
+
493
+
494
+ Started GET "/assets/tegaki-jan.woff" for 127.0.0.1 at 2014-04-27 13:27:00 +0900
495
+
496
+
497
+ Started GET "/" for 127.0.0.1 at 2014-04-27 13:27:01 +0900
498
+ Processing by MainController#index as HTML
499
+ Rendered main/index.html.erb within layouts/application (0.1ms)
500
+ Completed 200 OK in 5ms (Views: 4.2ms | ActiveRecord: 0.0ms)
501
+
502
+
503
+ Started GET "/assets/tegaki-jan.css?body=1" for 127.0.0.1 at 2014-04-27 13:27:01 +0900
504
+
505
+
506
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-27 13:27:01 +0900
507
+
508
+
509
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-27 13:27:01 +0900
510
+
511
+
512
+ Started GET "/assets/tegaki-jan.woff" for 127.0.0.1 at 2014-04-27 13:27:01 +0900
513
+
514
+
515
+ Started GET "/" for 127.0.0.1 at 2014-04-27 13:27:22 +0900
516
+ Processing by MainController#index as HTML
517
+ Rendered main/index.html.erb within layouts/application (0.6ms)
518
+ Completed 200 OK in 8ms (Views: 7.5ms | ActiveRecord: 0.0ms)
519
+
520
+
521
+ Started GET "/assets/tegaki-jan.css?body=1" for 127.0.0.1 at 2014-04-27 13:27:22 +0900
522
+
523
+
524
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-27 13:27:22 +0900
525
+
526
+
527
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-27 13:27:22 +0900
528
+
529
+
530
+ Started GET "/" for 127.0.0.1 at 2014-04-27 13:27:26 +0900
531
+ Processing by MainController#index as HTML
532
+ Rendered main/index.html.erb within layouts/application (0.6ms)
533
+ Completed 200 OK in 7ms (Views: 6.5ms | ActiveRecord: 0.0ms)
534
+
535
+
536
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-27 13:27:27 +0900
537
+
538
+
539
+ Started GET "/assets/tegaki-jan.css?body=1" for 127.0.0.1 at 2014-04-27 13:27:27 +0900
540
+
541
+
542
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-27 13:27:27 +0900
543
+
544
+
545
+ Started GET "/" for 127.0.0.1 at 2014-04-27 13:27:47 +0900
546
+ Processing by MainController#index as HTML
547
+ Rendered main/index.html.erb within layouts/application (0.7ms)
548
+ Completed 200 OK in 6ms (Views: 5.5ms | ActiveRecord: 0.0ms)
549
+
550
+
551
+ Started GET "/assets/tegaki-jan.css?body=1" for 127.0.0.1 at 2014-04-27 13:27:47 +0900
552
+
553
+
554
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-27 13:27:47 +0900
555
+
556
+
557
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-27 13:27:47 +0900
558
+
559
+
560
+ Started GET "/" for 127.0.0.1 at 2014-04-27 13:27:52 +0900
561
+ Processing by MainController#index as HTML
562
+ Rendered main/index.html.erb within layouts/application (0.5ms)
563
+ Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.0ms)
564
+
565
+
566
+ Started GET "/assets/tegaki-jan.css?body=1" for 127.0.0.1 at 2014-04-27 13:27:52 +0900
567
+
568
+
569
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-27 13:27:52 +0900
570
+
571
+
572
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-27 13:27:52 +0900