mugyu
5/18/2014 - 4:27 PM

Sintra で書捨てWEBアプリ

Sintra で書捨てWEBアプリ

# -*- coding: utf-8 -*-
require 'sinatra'

get '/hello/:name' do
  # locals でローカル変数をバインド
  erb :index, locals: {name: params[:name]}
end

__END__
@@index
hello, <%= name %>!