xcpretty-actions-formatter 0.1.1 → 0.1.2

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
  SHA256:
3
- metadata.gz: 5ecbd6327569fae79369e8512bcd8939ae7080345e1991eda2e2006cef264127
4
- data.tar.gz: cbcff9fee0ec76a3f30db59cf841625ea2474db45ad5d893ed4cf53f77b802c2
3
+ metadata.gz: 88f11dd0f6aa3310d0f681fb621ed554d784c9f6a5c12e2bf8ddaec45ef605b7
4
+ data.tar.gz: ff50675c76932eb857456192c10b577ba5dd894a64a81219703706137de159ee
5
5
  SHA512:
6
- metadata.gz: 1baaf1f8c3862d756ed98f086f95eabc75cd9a598d39cf3cd684a413ff34869f105def6ed09cf1e0093ab0176547d0e8979a1dc0730c189564c78505ee229f90
7
- data.tar.gz: ac8a79e09b28665c4b9510a8b2f0186e5e1745bacbc87b33a7bb66b3508b767fa999ba9e3709e3b0aa8ee175ad07b42a7cb4d84be1e6d34eb7da59dc81cc8b14
6
+ metadata.gz: d274821c12d718a84b358b92d6cd3ecd3764662567975bb5fb4ab085a2f48099b84f0c99940327bd1fdfeec575bba851c040a4d05bd877a2cb2a8e26ea2eb63a
7
+ data.tar.gz: 62d8185e6e9ebf31a1fa514c7c3dffc78ef90874a40c82fcf03cfac7eccddbc3e624ca9f3e8d446608acb7acea65ad7de38f43e682dcb8c11be8005fe801efab
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- xcpretty-actions-formatter (0.1.1)
4
+ xcpretty-actions-formatter (0.1.2)
5
5
  xcpretty (~> 0.2)
6
6
 
7
7
  GEM
data/Rakefile CHANGED
@@ -6,7 +6,7 @@ RSpec::Core::RakeTask.new(:spec)
6
6
  task :default => :spec
7
7
 
8
8
  task :ci do
9
- sh 'cat spec/fixtures/raw_kiwi_compilation_fail.txt | xcpretty -f "`bin/xcpretty-actions-formatter`"'
10
- sh 'cat spec/fixtures/raw_kiwi_fail.txt | xcpretty -f "`bin/xcpretty-actions-formatter`"'
11
- sh 'cat spec/fixtures/raw_specta_fail.txt | xcpretty -f "`bin/xcpretty-actions-formatter`"'
9
+ sh 'cat spec/fixtures/raw_kiwi_compilation_fail.txt | xcpretty -f "`exe/xcpretty-actions-formatter`"'
10
+ sh 'cat spec/fixtures/raw_kiwi_fail.txt | xcpretty -f "`exe/xcpretty-actions-formatter`"'
11
+ sh 'cat spec/fixtures/raw_specta_fail.txt | xcpretty -f "`exe/xcpretty-actions-formatter`"'
12
12
  end
@@ -38,10 +38,9 @@ module XCPretty
38
38
  super
39
39
  end
40
40
 
41
+ def format_error(message); STDOUT.puts "::error ::#{message}"; super; end
41
42
  def format_ld_warning(message); STDOUT.puts "::warning ::#{message}"; super; end
42
43
  def format_warning(message); STDOUT.puts "::warning ::#{message}"; super; end
43
-
44
-
45
44
  end
46
45
  end
47
46
 
@@ -1,5 +1,5 @@
1
1
  module Xcpretty
2
2
  module ActionsFormatter
3
- VERSION = "0.1.1"
3
+ VERSION = "0.1.2"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: xcpretty-actions-formatter
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jaehong Kang