Flowdock
method

find_by_namespace

Importance_1
v6.1.3.1 - Show latest stable - 0 notes - Class: Command
find_by_namespace(namespace, command_name = nil) public

Rails finds namespaces similar to Thor, it only adds one rule:

Command names must end with “_command.rb”. This is required because Rails looks in load paths and loads the command just before it’s going to be used.

find_by_namespace :webrat, :rails, :integration

Will search for the following commands:

"rails:webrat", "webrat:integration", "webrat"

Notice that “rails:commands:webrat” could be loaded as well, what Rails looks for is the first and last parts of the namespace.

Show source
Register or log in to add new notes.