hyde-ftp 0.2.0 → 0.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/README.md +5 -1
- data/hyde-ftp.gemspec +1 -1
- metadata +1 -1
data/README.md
CHANGED
|
@@ -17,13 +17,17 @@ Usage: `hyde new site_name`
|
|
|
17
17
|
Your config can be the same as the one in your Jekyll site's folder. Just add these lines at the end of `_config.yml` file. (no quotes needed)
|
|
18
18
|
|
|
19
19
|
`server: your-ftp-server.com`
|
|
20
|
+
|
|
20
21
|
`username: JohnDoe`
|
|
22
|
+
|
|
21
23
|
`password: myP4SSW0RD`
|
|
24
|
+
|
|
22
25
|
`local_dir: /home/username/my/website/directory`
|
|
26
|
+
|
|
23
27
|
`remote_dir: /MyRemoteDir/`
|
|
24
28
|
|
|
25
29
|
**Mac OSX/Linux Users**
|
|
26
30
|
Make sure that you have the full path to your directory. Using `~/MyDirectory/Here/` is not supported at this time, so you must use `/home/username/MyDirectory/Here/`.
|
|
27
31
|
|
|
28
32
|
**Windows Users**
|
|
29
|
-
|
|
33
|
+
Windows is not fully supported at this time. Windows is not supported by Jekyll either though so it shouldn't be a big deal.
|
data/hyde-ftp.gemspec
CHANGED