Skip to content

Commit

Permalink
Nitpickings ;-)
Browse files Browse the repository at this point in the history
  • Loading branch information
AliSoftware committed Sep 26, 2015
1 parent ebd2da1 commit f90313f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Expand Up @@ -7,7 +7,8 @@
* Add `tvos` as a new platform.
[Boris Bügling](https://github.com/neonichu)
[Xcodeproj#301](https://github.com/CocoaPods/Xcodeproj/pull/301)
* Allow accessing the new Xcode 7's Clang code coverage setting on XCSchemes ("Gather Code Coverage" checkbox).
* Allow accessing the new Xcode 7's Clang code coverage setting on XCSchemes
("Gather Code Coverage" checkbox).
[Olivier Halligon](https://github.com/AliSoftware)
[#307](https://github.com/CocoaPods/Xcodeproj/pull/307)

Expand Down
4 changes: 2 additions & 2 deletions lib/xcodeproj/scheme/test_action.rb
Expand Up @@ -36,14 +36,14 @@ def should_use_launch_scheme_args_env=(flag)
end

# @return [Bool]
# Whether Xcode7's Clang Code Coverage is enabled ('Gather coverage data' turned ON)
# Whether Clang Code Coverage is enabled ('Gather coverage data' turned ON)
#
def code_coverage_enabled?
string_to_bool(@xml_element.attributes['codeCoverageEnabled'])
end

# @rparam [Bool] flag
# Set whether Xcode7's Clang Code Coverage is enabled ('Gather coverage data' turned ON)
# Set whether Clang Code Coverage is enabled ('Gather coverage data' turned ON)
#
def code_coverage_enabled=(flag)
@xml_element.attributes['codeCoverageEnabled'] = bool_to_string(flag)
Expand Down

0 comments on commit f90313f

Please sign in to comment.