当我运行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”方法,但这看起来不是很干。
答案 0 :(得分:12)
您可以使用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将不知道该怎么做。
答案 1 :(得分:1)
Thor的一个相当不足的文档特征是方法default_task。从您的Thor脚本中传递了一个符号,您可以将其设置为运行特定任务,并使用调用运行其他任务。
即:
default_task:connect_to_database;