@@ -226,7 +226,7 @@ def convert(klass)
226226 def converted_from ( origin )
227227 # nothing to do by default. Subclasses may implement this.
228228 # See the RPM package class for an example.
229- end # def converted
229+ end # def converted_from
230230
231231 # Add a new source to this package.
232232 # The exact behavior depends on the kind of package being managed.
@@ -324,7 +324,7 @@ def files
324324
325325 def template_dir
326326 File . expand_path ( File . join ( File . dirname ( __FILE__ ) , ".." , ".." , "templates" ) )
327- end
327+ end # def template_dir
328328
329329 def template ( path )
330330 template_path = File . join ( template_dir , path )
@@ -437,7 +437,7 @@ def option(flag, param, help, options={}, &block)
437437
438438 help = "(#{ type } only) #{ help } "
439439 @options << [ flag , param , help , options , block ]
440- end # def options
440+ end # def option
441441
442442 # Apply the options for this package on the clamp command
443443 #
@@ -510,7 +510,7 @@ def write_scripts
510510 File . chmod ( 0755 , out )
511511 end
512512 end
513- end
513+ end # def write_scripts
514514
515515 # Get the contents of the script by a given name.
516516 #
@@ -547,7 +547,7 @@ def provides=(value)
547547 else
548548 @provides = value
549549 end
550- end
550+ end # def provides=
551551
552552 # General public API
553553 public ( :type , :initialize , :convert , :input , :output , :to_s , :cleanup , :files ,
0 commit comments