danger-xcodeproj 0.0.2 → 0.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.
- checksums.yaml +4 -4
- data/lib/xcodeproj/gem_version.rb +1 -1
- data/lib/xcodeproj/plugin.rb +1 -5
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: bd148d8e982ffb15ff1ed55b31182d79673a487f0382eb77d926576b878b3f4e
|
|
4
|
+
data.tar.gz: d9b6ea0e3ecbf28cac24aba65609ebfd8c997dcf125fa00e1285eba47eaecb4d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b4d0bc190e6aaaeab3a09dc14b5e949b7d85087960ff7aa022d601c400dccda06ca67fa80e29812887b52c1b504c3093b166eb41efb67477acc76784ab3ce632
|
|
7
|
+
data.tar.gz: 59284645cfcc515ca204176782236d6c77d6cec830b8a4252b7778d50b7d9133670d46afe430e98bdd511373017127b5c1a43da10a5d3e0f2eaf4fea131447c6
|
data/lib/xcodeproj/plugin.rb
CHANGED
|
@@ -44,8 +44,6 @@ module Danger
|
|
|
44
44
|
def targets
|
|
45
45
|
raise "Xcode project is not opened!" if @project.nil?
|
|
46
46
|
|
|
47
|
-
puts "Targets:"
|
|
48
|
-
puts @project.targets
|
|
49
47
|
@project.targets
|
|
50
48
|
end
|
|
51
49
|
|
|
@@ -55,9 +53,7 @@ module Danger
|
|
|
55
53
|
#
|
|
56
54
|
def target_attributes
|
|
57
55
|
raise "Xcode project is not opened!" if project.nil?
|
|
58
|
-
|
|
59
|
-
puts "Project Attributes:"
|
|
60
|
-
puts @project.root_object.attributes["TargetAttributes"]
|
|
56
|
+
|
|
61
57
|
@project.root_object.attributes["TargetAttributes"]
|
|
62
58
|
end
|
|
63
59
|
end
|