Sha256: 5e6ca73754b51f5b5e25a47ff96fe5b468ad2b2f03c1b370e6ae7b070a87d858
Contents?: true
Size: 768 Bytes
Versions: 1
Compression:
Stored size: 768 Bytes
Contents
module Squib class Deck # Fills the background with the given color # @example # background color: :white # # Options support Arrays, see {file:README.md#Arrays_and_Singleton_Expansion Arrays and Singleon Expansion} # # @option opts range [Enumerable] (:all) the range of cards over which this will be rendered. See {file:README.md#Specifying_Ranges Specifying Ranges} # @option opts color [String] (:black) the color the font will render to. See {file:README.md#Specifying_Colors Specifying Colors}. # @return [nil] nothing # @api public def background(opts = {}) opts = needs(opts,[:range, :color]) opts[:range].each { |i| @cards[i].background(opts[:color][i]) } end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
squib-0.0.4 | lib/squib/api/background.rb |