capistrano-jekyll 0.1.0 → 0.2.0
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/README.md +3 -3
- data/lib/capistrano/tasks/jekyll.rake +5 -5
- data/lib/capistrano-jekyll/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5c61bd8c4d10e1bdbe1f8acd95597941f8e6f778
|
4
|
+
data.tar.gz: 4a44bfc35f13cfd778a52cddfdc810d67551311e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9f6416defa61a7c59d7c36e3b5ae48f6638bacef7f47642535672bd922394f0a4cef27854cac3587af0080e3b74ad72f2a5363a4a5e73efe8cc4c9cdc2372bd8
|
7
|
+
data.tar.gz: bcbe9fbb951865230411977880744a9b467a7123831db7a8ac029c5ea0d3ead2c6a21d702c41900767f92abdd403dc65141cf6464e36dd525e6a3d3194f6315d
|
data/README.md
CHANGED
@@ -25,11 +25,11 @@ Require in *Capfile* to use the default task:
|
|
25
25
|
```ruby
|
26
26
|
require 'capistrano/jekyll'
|
27
27
|
```
|
28
|
-
**jekyll:build** task will run after **deploy:
|
28
|
+
**jekyll:build** task will run after **deploy:updated** as part of Capistrano's default deploy, or can be run in isolation with `bundle exec cap production jekyll:build`
|
29
29
|
|
30
30
|
### List of tasks
|
31
|
-
* `cap jekyll:build # Build
|
32
|
-
* `cap jekyll:doctor #
|
31
|
+
* `cap jekyll:build # Build the website using Jekyll`
|
32
|
+
* `cap jekyll:doctor # Print Jekyll deprecation warnings`
|
33
33
|
|
34
34
|
## Contributing
|
35
35
|
|
@@ -1,22 +1,22 @@
|
|
1
1
|
desc 'Jekyll integration'
|
2
2
|
namespace :jekyll do
|
3
|
-
desc 'Build
|
3
|
+
desc 'Build the website using Jekyll'
|
4
4
|
task :build do
|
5
5
|
on roles(:web) do
|
6
|
-
within
|
6
|
+
within release_path do
|
7
7
|
execute :jekyll, 'build'
|
8
8
|
end
|
9
9
|
end
|
10
10
|
end
|
11
11
|
|
12
|
-
desc '
|
12
|
+
desc 'Print Jekyll deprecation warnings'
|
13
13
|
task :doctor do
|
14
14
|
on roles(:web) do
|
15
|
-
within
|
15
|
+
within release_path do
|
16
16
|
execute :jekyll, 'doctor'
|
17
17
|
end
|
18
18
|
end
|
19
19
|
end
|
20
20
|
|
21
|
-
after 'deploy:
|
21
|
+
after 'deploy:updated', :build
|
22
22
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: capistrano-jekyll
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- neiro
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-
|
11
|
+
date: 2015-11-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: capistrano
|
@@ -112,7 +112,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
112
112
|
version: '0'
|
113
113
|
requirements: []
|
114
114
|
rubyforge_project:
|
115
|
-
rubygems_version: 2.4.5
|
115
|
+
rubygems_version: 2.4.5.1
|
116
116
|
signing_key:
|
117
117
|
specification_version: 4
|
118
118
|
summary: Capistrano integration for Jekyll
|