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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 3df2974d142cce2f2a7cd4edb382b9d3d4f70ccf
4
- data.tar.gz: 8aa76610ce792f80e8f26009dfc351a8f2d19ef3
3
+ metadata.gz: 5c61bd8c4d10e1bdbe1f8acd95597941f8e6f778
4
+ data.tar.gz: 4a44bfc35f13cfd778a52cddfdc810d67551311e
5
5
  SHA512:
6
- metadata.gz: 75eb82b12a7fd88397ba61e66f769a93cf55a7770d9b9377a7df0c29923fc0a804ae19a32b4ab0fa0fbd2f2887378889d009b5fa3b91f11e5e2567c9e813c28d
7
- data.tar.gz: 63ea4c7dbbc12128477fc4301890380a677c0c142622c54b824c1411f829cb64c2c2a0b552355e8569bd572c9121bdaee232f80574e63459ce15f45866f3406f
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:symlink:release** as part of Capistrano's default deploy, or can be run in isolation with `bundle exec cap production jekyll:build`
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 your website`
32
- * `cap jekyll:doctor # Search site and print specific deprecation warnings`
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 your website'
3
+ desc 'Build the website using Jekyll'
4
4
  task :build do
5
5
  on roles(:web) do
6
- within current_path do
6
+ within release_path do
7
7
  execute :jekyll, 'build'
8
8
  end
9
9
  end
10
10
  end
11
11
 
12
- desc 'Search site and print specific deprecation warnings'
12
+ desc 'Print Jekyll deprecation warnings'
13
13
  task :doctor do
14
14
  on roles(:web) do
15
- within current_path do
15
+ within release_path do
16
16
  execute :jekyll, 'doctor'
17
17
  end
18
18
  end
19
19
  end
20
20
 
21
- after 'deploy:symlink:release', :build
21
+ after 'deploy:updated', :build
22
22
  end
@@ -1,4 +1,4 @@
1
1
  # Gem version
2
2
  module CapistranoJekyll
3
- VERSION = '0.1.0'
3
+ VERSION = '0.2.0'
4
4
  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.1.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-06-24 00:00:00.000000000 Z
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