In our company, people are using different operating systems. I am using Linux and have line in development.rb like:
Paperclip.options[:command_path] = "/usr/bin"
Designer, who is on Windows need different line. Is there any way, how to manage different developers in ruby on rails? Thanks a lot!
If it’s just a platform issue, try something like this:
A good way to keep machine-specific settings is with a configuration file.
Treat the settings.yml like database.yml and copy the example to settings.yml on each user’s machine.
This way you could set the above like this: