Skip to content

Commit

Permalink
Coding style
Browse files Browse the repository at this point in the history
  • Loading branch information
n-rodriguez committed Sep 30, 2024
1 parent b49b91b commit 66869aa
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions lib/active_settings.rb
Original file line number Diff line number Diff line change
@@ -1,19 +1,23 @@
# frozen_string_literal: true

# require ruby dependencies
require 'erb'
require 'json'
require 'yaml'
require 'ostruct'
require 'singleton'

# require external dependencies
require 'deep_merge/core'
require 'dry-schema'
require 'active_support/core_ext/module/attribute_accessors'
require 'active_support/core_ext/module/delegation'

require 'zeitwerk'
loader = Zeitwerk::Loader.for_gem
loader.setup

# load zeitwerk
Zeitwerk::Loader.for_gem.tap do |loader| # rubocop:disable Style/SymbolProc
loader.setup
end

# rubocop:disable Metrics/ModuleLength
module ActiveSettings
Expand Down

0 comments on commit 66869aa

Please sign in to comment.