Я хочу использовать byebug для отладки моего приложения, но приложение никогда не останавливается, хотя я уже вставлял byebug
в свой код. Вот мой Gemfile.
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug', '~> 5.0.0'
# Access an IRB console on exception pages or by using <%= console %> in views
gem 'web-console', '~> 2.0'
end
Я положил byebug
в один из моих контроллеров.
def edit
byebug
present Ingredient::Update
end
Я уже сделал все мои запросы локальными в моем development.rb
. Я уже перезапускаю сервер пару раз.
config.consider_all_requests_local = true
Вот пример трассировки стека, который byebug
печатает только первую трассировку, а затем приложение продолжает выполнение следующей строки.
web_1 | [43, 52] in /recipe/app/controllers/ingredients_controller.rb
web_1 | 43: def update
web_1 | 44: run Ingredient::Update do |op|
web_1 | 45: return redirect_to op.model
web_1 | 46: end
web_1 | 47: byebug
web_1 | => 48: render action: :edit
web_1 | 49: end
web_1 | 50:
web_1 | 51: # DELETE /ingredients/1
web_1 | 52: # DELETE /ingredients/1.json
web_1 | (byebug) Rendered ingredients/edit.haml within layouts/application (264.1ms)
web_1 | Rendered layouts/_navigation.haml (45.0ms)
web_1 | Completed 200 OK in 2827ms (Views: 2764.0ms | ActiveRecord: 3.9ms)
web_1 |
web_1 |
web_1 | Started GET "/assets/application.self-1ca8529ef221ef9dba25e835f258c4e62f2f49bce400273a67e63d7d73be28ba.css?body=1" for 192.168.59.3 at 2015-07-28 06:46:00 +0000
Любая идея? Обновление Я использую docker-compose и docker внутри моего приложения Rails.