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