xcpretty 0.1.8 → 0.1.9

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: 46afd7db9c2993a17393e54552dd4f16d3846497
4
- data.tar.gz: dc151e05a0a1a7cbd0d138a705091f53c3a17283
3
+ metadata.gz: 045ac6a79a0158c7ef63ca78a4c22093b881025a
4
+ data.tar.gz: b2a41a953b32b7b7fa695dcf3ce0ac4012a76d8e
5
5
  SHA512:
6
- metadata.gz: 10733c0ad1f23e77b9e2181e2c59ea4c7a9084446da074e2730a930ad6f774f9925d2fd469778661046f96b7c6dec92a337074b27e42e513df625b16866f0efe
7
- data.tar.gz: 1dec5bbc013c3c2c9adb633d8929450473a0084f3cb036f4c0e13ebc620223d035492c5b083c34f533439f7a8d2f63e4826988593a623aebb9c8d48f2c2871be
6
+ metadata.gz: 227dcd763189655e26ceafb8067c8ee654b31e6644b9f5efa37460eef92f8b53044685ed2cacc7e669a1e16c442a596313de7f7bbf223c098983d4471d4b5dd0
7
+ data.tar.gz: 9aa82d6585b4faa8cb05a4de2f59c1a8ef022d5e3358d4117cef716f2c4a4db567386549292e318494652acb3d3b3e893c1ace341c3dd6de56a4a6b87492d138
data/CHANGELOG.md CHANGED
@@ -4,8 +4,18 @@
4
4
 
5
5
  ###### Enhancements
6
6
 
7
- * Better syntax highlighting
8
- * Support for other languages than Objc (Swift, C++, Objc++, Dylan, Ruby)
7
+ * Added support for build warnings (even multiline with snippets)
8
+ | [#131](https://github.com/supermarin/xcpretty/pull/131)
9
+ * Support for measuring test runtimes
10
+ | [Norio Nomura](https://github.com/norio-nomura)
11
+ | [#124](https://github.com/supermarin/xcpretty/pull/124)
12
+ * Support for `write file` and `Write auxiliary files`
13
+ | [Piet Brauer](https://github.com/pietbrauer)
14
+ | [#128](https://github.com/supermarin/xcpretty/pull/128)
15
+ * Support for `oclint v0.9dev` json-compilation-database
16
+ | [KiKi](https://github.com/iKiKi)
17
+ | [#121](https://github.com/supermarin/xcpretty/pull/121)
18
+ * Syntax highlighting for other languages than Objc (Swift, C++, Objc++, Dylan, Ruby)
9
19
  | [#110](https://github.com/supermarin/xcpretty/pull/110)
10
20
 
11
21
 
data/README.md CHANGED
@@ -20,7 +20,7 @@ $ xcodebuild [flags] | xcpretty -c
20
20
  It's even a bit faster than `xcodebuild` only, since it saves your terminal some prints.
21
21
 
22
22
  __Important:__ If you're running `xcpretty` on a CI like Travis or Jenkins, you may want to exit with same status code as `xcodebuild`.
23
- CI uses the status code to determine if build has failed.
23
+ CI systems usually use status codes to determine if the build has failed.
24
24
 
25
25
  ``` bash
26
26
  $ set -o pipefail && xcodebuild [flags] | xcpretty -c
@@ -1,3 +1,5 @@
1
+ # encoding: utf-8
2
+
1
3
  module XCPretty
2
4
 
3
5
  module Matchers
@@ -1,3 +1,3 @@
1
1
  module XCPretty
2
- VERSION = "0.1.8"
2
+ VERSION = "0.1.9"
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.8
4
+ version: 0.1.9
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-03-06 00:00:00.000000000 Z
12
+ date: 2015-04-15 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: bundler