I am setting the below environment variable.
ENV["RAILS_RELATIVE_URL_ROOT"] = "/prefix"
Is there any way of accessing this env variable other than ENV["RAILS_RELATIVE_URL_ROOT"]
?
I know rails env can be accesses like Rails.env
. Can all the env variables be accesses like that or is it something special for rails_env?