gpt4 book ai didi

ruby - 如何让 Thor 为系统安装的 .thor 文件找到模板?

转载 作者:数据小太阳 更新时间:2023-10-29 07:15:29 27 4
gpt4 key购买 nike

我已经创建了一个 .thor 脚本来按照我喜欢的方式设置一个新的 ruby​​ 项目。我正在使用 Thor::Actions directory 命令完全从模板目录结构构建应用程序,而不是使用 heredocs 内联定义它们。脚本目录看起来像这样:

rubynu.thor
template/
bin/
lib/
%app_name%.rb.tt
%app_name%
README.markdown
.gitignore
...

这真的很棒,让我可以根据自己的喜好轻松地可视化和更改模板的各个部分。

但是我想不出一个很好的方法让 thor 在使用 thor install ruby​​nu.thor 安装 .thor 文件后找到模板目录。安装将 .thor 文件的副本粘贴到 ~/.thor 中,但忽略了 template/ 目录,因此找不到模板了。

我不想对 source_root 路径进行硬编码或手动将模板目录复制到 ~/.thor。 thor 是否有内置的东西可以处理安装模板以及 .thor 文件?如果能在安装的时候打包在一起就好了。

如果不是,解决这个问题的最好方法是什么?当然,在某处使用模板文件的系统安装了雷神任务。你是怎么做到的?我想我可以绕过 thor install 并将其作为 gem 提供(尽管这看起来有点矫枉过正),或者硬着头皮将所有模板定义内联到一个巨大的 .thor 文件(稍后对结构进行更改不太愉快)。

作为引用,这是我正在使用的简单 .thor 文件:

class Rubynu < Thor::Group
include Thor::Actions

argument :app_name

def self.source_root
File.dirname(__FILE__)
end

def apply_directory_template
directory 'template', app_name
end
end

谢谢!

最佳答案

如果您设置 .thor像这样的文件:

<my_thor_commands>/
templates/
bin/
lib/
...
main.thor

thor install <my_thor_command>将查找名为 main.thor 的文件,然后在 <my_thor_command> 中安装它和其他任何东西.之后,您可以依靠:

def self.source_root
File.dirname(__FILE__)
end

这将为您提供通往 <my_thor_command> 的路径安装时。

关于ruby - 如何让 Thor 为系统安装的 .thor 文件找到模板?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8410840/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com