Sha256: 9c7306109873220f82b6407e539e6e1ff395b5c7099dd35029dfed7f519f6409
Contents?: true
Size: 874 Bytes
Versions: 6
Compression:
Stored size: 874 Bytes
Contents
require 'squib' Squib::Deck.new(width: 75, height: 75, cards: 2) do # puts "Groups enabled by environment: #{groups.to_a}" text str: ['A', 'B'] build :print_n_play do rect save_sheet prefix: 'build_groups_bw_' end build :color do rect stroke_color: :red, dash: '5 5' save_png prefix: 'build_groups_color_' end build :test do save_png range: 0, prefix: 'build_groups_' end end # Here's how you can run this on the command line: # # --- OSX/Linux (bash or similar shells) --- # $ ruby build_groups.rb # $ SQUIB_BUILD=color ruby build_groups.rb # $ SQUIB_BUILD=print_n_play,test ruby build_groups.rb # # --- Windows CMD --- # $ ruby build_groups.rb # $ set SQUIB_BUILD=color && ruby build_groups.rb # $ set SQUIB_BUILD=print_n_play,test && ruby build_groups.rb # # Or, better yet... use a Rakefile like the one provided in this gist!
Version data entries
6 entries across 6 versions & 1 rubygems