I am new to Rails and come from a ColdFusion background, where we would store global / site-wide variables in the \'application\' scope. This persists the variable across an
You can use gem figaro
write your variables in config/application.yml
HELLO: world development: HELLO: developers production: HELLO: users
Then you can fetch
ENV["HELLO"]