method

compiled_method_name_file_path_segment

compiled_method_name_file_path_segment(file_name)
private

No documentation available.

# File actionpack/lib/action_view/template_handlers/compilable.rb, line 85
      def compiled_method_name_file_path_segment(file_name)
        if file_name
          s = File.expand_path(file_name)
          s.sub!(/^#{Regexp.escape(File.expand_path(RAILS_ROOT))}/, '') if defined?(RAILS_ROOT)
          s.gsub!(/([^a-zA-Z0-9_])/) { $1.ord }
          s
        else
          (self.inline_template_count += 1).to_s
        end
      end