octopress-deploy 1.0.0.rc.9 → 1.0.0.rc.10

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 9ef41485f860af0564de3ea78c84c486da797d39
4
- data.tar.gz: 588bc538b038234a285f95aaff34f7b38631d5be
3
+ metadata.gz: f4580721f021dfc36234fac0e0ec89b28dc28375
4
+ data.tar.gz: 5090fccfc2df6d42a64205a87c02e8b73cd0c31b
5
5
  SHA512:
6
- metadata.gz: fe6a2c50c206d7c38d7ed6249701a2751fcc1efa46311ba1108170000e69b401998f23b515e0d5f9e3410066079033af062eed5f580d9528a95efa4f17ded850
7
- data.tar.gz: fdd2b7dc8bf51523c018bd0062497993873ef64fc771832eac33df6b560fb8bc8751e9cc80d313a72c2b6ac24c65e319cbc43dab5a2372735a1276c753bd574a
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
- - New: S3 header configuration options. [#25](https://github.com/octopress/deploy/issues/25')
8
- - Fix: `site_dir` defaults to `'_site'`. [#29](https://github.com/octopress/deploy/issues/29')
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
@@ -8,7 +8,7 @@ Currently this gem supports deploying static sites using S3, Git and Rsync. Pull
8
8
 
9
9
  Add this line to your application's Gemfile:
10
10
 
11
- gem 'octopress-deploy', '~> 1.0.0.rc.8'
11
+ gem 'octopress-deploy', '~> 1.0.0.rc.10'
12
12
 
13
13
  And then execute:
14
14
 
@@ -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
- - New: S3 header configuration options. [#25](https://github.com/octopress/deploy/issues/25')
11
- - Fix: `site_dir` defaults to `'_site'`. [#29](https://github.com/octopress/deploy/issues/29')
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.
@@ -10,7 +10,7 @@ Currently this gem supports deploying static sites using S3, Git and Rsync. Pull
10
10
 
11
11
  Add this line to your application's Gemfile:
12
12
 
13
- gem 'octopress-deploy', '~> 1.0.0.rc.8'
13
+ gem 'octopress-deploy', '~> 1.0.0.rc.10'
14
14
 
15
15
  And then execute:
16
16
 
@@ -44,7 +44,7 @@ module Octopress
44
44
 
45
45
  def self.add_bucket(options={})
46
46
  options = merge_configs(options)
47
- get_deployment_method(options).new().add_bucket()
47
+ get_deployment_method(options).new(options).add_bucket()
48
48
  end
49
49
 
50
50
  def self.merge_configs(options={})
@@ -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 add_bucket`"
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 add_bucket`"
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|
@@ -1,5 +1,5 @@
1
1
  module Octopress
2
2
  module Deploy
3
- VERSION = "1.0.0.rc.9"
3
+ VERSION = "1.0.0.rc.10"
4
4
  end
5
5
  end
@@ -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.9
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-05-31 00:00:00.000000000 Z
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