Top Level Namespace

Defined Under Namespace

Modules: Tbox Classes: String

Constant Summary collapse

ADD =

Description for when you pass in the 'add' method execution.

"Add a new component to the torquebox.yml file.  The type of component can be:\n\n  - application\n  - web\n  - ruby\n  - environment\n  - queue\n  - topic\n  - messaging\n  - task\n  - job\n  - service\n  - auth\n  - pooling\n\nFor more help on a particular subcommand, enter\n\n  tb add help [component]\n\n"
MESSAGING_LONG =
"Messaging\n=========\nFor more information, go to (http://torquebox.org/documentation/1.0.0/messaging.html#messaging-consumers) for information (figure 8.15, specifically):\n\n  messaging:\n    /queues/foo:\n      MyFooHandler:\n        filter: \"cost > 30\"\n        config:\n          type: \"premium\"\n          season: \"fall\"\n        concurrency: 2\n    /topics/bar:\n      MyBarHandler:\n        durable: true\n\n"
RACK =
"Create a new Rack Application template.  By default, will generate the following:\n\n  project_folder\n  |- app.rb         (Application stub)\n  |- config.ru      (Rackup file)\n  |- Rakefile       (Rake with Torquebox configs)\n  |- torquebox.yml  (Torquebox config)\n\nMuch of this would be much similar to a rails app, but if you \nhave an interest in doing something more lightweight, you might\nfind this template more appealing and minimal.\n"