[ruby/shellwords] Expose Shellwords::VERSION

https://github.com/ruby/shellwords/commit/e38b8b026a
This commit is contained in:
Hiroshi SHIBATA 2023-03-30 14:09:37 +09:00 коммит произвёл git
Родитель 61bd69470a
Коммит 84d11498c2
2 изменённых файлов: 13 добавлений и 2 удалений

Просмотреть файл

@ -1,6 +1,14 @@
name = File.basename(__FILE__, ".gemspec")
version = ["lib", Array.new(name.count("-")+1).join("/")].find do |dir|
break File.foreach(File.join(__dir__, dir, "#{name.tr('-', '/')}.rb")) do |line|
/^\s*VERSION\s*=\s*"(.*)"/ =~ line and break $1
end rescue nil
end
Gem::Specification.new do |spec|
spec.name = "shellwords"
spec.version = "0.1.0"
spec.name = name
spec.version = version
spec.authors = ["Akinori MUSHA"]
spec.email = ["knu@idaemons.org"]

Просмотреть файл

@ -68,6 +68,9 @@
# 1: {IEEE Std 1003.1-2008, 2016 Edition, the Shell & Utilities volume}[http://pubs.opengroup.org/onlinepubs/9699919799/utilities/contents.html]
module Shellwords
VERSION = "0.1.0"
# Splits a string into an array of tokens in the same way the UNIX
# Bourne shell does.
#