更好的错误Gem无法在本地浏览器中工作

时间:2015-09-26 20:21:31

标签: ruby-on-rails ruby better-errors-gem

我已尝试过此链接中的所有内容尝试解决此问题,但它不起作用

Better Errors Gem not working in local browser, no errors visible

这就是我在我的宝石文件中的内容

    group :development, :test do
  gem 'pry'
  gem 'pry-rails'
  gem 'rspec-rails'
  gem 'coderay'
gem 'erubis'
gem 'better_errors'
gem 'binding_of_caller'

  gem 'factory_girl_rails', '~> 4.0'
  gem 'database_cleaner'
  gem 'capistrano', require: false
  gem 'capistrano-rvm', require: false
  gem 'capistrano-rails', require: false
  gem 'capistrano-bundler', require: false
  gem 'capistrano3-puma', require: false
  gem 'webmock', require: false
  gem "rails-erd"
  gem 'byebug'
end

我在我的Mac http://localhost:3000/

上运行此功能

我已经设定了 config / environments / development.rb中的config.consider_all_requests_local = true

当我在development.rb

中添加此行时
BetterErrors::Middleware.allow_ip! "0.0.0.0/0"

我收到此错误

development.rb:55:in `block in <top (required)>': undefined method `allow_ip!' for BetterErrors::Middleware:Class (NoMethodError)

我也做了一个捆绑安装

这是我的development.rb

    Rails.application.configure do
  # Settings specified here will take precedence over those in config/application.rb.

  # In the development environment your application's code is reloaded on
  # every request. This slows down response time but is perfect for development
  # since you don't have to restart the web server when you make code changes.
  config.cache_classes = false

  # Do not eager load code on boot.
  config.eager_load = false

  # Show full error reports and disable caching.
  config.consider_all_requests_local = true
  config.action_controller.perform_caching = false

  # Don't care if the mailer can't send.
  config.action_mailer.raise_delivery_errors = false

  # Print deprecation notices to the Rails logger.
  config.active_support.deprecation = :log

  # Raise an error on page load if there are pending migrations.
  config.active_record.migration_error = :page_load

  # Debug mode disables concatenation and preprocessing of assets.
  # This option may cause significant delays in view rendering with a large
  # number of complex assets.
  config.assets.debug = false

  # Adds additional error checking when serving assets at runtime.
  # Checks for improperly declared sprockets dependencies.
  # Raises helpful error messages.
  config.assets.raise_runtime_errors = true



config.consider_all_requests_local = true

  # Raises error for missing translations
  # config.action_view.raise_on_missing_translations = true
  config.action_mailer.default_url_options = {host: 'localhost:3000'}
  config.action_mailer.default_options = {from: ENV['EMAIL_USER']}
  config.action_mailer.raise_delivery_errors = true
  config.action_mailer.delivery_method = :smtp
  config.action_mailer.smtp_settings = {
      address: 'smtp.gmail.com',
      port: 587,
      domain: ENV['DOMAIN'],
      authentication: 'plain',
      enable_starttls_auto: true,
      user_name: ENV['EMAIL_USER'],
      password: ENV['EMAIL_PASSWORD']
  }

  Paperclip.options[:command_path] = "/usr/local/bin/"



end

0 个答案:

没有答案