class Object
Constants
- DOMAIN
- DOMAIN_WITH_PROTOCOL
- PROTOCOL
Public Instance Methods
require_all(path)
click to toggle source
# File lib/texit.rb, line 5 def require_all(path) glob = File.join(File.dirname(__FILE__), path, '*.rb') Dir[glob].each do |f| require f end end