如何从 gemspec 文件获取版本?
有没有一种干净的方法从 .gemspec 文件中提取版本字符串? (gem 尚未安装)
例如,somethingcool.gemspec 是
Gem::Specification.new do |s|
s.name = "somethingcool"
s.version = "1.2.3"
... etc ...
end
我想提取“1.2.3”。
我可以把它找出来,但一定有更好的方法。
Is there a clean way to extract the version string from a .gemspec file? (The gem is not yet installed)
e.g. somethingcool.gemspec is
Gem::Specification.new do |s|
s.name = "somethingcool"
s.version = "1.2.3"
... etc ...
end
I want to extract "1.2.3".
I could grep it out but there must be a better way.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)