tippy_mun 0.1.7 → 0.1.8

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: 59c5b2c0081fdecbb08832102cf8fb2fe937e96a
4
- data.tar.gz: 35a2ddd3626f24f52542bfb8fcf090e610112f2a
3
+ metadata.gz: 2f9c091e3105ad7290ea03b883f1f10be3dde54e
4
+ data.tar.gz: 302d46d01477c4c40fc3864518fc233779219892
5
5
  SHA512:
6
- metadata.gz: 4f768e220fa2356eda31eb4985532e0459e3bbff9aead6e145d1fadb169fb7c14ece3ad9a12e8537622cd9b3d132295a6856550801707a332532a1f9cabc9b31
7
- data.tar.gz: af6e771ea8ffbbcdd45bfe426486e5edb1c47cd82109648a5be5c04acbde81c23f3d329c64d4b63f6cd7ccf4442654ee79ffe597a1c0c4da6b3ed26a83274cc9
6
+ metadata.gz: eb744b2ebedfc45b51e840085007b048ac331ac3964b787edfae0e9734f6cc0019ea4adef73decb1bfc63b98319d0b6f86b462231202d3138ada4e5a9027ff33
7
+ data.tar.gz: 6ae6a5b70742def36a77064431968ebe91576fecf479f702d5cf6c0908d54144d03ef8066e6e26fd27eea3b7228feb11a6680b3531c97314391b816260e9fdd7
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- tippy_mun (0.1.7)
4
+ tippy_mun (0.1.8)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
@@ -1,38 +1,38 @@
1
- class String
2
- def integer?
3
- return true if self =~ /^[1-9]\d*(\.\d+)?$/
4
- false
5
- end
1
+ lass String
2
+ def integer?
3
+ return true if self =~ /^[1-9]\d*(\.\d+)?$/
4
+ false
5
+ end
6
6
  end
7
7
 
8
8
  module TippyMun
9
9
 
10
- class Builder
11
- def initialize total:, gratuity:
12
- @total = total
13
- @gratuity = gratuity
14
- end
10
+ class Builder
11
+ def initialize total:, gratuity:
12
+ @total = total
13
+ @gratuity = gratuity
14
+ end
15
15
 
16
- def generate
17
- return calculation if number_based?
18
- string_based
19
- end
16
+ def generate
17
+ return calculation if number_based?
18
+ string_based
19
+ end
20
20
 
21
- def number_based?
22
- (@gratuity.is_a? Numeric) || (@gratuity.integer?)
23
- end
21
+ def number_based?
22
+ (@gratuity.is_a? Numeric) || (@gratuity.integer?)
23
+ end
24
24
 
25
- def string_based
26
- case @gratuity.downcase
27
- when 'high' then calculation 25
28
- when 'standard' then calculation 18
29
- when 'low' then calculation 15
30
- end
31
- end
25
+ def string_based
26
+ case @gratuity.downcase
27
+ when 'high' then calculation 25
28
+ when 'standard' then calculation 18
29
+ when 'low' then calculation 15
30
+ end
31
+ end
32
32
 
33
- def calculation gratuity = @gratuity
34
- @total += @total * (gratuity.to_f / 100)
35
- end
36
- end
33
+ def calculation gratuity = @gratuity
34
+ @total += @total * (gratuity.to_f / 100)
35
+ end
36
+ end
37
37
 
38
38
  end
@@ -1,3 +1,3 @@
1
1
  module TippyMun
2
- VERSION = "0.1.7"
2
+ VERSION = "0.1.8"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tippy_mun
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.7
4
+ version: 0.1.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Munir
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2017-09-15 00:00:00.000000000 Z
11
+ date: 2017-09-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler