# frozen_string_literal: true

require “bundler/setup” require “ramverk/setup”

Ramverk.configure do |config|

# Paths of which Ramverk will autoload constants.
config.autoload_paths << "lib"

# DEVELOPMENT

config.environment :development do
end

# TEST

config.environment :test do
end

# PRODUCTION

config.environment :production do
end

end