Return the full path from the destination root for the given path. Example for destination_root = ’/dest’:
destination_path('some/path.rb') == '/dest/some/path.rb'
Source Code
# File rails_generator/base.rb, line 153 def destination_path(relative_destination) File.join(destination_root, relative_destination) end
<code/>and<pre/>for code samples.