1

我的应用程序中有一个目录结构。出于开发目的(可能还有其他目的),我目前有一个X具有类方法pwdcdls. 当我进入我的应用程序时,有没有办法使这些方法可用irb,例如:

2.1.5 :0 > pwd
/current_dir/

目前我正在做:

2.1.5 :0 > X.pwd
/current_dir/

这简直是​​不方便。

我可以简单地向现有课程添加一些内容的解决方案将是完美的,例如:

class X < Irb::main
  def self.pwd
    #stuff
  end
end

现在我并没有真正挖掘hirb,但如果有一个适用于hirbor的解决方案irb,我会试一试!谢谢你的帮助!

4

1 回答 1

4

在 Rails 中,当通过 IRB 启动 Rails 应用程序时,您可以有条件地将方法混合到控制台中。

这是使用文件console中的配置块完成的application.rb

module MyApp
  class Application < Rails::Application

    # ...

    console do
      # define the methods here
    end

  end
end

在您的情况下,有几种可能性。您可以简单地将方法委托给您的库。

module MyApp
  class Application < Rails::Application
    console do

      # delegate pwd to X
      def pwd
        X.pwd
      end

    end
  end
end

或者如果 X 是一个模块,你可以包含它

module MyApp
  class Application < Rails::Application
    console do
      Rails::ConsoleMethods.send :include, X
    end
  end
end
于 2015-01-17T09:55:55.537 回答