hyde-ftp 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (6) hide show
  1. data/CHANGELOG +2 -1
  2. data/README.md +6 -7
  3. data/bin/hyde +1 -1
  4. data/hyde-ftp.gemspec +2 -4
  5. data/lib/hyde.rb +1 -1
  6. 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
- server: your-ftp-server.com
21
- username: JohnDoe
22
- password: myP4SSW0RD
23
- local_dir: /home/username/my/website/directory
24
- remote_dir: /MyRemoteDir/
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
@@ -131,5 +131,5 @@ when "new_site"
131
131
  when "help"
132
132
  $jekyll.help
133
133
  else
134
- puts "You didn't give me a command."
134
+ puts "You didn't give me a command.\nRun 'hyde help' to see a command list."
135
135
  end
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.1'
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.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
@@ -131,5 +131,5 @@ when "new_site"
131
131
  when "help"
132
132
  $jekyll.help
133
133
  else
134
- puts "You didn't give me a command."
134
+ puts "You didn't give me a command.\nRun 'hyde help' to see a command list."
135
135
  end
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: 29
4
+ hash: 27
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 0
9
- - 1
10
- version: 0.0.1
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: 23
28
+ hash: 17
29
29
  segments:
30
30
  - 1
31
31
  - 0
32
- - 0
33
- version: 1.0.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.