File: blank.rb

package info (click to toggle)
ruby-jbuilder 2.12.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 304 kB
  • sloc: ruby: 2,112; makefile: 3
file content (11 lines) | stat: -rw-r--r-- 131 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
class Jbuilder
  class Blank
    def ==(other)
      super || Blank === other
    end

    def empty?
      true
    end
  end
end