文件名称:sinatra-bind:用于将实例方法绑定到路由的 Sinatra 扩展
文件大小:7KB
文件格式:ZIP
更新时间:2024-07-28 17:54:23
Ruby
辛纳屈::绑定 将实例方法绑定到路由。 安装 将此行添加到应用程序的 Gemfile 中: gem 'sinatra-bind' 然后执行: $ bundle 或者自己安装: $ gem install sinatra-bind 用法 您可以平滑地定义一条没有阻塞的路线。 class App < Sinatra :: Base register Sinatra :: Bind def index "hello world" end on "/" , to : :index end 如果指定了 :type 选项,它将用作请求方法。 class App < Sinatra :: Base register Sinatra :: Bind def index "hello world" end on "/" , to : :i
【文件预览】:
sinatra-bind-master
----LICENSE.txt(1KB)
----lib()
--------sinatra-bind.rb(23B)
--------sinatra()
----Gemfile(143B)
----sinatra-bind.gemspec(867B)
----Rakefile(187B)
----.travis.yml(301B)
----test()
--------bind_test.rb(2KB)
--------helper.rb(465B)
----README.md(1KB)
----.gitignore(185B)