Sha256: 4864ad9d08bd8642073e17d68c830e6d99a750b6af848cfdb9e8d169a507b3d8
Contents?: true
Size: 457 Bytes
Versions: 8
Compression:
Stored size: 457 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 end
Version data entries
8 entries across 8 versions & 1 rubygems