2017-01-12 21:24:41 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-01-12 20:42:22 -05:00
|
|
|
module Settings
|
|
|
|
module Extend
|
|
|
|
def settings
|
2017-05-24 23:18:08 -04:00
|
|
|
@settings ||= ScopedSettings.new(self)
|
2017-01-12 20:42:22 -05:00
|
|
|
end
|
|
|
|
end
|
2017-01-12 21:24:41 -05:00
|
|
|
end
|