class Object
Constants
- DOCLI_VERSION
Public Instance Methods
require_all(path)
click to toggle source
# File lib/docli.rb, line 1 def require_all(path) glob = File.join(File.dirname(__FILE__), path, "*.rb") Dir[glob].sort.each do |f| require f end end