我试图建立自己的宝石,但是有错误.我认为这是因为我更改gemspec的文件名.起初这是我的结构:
myapp/ my-app.gemspec documentation.docx // other files
myapp/ new-name.gemspec doc/ documentation.docx // other files
然后,当我运行gem build new-name.gemspec我得到这个错误:
ERROR: While executing gem ... (Gem::InvalidSpecificationException) ["my-app.gemspec","documentation.docx"] are not files
它仍然认识到我的旧结构,而不是新的结构.
任何解决方案?
谢谢
解决方法
只是意识到我必须首先将我的新代码提交给Git.
我傻.