Module Rudy::Metadata::InstanceMethods

  1. lib/rudy/metadata.rb

All classes which include Rudy::Metadata must reimplement the method stubs in this module. These methods only raise exceptions.

Methods

public class

  1. name
  2. postprocess
  3. valid?

Public class methods

name ()
[show source]
     # File lib/rudy/metadata.rb, line 151
151:         def name; raise "implement name"; end
postprocess ()
[show source]
     # File lib/rudy/metadata.rb, line 152
152:         def postprocess; raise "implement postprocess"; end
valid? ()
[show source]
     # File lib/rudy/metadata.rb, line 150
150:         def valid?; raise "implement valid?"; end