summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWilliam Woodruff <william@tuffbizz.com>2017-10-27 22:49:52 -0400
committerWilliam Woodruff <william@tuffbizz.com>2017-10-27 22:49:52 -0400
commit626389f090d615f20993ddf5a436e940e7d72ccf (patch)
tree112bdd3280df6f948140ee48079b738f040b7d97
parent6d75ba62bbf4f7e38e9977c4e374d0e9964b43ee (diff)
downloadslop-626389f090d615f20993ddf5a436e940e7d72ccf.tar.gz
README: Fix example to include required option
-rw-r--r--README.md5
1 files changed, 3 insertions, 2 deletions
diff --git a/README.md b/README.md
index 4d686ce..5c0142a 100644
--- a/README.md
+++ b/README.md
@@ -30,14 +30,15 @@ opts = Slop.parse do |o|
end
end
-ARGV #=> -v --host 192.168.0.1 --check-ssl-certificate
+ARGV #=> -v --login alice --host 192.168.0.1 --check-ssl-certificate
opts[:host] #=> 192.168.0.1
+opts[:login] #=> alice
opts.verbose? #=> true
opts.quiet? #=> false
opts.check_ssl_certificate? #=> true
-opts.to_hash #=> { host: "192.168.0.1", port: 80, verbose: true, quiet: false, check_ssl_certificate: true }
+opts.to_hash #=> { host: "192.168.0.1", login: "alice", port: 80, verbose: true, quiet: false, check_ssl_certificate: true }
```
Note that the block we've added to the `--version` flag will be executed