9

我正在尝试构建自己的 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

它仍然识别我的旧结构而不是新结构。

有什么解决办法吗?

谢谢

4

1 回答 1

30

刚刚意识到我必须先将我的新代码提交给 Git。

傻我。

于 2013-07-31T02:39:50.473 回答