Rails 控制器替代 Coach Ruby

码农软件 · 软件分类 · 常用工具包 · 2019-08-17 15:57:56

软件介绍

Coach 是 GoCardless 开源的另一个 Rails controllers,降低了 Rails 控制器的复杂度。Coach 包括共享行为绑定,系统更健壮;大量测试;提供整个链的静态分析。Coach 只要求你关注每个控制器端点上运行的东西。

GoCardless 已经把所有控制器代码都用 Coach 中间件代替了。

创建简单端点:

module Routes
  class Echo < Coach::Middleware
    def call
      # All middleware should return rack compliant responses
      [ 200, {}, [params[:word]] ]    end
  endend

本文地址:https://www.codercto.com/soft/d/12572.html

The Linux Programming Interface

The Linux Programming Interface

Michael Kerrisk / No Starch Press / 2010-11-6 / GBP 79.99

The Linux Programming Interface describes the Linux API (application programming interface)-the system calls, library functions, and other low-level interfaces that are used, directly or indirectly, b......一起来看看 《The Linux Programming Interface》 这本书的介绍吧!

HTML 编码/解码
HTML 编码/解码

HTML 编码/解码

Base64 编码/解码
Base64 编码/解码

Base64 编码/解码

SHA 加密
SHA 加密

SHA 加密工具