lib/avm/apps/config.rb in avm-apps-0.3.0 vs lib/avm/apps/config.rb in avm-apps-0.4.0
- old
+ new
@@ -3,12 +3,16 @@
require 'eac_ruby_utils/core_ext'
module Avm
module Apps
class Config
- enable_context
-
class << self
+ # @deprecated Use EacConfig::Node.context instead.
+ # @return [EacRubyUtils::Context<EacConfig::Node>]
+ def context
+ ::EacConfig::Node.context
+ end
+
delegate :current, to: :context
end
end
end
end