lib/xcodeproj/plugin.rb in danger-xcodeproj-0.0.2 vs lib/xcodeproj/plugin.rb in danger-xcodeproj-0.0.3
- old
+ new
@@ -42,23 +42,19 @@
# @return [Array<Target>]
#
def targets
raise "Xcode project is not opened!" if @project.nil?
- puts "Targets:"
- puts @project.targets
@project.targets
end
# Targets Attributes in Xcode Project file
#
# @return [Array<TargetAttributes>]
#
def target_attributes
raise "Xcode project is not opened!" if project.nil?
-
- puts "Project Attributes:"
- puts @project.root_object.attributes["TargetAttributes"]
+
@project.root_object.attributes["TargetAttributes"]
end
end
end