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