octopress-deploy 1.0.1 → 1.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e9d2703f3a60fefc2dad07bed5c89667893aaced
4
- data.tar.gz: 2186ef8eb38190518f08e43ac60962b0c635a51f
3
+ metadata.gz: 2af5039aee38f546a01d3f4433517c162deb1153
4
+ data.tar.gz: e2bd066149b99dbc4f85b2552e946e15413eb3a4
5
5
  SHA512:
6
- metadata.gz: 7d7ed8e4498f809bcdef3ef2ffe14b498485a3efa2fa0e3069f94f041a019dc8d09ba50862b9e3c5541a45dcba273f4ce46988bfa1cee86d2dd2c685a46c4db9
7
- data.tar.gz: 4c928e03d4248bde22c379365446a63bc33b9c2a01263b80d773c1276b65bc30840ef03dc79325b1d0dd33401339abd675435c3de6dba75d6b815eb8bbf7d792
6
+ metadata.gz: 5e4ba7fafe0ddc43969a6f4266bef6c245774f3593000f7ec94877ff9a3e19416109df3ddf5166ba14a8611656799176d317eb955f2e7f03dfb3350634a502a5
7
+ data.tar.gz: 2449bab2c6e132dded9f82f6c98284f43840f0b3d28053a10b57d3252893cbc88feb57e45d8178e3e03b44ac353ccf7a796a27705868e3e7819bf8cf4f771a6d
data/CHANGELOG.md CHANGED
@@ -1,11 +1,15 @@
1
1
  # Octopress Deploy Changelog
2
2
 
3
- ### 1.0.1 - 2014-12-27
4
- - Added command line options for setting contents of config file
5
- - Added support for Octopress docs
3
+ ### 1.0.2 - 2015-01-02
4
+
5
+ - Updated Octopress docs integration.
6
+
7
+ ### 1.0.1 - 2014-12-27
8
+ - Added command line options for setting contents of config file.
9
+ - Added support for Octopress docs.
6
10
 
7
11
  ### 1.0.0 - 2014-09-24
8
- - Deemed suitable for use
12
+ - Deemed suitable for use.
9
13
 
10
14
  ### 1.0.0 RC11 - 2014-07-06
11
15
  - Fix: Changed git add command to be more broadly suitable.
@@ -1,5 +1,5 @@
1
1
  module Octopress
2
2
  module Deploy
3
- VERSION = "1.0.1"
3
+ VERSION = "1.0.2"
4
4
  end
5
5
  end
@@ -18,7 +18,6 @@ Gem::Specification.new do |spec|
18
18
  spec.require_paths = ["lib"]
19
19
 
20
20
  spec.add_runtime_dependency "colorator"
21
- spec.add_runtime_dependency "octopress-docs"
22
21
 
23
22
  spec.add_development_dependency "bundler", "~> 1.3"
24
23
  spec.add_development_dependency "octopress"
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.1
4
+ version: 1.0.2
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-12-28 00:00:00.000000000 Z
11
+ date: 2015-01-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: colorator
@@ -24,20 +24,6 @@ dependencies:
24
24
  - - ">="
25
25
  - !ruby/object:Gem::Version
26
26
  version: '0'
27
- - !ruby/object:Gem::Dependency
28
- name: octopress-docs
29
- requirement: !ruby/object:Gem::Requirement
30
- requirements:
31
- - - ">="
32
- - !ruby/object:Gem::Version
33
- version: '0'
34
- type: :runtime
35
- prerelease: false
36
- version_requirements: !ruby/object:Gem::Requirement
37
- requirements:
38
- - - ">="
39
- - !ruby/object:Gem::Version
40
- version: '0'
41
27
  - !ruby/object:Gem::Dependency
42
28
  name: bundler
43
29
  requirement: !ruby/object:Gem::Requirement
@@ -139,7 +125,6 @@ files:
139
125
  - lib/octopress-deploy.rb
140
126
  - lib/octopress-deploy/commands.rb
141
127
  - lib/octopress-deploy/core_ext.rb
142
- - lib/octopress-deploy/docs.rb
143
128
  - lib/octopress-deploy/git.rb
144
129
  - lib/octopress-deploy/rsync.rb
145
130
  - lib/octopress-deploy/s3.rb
@@ -1,8 +0,0 @@
1
- require 'octopress-docs'
2
-
3
- Octopress::Docs.add({
4
- name: "Octopress Deploy",
5
- slug: "deploy",
6
- dir: File.expand_path(File.join(File.dirname(__FILE__), "../../")),
7
- base_url: "docs/deploy"
8
- })