Method: Staticky::Files#cp
- Defined in:
- lib/staticky/files.rb
#cp(source, destination) ⇒ Object
Copies source into destination. All the intermediate directories are created. If the destination already exists, it overrides the contents.
200 201 202 |
# File 'lib/staticky/files.rb', line 200 def cp(source, destination) adapter.cp(source, destination) end |