skynet-deploy 1.3.1 → 1.3.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 +4 -4
- data/lib/skynet/builder/jekyll.rb +1 -1
- data/lib/skynet/version.rb +1 -1
- data/spec/skynet/builder/jekyll_spec.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6fe8f04e3036053148e1feda14f9f0867709892f
|
4
|
+
data.tar.gz: 20c0ebf0228fbbae532956ceb40ab48fd32eede1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1a04d9a1fc85b6aed5a6dab23989a66ad9cd05ca11b2dd86dd77339f0dfc03f82babb68d3ffc9dc4c81a17af03a945a718322c4705e7f97e9a8f27a76687e358
|
7
|
+
data.tar.gz: 7cb52193446a40724b8b9d389d79dc00b7e91cbbbcb37cfbe7012137dc6cf0c495f744ca1c90bbffc7ea7f0bad093a2f84af7a9d6edea42ae2a8c0d667c35b8d
|
@@ -6,7 +6,7 @@ module Skynet
|
|
6
6
|
|
7
7
|
def execute
|
8
8
|
Skynet.logger.debug "PWD: #{Dir.pwd} Source: #{source} Destination: #{destination}"
|
9
|
-
Skynet.logger.info `jekyll build #{source} #{destination}`
|
9
|
+
Skynet.logger.info `jekyll build --source #{source} --destination #{destination}`
|
10
10
|
|
11
11
|
Skynet.logger.info 'Jekyll finished'
|
12
12
|
end
|
data/lib/skynet/version.rb
CHANGED
@@ -14,7 +14,7 @@ describe Skynet::Builder::Jekyll do
|
|
14
14
|
|
15
15
|
describe "#execute" do
|
16
16
|
it "runs jekyll with the source and destination" do
|
17
|
-
subject.should_receive(:`).with "jekyll build #{source} #{dest}"
|
17
|
+
subject.should_receive(:`).with "jekyll build --source #{source} --destination #{dest}"
|
18
18
|
subject.execute
|
19
19
|
end
|
20
20
|
end
|