module KCommercial module Resources # Generator an code file class FileGenerator # initialize a new file generator # @param [Pathname] template_path the template file path, it may be an erb file. def initialize(template_path) @template_path = template_path end def generate(path, bind_params) end end end end