Skip to content

Commit

Permalink
Update readme, use require_relative
Browse files Browse the repository at this point in the history
  • Loading branch information
arashnd committed May 6, 2018
1 parent d923693 commit 2f982b2
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 10 deletions.
2 changes: 0 additions & 2 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand All @@ -19,7 +18,6 @@ DEPENDENCIES
humanize
pry
rack (= 2.0.3)
rack-favicon
shotgun

BUNDLED WITH
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
6 changes: 3 additions & 3 deletions config.ru
Original file line number Diff line number Diff line change
@@ -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'

Expand Down

0 comments on commit 2f982b2

Please sign in to comment.