class Balmora::Context::ConfigChanged

Public Instance Methods

run() click to toggle source
# File lib/balmora/context/config_changed.rb, line 3
def run()
  if @config.old.nil?() || @config.config.nil?()
    return @config.config == @config.old
  end

  return JSON.generate(@config.config) != JSON.generate(@config.old)
end