I hate ruby on rails.
This used to be my cheatsheet about what needed to be done to get rails installed after doing a major Fedora upgrade:
cd /u1/rails/micromounts rails serverThis should just work and start a Webrick based server on localhost:3000. But rails is not installed by default on a fresh Fedora system, so you will probably just get "rails: command not found". Do this:
su dnf install rubygem-rails dnf install ruby-devel dnf install sqlite-devel dnf install nodejs exit cd /u1/rails/micromounts bundle install rails serverThe above worked just fine on Fedora 24. Happily the gemfile keeps track of the version numbers of various Gems that my rails project was developed with and installs those now old versions as needed.
Tom's Mineralogy Info / tom@mmto.org