Module: Prawn::Configurable
- Defined in:
- lib/prawn.rb
Overview
:nodoc:
Instance Method Summary collapse
- #configuration(*args) ⇒ Object (also: #C)
Instance Method Details
#configuration(*args) ⇒ Object Also known as: C
42 43 44 45 46 47 48 49 50 51 52 53 |
# File 'lib/prawn.rb', line 42 def configuration(*args) @config ||= Marshal.load(Marshal.dump(default_configuration)) if Hash === args[0] @config.update(args[0]) elsif args.length > 1 @config.values_at(*args) elsif args.length == 1 @config[args[0]] else @config end end |