README.org in path53-0.4.6 vs README.org in path53-0.4.7
- old
+ new
@@ -15,9 +15,37 @@
#+BEGIN_SRC shell
gem install path53
#+END_SRC
+** Trusted Installation
+
+=path53= is cryptographically signed. You can verify that it hasn't been
+tampered with (and really should, since calling ~apply!~ acts on your AWS
+account with your credentials).
+
+A copy of the public key is included in the repository for verification.
+Assuming you've cloned the repository to =./path53=, you can add it to your list
+of trusted keys like so:
+
+#+BEGIN_SRC shell
+ gem cert --add ./path53/certs/colstrom.cert.pem
+#+END_SRC
+
+You can also fetch the key directly from GitHub.
+
+For modern shells like =fish=, use the following:
+
+#+BEGIN_SRC shell
+ gem cert --add (curl -s https://raw.githubusercontent.com/colstrom/path53/master/certs/colstrom.cert.pem | psub)
+#+END_SRC
+
+For vintage shells like =bash=, use the following:
+
+#+BEGIN_SRC shell
+ gem cert add <(curl -s https://raw.githubusercontent.com/colstrom/path53/master/certs/colstrom.cert.pem)
+#+END_SRC
+
* Usage
First, we need to require it.
#+BEGIN_SRC ruby