xcpretty 0.1.8 → 0.1.9
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 +4 -4
- data/CHANGELOG.md +12 -2
- data/README.md +1 -1
- data/lib/xcpretty/parser.rb +2 -0
- data/lib/xcpretty/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 045ac6a79a0158c7ef63ca78a4c22093b881025a
|
|
4
|
+
data.tar.gz: b2a41a953b32b7b7fa695dcf3ce0ac4012a76d8e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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
|
-
*
|
|
8
|
-
|
|
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
|
|
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
|
data/lib/xcpretty/parser.rb
CHANGED
data/lib/xcpretty/version.rb
CHANGED
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.
|
|
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-
|
|
12
|
+
date: 2015-04-15 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: bundler
|