Sha256: 6c4f1186867aaef1a0cc81760450a955e625a899b11375f2fafac3ba0895718b
Contents?: true
Size: 728 Bytes
Versions: 33
Compression:
Stored size: 728 Bytes
Contents
# -*- coding: utf-8 -*- class FilterControllerBase < ApplicationController def abracadabra_utf8 render :text => "アブラカダブラ" end def abracadabra_xhtml_utf8 response.content_type = "application/xhtml+xml" render :text => "アブラカダブラ" end def index @q = params[:q] end def empty render :text => "" end def rawdata send_data "アブラカダブラ", :type => 'application/octet-stream' end def textarea render :text => '<textarea hoge="fuu">アブラカダブラ</textarea>' end def input_tag render :text => '<input hoge="fuu" value="アブラカダブラ" />' end def nbsp_char render :text => '<a>アブラ カダブラ</a>' end end
Version data entries
33 entries across 33 versions & 1 rubygems