octopress-deploy 1.0.0.rc.9 → 1.0.0.rc.10
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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +8 -5
- data/README.md +1 -1
- data/assets/docs/changelog.markdown +8 -5
- data/assets/docs/index.markdown +1 -1
- data/lib/octopress-deploy.rb +1 -1
- data/lib/octopress-deploy/s3.rb +2 -2
- data/lib/octopress-deploy/version.rb +1 -1
- data/octopress-deploy.gemspec +2 -2
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f4580721f021dfc36234fac0e0ec89b28dc28375
|
4
|
+
data.tar.gz: 5090fccfc2df6d42a64205a87c02e8b73cd0c31b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1caae7786c95ec2992a8f29735682ee5b34e18f3b3c8701a791e11f0657e13ed4f22d08f2c7bdad2093087323e1c1a4bd055f07fda1cb37c8818547a15842756
|
7
|
+
data.tar.gz: 9e871d50622b25ea1d46d0a099987a9b77a6d52ff35383f573a929ad7c8a430278fbbce59283b074882e4de57bc01945c32652676722929e664a8309281bd6f3
|
data/CHANGELOG.md
CHANGED
@@ -1,15 +1,18 @@
|
|
1
1
|
# Octopress Deploy Changelog
|
2
2
|
|
3
|
-
|
4
3
|
## Current version
|
5
|
-
### 1.0.0 RC9 - 2014-05-31
|
6
4
|
|
7
|
-
|
8
|
-
- Fix:
|
9
|
-
- Fix: A Windows OS issue. [#30](https://github.com/octopress/deploy/pull/30).
|
5
|
+
### 1.0.0 RC10 - 2014-07-06
|
6
|
+
- Fix: Pass options to initialization when adding a bucket. [#34](https://github.com/octopress/deploy/pull/34)
|
10
7
|
|
11
8
|
## Past versions
|
12
9
|
|
10
|
+
### 1.0.0 RC9 - 2014-05-31
|
11
|
+
|
12
|
+
- New: S3 header configuration options. [#25](https://github.com/octopress/deploy/issues/25)
|
13
|
+
- Fix: `site_dir` defaults to `'_site'`. [#29](https://github.com/octopress/deploy/issues/29)
|
14
|
+
- Fix: A Windows OS issue. [#30](https://github.com/octopress/deploy/pull/30)
|
15
|
+
|
13
16
|
### 1.0.0 RC8 - 2014-05-08
|
14
17
|
|
15
18
|
- Now using SafeYAML for loading configurations.
|
data/README.md
CHANGED
@@ -3,16 +3,19 @@ title: "Octopress Deploy Changelog"
|
|
3
3
|
permalink: /changelog/
|
4
4
|
---
|
5
5
|
|
6
|
-
|
7
6
|
## Current version
|
8
|
-
### 1.0.0 RC9 - 2014-05-31
|
9
7
|
|
10
|
-
|
11
|
-
- Fix:
|
12
|
-
- Fix: A Windows OS issue. [#30](https://github.com/octopress/deploy/pull/30).
|
8
|
+
### 1.0.0 RC10 - 2014-07-06
|
9
|
+
- Fix: Pass options to initialization when adding a bucket. [#34](https://github.com/octopress/deploy/pull/34)
|
13
10
|
|
14
11
|
## Past versions
|
15
12
|
|
13
|
+
### 1.0.0 RC9 - 2014-05-31
|
14
|
+
|
15
|
+
- New: S3 header configuration options. [#25](https://github.com/octopress/deploy/issues/25)
|
16
|
+
- Fix: `site_dir` defaults to `'_site'`. [#29](https://github.com/octopress/deploy/issues/29)
|
17
|
+
- Fix: A Windows OS issue. [#30](https://github.com/octopress/deploy/pull/30)
|
18
|
+
|
16
19
|
### 1.0.0 RC8 - 2014-05-08
|
17
20
|
|
18
21
|
- Now using SafeYAML for loading configurations.
|
data/assets/docs/index.markdown
CHANGED
data/lib/octopress-deploy.rb
CHANGED
data/lib/octopress-deploy/s3.rb
CHANGED
@@ -30,7 +30,7 @@ module Octopress
|
|
30
30
|
#abort "Seriously, you should. Quitting..." unless Deploy.check_gitignore
|
31
31
|
@bucket = @s3.buckets[@bucket_name]
|
32
32
|
if !@bucket.exists?
|
33
|
-
abort "Bucket not found: '#{@bucket_name}'. Check your configuration or create a bucket using: `octopress deploy
|
33
|
+
abort "Bucket not found: '#{@bucket_name}'. Check your configuration or create a bucket using: `octopress deploy add-bucket`"
|
34
34
|
else
|
35
35
|
puts "Syncing #{@local} files to #{@bucket_name} on S3."
|
36
36
|
write_files
|
@@ -42,7 +42,7 @@ module Octopress
|
|
42
42
|
def pull
|
43
43
|
@bucket = @s3.buckets[@bucket_name]
|
44
44
|
if !@bucket.exists?
|
45
|
-
abort "Bucket not found: '#{@bucket_name}'. Check your configuration or create a bucket using: `octopress deploy
|
45
|
+
abort "Bucket not found: '#{@bucket_name}'. Check your configuration or create a bucket using: `octopress deploy add-bucket`"
|
46
46
|
else
|
47
47
|
puts "Syncing #{@bucket_name} files to #{@pull_dir} on S3."
|
48
48
|
@bucket.objects.each do |object|
|
data/octopress-deploy.gemspec
CHANGED
@@ -8,8 +8,8 @@ Gem::Specification.new do |spec|
|
|
8
8
|
spec.version = Octopress::Deploy::VERSION
|
9
9
|
spec.authors = ["Brandon Mathis"]
|
10
10
|
spec.email = ["brandon@imathis.com"]
|
11
|
-
spec.description = %q{Deploy Octopress and Jekyll sites easily}
|
12
|
-
spec.summary = %q{Deploy Octopress and Jekyll sites easily}
|
11
|
+
spec.description = %q{Deploy Octopress and Jekyll sites easily.}
|
12
|
+
spec.summary = %q{Deploy Octopress and Jekyll sites easily.}
|
13
13
|
spec.homepage = "https://github.com/octopress/deploy"
|
14
14
|
spec.license = "MIT"
|
15
15
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: octopress-deploy
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.0.rc.
|
4
|
+
version: 1.0.0.rc.10
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Brandon Mathis
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-
|
11
|
+
date: 2014-07-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: octopress
|
@@ -80,7 +80,7 @@ dependencies:
|
|
80
80
|
- - ">="
|
81
81
|
- !ruby/object:Gem::Version
|
82
82
|
version: '0'
|
83
|
-
description: Deploy Octopress and Jekyll sites easily
|
83
|
+
description: Deploy Octopress and Jekyll sites easily.
|
84
84
|
email:
|
85
85
|
- brandon@imathis.com
|
86
86
|
executables: []
|
@@ -135,7 +135,7 @@ rubyforge_project:
|
|
135
135
|
rubygems_version: 2.2.2
|
136
136
|
signing_key:
|
137
137
|
specification_version: 4
|
138
|
-
summary: Deploy Octopress and Jekyll sites easily
|
138
|
+
summary: Deploy Octopress and Jekyll sites easily.
|
139
139
|
test_files:
|
140
140
|
- test/.gitignore
|
141
141
|
- test/Gemfile
|