Ruby 脚本如何检测它正在 irb 中运行?

发布于 2024-08-20 08:31:42 字数 245 浏览 5 评论 0原文

我有一个定义类的 Ruby 脚本。我希望脚本

BoolParser.generate :file_base=>'bool_parser'

仅在脚本作为可执行文件调用时才执行该语句,而不是在从 irb 中 require 时执行该语句(或通过 -r-r 在命令行上传递)代码>)。我可以用什么来包裹上面的语句以防止它在加载 Ruby 文件时执行?

I have a Ruby script that defines a class. I would like the script to execute the statement

BoolParser.generate :file_base=>'bool_parser'

only when the script is invoked as an executable, not when it is require'd from irb (or passed on the command line via -r). What can I wrap around the statement above to prevent it from executing whenever my Ruby file is loaded?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

守护在此方 2024-08-27 08:31:42

条件 $0 == __FILE__ ...

!/usr/bin/ruby1.8

class BoolParser

  def self.generate(args)
    p ['BoolParser.generate', args]
  end

end

if $0 == __FILE__
  BoolParser.generate(:file_base=>__FILE__)
end

...当从命令行运行脚本时为 true...

$ /tmp/foo.rb
["BoolParser.generate", {:file_base=>"/tmp/foo.rb"}]

...但当另一个 ruby​​ 脚本需要或加载文件时为 false。

$ irb1.8
irb(main):001:0> require '/tmp/foo'
=> true
irb(main):002:0> 

The condition $0 == __FILE__ ...

!/usr/bin/ruby1.8

class BoolParser

  def self.generate(args)
    p ['BoolParser.generate', args]
  end

end

if $0 == __FILE__
  BoolParser.generate(:file_base=>__FILE__)
end

... is true when the script is run from the command line...

$ /tmp/foo.rb
["BoolParser.generate", {:file_base=>"/tmp/foo.rb"}]

... but false when the file is required or loaded by another ruby script.

$ irb1.8
irb(main):001:0> require '/tmp/foo'
=> true
irb(main):002:0> 
何止钟意 2024-08-27 08:31:42

在 irb 中使用 $0

$0 的值是“irb”,

文件中是“/path/to/file”

解释 此处

use $0

in irb the value of $0 is "irb"

in your file is "/path/to/file"

an explanation here

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文