I am new to Ruby on Rails. I am trying my best to learn it through the book Agile Web Development Using Rails. I got stuck trying to understand the concepts behind the execution.
I created a new project using rails_apps> rails demo. The book asked me to create a controller called Say (please note the capital "S") and the following happened:
- there was a folder by the name say (please note the lowercase "s") inside a folder called "views"
- there was a controller file :say_controller".
I then made a request through http://localhost/say/hello. I am really confused by the fact that, my project name demo is nowhere in the request. What happens if I create another controller in, say, another project and make the same request?
And why is that say has a lowercase s in the request instead of capital S? What's happening behind the curtains here?