Sha256: a63415fa7edd30b0e9ee8acebc779d638f6c028dc7a22346c3c16badf4492fa8

Contents?: true

Size: 537 Bytes

Versions: 1

Compression:

Stored size: 537 Bytes

Contents

# Example Rakefile that makes use of build groups

desc 'Build black-and-white by default'
task default: [:bw]

desc 'Build both bw and color'
task both: [:bw, :color]

desc 'Build black-and-white only'
task :bw 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 :color do
  Squib.enable_build_globally :test
  load 'build_groups.rb'
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
squib-0.12.0 samples/build_groups/Rakefile