class Object
Public Class Methods
hankaku_filter(options={})
click to toggle source
# File lib/jpmobile/filter.rb, line 5 def self.hankaku_filter(options={}) before_action Jpmobile::HankakuFilter.new(options) after_action Jpmobile::HankakuFilter.new(options) end
mobile_filter(options={})
click to toggle source
# File lib/jpmobile/filter.rb, line 10 def self.mobile_filter(options={}) STDERR.puts "Method mobile_filter is now deprecated. Use hankaku_filter instead for Hankaku-conversion." self.hankaku_filter(options) end