diff --git a/CHANGELOG.md b/CHANGELOG.md index 2f8e743e..1dc04390 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,6 +16,10 @@ [Max Langer](https://github.com/mangerlahn) [#853](https://github.com/CocoaPods/Xcodeproj/pull/853) +* Add `dependency_file` support for `PBXBuildRule`. + [Zachary Waldowski](https://github.com/zwaldowski) + [#862](https://github.com/CocoaPods/Xcodeproj/pull/862) + ##### Bug Fixes * None. diff --git a/lib/xcodeproj/project/object/build_rule.rb b/lib/xcodeproj/project/object/build_rule.rb index 929fbab0..a3e8cacf 100644 --- a/lib/xcodeproj/project/object/build_rule.rb +++ b/lib/xcodeproj/project/object/build_rule.rb @@ -17,6 +17,13 @@ class PBXBuildRule < AbstractObject # attribute :compiler_spec, String + # @return [String] the discovered dependency file to use. + # + # @example + # `$(DERIVED_FILES_DIR)/$(INPUT_FILE_NAME).d`. + # + attribute :dependency_file, String + # @return [String] the type of the files that should be processed by # this rule. #