silverball 0.1.0 → 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 5715cfaf8aa5a38e40b7c6acf9423d5e28dfd09e
4
- data.tar.gz: ce44395410cdf7224d3cce4129dab4313017582b
3
+ metadata.gz: 8e1dec3505120fcc2c7f2b12a3d4a89f6f2d6b8d
4
+ data.tar.gz: 3e03c5a75bd62cb4973c7832eb96581484f0423e
5
5
  SHA512:
6
- metadata.gz: e1ca9825debd439087a0b78184b5385dae5c58a73b25c774cc7b202602d14327dbb0df40097404afb020ccdf8db46c46f7036b7bb7fb787755fbe04c734d7760
7
- data.tar.gz: 1c14ba14b7ac1acac1d864be9f8c0815d2a6c689f42e0bc2eaeca56df207fa6d1a907d3bf4d4afa94617a93abca3dac700a810e663962cfe8c5f3558c8745eb5
6
+ metadata.gz: e1a98a3fe2b8b2e7fb69498520076118eba1c920fb802753ba74f8d8925fdf7c029085d1c3393fe1c2e58d4dce9b1e73a2b5108ba4fad70d9dd467e28e0a25ac
7
+ data.tar.gz: 96ac7911a4a220af58cbecc19cc0cdcff2d396466cc08c4be99442121cb2d8bd6b8ab5f91e9f270e7ef6bfc9b711e06fd684e23959466656d5dae1787645f03b
data/CHANGELOG.md CHANGED
@@ -19,6 +19,13 @@ glance - what to expact from upgrading to a new version.
19
19
  ### Removed
20
20
 
21
21
 
22
+ ## [0.1.1] - 2017-01-03
23
+
24
+ ### Fixed
25
+
26
+ - Missing rounding within `::timespan_in_words.`
27
+
28
+
22
29
  ## [0.1.0] - 2017-01-03
23
30
 
24
31
  ### Added
@@ -32,7 +32,7 @@ module Silverball
32
32
  if hours == hours.to_i
33
33
  hours = hours.to_i
34
34
  else
35
- hours - hours.round(round)
35
+ hours = hours.round(round)
36
36
  end
37
37
  end
38
38
  else
@@ -47,7 +47,7 @@ module Silverball
47
47
  if minutes == minutes.to_i
48
48
  minutes = minutes.to_i
49
49
  else
50
- minutes - minutes.round(round)
50
+ minutes = minutes.round(round)
51
51
  end
52
52
  end
53
53
  else
@@ -58,7 +58,7 @@ module Silverball
58
58
  if seconds == seconds.to_i
59
59
  seconds = seconds.to_i
60
60
  else
61
- seconds = seconds.round(rouond)
61
+ seconds = seconds.round(round)
62
62
  end
63
63
  end
64
64
 
data/silverball.gemspec CHANGED
@@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
4
 
5
5
  Gem::Specification.new do |spec|
6
6
  spec.name = "silverball"
7
- spec.version = '0.1.0'
7
+ spec.version = '0.1.1'
8
8
  spec.authors = ["Michael Senn"]
9
9
  spec.email = ["michael@morrolan.ch"]
10
10
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: silverball
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Michael Senn