我做了一个桌面应用程序,我正在使用 gtk。我转换为我的应用程序 gem 项目。我的 gemspec 文件是这样的
s.name = 'project_name'
s.version = '1.0.0'
s.files = ['lib/editor.rb', 'lib/utils.rb', 'lib/messages.rb',
'lib/lang.rb','lib/images/subhead.png']
.
.
我将其构建为 gem,并将其安装为 gem。好的。我尝试使用 irb,需要“编辑器”,但它给了我错误。标准错误是
GLib::FileError: Failed to open file 'lib/images/subhead.png': No such file or directory from /var/lib/gems/1.9.1/gems/..
为什么?我在 editor.rb 中使用 png 文件。它给了我错误。我该如何解决?