hyde-ftp 0.0.1 → 0.0.2
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/CHANGELOG +2 -1
- data/README.md +6 -7
- data/bin/hyde +1 -1
- data/hyde-ftp.gemspec +2 -4
- data/lib/hyde.rb +1 -1
- metadata +6 -6
data/CHANGELOG
CHANGED
|
@@ -1 +1,2 @@
|
|
|
1
|
-
Version 0.0.1: Beta Released.
|
|
1
|
+
Version 0.0.1: Beta Released.
|
|
2
|
+
Version 0.0.2: Fixed a few bugs.
|
data/README.md
CHANGED
|
@@ -16,13 +16,12 @@ Usage: `hyde new site_name`
|
|
|
16
16
|
#How to Set Up Your Config
|
|
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
|
-
`
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
`
|
|
19
|
+
`server: your-ftp-server.com`
|
|
20
|
+
`username: JohnDoe`
|
|
21
|
+
`password: myP4SSW0RD`
|
|
22
|
+
`local_dir: /home/username/my/website/directory`
|
|
23
|
+
`remote_dir: /MyRemoteDir/`
|
|
24
|
+
|
|
26
25
|
**Mac OSX/Linux Users**
|
|
27
26
|
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/`.
|
|
28
27
|
|
data/bin/hyde
CHANGED
data/hyde-ftp.gemspec
CHANGED
|
@@ -4,7 +4,7 @@ Gem::Specification.new do |s|
|
|
|
4
4
|
s.rubygems_version = '1.3.5'
|
|
5
5
|
|
|
6
6
|
s.name = 'hyde-ftp'
|
|
7
|
-
s.version = '0.0.
|
|
7
|
+
s.version = '0.0.2'
|
|
8
8
|
s.license = 'MIT'
|
|
9
9
|
s.date = '2013-09-12'
|
|
10
10
|
|
|
@@ -19,7 +19,7 @@ Gem::Specification.new do |s|
|
|
|
19
19
|
|
|
20
20
|
s.executables << 'hyde'
|
|
21
21
|
|
|
22
|
-
s.add_runtime_dependency("jekyll", "~> 1.0.
|
|
22
|
+
s.add_runtime_dependency("jekyll", "~> 1.0.3")
|
|
23
23
|
|
|
24
24
|
# = MANIFEST =
|
|
25
25
|
s.files = %w[
|
|
@@ -31,6 +31,4 @@ Gem::Specification.new do |s|
|
|
|
31
31
|
hyde-ftp.gemspec
|
|
32
32
|
]
|
|
33
33
|
# = MANIFEST =
|
|
34
|
-
|
|
35
|
-
s.test_files = s.files.select { |path| path =~ /^test\/test_.*\.rb/ }
|
|
36
34
|
end
|
data/lib/hyde.rb
CHANGED
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: hyde-ftp
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 27
|
|
5
5
|
prerelease:
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 0
|
|
9
|
-
-
|
|
10
|
-
version: 0.0.
|
|
9
|
+
- 2
|
|
10
|
+
version: 0.0.2
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Jesse Herrick
|
|
@@ -25,12 +25,12 @@ dependencies:
|
|
|
25
25
|
requirements:
|
|
26
26
|
- - ~>
|
|
27
27
|
- !ruby/object:Gem::Version
|
|
28
|
-
hash:
|
|
28
|
+
hash: 17
|
|
29
29
|
segments:
|
|
30
30
|
- 1
|
|
31
31
|
- 0
|
|
32
|
-
-
|
|
33
|
-
version: 1.0.
|
|
32
|
+
- 3
|
|
33
|
+
version: 1.0.3
|
|
34
34
|
type: :runtime
|
|
35
35
|
version_requirements: *id001
|
|
36
36
|
description: Hyde is an addon to the amazing Jekyll that makes deploying with FTP easier.
|