From 02bf443abfd9b1db159b98be49b8cec637b16257 Mon Sep 17 00:00:00 2001 From: Andy Meneely Date: Wed, 11 Mar 2020 17:19:02 -0400 Subject: [PATCH] cleanup --- lib/squib/deck.rb | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/squib/deck.rb b/lib/squib/deck.rb index 2596e23..3485b10 100644 --- a/lib/squib/deck.rb +++ b/lib/squib/deck.rb @@ -33,7 +33,7 @@ module Squib :img_dir, :prefix, :text_hint, :typographer # :nodoc: # @api private - attr_reader :layout, :conf, :dpi, :font, :caller_loc + attr_reader :layout, :conf, :dpi, :font # # deck.size is really just @cards.size @@ -69,7 +69,6 @@ module Squib @height = Args::UnitConversion.parse height, dpi cards.times{ |i| @cards << Squib::Card.new(self, @width, @height, i) } @layout = LayoutParser.new(dpi).load_layout(layout) - @caller_loc = caller_locations[0] # useful for error messages enable_groups_from_env! if block_given? instance_eval(&block) # here we go. wheeeee!