Sha256: 87e7cf878ded2c8c89ed4087ed2b50daffa6f3726e44ff79ab5d09a3753e804f
Contents?: true
Size: 950 Bytes
Versions: 36
Compression:
Stored size: 950 Bytes
Contents
module Vedeu module Interfaces # Allows the storing of interfaces and views. # class Repository < Vedeu::Repositories::Repository singleton_class.send(:alias_method, :interfaces, :repository) null Vedeu::Interfaces::Null real Vedeu::Interfaces::Interface # Returns the interfaces in zindex order. # # @example # Vedeu.interfaces.zindexed # # @return [Array<Vedeu::Interfaces::Interface>] # @see Vedeu::Interfaces::DSL#zindex def zindexed all.sort_by(&:zindex) end end # Interfaces class Interface repo Vedeu::Interfaces::Repository.repository end # Interface end # Interfaces # Manipulate the repository of interfaces. # # @example # Vedeu.interfaces # # @!method interfaces # @return [Vedeu::Interfaces::Repository] def_delegators Vedeu::Interfaces::Repository, :interfaces end # Vedeu
Version data entries
36 entries across 36 versions & 1 rubygems