Method: Thermite::Config#ruby_path
- Defined in:
- lib/thermite/config.rb
#ruby_path(*path_components) ⇒ Object
Generate a path relative to #ruby_toplevel_dir, given the path_components that are passed
to File.join.
149 150 151 |
# File 'lib/thermite/config.rb', line 149 def ruby_path(*path_components) File.join(ruby_toplevel_dir, *path_components) end |