Sha256: a14b459000aab723146bc2f6c478f6a77a1a842da8855740848d85b33427f051
Contents?: true
Size: 649 Bytes
Versions: 26
Compression:
Stored size: 649 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 end
Version data entries
26 entries across 18 versions & 1 rubygems