guard-xcode 1.0.2 → 1.0.3
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.
- data/CHANGELOG.md +3 -0
- data/guard-xcode.gemspec +1 -1
- data/lib/guard/xcode.rb +6 -2
- data/lib/guard/xcode/version.rb +1 -1
- metadata +3 -6
data/CHANGELOG.md
CHANGED
data/guard-xcode.gemspec
CHANGED
data/lib/guard/xcode.rb
CHANGED
|
@@ -82,6 +82,7 @@ module Guard
|
|
|
82
82
|
alerts = []
|
|
83
83
|
|
|
84
84
|
unless @quiet
|
|
85
|
+
UI.info "guard-xcode: starting build"
|
|
85
86
|
Notifier.notify("kicking off build with:\n#{build_line}")
|
|
86
87
|
end
|
|
87
88
|
|
|
@@ -89,6 +90,7 @@ module Guard
|
|
|
89
90
|
res = $?
|
|
90
91
|
|
|
91
92
|
unless @quiet
|
|
93
|
+
UI.info "guard-xcode: build finished."
|
|
92
94
|
Notifier.notify("build finished.")
|
|
93
95
|
end
|
|
94
96
|
|
|
@@ -97,12 +99,14 @@ module Guard
|
|
|
97
99
|
end
|
|
98
100
|
|
|
99
101
|
if not 0 == res or output =~ /errors? generated/
|
|
100
|
-
|
|
102
|
+
UI.warn "guard-xcode: errors in build"
|
|
103
|
+
Notifier.notify("guard-xcode: errors in build!")
|
|
101
104
|
alerts.push :errors
|
|
102
105
|
end
|
|
103
106
|
|
|
104
107
|
if output =~ /warning/
|
|
105
|
-
|
|
108
|
+
UI.warn "guard-xcode: warnings in build"
|
|
109
|
+
Notifier.notify("guard-xcode: warnings in build!")
|
|
106
110
|
alerts.push :warnings
|
|
107
111
|
end
|
|
108
112
|
|
data/lib/guard/xcode/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: guard-xcode
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.3
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -13,7 +13,7 @@ date: 2012-03-17 00:00:00.000000000 Z
|
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: guard
|
|
16
|
-
requirement: &
|
|
16
|
+
requirement: &70108466796700 !ruby/object:Gem::Requirement
|
|
17
17
|
none: false
|
|
18
18
|
requirements:
|
|
19
19
|
- - ! '>='
|
|
@@ -21,7 +21,7 @@ dependencies:
|
|
|
21
21
|
version: '0'
|
|
22
22
|
type: :runtime
|
|
23
23
|
prerelease: false
|
|
24
|
-
version_requirements: *
|
|
24
|
+
version_requirements: *70108466796700
|
|
25
25
|
description: Build an Xcode project when source files change.
|
|
26
26
|
email:
|
|
27
27
|
- coder@kyleisom.net
|
|
@@ -73,9 +73,6 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
73
73
|
- - ! '>='
|
|
74
74
|
- !ruby/object:Gem::Version
|
|
75
75
|
version: '0'
|
|
76
|
-
segments:
|
|
77
|
-
- 0
|
|
78
|
-
hash: 2326999837018115205
|
|
79
76
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
80
77
|
none: false
|
|
81
78
|
requirements:
|