Ruby – Thor首先执行特定任务

前端之家收集整理的这篇文章主要介绍了Ruby – Thor首先执行特定任务前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
当我运行Thor任务时,是否可以先调用特定任务?

我的Thorfile:

class Db < Thor

  desc "show_Version","some description ..."
  def show_version # <= needs a database connection
    puts ActiveRecord::Migrator.current_version
  end

  private

  def connect_to_database # <= call this always when a task from this file is executed
    # connect here to database
  end

end

我可以在每个任务中编写“connect_to_database”方法,但这似乎不是很干.

解决方法

您可以使用invoke来运行其他任务:
def show_version
  invoke :connect_to_database
  # ...
end

这也将确保它们只运行一次,否则你可以像往常一样调用方法,例如

def show_version
  connect_to_database
  # ...
end

或者您可以将调用添加到构造函数中,以使其在每次调用中首先运行:

def initialize(*args)
  super
  connecto_to_database
end

对super的调用非常重要,如果没有它,Thor将不知道该怎么做.

原文链接:https://www.f2er.com/ruby/268150.html

猜你在找的Ruby相关文章