27 lines
530 B
Ruby
27 lines
530 B
Ruby
# Example Rakefile that makes use of build groups
|
|
require 'squib'
|
|
|
|
desc 'Build black-and-white by default'
|
|
task default: [:pnp]
|
|
|
|
desc 'Build both bw and color'
|
|
task both: [:pnp, :color]
|
|
|
|
desc 'Build black-and-white only'
|
|
task :pnp do
|
|
Squib.enable_build_globally :print_n_play
|
|
load 'build_groups.rb'
|
|
end
|
|
|
|
desc 'Build the color version only'
|
|
task :color do
|
|
Squib.enable_build_globally :color
|
|
load 'build_groups.rb'
|
|
end
|
|
|
|
desc 'Build a test card'
|
|
task :test do
|
|
Squib.enable_build_globally :test
|
|
load 'build_groups.rb'
|
|
end
|