Sha256: 9e0e4b738b6cc4c231b80880e5b9dad13e54cf74ab8bee7372910fdd5bcac600
Contents?: true
Size: 835 Bytes
Versions: 3
Compression:
Stored size: 835 Bytes
Contents
require_relative '../errors_warnings/warn_unexpected_params' module Squib class Deck def line(opts = {}) DSL::Line.new(self, __callee__).run(opts) end end module DSL class Line include WarnUnexpectedParams attr_reader :dsl_method, :deck def initialize(deck, dsl_method) @deck = deck @dsl_method = dsl_method end def self.accepted_params %i(x1 y1 x2 y2 fill_color stroke_color stroke_width stroke_strategy join dash cap range layout) end def run(opts) warn_if_unexpected opts range = Args.extract_range opts, deck draw = Args.extract_draw opts, deck coords = Args.extract_coords opts, deck range.each { |i| deck.cards[i].line(coords[i], draw[i]) } end end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
squib-0.19.0 | lib/squib/dsl/line.rb |
squib-0.19.0b | lib/squib/dsl/line.rb |
squib-0.19.0a | lib/squib/dsl/line.rb |