停下来
Stop It 是一个中间件,用于阻止请求 rake 应用程序。
安装
将此行添加到应用程序的 Gemfile 中:
gem 'stop_it'
然后执行:
$ bundle
或者自己安装:
$ gem install stop_it
用法
让我们看看如何在 Ruby on Rails 应用程序中使用 Stop It。 要将 Stop It 插入应用程序的中间件堆栈中,请打开 config.ru 文件并添加行
use StopIt
紧随其后
require ::File.expand_path('../config/environment', __FILE__)
以便文件包含与此类似的代码:
# This file is used by Rack-based servers to start the application.
require ::File.e
评论0
最新资源