91
92
93
94
95
96
97
98
99
100
|
# File 'lib/jets/application.rb', line 91
def deprecated_configs_message
unless config.ruby.lazy_load.nil?
puts "Detected config.ruby.lazy_load = #{config.ruby.lazy_load.inspect}".color(:yellow)
puts "Deprecated: config.ruby.lazy_load".color(:yellow)
puts "Gems are now bundled with with Lambda Layer and there's no need to lazy load them."
puts "Please remove the config in your config/application.rb or config/environments files."
puts "You can have Jets automatically do this by running:"
puts " jets upgrade"
end
end
|