A ruby programme that processes a webserver log and calculates:
- most popular page views
- unique page views
In this implementation, the path to the webserver log is hard-coded.
Code coverage is 96% (using the SimpleCov gem)
bundle install
ruby -r './lib/app.rb' -e 'App.run'