progress_bar 1.3.2 → 1.3.3

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
  SHA256:
3
- metadata.gz: 93deaf290ed6e467982f59e116823785ec82927e7c490b46fa4379dc08b23777
4
- data.tar.gz: c7888385f8bdb280e39fb63d212bcdc75ee5f20a04aaccff753e35d110151e6d
3
+ metadata.gz: bb7f4ff94b18c74293549cabfa13a706919a372ad266ba128f51871e835640b9
4
+ data.tar.gz: 86ee5facbec3945a261948111955ca19e84b0bbf28d58beb5c67074b9fefb1f8
5
5
  SHA512:
6
- metadata.gz: 1f384ee668213ae7b49b5b3d7b22c3ee8ccaabe1303b46f34f7f5f7db4713aeeff03480acd8ca515084cdfaad64f849c4078272a3b5ad43c79ae78ea78f149ec
7
- data.tar.gz: 353313ddaec29915b98efcaa0f60d470b08094b729b6b8b8afb33c38c6cad0ee17f26f6ea9d5fb532fc5649fd4cb7b18382e86087b6a80e42aa648d4bee82d43
6
+ metadata.gz: 2cce378aa8152b13f210fa1e005ca9933146e70bf243257a057bd228833f0ab2ea2ebb9627e65a9d1c3114b43b9dafd531d6ceca13f412e1c6b94e68773f61e7
7
+ data.tar.gz: 23e2f70bb0d18351baf90809383607dd9d4c6f75591f8018d704cb487554e791560bde118f7c720bb0791abce42247f6a68c2ad7120f3aa05ac21686cc8aa628
@@ -1,3 +1,10 @@
1
+ # 1.3.3
2
+
3
+ * Fixed use of unqualified ::Time that was conflicting with another
4
+ ProgressBar gem [#58](https://github.com/paul/progress_bar/pull/58).
5
+ Thanks to [harryloewen](https://github.com/harryloewen) for the
6
+ [report](https://github.com/paul/progress_bar/issues/57)
7
+
1
8
  # 1.3.2
2
9
 
3
10
  * Added `ProgressBar#puts`, to be able to print text to the output without
@@ -24,7 +24,7 @@ class ProgressBar
24
24
 
25
25
  @hl = HighLine.new
26
26
  @terminal_width = 80
27
- @last_width_adjustment = Time.at(0)
27
+ @last_width_adjustment = ::Time.at(0)
28
28
  end
29
29
 
30
30
  def increment!(count = 1)
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  class ProgressBar
4
- VERSION = "1.3.2"
4
+ VERSION = "1.3.3"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: progress_bar
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.2
4
+ version: 1.3.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Paul Sadauskas
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-10-29 00:00:00.000000000 Z
11
+ date: 2020-11-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: highline