lib/shellwords.rb in shellwords-0.1.0 vs lib/shellwords.rb in shellwords-0.2.0

- old
+ new

@@ -66,9 +66,11 @@ # === Resources # # 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.2.0" + # Splits a string into an array of tokens in the same way the UNIX # Bourne shell does. # # argv = Shellwords.split('here are "two words"') # argv #=> ["here", "are", "two words"]