Class: ACLS::Parser
- Inherits:
-
Object
- Object
- ACLS::Parser
- Defined in:
- lib/acls/parser.rb
Class Method Summary collapse
-
.parse(base_dir) ⇒ Object
Given a base directory, parse all Ruby source files into a custom Tree representation.
Class Method Details
.parse(base_dir) ⇒ Object
Given a base directory, parse all Ruby source files into a custom Tree representation.
7 8 9 |
# File 'lib/acls/parser.rb', line 7 def parse(base_dir) parse_tree(Tree.new(nil, nil, base_dir), base_dir) end |