Improve rakefile example to match docs

Improve example to match the example in the docs [1] and fix the test task name.

[1] https://squib.readthedocs.io/en/latest/build_groups.html
dev
Karneades 2019-05-22 10:00:15 +02:00 committed by Andy Meneely
parent 8938aa350a
commit 1fb9548637
1 changed files with 4 additions and 4 deletions

View File

@ -2,13 +2,13 @@
require 'squib' require 'squib'
desc 'Build black-and-white by default' desc 'Build black-and-white by default'
task default: [:bw] task default: [:pnp]
desc 'Build both bw and color' desc 'Build both bw and color'
task both: [:bw, :color] task both: [:pnp, :color]
desc 'Build black-and-white only' desc 'Build black-and-white only'
task :bw do task :pnp do
Squib.enable_build_globally :print_n_play Squib.enable_build_globally :print_n_play
load 'build_groups.rb' load 'build_groups.rb'
end end
@ -20,7 +20,7 @@ task :color do
end end
desc 'Build a test card' desc 'Build a test card'
task :color do task :test do
Squib.enable_build_globally :test Squib.enable_build_globally :test
load 'build_groups.rb' load 'build_groups.rb'
end end