init.rb
上传用户:netsea168
上传日期:2022-07-22
资源大小:4652k
文件大小:0k
源码类别:

Ajax

开发平台:

Others

  1. TypoPlugins.module_eval do
  2.   def self.convert_from(engine, options = {})
  3.     require "converters/base"
  4.     require "converters/#{engine}"
  5.     puts "converting #{engine.to_s.humanize}..."
  6.     "#{engine.to_s.camelize}Converter".constantize.convert(options)
  7.   end
  8. end