2017-01-13 13:24:41 +11:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-01-13 12:42:22 +11:00
|
|
|
module Settings
|
|
|
|
module Extend
|
|
|
|
def settings
|
2017-05-25 13:18:08 +10:00
|
|
|
@settings ||= ScopedSettings.new(self)
|
2017-01-13 12:42:22 +11:00
|
|
|
end
|
|
|
|
end
|
2017-01-13 13:24:41 +11:00
|
|
|
end
|