Sha256: 0bf72b6f44ee0dc526cdfcec259199dc30721c7088c00452da9a7e7a8589d4ed
Contents?: true
Size: 1.08 KB
Versions: 5
Compression:
Stored size: 1.08 KB
Contents
module Vedeu # Binds various events for running and manipulating Vedeu. # # @note # The methods these modules use are private, and should not be called # directly, however the produced events are all public and are highly # recommended to be used. # # Unbinding any of these events is likely to cause problems, so I would # advise leaving them alone. A safe rule: when the name starts and ends with # an underscore, it's probably used by Vedeu internally. # module Bindings extend self # Setup events for running Vedeu. This method is called by Vedeu. # # @return [TrueClass] def setup! Vedeu::Events::Repository.reset! Vedeu::Bindings::Application.setup! Vedeu::Bindings::Document.setup! Vedeu::Bindings::Visibility.setup! Vedeu::Bindings::Movement.setup! Vedeu::Bindings::Menus.setup! Vedeu::Bindings::DRB.setup! Vedeu::Bindings::Focus.setup! Vedeu::Bindings::Refresh.setup! Vedeu::Bindings::System.setup! true end end # Bindings end # Vedeu Vedeu::Bindings.setup!
Version data entries
5 entries across 5 versions & 1 rubygems