Sha256: 74bda40a379a1d20bcea3e02431e0486a55be3f7edbaf0de4eadf7428bbb750e
Contents?: true
Size: 305 Bytes
Versions: 7
Compression:
Stored size: 305 Bytes
Contents
module OdeonUk class << self attr_accessor :configuration end def self.configuration @configuration ||= Configuration.new end def self.configure yield(configuration) end class Configuration attr_accessor :method def initialize @method = :html end end end
Version data entries
7 entries across 7 versions & 1 rubygems