xcpretty 0.1.9 → 0.1.10

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: 045ac6a79a0158c7ef63ca78a4c22093b881025a
4
- data.tar.gz: b2a41a953b32b7b7fa695dcf3ce0ac4012a76d8e
3
+ metadata.gz: cbb8fbc6280ad5d7fdfba29fe7f9b69d0e079133
4
+ data.tar.gz: 394e1ef6f6f488b659e0364c15c2f554b4dccc61
5
5
  SHA512:
6
- metadata.gz: 227dcd763189655e26ceafb8067c8ee654b31e6644b9f5efa37460eef92f8b53044685ed2cacc7e669a1e16c442a596313de7f7bbf223c098983d4471d4b5dd0
7
- data.tar.gz: 9aa82d6585b4faa8cb05a4de2f59c1a8ef022d5e3358d4117cef716f2c4a4db567386549292e318494652acb3d3b3e893c1ace341c3dd6de56a4a6b87492d138
6
+ metadata.gz: 9004708350e44edb04f20797ceb471541e737e4ecb480cf38639c7fb1eb56841c877d46e6752e4e8dfd663460ec73d59211ce456c11e3650974d59107fa13c11
7
+ data.tar.gz: f37ddf3eac02d7f87f0c41070232a1448edde7b973834f4930ed50ecc6fa424f4442775416481ad179689edfa466281216bcfff190df3f11ff1b4a4338d4beaa
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.1.10
4
+
5
+ ###### Enhancements
6
+
7
+ * Fixed buffering issues. Output looks realtime now
8
+ | [mtauraso](https://github.com/mtauraso)
9
+ | [#123](https://github.com/supermarin/xcpretty/pull/123)
10
+
11
+
3
12
  ## 0.1.8
4
13
 
5
14
  ###### Enhancements
@@ -168,4 +177,3 @@
168
177
  ## 0.0.1
169
178
 
170
179
  * initial version
171
-
@@ -13,7 +13,10 @@ module XCPretty
13
13
 
14
14
  def pretty_print(text)
15
15
  formatted_text = formatter.pretty_format(text)
16
- STDOUT.print(formatted_text + formatter.optional_newline) unless formatted_text.empty?
16
+ unless formatted_text.empty?
17
+ STDOUT.print(formatted_text + formatter.optional_newline)
18
+ STDOUT.flush
19
+ end
17
20
  end
18
21
 
19
22
  end
@@ -1,3 +1,3 @@
1
1
  module XCPretty
2
- VERSION = "0.1.9"
2
+ VERSION = "0.1.10"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: xcpretty
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.9
4
+ version: 0.1.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - Marin Usalj
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2015-04-15 00:00:00.000000000 Z
12
+ date: 2015-04-24 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: bundler