You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
874 B
36 lines
874 B
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!
|
|
|