# File lib/generators/templates/application/merb_stack/doc/rdoc/generators/merb_generator.rb, line 804
        def full_file_source
            ret_str = ""
            File.open(@source_file_path, 'r') do |f| 
                while(!f.eof?) do
                    ret_str += f.readline()
                end
            end
            ret_str
        rescue
            "file not found -#{@source_file_path}-"
            #@source_file_path
        end