File: comment.rb

package info (click to toggle)
ruby-rgfa 1.3.1%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 824 kB
  • sloc: ruby: 5,649; makefile: 9
file content (13 lines) | stat: -rw-r--r-- 217 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
# A comment line of a RGFA file
class RGFA::Line::Comment < RGFA::Line

  RECORD_TYPE = :"#"
  REQFIELDS = [:content]
  PREDEFINED_OPTFIELDS = []
  DATATYPE = {
    :content => :cmt,
  }

  define_field_methods!

end