Sha256: 315e716114c173727b0017d6c1bfcb17ec623efeb772c480da1e94990cbf5831
Contents?: true
Size: 933 Bytes
Versions: 12
Compression:
Stored size: 933 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
12 entries across 12 versions & 1 rubygems