diff --git a/Gemfile.lock b/Gemfile.lock index 7717477..164838f 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -8,7 +8,6 @@ GEM coderay (~> 1.1.0) method_source (~> 0.9.0) rack (2.0.3) - rack-favicon (0.0.1) shotgun (0.9.2) rack (>= 1.0) @@ -19,7 +18,6 @@ DEPENDENCIES humanize pry rack (= 2.0.3) - rack-favicon shotgun BUNDLED WITH diff --git a/README.md b/README.md index 6fc6e49..5ba4ac7 100644 --- a/README.md +++ b/README.md @@ -8,11 +8,11 @@ bundle exec rackup Suppose ABC bank is offering Car Loan to its customers. As a software developer, you have to develop an application for this bank which will facilitate the bankers and its customers for effective calculations regarding car loan plans and installments with reference to number of years. For your guidance, bank has provided you the following eligibility criteria for car loans. -| Requirements | Salaried Individuals | Business Persons | -| -------------|:-------------:-------| -----:----| -| **Citizenship** | Pakistani | Pakistani | -| **Age** | 22-60 years | 22-70 years | -| **Minimum monthly income** | Rs. 50,000 | Rs. 75,000 | +| Requirements | Salaried Individuals | Business Persons | +|----------------------------|----------------------|------------------| +| **Citizenship** | Pakistani | Pakistani | +| **Age** | 22-60yr | 22-70yr | +| **Minimum monthly income** | Rs.50,000 | Rs.75,000 | ###### Table: Eligibility Criteria for Car Loan ###### Task 1: diff --git a/config.ru b/config.ru index ac58d60..be2a23a 100644 --- a/config.ru +++ b/config.ru @@ -1,6 +1,6 @@ -require './lib/helpers' -require './models/customer' -require './models/installment' +require_relative 'lib/helpers' +require_relative 'models/customer' +require_relative 'models/installment' require_relative 'application' require 'humanize'