If you've written a gem at some point you might want to have configuration options for those people using the gem. Luckily, this is relatively easy to do with a configure block. The code inside your lib/[gemname].rb should look something like this: module Jem class << self attr_accessor :configuration end def self.configure self.configuration ||= Configuration.new yield(configuration) end class Co

{{#tags}}- {{label}}
{{/tags}}