我正在尝试构建自己的 gem,但出现了错误。我认为这是因为我更改了gemspec
. 起初这是我的结构:
myapp/
my-app.gemspec
documentation.docx
// other files
然后我更改名称并移动文件,如下所示:
myapp/
new-name.gemspec
doc/
documentation.docx
// other files
注意:我已经更改了所有代码,包括lib
以适应新名称
然后,当我运行时,gem build new-name.gemspec
我得到了这个错误:
ERROR: While executing gem ... (Gem::InvalidSpecificationException)
["my-app.gemspec", "documentation.docx"] are not files
它仍然识别我的旧结构而不是新结构。
有什么解决办法吗?
谢谢