Top Level Namespace
Defined Under Namespace
Constant Summary collapse
- DOCLI_VERSION =
"0.0.1"
Instance Method Summary collapse
Instance Method Details
#require_all(path) ⇒ Object
1 2 3 4 5 6 |
# 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 |