Rails 2.0・その21(SOAPの組み込みを外に出した)
というわけで、SOAP のライブラリは、Rails2.0 では外に追い出されました。
次のコマンドでインストールできるだわさ(イワオ風)
gem install actionwebservice
root ユーザでね!
【広告】
gem install actionwebservice
ActionController::Base.asset_host = "assets%d.example.com"
ActionController::Base.asset_host = Proc.new { |source| "assets#{rand(3) + 1}.example.com" }
ActionController::Base.asset_host = Proc.new { |source|
if source.starts_with?('/images')
"http://images.example.com"
elsif source.starts_with?('/javascripts')
"http://javascripts.example.com"
else
"http://stylesheets.example.com"
end
}
<% for person in @people %>
<%=h person.name %>
<%= link_to 'Show', person %> # こういう短い書き方ができるので楽
<%= link_to 'Show', person_url(person) %> # こういう書き方でもOK
<%= link_to 'Show', person_path(person) %> # こういう長い書き方もできる
<% end %>
<% form_for(@person) do |f| %>
・
・
<% end %>
@person = Person.find(params[:id])
redirect_to(@person)
# gem update
# rails -v