generators/config/config_generator.rb in howitzer-2.0.3 vs generators/config/config_generator.rb in howitzer-2.1.0
- old
+ new
@@ -6,18 +6,28 @@
{ files:
[
{ source: 'boot.rb', destination: 'config/boot.rb' },
{ source: 'custom.yml', destination: 'config/custom.yml' },
{ source: 'capybara.rb', destination: 'config/capybara.rb' },
- { source: 'default.yml', destination: 'config/default.yml' }
+ { source: 'default.yml', destination: 'config/default.yml' },
+ { source: 'drivers/browserstack.rb', destination: 'config/drivers/browserstack.rb' },
+ { source: 'drivers/crossbrowsertesting.rb', destination: 'config/drivers/crossbrowsertesting.rb' },
+ { source: 'drivers/headless_chrome.rb', destination: 'config/drivers/headless_chrome.rb' },
+ { source: 'drivers/phantomjs.rb', destination: 'config/drivers/phantomjs.rb' },
+ { source: 'drivers/poltergeist.rb', destination: 'config/drivers/poltergeist.rb' },
+ { source: 'drivers/sauce.rb', destination: 'config/drivers/sauce.rb' },
+ { source: 'drivers/selenium.rb', destination: 'config/drivers/selenium.rb' },
+ { source: 'drivers/selenium_grid.rb', destination: 'config/drivers/selenium_grid.rb' },
+ { source: 'drivers/testingbot.rb', destination: 'config/drivers/testingbot.rb' },
+ { source: 'drivers/webkit.rb', destination: 'config/drivers/webkit.rb' }
] }
end
protected
def banner
- <<-EOF
+ <<-MSG
* Config files generation ...
- EOF
+ MSG
end
end
end