Method: Breeze::Configuration#deploy_to_localhost
- Defined in:
- lib/breeze/tasks/configuration.rb
#deploy_to_localhost(file_pattern = 'config/breeze/configs/**/*') ⇒ Object
15 16 17 18 19 |
# File 'lib/breeze/tasks/configuration.rb', line 15 def deploy_to_localhost(file_pattern='config/breeze/configs/**/*') Dir[file_pattern].sort.each do |path| transform_and_deploy(path, [:force]) unless File.directory?(path) end end |