15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
|
# File 'lib/nanoc/cli/commands/deploy.rb', line 15
def run
load_site
site.compiler.action_provider.preprocess(site)
if options[:list-deployers']
deployers = Nanoc::Int::PluginRegistry.instance.find_all(Nanoc::Extra::Deployer)
deployer_names = deployers.keys.sort_by(&:to_s)
puts 'Available deployers:'
deployer_names.each do |name|
puts " #{name}"
end
return
end
deploy_configs = site.config.fetch(:deploy, {})
if options[:list]
if deploy_configs.empty?
puts 'No deployment configurations.'
else
puts 'Available deployment configurations:'
deploy_configs.keys.each do |name|
puts " #{name}"
end
end
return
end
if deploy_configs.empty?
raise Nanoc::Int::Errors::GenericTrivial, 'The site has no deployment configurations.'
end
target = options.fetch(:target, :default).to_sym
config = deploy_configs.fetch(target) do
raise Nanoc::Int::Errors::GenericTrivial, "The site has no deployment configuration for #{target}."
end
names = Nanoc::Extra::Deployer.all.keys
name = config.fetch(:kind) do
$stderr.puts 'Warning: The specified deploy target does not have a kind attribute. Assuming rsync.'
'rsync'
end
deployer_class = Nanoc::Extra::Deployer.named(name)
if deployer_class.nil?
raise Nanoc::Int::Errors::GenericTrivial, "The specified deploy target has an unrecognised kind “#{name}” (expected one of #{names.join(', ')})."
end
unless options[:no-check']
runner = Nanoc::Extra::Checking::Runner.new(site)
if runner.dsl_present?
puts 'Running issue checks…'
ok = runner.run_for_deploy
unless ok
puts 'Issues found, deploy aborted.'
return
end
puts 'No issues found. Deploying!'
end
end
deployer = deployer_class.new(
site.config[:output_dir],
config,
dry_run: options[:dry-run'])
deployer.run
end
|