Top Level Namespace
Defined Under Namespace
Modules: Contao, TechnoGate Classes: Object
Instance Method Summary collapse
Instance Method Details
#print_help ⇒ Object
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
# File 'lib/contao/commands/help.rb', line 1 def print_help puts " Welcome to Contao!\n\n This gem will help you to quickly develop a website using Contao CMS\n which has pre-built support for Sass, Compass, CoffeeScript, Jasmine\n and Capistrano.\n\n It also feature hashed assets served by the Contao Assets extension,\n which allows you to have an md5 appended to each of your assets URL on\n the production site.\n\n The integration with Capistrano allows you to quickly deploy, copy\n assets, import database and even upload media such as images and PDFs\n all from the command line using Capistrano.\n\n To generate a new project, use the following command:\n\n $ contao new /path/to/application\n\n The generated application will be created at /path/to/application and the\n application name would be set to the last component in the path, in this\n case it would be application\n EOH\nend\n".gsub(/ [ ]+/, ' ') |