capistrano-jekyll 0.0.2 → 0.1.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 +1 -2
- data/lib/capistrano/tasks/jekyll.rake +1 -10
- data/lib/capistrano-jekyll/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3df2974d142cce2f2a7cd4edb382b9d3d4f70ccf
|
4
|
+
data.tar.gz: 8aa76610ce792f80e8f26009dfc351a8f2d19ef3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 75eb82b12a7fd88397ba61e66f769a93cf55a7770d9b9377a7df0c29923fc0a804ae19a32b4ab0fa0fbd2f2887378889d009b5fa3b91f11e5e2567c9e813c28d
|
7
|
+
data.tar.gz: 63ea4c7dbbc12128477fc4301890380a677c0c142622c54b824c1411f829cb64c2c2a0b552355e8569bd572c9121bdaee232f80574e63459ce15f45866f3406f
|
data/README.md
CHANGED
@@ -25,12 +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:symlink:release** 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
31
|
* `cap jekyll:build # Build your website`
|
32
32
|
* `cap jekyll:doctor # Search site and print specific deprecation warnings`
|
33
|
-
* `cap jekyll:new # Creates a new Jekyll site scaffold in PATH`
|
34
33
|
|
35
34
|
## Contributing
|
36
35
|
|
@@ -18,14 +18,5 @@ namespace :jekyll do
|
|
18
18
|
end
|
19
19
|
end
|
20
20
|
|
21
|
-
|
22
|
-
task :new do
|
23
|
-
on roles(:web) do
|
24
|
-
within current_path do
|
25
|
-
execute :jekyll, 'new'
|
26
|
-
end
|
27
|
-
end
|
28
|
-
end
|
29
|
-
|
30
|
-
after 'deploy:published', :build
|
21
|
+
after 'deploy:symlink:release', :build
|
31
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.0
|
4
|
+
version: 0.1.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-06-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: capistrano
|