Sha256: 8ebb61a1de2c27597805b40444791073c86700508cd2f4f2ca57a4048ebd3723
Contents?: true
Size: 621 Bytes
Versions: 14
Compression:
Stored size: 621 Bytes
Contents
module Vedeu # Allows the storing of interfaces and views. # class Interfaces < Vedeu::Repository class << self alias_method :interfaces, :repository end # Eigenclass null Vedeu::Null::Interface real Vedeu::Interface # Returns the interfaces in zindex order. # # @example # Vedeu.interfaces.zindexed # # @return [Array<Vedeu::Interface>] # @see Vedeu::DSL::Interface#zindex def zindexed all.sort { |a, b| a.zindex <=> b.zindex } end end # Interfaces class Interface repo Vedeu::Interfaces.repository end # Interface end # Vedeu
Version data entries
14 entries across 14 versions & 1 rubygems