Sha256: c6ce4fd7420c1900addfe1ec7bf0d4fa3ec10d4a7836845bb8a3ce8f22e85160

Contents?: true

Size: 366 Bytes

Versions: 1

Compression:

Stored size: 366 Bytes

Contents

module Helping

  def self.specify_options(p)
    p.text "This is the help for helping"
  end
  
  class One
    def self.specify_options(p)
      p.text "This is the help for helping:one"
    end
  end
  
  module Sub
  
    class One
      def self.specify_options(p)
        p.text "This is the help for helping:sub:one"
      end    
    end
    
  end
  
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
ing-0.2.7 test/fixtures/help.ing.rb