speedup_mortgage 0.1.1 → 0.1.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e733f308b74ae3387e9dd0f4fc43e17c6de15aa3
4
- data.tar.gz: '04480ad9a4bd14dcd57db521b8412f82ba171a10'
3
+ metadata.gz: e83baee6f29bfa43fbf6d39ba8b76ec0ddaff213
4
+ data.tar.gz: c9de6ff244c0e59f3b8ce4c2bc990db63cb56457
5
5
  SHA512:
6
- metadata.gz: 3b73b8476953559a003763c88fc7df973fa394315010a0dac0e4d84d47a6598abaaabe81e199b6ed3c73d2525d3de5312ab90ef7e47ef369fdda0b1d6a1f23a3
7
- data.tar.gz: d99bef81848fe3bb44a9fc1e883e33a897050347b16714e2537aa90e036119fda8f7f8fe961b5bfba13c131b2d7b58e7b28cd2586b1fc695db34c1957ed07f4b
6
+ metadata.gz: 57fb924d963247a4761637443615baf69f5c2b6a05f74e89c94ad6c8f902ec950debf5bb785ba59f9d03439367d8818f9ffcef524a2fa9ba22065b1fdc819d57
7
+ data.tar.gz: ad6065b38d1604e2c8ffbacee899227fcc3585e8c8fc5f756030e5315fca7b5633fed95ee72bde6f164e1229e9d1f47bd6198d7a81c2f5ae2fd7a77dce722d8a
@@ -0,0 +1,23 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ speedup_mortgage (0.1.1)
5
+
6
+ GEM
7
+ remote: https://rubygems.org/
8
+ specs:
9
+ rake (10.5.0)
10
+
11
+ PLATFORMS
12
+ ruby
13
+
14
+ DEPENDENCIES
15
+ bundler (~> 2.0)
16
+ rake (~> 10.0)
17
+ speedup_mortgage!
18
+
19
+ RUBY VERSION
20
+ ruby 2.3.7p456
21
+
22
+ BUNDLED WITH
23
+ 2.0.1
@@ -1,4 +1,4 @@
1
- require "speedup_mortgage/version"
1
+ require "./speedup_mortgage/version"
2
2
 
3
3
  module SpeedupMortgage
4
4
  class Error < StandardError; end
@@ -14,11 +14,12 @@ module SpeedupMortgage
14
14
  loan = Float(loan)
15
15
 
16
16
  print "please enter your INTEREST RATE: "
17
- rate = Float(gets.chomp)
17
+ rate = gets.chomp
18
18
  while rate.nil? || rate.empty?
19
19
  print "please enter your INTEREST RATE: "
20
20
  rate = gets.chomp
21
21
  end
22
+ rate = Float(rate)
22
23
  mrate =rate/(100*12.0)
23
24
 
24
25
  print "please enter the LENGTH of the loan IN MONTHS: "
@@ -27,10 +28,10 @@ module SpeedupMortgage
27
28
  print "please enter your LOAN LENGTH IN MONTHS: "
28
29
  length = gets.chomp
29
30
  end
30
- length = Float(gets.chomp)
31
+ length = Float(length)
31
32
  length = length * 12.0
32
33
 
33
- print "What is your MONTHLY PAYMENT?: "
34
+ print "What is your MONTHLY PRINCIPAL AND INTEREST PAYMENT?: "
34
35
  pay = gets.chomp
35
36
  while pay.nil? || pay.empty?
36
37
  print "please enter your MONTHLY PAYMENT: "
@@ -1,3 +1,3 @@
1
1
  module SpeedupMortgage
2
- VERSION = "0.1.1"
2
+ VERSION = "0.1.2"
3
3
  end
@@ -21,7 +21,7 @@ Gem::Specification.new do |spec|
21
21
 
22
22
  spec.metadata["homepage_uri"] = spec.homepage
23
23
  spec.metadata["source_code_uri"] = spec.homepage
24
- spec.metadata["changelog_uri"] = "TODO: Put your gem's CHANGELOG.md URL here."
24
+ spec.metadata["changelog_uri"] = spec.homepage
25
25
  else
26
26
  raise "RubyGems 2.0 or newer is required to protect against " \
27
27
  "public gem pushes."
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: speedup_mortgage
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - mepyyeti
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-05-27 00:00:00.000000000 Z
11
+ date: 2019-06-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -50,6 +50,7 @@ files:
50
50
  - ".gitignore"
51
51
  - CODE_OF_CONDUCT.md
52
52
  - Gemfile
53
+ - Gemfile.lock
53
54
  - LICENSE.txt
54
55
  - README.md
55
56
  - Rakefile
@@ -59,6 +60,7 @@ files:
59
60
  - lib/speedup_mortgage.rb
60
61
  - lib/speedup_mortgage/version.rb
61
62
  - speedup_mortgage-0.1.0.gem
63
+ - speedup_mortgage-0.1.1.gem
62
64
  - speedup_mortgage.gemspec
63
65
  homepage: https://www.github.com/mepyyeti/speedup_mortgage
64
66
  licenses:
@@ -67,7 +69,7 @@ metadata:
67
69
  allowed_push_host: https://rubygems.org
68
70
  homepage_uri: https://www.github.com/mepyyeti/speedup_mortgage
69
71
  source_code_uri: https://www.github.com/mepyyeti/speedup_mortgage
70
- changelog_uri: 'TODO: Put your gem''s CHANGELOG.md URL here.'
72
+ changelog_uri: https://www.github.com/mepyyeti/speedup_mortgage
71
73
  post_install_message: thx. https://www.github.com/mepyyeti/speedup_mortgage
72
74
  rdoc_options: []
73
75
  require_paths: