views:

36

answers:

1

I have my app configured with Settingslogic, which I love. My question is how to I make a page on my Rails app where Administrators can make changes to the settings specified in config/settings.yml??

I assume said page would have to read and display appropriate form fields for all the values in the YAML file, then save those values back to config/settings.yml? Would those settings take effect immediately or would the server need to be restarted?

Bit lost here. Thanks.

Related: http://stackoverflow.com/questions/2907643/rails-application-settings

A: 

I couldn't figure this out, so I've switch from Settingslogic to rails-settings, which allows me to store settings equally easy in the database, which makes them far easier for me to set up editing by the end user.

If anyone figures this out with Settingslogic, I'd really love to hear a solution!

neezer