- Created new rails app
- Created new HomeController and add index action
- Adding new routes
root "home#index"
inconfig/routes.rb
- Created new View home/index.html.erb
- I add gem
"sassc-rails"
and"bootstrap"
to be able to use the bootsrap - I add gem roo
"roo", "~> 2.10.0"
to read the sheet. - I created new folder called "
service
" inside of"app"
folder - I created a class builder where I can isolate the logic that I used to parse the sheet into html
- By running
"rails s"
you can run the entire app and by accessing the root you can see the parse html table.