Sinatra其實也是一款 Rack 應用程式,Rack 是基底!
Sinatra 與 Ruby on Rails:機車 vs 汽車
$ gem install sinatra
require 'sinatra'
get '/' do
"hello world! #{ (1..43).to_a.sample }"
end
不會重新整理有點麻煩…
$ gem install sinatra-contrib
require 'sinatra'
# 如果你現在是開發模式(本地),我幫你require進來
# 正式上線不建議載入,因為效能會差一點
require 'sinatra/reloader' if development?
$ gem install puma
require 'sinatra'
get '/' do
erb :index
end
require 'sinatra'
get '/' do
@name = '孫悟空' # 實體變數
erb :index
end
我的名字是 <%= @name %>
Familiarity with Rakuten Travel QA Workflow (Hands-On Experience)
Dec 4, 2024A compilation of essential vocabulary gathered during my internship at Rakuten, with a sum of 94.
Mar 21, 2024在 Ruby 裡,幾乎什麼東西都是物件
Mar 1, 2024a Ruby Webserver Interface
Mar 1, 2024or
By clicking below, you agree to our terms of service.
New to HackMD? Sign up