From 16bb5e7c1959e88ee9caaba6dec7052d4bac92f9 Mon Sep 17 00:00:00 2001 From: Sami Samhuri Date: Sun, 16 Jan 2022 18:25:49 -0800 Subject: [PATCH] s/GNU wordexp/wordexp/ --- README.md | 4 ++-- wordexp.gemspec | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 73ee30c..1390c82 100644 --- a/README.md +++ b/README.md @@ -4,9 +4,9 @@ [![Circle](https://circleci.com/gh/samsonjs/wordexp/tree/main.svg?style=shield)](https://app.circleci.com/pipelines/github/samsonjs/wordexp?branch=main) [![Code Climate Maintainability](https://api.codeclimate.com/v1/badges/21cc24badf15d19b5cec/maintainability)](https://codeclimate.com/github/samsonjs/wordexp/maintainability) -A Ruby gem for performing shell word expansion using [GNU wordexp][]. It's like [Shellwords][] turned up to 11. Not only does it split taking quotes into account, but it also expands environment variables and tildes, and runs subcommands in \``backticks`\` or `$(dollar parentheses)`. +A Ruby gem for performing shell word expansion using [wordexp][]. It's like [Shellwords][] turned up to 11. Not only does it split taking quotes into account, but it also expands environment variables and tildes, and runs subcommands in \``backticks`\` or `$(dollar parentheses)`. -[GNU wordexp]: https://www.gnu.org/software/libc/manual/html_node/Word-Expansion.html +[wordexp]: https://man7.org/linux/man-pages/man3/wordexp.3.html [Shellwords]: https://ruby-doc.org/stdlib-3.1.0/libdoc/shellwords/rdoc/Shellwords.html --- diff --git a/wordexp.gemspec b/wordexp.gemspec index 044adf4..edf122d 100644 --- a/wordexp.gemspec +++ b/wordexp.gemspec @@ -6,7 +6,7 @@ Gem::Specification.new do |spec| spec.authors = ['Sami Samhuri'] spec.email = ['sami@samhuri.net'] - spec.summary = 'A Ruby gem for performing shell word expansion using GNU wordexp' + spec.summary = 'A Ruby gem for performing shell word expansion using wordexp' spec.homepage = 'https://github.com/samsonjs/wordexp' spec.license = 'MIT' spec.required_ruby_version = '>= 2.6.0'