- Make a new Rails project.
- Make necessary modifications to the project such that an HTML response of
"<h1>Hello World</h1>"
is returned when hitting the path"hello_world"
with a GET request - Make necessary modifications to the rails project such that an HTML response of
"<h1>Hello POST world</h1>"
is returned when hitting the path"hello_world"
with a POST request, do not remove any code created in #1. - Make necessary modifications to the rails project such that an HTML response of
"Hello POST world PLUS"
is returned when hitting the path"hello_world"
with a POST request AND a payload that contains the key/value pair "plus"/"true", otherwise the HTML response should be"Hello POST world NO-PLUS"