Skip to content

Commit

Permalink
Fix rubocop style errors
Browse files Browse the repository at this point in the history
  • Loading branch information
amorde committed Oct 26, 2024
1 parent d6d937a commit 7381f3f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 10 deletions.
6 changes: 3 additions & 3 deletions lib/xcodeproj/project/object/build_configuration.rb
Original file line number Diff line number Diff line change
Expand Up @@ -27,16 +27,16 @@ class XCBuildConfiguration < AbstractObject
#
has_one :base_configuration_reference, PBXFileReference

# @return [PBXFileSystemSynchronizedRootGroup] an optional reference to a group
# @return [PBXFileSystemSynchronizedRootGroup] an optional reference to a group
# synchronized with the file system that contains a configuration file (`.xcconfig`).
#
#
# @note the configuration file relative path must be provided in `base_configuration_reference_relative_path`
#
has_one :base_configuration_reference_anchor, PBXFileSystemSynchronizedRootGroup

# @return [String] the relative path of a configuration file (`.xcconfig`)
# inside a group synchronized with the file system.
#
#
# @note the configuration file group must be provided in `base_configuration_reference_anchor`
#
attribute :base_configuration_reference_relative_path, String
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,8 @@
module Xcodeproj
class Project
module Object

# This class represents a file system synchronized build file exception set.
class PBXFileSystemSynchronizedBuildFileExceptionSet < AbstractObject

# @return [AbstractTarget] The target to which this exception set applies.
#
has_one :target, AbstractTarget
Expand All @@ -31,7 +29,7 @@ class PBXFileSystemSynchronizedBuildFileExceptionSet < AbstractObject
# @return [Hash] The files with specific attributes.
#
attribute :attributes_by_relative_path, Hash

# @return [Hash] The files with a platform filter.
#
attribute :platform_filters_by_relative_path, Hash
Expand All @@ -43,7 +41,6 @@ def display_name

# This class represents a file system synchronized group build phase membership exception set.
class PBXFileSystemSynchronizedGroupBuildPhaseMembershipExceptionSet < AbstractObject

# @return [PBXSourcesBuildPhase] The build phase to which this exception set applies.
#
has_one :build_phase, PBXSourcesBuildPhase
Expand All @@ -60,7 +57,6 @@ def display_name
"Exceptions for \"#{GroupableHelper.parent(self).display_name}\" folder in \"#{build_phase.name}\" build phase"
end
end

end
end
end
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ class Project
module Object
# This class represents a file system synchronized root group.
class PBXFileSystemSynchronizedRootGroup < AbstractObject

# @return [String] the directory to which the path is relative.
#
# @note The accepted values are:
Expand Down Expand Up @@ -52,7 +51,7 @@ class PBXFileSystemSynchronizedRootGroup < AbstractObject
#
attribute :wraps_lines, String

# @return [Array<PBXFileSystemSynchronizedBuildFileExceptionSet, PBXFileSystemSynchronizedGroupBuildPhaseMembershipExceptionSet>]
# @return [Array<PBXFileSystemSynchronizedBuildFileExceptionSet, PBXFileSystemSynchronizedGroupBuildPhaseMembershipExceptionSet>]
# The list of exceptions applying to this group.
#
has_many :exceptions, [PBXFileSystemSynchronizedBuildFileExceptionSet, PBXFileSystemSynchronizedGroupBuildPhaseMembershipExceptionSet]
Expand Down

0 comments on commit 7381f3f

Please sign in to comment.