File: tree.rb

package info (click to toggle)
ruby-grit 2.8.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 336 kB
  • sloc: ruby: 3,643; makefile: 4
file content (10 lines) | stat: -rw-r--r-- 123 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
module Grit
  class Tree

    alias_method :old_name, :name

    def name
      GritExt.encode! old_name
    end
  end
end