Rack

  다른 뜻에 대해서는 lag 문서를 참조하십시오.
  다른 뜻에 대해서는 서버 랙 문서를 참조하십시오.

1 개요[ | ]

Rack
  • Ruby 웹 서버 인터페이스 미들웨어
  • MIT 라이선스

 

# my_rack_app.rb
 
require 'rack'
 
app = Proc.new do |env|
    ['200', {'Content-Type' => 'text/html'}, ['A barebones rack app.']]
end
 
Rack::Handler::WEBrick.run app
# config.ru
 
run Proc.new { |env| ['200', {'Content-Type' => 'text/html'}, ['get rack\'d']] }

2 같이 보기[ | ]

3 참고[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}