从模块运行“生成控制器”命令

时间:2013-06-17 17:24:13

标签: ruby-on-rails ruby-on-rails-3.2

我知道在Rails中创建控制器的基本命令是使用Rails生成控制器

但是在代码中我看到下面这个结构的东西,并想知道如何做到这一点?

结构如下:

enter image description here

生成的代码看起来像这样,我需要类似的东西:

module Performance
  class BaseController < ApplicationController
  end
end


module Performance
  class GroupsController < BaseController
    def show
    end

    def index
    end
  end
end

1 个答案:

答案 0 :(得分:3)

要生成命名空间控制器,您应键入,例如:

rails g controller performance/base