gitlab_reviewable 0.0.4
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.
- checksums.yaml +7 -0
- data/MIT-LICENSE +20 -0
- data/Rakefile +37 -0
- data/app/controllers/gitlab_reviewable/reviews_controller.rb +58 -0
- data/app/helpers/gitlab_reviewable/reviews_helper.rb +377 -0
- data/app/views/gitlab_reviewable/reviews/diffs.html.haml +53 -0
- data/app/views/gitlab_reviewable/reviews/discussion.html.haml +55 -0
- data/app/views/layouts/review.haml +34 -0
- data/config/routes.rb +5 -0
- data/lib/gitlab_reviewable.rb +4 -0
- data/lib/gitlab_reviewable/engine.rb +5 -0
- data/lib/gitlab_reviewable/version.rb +3 -0
- data/lib/tasks/gitlab_reviewable_tasks.rake +4 -0
- data/test/dummy/README.rdoc +28 -0
- data/test/dummy/Rakefile +6 -0
- data/test/dummy/app/assets/javascripts/application.js +13 -0
- data/test/dummy/app/assets/stylesheets/application.css +15 -0
- data/test/dummy/app/controllers/application_controller.rb +5 -0
- data/test/dummy/app/helpers/application_helper.rb +2 -0
- data/test/dummy/app/views/layouts/application.html.erb +14 -0
- data/test/dummy/bin/bundle +3 -0
- data/test/dummy/bin/rails +4 -0
- data/test/dummy/bin/rake +4 -0
- data/test/dummy/bin/setup +29 -0
- data/test/dummy/config.ru +4 -0
- data/test/dummy/config/application.rb +26 -0
- data/test/dummy/config/boot.rb +5 -0
- data/test/dummy/config/database.yml +25 -0
- data/test/dummy/config/environment.rb +5 -0
- data/test/dummy/config/environments/development.rb +41 -0
- data/test/dummy/config/environments/production.rb +79 -0
- data/test/dummy/config/environments/test.rb +42 -0
- data/test/dummy/config/initializers/assets.rb +11 -0
- data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
- data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
- data/test/dummy/config/initializers/inflections.rb +16 -0
- data/test/dummy/config/initializers/mime_types.rb +4 -0
- data/test/dummy/config/initializers/session_store.rb +3 -0
- data/test/dummy/config/initializers/to_time_preserves_timezone.rb +10 -0
- data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/test/dummy/config/locales/en.yml +23 -0
- data/test/dummy/config/routes.rb +4 -0
- data/test/dummy/config/secrets.yml +22 -0
- data/test/dummy/db/development.sqlite3 +0 -0
- data/test/dummy/log/development.log +423 -0
- data/test/dummy/public/404.html +67 -0
- data/test/dummy/public/422.html +67 -0
- data/test/dummy/public/500.html +66 -0
- data/test/dummy/public/favicon.ico +0 -0
- data/test/gitlab_reviewable_test.rb +7 -0
- data/test/integration/navigation_test.rb +8 -0
- data/test/test_helper.rb +21 -0
- metadata +164 -0
@@ -0,0 +1,42 @@
|
|
1
|
+
Rails.application.configure do
|
2
|
+
# Settings specified here will take precedence over those in config/application.rb.
|
3
|
+
|
4
|
+
# The test environment is used exclusively to run your application's
|
5
|
+
# test suite. You never need to work with it otherwise. Remember that
|
6
|
+
# your test database is "scratch space" for the test suite and is wiped
|
7
|
+
# and recreated between test runs. Don't rely on the data there!
|
8
|
+
config.cache_classes = true
|
9
|
+
|
10
|
+
# Do not eager load code on boot. This avoids loading your whole application
|
11
|
+
# just for the purpose of running a single test. If you are using a tool that
|
12
|
+
# preloads Rails for running tests, you may have to set it to true.
|
13
|
+
config.eager_load = false
|
14
|
+
|
15
|
+
# Configure static file server for tests with Cache-Control for performance.
|
16
|
+
config.serve_static_files = true
|
17
|
+
config.static_cache_control = 'public, max-age=3600'
|
18
|
+
|
19
|
+
# Show full error reports and disable caching.
|
20
|
+
config.consider_all_requests_local = true
|
21
|
+
config.action_controller.perform_caching = false
|
22
|
+
|
23
|
+
# Raise exceptions instead of rendering exception templates.
|
24
|
+
config.action_dispatch.show_exceptions = false
|
25
|
+
|
26
|
+
# Disable request forgery protection in test environment.
|
27
|
+
config.action_controller.allow_forgery_protection = false
|
28
|
+
|
29
|
+
# Tell Action Mailer not to deliver emails to the real world.
|
30
|
+
# The :test delivery method accumulates sent emails in the
|
31
|
+
# ActionMailer::Base.deliveries array.
|
32
|
+
config.action_mailer.delivery_method = :test
|
33
|
+
|
34
|
+
# Randomize the order test cases are executed.
|
35
|
+
config.active_support.test_order = :random
|
36
|
+
|
37
|
+
# Print deprecation notices to the stderr.
|
38
|
+
config.active_support.deprecation = :stderr
|
39
|
+
|
40
|
+
# Raises error for missing translations
|
41
|
+
# config.action_view.raise_on_missing_translations = true
|
42
|
+
end
|
@@ -0,0 +1,11 @@
|
|
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
|
+
# Add additional assets to the asset load path
|
7
|
+
# Rails.application.config.assets.paths << Emoji.images_path
|
8
|
+
|
9
|
+
# Precompile additional assets.
|
10
|
+
# application.js, application.css, and all non-JS/CSS in app/assets folder are already added.
|
11
|
+
# 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,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,10 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
3
|
+
# Preserve the timezone of the receiver when calling to `to_time`.
|
4
|
+
# Ruby 2.4 will change the behavior of `to_time` to preserve the timezone
|
5
|
+
# when converting to an instance of `Time` instead of the previous behavior
|
6
|
+
# of converting to the local system timezone.
|
7
|
+
#
|
8
|
+
# Rails 5.0 introduced this config option so that apps made with earlier
|
9
|
+
# versions of Rails are not affected when upgrading.
|
10
|
+
ActiveSupport.to_time_preserves_timezone = true
|
@@ -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,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: ec5374eece2f7203a86c5b34c7532180ae830178c8e34f4de044ced020cca505cbb32d04a692311574dcdbc07a184a0b558ed41b620814fe8ce19e66a9134856
|
15
|
+
|
16
|
+
test:
|
17
|
+
secret_key_base: 971e351bfa77e43c75d74abc753b9ac9e9c98546e85926664f2b70941bdab301b535940b06351966d215db981f8e147efc82d1a9cfcbe40d953129c03ec0b481
|
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,423 @@
|
|
1
|
+
|
2
|
+
|
3
|
+
Started GET "/" for ::1 at 2017-04-25 17:11:38 +0800
|
4
|
+
Processing by Rails::WelcomeController#index as HTML
|
5
|
+
Rendered /Users/han/.rbenv/versions/2.1.8/lib/ruby/gems/2.1.0/gems/railties-4.2.8/lib/rails/templates/rails/welcome/index.html.erb (3.1ms)
|
6
|
+
Completed 200 OK in 16ms (Views: 15.5ms | ActiveRecord: 0.0ms)
|
7
|
+
|
8
|
+
|
9
|
+
Started GET "/reviews" for ::1 at 2017-04-25 17:11:45 +0800
|
10
|
+
|
11
|
+
ActionController::RoutingError (No route matches [GET] "/reviews"):
|
12
|
+
actionpack (4.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
13
|
+
actionpack (4.2.8) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
14
|
+
railties (4.2.8) lib/rails/rack/logger.rb:38:in `call_app'
|
15
|
+
railties (4.2.8) lib/rails/rack/logger.rb:20:in `block in call'
|
16
|
+
activesupport (4.2.8) lib/active_support/tagged_logging.rb:68:in `block in tagged'
|
17
|
+
activesupport (4.2.8) lib/active_support/tagged_logging.rb:26:in `tagged'
|
18
|
+
activesupport (4.2.8) lib/active_support/tagged_logging.rb:68:in `tagged'
|
19
|
+
railties (4.2.8) lib/rails/rack/logger.rb:20:in `call'
|
20
|
+
actionpack (4.2.8) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
21
|
+
rack (1.6.5) lib/rack/methodoverride.rb:22:in `call'
|
22
|
+
rack (1.6.5) lib/rack/runtime.rb:18:in `call'
|
23
|
+
activesupport (4.2.8) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
24
|
+
rack (1.6.5) lib/rack/lock.rb:17:in `call'
|
25
|
+
actionpack (4.2.8) lib/action_dispatch/middleware/static.rb:120:in `call'
|
26
|
+
rack (1.6.5) lib/rack/sendfile.rb:113:in `call'
|
27
|
+
railties (4.2.8) lib/rails/engine.rb:518:in `call'
|
28
|
+
railties (4.2.8) lib/rails/application.rb:165:in `call'
|
29
|
+
rack (1.6.5) lib/rack/lock.rb:17:in `call'
|
30
|
+
rack (1.6.5) lib/rack/content_length.rb:15:in `call'
|
31
|
+
rack (1.6.5) lib/rack/handler/webrick.rb:88:in `service'
|
32
|
+
/Users/han/.rbenv/versions/2.1.8/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
|
33
|
+
/Users/han/.rbenv/versions/2.1.8/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
|
34
|
+
/Users/han/.rbenv/versions/2.1.8/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
|
35
|
+
|
36
|
+
|
37
|
+
Rendered /Users/han/.rbenv/versions/2.1.8/lib/ruby/gems/2.1.0/gems/actionpack-4.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms)
|
38
|
+
Rendered /Users/han/.rbenv/versions/2.1.8/lib/ruby/gems/2.1.0/gems/actionpack-4.2.8/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms)
|
39
|
+
Rendered /Users/han/.rbenv/versions/2.1.8/lib/ruby/gems/2.1.0/gems/actionpack-4.2.8/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.1ms)
|
40
|
+
Rendered /Users/han/.rbenv/versions/2.1.8/lib/ruby/gems/2.1.0/gems/actionpack-4.2.8/lib/action_dispatch/middleware/templates/routes/_table.html.erb (7.3ms)
|
41
|
+
Rendered /Users/han/.rbenv/versions/2.1.8/lib/ruby/gems/2.1.0/gems/actionpack-4.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (9.5ms)
|
42
|
+
Rendered /Users/han/.rbenv/versions/2.1.8/lib/ruby/gems/2.1.0/gems/actionpack-4.2.8/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (38.4ms)
|
43
|
+
|
44
|
+
|
45
|
+
Started GET "/reviewable/reviews" for ::1 at 2017-04-25 17:12:32 +0800
|
46
|
+
Processing by Reviewable::ReviewsController#index as HTML
|
47
|
+
Completed 406 Not Acceptable in 0ms (ActiveRecord: 0.0ms)
|
48
|
+
|
49
|
+
ActionController::UnknownFormat (ActionController::UnknownFormat):
|
50
|
+
actionpack (4.2.8) lib/action_controller/metal/mime_responds.rb:219:in `respond_to'
|
51
|
+
/Users/han/Projects/aerfa/reviewable/app/controllers/reviewable/reviews_controller.rb:4:in `index'
|
52
|
+
actionpack (4.2.8) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
53
|
+
actionpack (4.2.8) lib/abstract_controller/base.rb:198:in `process_action'
|
54
|
+
actionpack (4.2.8) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
55
|
+
actionpack (4.2.8) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
|
56
|
+
activesupport (4.2.8) lib/active_support/callbacks.rb:117:in `call'
|
57
|
+
activesupport (4.2.8) lib/active_support/callbacks.rb:117:in `call'
|
58
|
+
activesupport (4.2.8) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
|
59
|
+
activesupport (4.2.8) lib/active_support/callbacks.rb:505:in `call'
|
60
|
+
activesupport (4.2.8) lib/active_support/callbacks.rb:505:in `call'
|
61
|
+
activesupport (4.2.8) lib/active_support/callbacks.rb:92:in `__run_callbacks__'
|
62
|
+
activesupport (4.2.8) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks'
|
63
|
+
activesupport (4.2.8) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
64
|
+
actionpack (4.2.8) lib/abstract_controller/callbacks.rb:19:in `process_action'
|
65
|
+
actionpack (4.2.8) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
66
|
+
actionpack (4.2.8) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
|
67
|
+
activesupport (4.2.8) lib/active_support/notifications.rb:164:in `block in instrument'
|
68
|
+
activesupport (4.2.8) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
69
|
+
activesupport (4.2.8) lib/active_support/notifications.rb:164:in `instrument'
|
70
|
+
actionpack (4.2.8) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
|
71
|
+
actionpack (4.2.8) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
|
72
|
+
activerecord (4.2.8) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
73
|
+
actionpack (4.2.8) lib/abstract_controller/base.rb:137:in `process'
|
74
|
+
actionview (4.2.8) lib/action_view/rendering.rb:30:in `process'
|
75
|
+
actionpack (4.2.8) lib/action_controller/metal.rb:196:in `dispatch'
|
76
|
+
actionpack (4.2.8) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
|
77
|
+
actionpack (4.2.8) lib/action_controller/metal.rb:237:in `block in action'
|
78
|
+
actionpack (4.2.8) lib/action_dispatch/routing/route_set.rb:74:in `call'
|
79
|
+
actionpack (4.2.8) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
|
80
|
+
actionpack (4.2.8) lib/action_dispatch/routing/route_set.rb:43:in `serve'
|
81
|
+
actionpack (4.2.8) lib/action_dispatch/journey/router.rb:43:in `block in serve'
|
82
|
+
actionpack (4.2.8) lib/action_dispatch/journey/router.rb:30:in `each'
|
83
|
+
actionpack (4.2.8) lib/action_dispatch/journey/router.rb:30:in `serve'
|
84
|
+
actionpack (4.2.8) lib/action_dispatch/routing/route_set.rb:817:in `call'
|
85
|
+
railties (4.2.8) lib/rails/engine.rb:518:in `call'
|
86
|
+
railties (4.2.8) lib/rails/railtie.rb:194:in `public_send'
|
87
|
+
railties (4.2.8) lib/rails/railtie.rb:194:in `method_missing'
|
88
|
+
actionpack (4.2.8) lib/action_dispatch/routing/mapper.rb:51:in `serve'
|
89
|
+
actionpack (4.2.8) lib/action_dispatch/journey/router.rb:43:in `block in serve'
|
90
|
+
actionpack (4.2.8) lib/action_dispatch/journey/router.rb:30:in `each'
|
91
|
+
actionpack (4.2.8) lib/action_dispatch/journey/router.rb:30:in `serve'
|
92
|
+
actionpack (4.2.8) lib/action_dispatch/routing/route_set.rb:817:in `call'
|
93
|
+
rack (1.6.5) lib/rack/etag.rb:24:in `call'
|
94
|
+
rack (1.6.5) lib/rack/conditionalget.rb:25:in `call'
|
95
|
+
rack (1.6.5) lib/rack/head.rb:13:in `call'
|
96
|
+
actionpack (4.2.8) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
|
97
|
+
actionpack (4.2.8) lib/action_dispatch/middleware/flash.rb:260:in `call'
|
98
|
+
rack (1.6.5) lib/rack/session/abstract/id.rb:225:in `context'
|
99
|
+
rack (1.6.5) lib/rack/session/abstract/id.rb:220:in `call'
|
100
|
+
actionpack (4.2.8) lib/action_dispatch/middleware/cookies.rb:560:in `call'
|
101
|
+
activerecord (4.2.8) lib/active_record/query_cache.rb:36:in `call'
|
102
|
+
activerecord (4.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call'
|
103
|
+
activerecord (4.2.8) lib/active_record/migration.rb:377:in `call'
|
104
|
+
actionpack (4.2.8) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
|
105
|
+
activesupport (4.2.8) lib/active_support/callbacks.rb:88:in `__run_callbacks__'
|
106
|
+
activesupport (4.2.8) lib/active_support/callbacks.rb:778:in `_run_call_callbacks'
|
107
|
+
activesupport (4.2.8) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
108
|
+
actionpack (4.2.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
109
|
+
actionpack (4.2.8) lib/action_dispatch/middleware/reloader.rb:73:in `call'
|
110
|
+
actionpack (4.2.8) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
|
111
|
+
actionpack (4.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
|
112
|
+
actionpack (4.2.8) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
113
|
+
railties (4.2.8) lib/rails/rack/logger.rb:38:in `call_app'
|
114
|
+
railties (4.2.8) lib/rails/rack/logger.rb:20:in `block in call'
|
115
|
+
activesupport (4.2.8) lib/active_support/tagged_logging.rb:68:in `block in tagged'
|
116
|
+
activesupport (4.2.8) lib/active_support/tagged_logging.rb:26:in `tagged'
|
117
|
+
activesupport (4.2.8) lib/active_support/tagged_logging.rb:68:in `tagged'
|
118
|
+
railties (4.2.8) lib/rails/rack/logger.rb:20:in `call'
|
119
|
+
actionpack (4.2.8) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
120
|
+
rack (1.6.5) lib/rack/methodoverride.rb:22:in `call'
|
121
|
+
rack (1.6.5) lib/rack/runtime.rb:18:in `call'
|
122
|
+
activesupport (4.2.8) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
123
|
+
rack (1.6.5) lib/rack/lock.rb:17:in `call'
|
124
|
+
actionpack (4.2.8) lib/action_dispatch/middleware/static.rb:120:in `call'
|
125
|
+
rack (1.6.5) lib/rack/sendfile.rb:113:in `call'
|
126
|
+
railties (4.2.8) lib/rails/engine.rb:518:in `call'
|
127
|
+
railties (4.2.8) lib/rails/application.rb:165:in `call'
|
128
|
+
rack (1.6.5) lib/rack/lock.rb:17:in `call'
|
129
|
+
rack (1.6.5) lib/rack/content_length.rb:15:in `call'
|
130
|
+
rack (1.6.5) lib/rack/handler/webrick.rb:88:in `service'
|
131
|
+
/Users/han/.rbenv/versions/2.1.8/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
|
132
|
+
/Users/han/.rbenv/versions/2.1.8/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
|
133
|
+
/Users/han/.rbenv/versions/2.1.8/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
|
134
|
+
|
135
|
+
|
136
|
+
Rendered /Users/han/.rbenv/versions/2.1.8/lib/ruby/gems/2.1.0/gems/actionpack-4.2.8/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.6ms)
|
137
|
+
Rendered /Users/han/.rbenv/versions/2.1.8/lib/ruby/gems/2.1.0/gems/actionpack-4.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms)
|
138
|
+
Rendered /Users/han/.rbenv/versions/2.1.8/lib/ruby/gems/2.1.0/gems/actionpack-4.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms)
|
139
|
+
Rendered /Users/han/.rbenv/versions/2.1.8/lib/ruby/gems/2.1.0/gems/actionpack-4.2.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (17.8ms)
|
140
|
+
|
141
|
+
|
142
|
+
Started GET "/reviewable/reviews" for ::1 at 2017-04-25 17:13:18 +0800
|
143
|
+
|
144
|
+
SyntaxError (/Users/han/Projects/aerfa/reviewable/app/controllers/reviewable/reviews_controller.rb:5: syntax error, unexpected ':', expecting =>
|
145
|
+
'hahaha': 1111
|
146
|
+
^):
|
147
|
+
/Users/han/Projects/aerfa/reviewable/app/controllers/reviewable/reviews_controller.rb:5: syntax error, unexpected ':', expecting =>
|
148
|
+
'hahaha': 1111
|
149
|
+
^
|
150
|
+
activesupport (4.2.8) lib/active_support/dependencies.rb:457:in `load'
|
151
|
+
activesupport (4.2.8) lib/active_support/dependencies.rb:457:in `block in load_file'
|
152
|
+
activesupport (4.2.8) lib/active_support/dependencies.rb:647:in `new_constants_in'
|
153
|
+
activesupport (4.2.8) lib/active_support/dependencies.rb:456:in `load_file'
|
154
|
+
activesupport (4.2.8) lib/active_support/dependencies.rb:354:in `require_or_load'
|
155
|
+
activesupport (4.2.8) lib/active_support/dependencies.rb:494:in `load_missing_constant'
|
156
|
+
activesupport (4.2.8) lib/active_support/dependencies.rb:184:in `const_missing'
|
157
|
+
activesupport (4.2.8) lib/active_support/inflector/methods.rb:263:in `const_get'
|
158
|
+
activesupport (4.2.8) lib/active_support/inflector/methods.rb:263:in `block in constantize'
|
159
|
+
activesupport (4.2.8) lib/active_support/inflector/methods.rb:259:in `each'
|
160
|
+
activesupport (4.2.8) lib/active_support/inflector/methods.rb:259:in `inject'
|
161
|
+
activesupport (4.2.8) lib/active_support/inflector/methods.rb:259:in `constantize'
|
162
|
+
activesupport (4.2.8) lib/active_support/dependencies.rb:566:in `get'
|
163
|
+
activesupport (4.2.8) lib/active_support/dependencies.rb:597:in `constantize'
|
164
|
+
actionpack (4.2.8) lib/action_dispatch/routing/route_set.rb:70:in `controller_reference'
|
165
|
+
actionpack (4.2.8) lib/action_dispatch/routing/route_set.rb:60:in `controller'
|
166
|
+
actionpack (4.2.8) lib/action_dispatch/routing/route_set.rb:39:in `serve'
|
167
|
+
actionpack (4.2.8) lib/action_dispatch/journey/router.rb:43:in `block in serve'
|
168
|
+
actionpack (4.2.8) lib/action_dispatch/journey/router.rb:30:in `each'
|
169
|
+
actionpack (4.2.8) lib/action_dispatch/journey/router.rb:30:in `serve'
|
170
|
+
actionpack (4.2.8) lib/action_dispatch/routing/route_set.rb:817:in `call'
|
171
|
+
railties (4.2.8) lib/rails/engine.rb:518:in `call'
|
172
|
+
railties (4.2.8) lib/rails/railtie.rb:194:in `public_send'
|
173
|
+
railties (4.2.8) lib/rails/railtie.rb:194:in `method_missing'
|
174
|
+
actionpack (4.2.8) lib/action_dispatch/routing/mapper.rb:51:in `serve'
|
175
|
+
actionpack (4.2.8) lib/action_dispatch/journey/router.rb:43:in `block in serve'
|
176
|
+
actionpack (4.2.8) lib/action_dispatch/journey/router.rb:30:in `each'
|
177
|
+
actionpack (4.2.8) lib/action_dispatch/journey/router.rb:30:in `serve'
|
178
|
+
actionpack (4.2.8) lib/action_dispatch/routing/route_set.rb:817:in `call'
|
179
|
+
rack (1.6.5) lib/rack/etag.rb:24:in `call'
|
180
|
+
rack (1.6.5) lib/rack/conditionalget.rb:25:in `call'
|
181
|
+
rack (1.6.5) lib/rack/head.rb:13:in `call'
|
182
|
+
actionpack (4.2.8) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
|
183
|
+
actionpack (4.2.8) lib/action_dispatch/middleware/flash.rb:260:in `call'
|
184
|
+
rack (1.6.5) lib/rack/session/abstract/id.rb:225:in `context'
|
185
|
+
rack (1.6.5) lib/rack/session/abstract/id.rb:220:in `call'
|
186
|
+
actionpack (4.2.8) lib/action_dispatch/middleware/cookies.rb:560:in `call'
|
187
|
+
activerecord (4.2.8) lib/active_record/query_cache.rb:36:in `call'
|
188
|
+
activerecord (4.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call'
|
189
|
+
activerecord (4.2.8) lib/active_record/migration.rb:377:in `call'
|
190
|
+
actionpack (4.2.8) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
|
191
|
+
activesupport (4.2.8) lib/active_support/callbacks.rb:88:in `__run_callbacks__'
|
192
|
+
activesupport (4.2.8) lib/active_support/callbacks.rb:778:in `_run_call_callbacks'
|
193
|
+
activesupport (4.2.8) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
194
|
+
actionpack (4.2.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
195
|
+
actionpack (4.2.8) lib/action_dispatch/middleware/reloader.rb:73:in `call'
|
196
|
+
actionpack (4.2.8) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
|
197
|
+
actionpack (4.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
|
198
|
+
actionpack (4.2.8) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
199
|
+
railties (4.2.8) lib/rails/rack/logger.rb:38:in `call_app'
|
200
|
+
railties (4.2.8) lib/rails/rack/logger.rb:20:in `block in call'
|
201
|
+
activesupport (4.2.8) lib/active_support/tagged_logging.rb:68:in `block in tagged'
|
202
|
+
activesupport (4.2.8) lib/active_support/tagged_logging.rb:26:in `tagged'
|
203
|
+
activesupport (4.2.8) lib/active_support/tagged_logging.rb:68:in `tagged'
|
204
|
+
railties (4.2.8) lib/rails/rack/logger.rb:20:in `call'
|
205
|
+
actionpack (4.2.8) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
206
|
+
rack (1.6.5) lib/rack/methodoverride.rb:22:in `call'
|
207
|
+
rack (1.6.5) lib/rack/runtime.rb:18:in `call'
|
208
|
+
activesupport (4.2.8) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
209
|
+
rack (1.6.5) lib/rack/lock.rb:17:in `call'
|
210
|
+
actionpack (4.2.8) lib/action_dispatch/middleware/static.rb:120:in `call'
|
211
|
+
rack (1.6.5) lib/rack/sendfile.rb:113:in `call'
|
212
|
+
railties (4.2.8) lib/rails/engine.rb:518:in `call'
|
213
|
+
railties (4.2.8) lib/rails/application.rb:165:in `call'
|
214
|
+
rack (1.6.5) lib/rack/lock.rb:17:in `call'
|
215
|
+
rack (1.6.5) lib/rack/content_length.rb:15:in `call'
|
216
|
+
rack (1.6.5) lib/rack/handler/webrick.rb:88:in `service'
|
217
|
+
/Users/han/.rbenv/versions/2.1.8/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
|
218
|
+
/Users/han/.rbenv/versions/2.1.8/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
|
219
|
+
/Users/han/.rbenv/versions/2.1.8/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
|
220
|
+
|
221
|
+
|
222
|
+
Rendered /Users/han/.rbenv/versions/2.1.8/lib/ruby/gems/2.1.0/gems/actionpack-4.2.8/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.3ms)
|
223
|
+
Rendered /Users/han/.rbenv/versions/2.1.8/lib/ruby/gems/2.1.0/gems/actionpack-4.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms)
|
224
|
+
Rendered /Users/han/.rbenv/versions/2.1.8/lib/ruby/gems/2.1.0/gems/actionpack-4.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms)
|
225
|
+
Rendered /Users/han/.rbenv/versions/2.1.8/lib/ruby/gems/2.1.0/gems/actionpack-4.2.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (14.5ms)
|
226
|
+
|
227
|
+
|
228
|
+
Started GET "/reviewable/reviews" for ::1 at 2017-04-25 17:13:35 +0800
|
229
|
+
Processing by Reviewable::ReviewsController#index as HTML
|
230
|
+
Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.0ms)
|
231
|
+
|
232
|
+
NoMethodError (undefined method `let' for #<Reviewable::ReviewsController:0x007fc807222320>):
|
233
|
+
/Users/han/Projects/aerfa/reviewable/app/controllers/reviewable/reviews_controller.rb:4:in `index'
|
234
|
+
actionpack (4.2.8) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
235
|
+
actionpack (4.2.8) lib/abstract_controller/base.rb:198:in `process_action'
|
236
|
+
actionpack (4.2.8) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
237
|
+
actionpack (4.2.8) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
|
238
|
+
activesupport (4.2.8) lib/active_support/callbacks.rb:117:in `call'
|
239
|
+
activesupport (4.2.8) lib/active_support/callbacks.rb:117:in `call'
|
240
|
+
activesupport (4.2.8) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
|
241
|
+
activesupport (4.2.8) lib/active_support/callbacks.rb:505:in `call'
|
242
|
+
activesupport (4.2.8) lib/active_support/callbacks.rb:505:in `call'
|
243
|
+
activesupport (4.2.8) lib/active_support/callbacks.rb:92:in `__run_callbacks__'
|
244
|
+
activesupport (4.2.8) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks'
|
245
|
+
activesupport (4.2.8) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
246
|
+
actionpack (4.2.8) lib/abstract_controller/callbacks.rb:19:in `process_action'
|
247
|
+
actionpack (4.2.8) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
248
|
+
actionpack (4.2.8) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
|
249
|
+
activesupport (4.2.8) lib/active_support/notifications.rb:164:in `block in instrument'
|
250
|
+
activesupport (4.2.8) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
251
|
+
activesupport (4.2.8) lib/active_support/notifications.rb:164:in `instrument'
|
252
|
+
actionpack (4.2.8) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
|
253
|
+
actionpack (4.2.8) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
|
254
|
+
activerecord (4.2.8) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
255
|
+
actionpack (4.2.8) lib/abstract_controller/base.rb:137:in `process'
|
256
|
+
actionview (4.2.8) lib/action_view/rendering.rb:30:in `process'
|
257
|
+
actionpack (4.2.8) lib/action_controller/metal.rb:196:in `dispatch'
|
258
|
+
actionpack (4.2.8) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
|
259
|
+
actionpack (4.2.8) lib/action_controller/metal.rb:237:in `block in action'
|
260
|
+
actionpack (4.2.8) lib/action_dispatch/routing/route_set.rb:74:in `call'
|
261
|
+
actionpack (4.2.8) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
|
262
|
+
actionpack (4.2.8) lib/action_dispatch/routing/route_set.rb:43:in `serve'
|
263
|
+
actionpack (4.2.8) lib/action_dispatch/journey/router.rb:43:in `block in serve'
|
264
|
+
actionpack (4.2.8) lib/action_dispatch/journey/router.rb:30:in `each'
|
265
|
+
actionpack (4.2.8) lib/action_dispatch/journey/router.rb:30:in `serve'
|
266
|
+
actionpack (4.2.8) lib/action_dispatch/routing/route_set.rb:817:in `call'
|
267
|
+
railties (4.2.8) lib/rails/engine.rb:518:in `call'
|
268
|
+
railties (4.2.8) lib/rails/railtie.rb:194:in `public_send'
|
269
|
+
railties (4.2.8) lib/rails/railtie.rb:194:in `method_missing'
|
270
|
+
actionpack (4.2.8) lib/action_dispatch/routing/mapper.rb:51:in `serve'
|
271
|
+
actionpack (4.2.8) lib/action_dispatch/journey/router.rb:43:in `block in serve'
|
272
|
+
actionpack (4.2.8) lib/action_dispatch/journey/router.rb:30:in `each'
|
273
|
+
actionpack (4.2.8) lib/action_dispatch/journey/router.rb:30:in `serve'
|
274
|
+
actionpack (4.2.8) lib/action_dispatch/routing/route_set.rb:817:in `call'
|
275
|
+
rack (1.6.5) lib/rack/etag.rb:24:in `call'
|
276
|
+
rack (1.6.5) lib/rack/conditionalget.rb:25:in `call'
|
277
|
+
rack (1.6.5) lib/rack/head.rb:13:in `call'
|
278
|
+
actionpack (4.2.8) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
|
279
|
+
actionpack (4.2.8) lib/action_dispatch/middleware/flash.rb:260:in `call'
|
280
|
+
rack (1.6.5) lib/rack/session/abstract/id.rb:225:in `context'
|
281
|
+
rack (1.6.5) lib/rack/session/abstract/id.rb:220:in `call'
|
282
|
+
actionpack (4.2.8) lib/action_dispatch/middleware/cookies.rb:560:in `call'
|
283
|
+
activerecord (4.2.8) lib/active_record/query_cache.rb:36:in `call'
|
284
|
+
activerecord (4.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call'
|
285
|
+
activerecord (4.2.8) lib/active_record/migration.rb:377:in `call'
|
286
|
+
actionpack (4.2.8) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
|
287
|
+
activesupport (4.2.8) lib/active_support/callbacks.rb:88:in `__run_callbacks__'
|
288
|
+
activesupport (4.2.8) lib/active_support/callbacks.rb:778:in `_run_call_callbacks'
|
289
|
+
activesupport (4.2.8) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
290
|
+
actionpack (4.2.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
291
|
+
actionpack (4.2.8) lib/action_dispatch/middleware/reloader.rb:73:in `call'
|
292
|
+
actionpack (4.2.8) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
|
293
|
+
actionpack (4.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
|
294
|
+
actionpack (4.2.8) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
295
|
+
railties (4.2.8) lib/rails/rack/logger.rb:38:in `call_app'
|
296
|
+
railties (4.2.8) lib/rails/rack/logger.rb:20:in `block in call'
|
297
|
+
activesupport (4.2.8) lib/active_support/tagged_logging.rb:68:in `block in tagged'
|
298
|
+
activesupport (4.2.8) lib/active_support/tagged_logging.rb:26:in `tagged'
|
299
|
+
activesupport (4.2.8) lib/active_support/tagged_logging.rb:68:in `tagged'
|
300
|
+
railties (4.2.8) lib/rails/rack/logger.rb:20:in `call'
|
301
|
+
actionpack (4.2.8) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
302
|
+
rack (1.6.5) lib/rack/methodoverride.rb:22:in `call'
|
303
|
+
rack (1.6.5) lib/rack/runtime.rb:18:in `call'
|
304
|
+
activesupport (4.2.8) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
305
|
+
rack (1.6.5) lib/rack/lock.rb:17:in `call'
|
306
|
+
actionpack (4.2.8) lib/action_dispatch/middleware/static.rb:120:in `call'
|
307
|
+
rack (1.6.5) lib/rack/sendfile.rb:113:in `call'
|
308
|
+
railties (4.2.8) lib/rails/engine.rb:518:in `call'
|
309
|
+
railties (4.2.8) lib/rails/application.rb:165:in `call'
|
310
|
+
rack (1.6.5) lib/rack/lock.rb:17:in `call'
|
311
|
+
rack (1.6.5) lib/rack/content_length.rb:15:in `call'
|
312
|
+
rack (1.6.5) lib/rack/handler/webrick.rb:88:in `service'
|
313
|
+
/Users/han/.rbenv/versions/2.1.8/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
|
314
|
+
/Users/han/.rbenv/versions/2.1.8/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
|
315
|
+
/Users/han/.rbenv/versions/2.1.8/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
|
316
|
+
|
317
|
+
|
318
|
+
Rendered /Users/han/.rbenv/versions/2.1.8/lib/ruby/gems/2.1.0/gems/actionpack-4.2.8/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.4ms)
|
319
|
+
Rendered /Users/han/.rbenv/versions/2.1.8/lib/ruby/gems/2.1.0/gems/actionpack-4.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms)
|
320
|
+
Rendered /Users/han/.rbenv/versions/2.1.8/lib/ruby/gems/2.1.0/gems/actionpack-4.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms)
|
321
|
+
Rendered /Users/han/.rbenv/versions/2.1.8/lib/ruby/gems/2.1.0/gems/actionpack-4.2.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (16.7ms)
|
322
|
+
|
323
|
+
|
324
|
+
Started GET "/reviewable/reviews" for ::1 at 2017-04-25 17:13:44 +0800
|
325
|
+
Processing by Reviewable::ReviewsController#index as HTML
|
326
|
+
Completed 406 Not Acceptable in 1ms (ActiveRecord: 0.0ms)
|
327
|
+
|
328
|
+
ActionController::UnknownFormat (ActionController::UnknownFormat):
|
329
|
+
actionpack (4.2.8) lib/action_controller/metal/mime_responds.rb:219:in `respond_to'
|
330
|
+
/Users/han/Projects/aerfa/reviewable/app/controllers/reviewable/reviews_controller.rb:7:in `index'
|
331
|
+
actionpack (4.2.8) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
332
|
+
actionpack (4.2.8) lib/abstract_controller/base.rb:198:in `process_action'
|
333
|
+
actionpack (4.2.8) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
334
|
+
actionpack (4.2.8) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
|
335
|
+
activesupport (4.2.8) lib/active_support/callbacks.rb:117:in `call'
|
336
|
+
activesupport (4.2.8) lib/active_support/callbacks.rb:117:in `call'
|
337
|
+
activesupport (4.2.8) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
|
338
|
+
activesupport (4.2.8) lib/active_support/callbacks.rb:505:in `call'
|
339
|
+
activesupport (4.2.8) lib/active_support/callbacks.rb:505:in `call'
|
340
|
+
activesupport (4.2.8) lib/active_support/callbacks.rb:92:in `__run_callbacks__'
|
341
|
+
activesupport (4.2.8) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks'
|
342
|
+
activesupport (4.2.8) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
343
|
+
actionpack (4.2.8) lib/abstract_controller/callbacks.rb:19:in `process_action'
|
344
|
+
actionpack (4.2.8) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
345
|
+
actionpack (4.2.8) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
|
346
|
+
activesupport (4.2.8) lib/active_support/notifications.rb:164:in `block in instrument'
|
347
|
+
activesupport (4.2.8) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
348
|
+
activesupport (4.2.8) lib/active_support/notifications.rb:164:in `instrument'
|
349
|
+
actionpack (4.2.8) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
|
350
|
+
actionpack (4.2.8) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
|
351
|
+
activerecord (4.2.8) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
352
|
+
actionpack (4.2.8) lib/abstract_controller/base.rb:137:in `process'
|
353
|
+
actionview (4.2.8) lib/action_view/rendering.rb:30:in `process'
|
354
|
+
actionpack (4.2.8) lib/action_controller/metal.rb:196:in `dispatch'
|
355
|
+
actionpack (4.2.8) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
|
356
|
+
actionpack (4.2.8) lib/action_controller/metal.rb:237:in `block in action'
|
357
|
+
actionpack (4.2.8) lib/action_dispatch/routing/route_set.rb:74:in `call'
|
358
|
+
actionpack (4.2.8) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
|
359
|
+
actionpack (4.2.8) lib/action_dispatch/routing/route_set.rb:43:in `serve'
|
360
|
+
actionpack (4.2.8) lib/action_dispatch/journey/router.rb:43:in `block in serve'
|
361
|
+
actionpack (4.2.8) lib/action_dispatch/journey/router.rb:30:in `each'
|
362
|
+
actionpack (4.2.8) lib/action_dispatch/journey/router.rb:30:in `serve'
|
363
|
+
actionpack (4.2.8) lib/action_dispatch/routing/route_set.rb:817:in `call'
|
364
|
+
railties (4.2.8) lib/rails/engine.rb:518:in `call'
|
365
|
+
railties (4.2.8) lib/rails/railtie.rb:194:in `public_send'
|
366
|
+
railties (4.2.8) lib/rails/railtie.rb:194:in `method_missing'
|
367
|
+
actionpack (4.2.8) lib/action_dispatch/routing/mapper.rb:51:in `serve'
|
368
|
+
actionpack (4.2.8) lib/action_dispatch/journey/router.rb:43:in `block in serve'
|
369
|
+
actionpack (4.2.8) lib/action_dispatch/journey/router.rb:30:in `each'
|
370
|
+
actionpack (4.2.8) lib/action_dispatch/journey/router.rb:30:in `serve'
|
371
|
+
actionpack (4.2.8) lib/action_dispatch/routing/route_set.rb:817:in `call'
|
372
|
+
rack (1.6.5) lib/rack/etag.rb:24:in `call'
|
373
|
+
rack (1.6.5) lib/rack/conditionalget.rb:25:in `call'
|
374
|
+
rack (1.6.5) lib/rack/head.rb:13:in `call'
|
375
|
+
actionpack (4.2.8) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
|
376
|
+
actionpack (4.2.8) lib/action_dispatch/middleware/flash.rb:260:in `call'
|
377
|
+
rack (1.6.5) lib/rack/session/abstract/id.rb:225:in `context'
|
378
|
+
rack (1.6.5) lib/rack/session/abstract/id.rb:220:in `call'
|
379
|
+
actionpack (4.2.8) lib/action_dispatch/middleware/cookies.rb:560:in `call'
|
380
|
+
activerecord (4.2.8) lib/active_record/query_cache.rb:36:in `call'
|
381
|
+
activerecord (4.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call'
|
382
|
+
activerecord (4.2.8) lib/active_record/migration.rb:377:in `call'
|
383
|
+
actionpack (4.2.8) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
|
384
|
+
activesupport (4.2.8) lib/active_support/callbacks.rb:88:in `__run_callbacks__'
|
385
|
+
activesupport (4.2.8) lib/active_support/callbacks.rb:778:in `_run_call_callbacks'
|
386
|
+
activesupport (4.2.8) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
387
|
+
actionpack (4.2.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
388
|
+
actionpack (4.2.8) lib/action_dispatch/middleware/reloader.rb:73:in `call'
|
389
|
+
actionpack (4.2.8) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
|
390
|
+
actionpack (4.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
|
391
|
+
actionpack (4.2.8) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
392
|
+
railties (4.2.8) lib/rails/rack/logger.rb:38:in `call_app'
|
393
|
+
railties (4.2.8) lib/rails/rack/logger.rb:20:in `block in call'
|
394
|
+
activesupport (4.2.8) lib/active_support/tagged_logging.rb:68:in `block in tagged'
|
395
|
+
activesupport (4.2.8) lib/active_support/tagged_logging.rb:26:in `tagged'
|
396
|
+
activesupport (4.2.8) lib/active_support/tagged_logging.rb:68:in `tagged'
|
397
|
+
railties (4.2.8) lib/rails/rack/logger.rb:20:in `call'
|
398
|
+
actionpack (4.2.8) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
399
|
+
rack (1.6.5) lib/rack/methodoverride.rb:22:in `call'
|
400
|
+
rack (1.6.5) lib/rack/runtime.rb:18:in `call'
|
401
|
+
activesupport (4.2.8) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
402
|
+
rack (1.6.5) lib/rack/lock.rb:17:in `call'
|
403
|
+
actionpack (4.2.8) lib/action_dispatch/middleware/static.rb:120:in `call'
|
404
|
+
rack (1.6.5) lib/rack/sendfile.rb:113:in `call'
|
405
|
+
railties (4.2.8) lib/rails/engine.rb:518:in `call'
|
406
|
+
railties (4.2.8) lib/rails/application.rb:165:in `call'
|
407
|
+
rack (1.6.5) lib/rack/lock.rb:17:in `call'
|
408
|
+
rack (1.6.5) lib/rack/content_length.rb:15:in `call'
|
409
|
+
rack (1.6.5) lib/rack/handler/webrick.rb:88:in `service'
|
410
|
+
/Users/han/.rbenv/versions/2.1.8/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
|
411
|
+
/Users/han/.rbenv/versions/2.1.8/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
|
412
|
+
/Users/han/.rbenv/versions/2.1.8/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
|
413
|
+
|
414
|
+
|
415
|
+
Rendered /Users/han/.rbenv/versions/2.1.8/lib/ruby/gems/2.1.0/gems/actionpack-4.2.8/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.2ms)
|
416
|
+
Rendered /Users/han/.rbenv/versions/2.1.8/lib/ruby/gems/2.1.0/gems/actionpack-4.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms)
|
417
|
+
Rendered /Users/han/.rbenv/versions/2.1.8/lib/ruby/gems/2.1.0/gems/actionpack-4.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms)
|
418
|
+
Rendered /Users/han/.rbenv/versions/2.1.8/lib/ruby/gems/2.1.0/gems/actionpack-4.2.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (14.5ms)
|
419
|
+
|
420
|
+
|
421
|
+
Started GET "/reviewable/reviews.json" for ::1 at 2017-04-25 17:14:35 +0800
|
422
|
+
Processing by Reviewable::ReviewsController#index as JSON
|
423
|
+
Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|