Showing preview only (593K chars total). Download the full file or copy to clipboard to get everything.
Repository: RefactoringGuru/design-patterns-swift
Branch: main
Commit: 16ee19fb9046
Files: 182
Total size: 516.2 KB
Directory structure:
gitextract_bw7a_rjj/
├── .gitignore
├── LICENSE.txt
├── ProjectBundle/
│ └── Info.plist
├── RefactoringGuru.Patterns.xcodeproj/
│ ├── project.pbxproj
│ ├── project.xcworkspace/
│ │ ├── contents.xcworkspacedata
│ │ └── xcshareddata/
│ │ └── IDEWorkspaceChecks.plist
│ └── xcshareddata/
│ └── xcschemes/
│ ├── AbstractFactoryConceptual.xcscheme
│ ├── AbstractFactoryRealWorld.xcscheme
│ ├── AdapterConceptual.xcscheme
│ ├── AdapterRealWorld.xcscheme
│ ├── BridgeConceptual.xcscheme
│ ├── BridgeRealWorld.xcscheme
│ ├── BuilderConceptual.xcscheme
│ ├── BuilderRealWorld.xcscheme
│ ├── ChainOfResponsibilityConceptual.xcscheme
│ ├── ChainOfResponsibilityRealWorld.xcscheme
│ ├── CommandConceptual.xcscheme
│ ├── CommandRealWorld.xcscheme
│ ├── CompositeConceptual.xcscheme
│ ├── CompositeRealWorld.xcscheme
│ ├── DecoratorConceptual.xcscheme
│ ├── DecoratorRealWorld.xcscheme
│ ├── FacadeConceptual.xcscheme
│ ├── FacadeRealWorld.xcscheme
│ ├── FactoryMethodConceptual.xcscheme
│ ├── FactoryMethodRealWorld.xcscheme
│ ├── FlyweightConceptual.xcscheme
│ ├── FlyweightRealWorld.xcscheme
│ ├── IteratorConceptual.xcscheme
│ ├── IteratorRealWorld.xcscheme
│ ├── MediatorConceptual.xcscheme
│ ├── MediatorRealWorld.xcscheme
│ ├── MementoConceptual.xcscheme
│ ├── MementoRealWorld.xcscheme
│ ├── ObserverConceptual.xcscheme
│ ├── ObserverRealWorld.xcscheme
│ ├── PrototypeConceptual.xcscheme
│ ├── PrototypeRealWorld.xcscheme
│ ├── ProxyConceptual.xcscheme
│ ├── ProxyRealWorld.xcscheme
│ ├── SingletonConceptual.xcscheme
│ ├── SingletonRealWorld.xcscheme
│ ├── StateConceptual.xcscheme
│ ├── StateRealWorld.xcscheme
│ ├── StrategyConceptual.xcscheme
│ ├── StrategyRealWorld.xcscheme
│ ├── TemplateMethodConceptual.xcscheme
│ ├── TemplateMethodRealWorld.xcscheme
│ ├── VisitorConceptual.xcscheme
│ └── VisitorRealWorld.xcscheme
└── Sources/
├── AbstractFactory/
│ ├── Conceptual/
│ │ ├── Example.swift
│ │ ├── Info.plist
│ │ └── Output.txt
│ └── RealWorld/
│ ├── Example.swift
│ ├── Info.plist
│ └── Output.txt
├── Adapter/
│ ├── Conceptual/
│ │ ├── Example.swift
│ │ ├── Info.plist
│ │ └── Output.txt
│ └── RealWorld/
│ ├── Example.swift
│ ├── Info.plist
│ └── Output.txt
├── Bridge/
│ ├── Conceptual/
│ │ ├── Example.swift
│ │ ├── Info.plist
│ │ └── Output.txt
│ └── RealWorld/
│ ├── Example.swift
│ ├── Info.plist
│ └── Output.txt
├── Builder/
│ ├── Conceptual/
│ │ ├── Example.swift
│ │ ├── Info.plist
│ │ └── Output.txt
│ └── RealWorld/
│ ├── Example.swift
│ ├── Info.plist
│ └── Output.txt
├── ChainOfResponsibility/
│ ├── Conceptual/
│ │ ├── Example.swift
│ │ ├── Info.plist
│ │ └── Output.txt
│ └── RealWorld/
│ ├── Example.swift
│ ├── Info.plist
│ └── Output.txt
├── Command/
│ ├── Conceptual/
│ │ ├── Example.swift
│ │ ├── Info.plist
│ │ └── Output.txt
│ └── RealWorld/
│ ├── Example.swift
│ ├── Info.plist
│ └── Output.txt
├── Composite/
│ ├── Conceptual/
│ │ ├── Example.swift
│ │ ├── Info.plist
│ │ └── Output.txt
│ └── RealWorld/
│ ├── Example.swift
│ ├── Info.plist
│ └── Output.txt
├── Decorator/
│ ├── Conceptual/
│ │ ├── Example.swift
│ │ ├── Info.plist
│ │ └── Output.txt
│ └── RealWorld/
│ ├── Example.swift
│ ├── Info.plist
│ └── Output.txt
├── Facade/
│ ├── Conceptual/
│ │ ├── Example.swift
│ │ ├── Info.plist
│ │ └── Output.txt
│ └── RealWorld/
│ ├── Example.swift
│ ├── Info.plist
│ └── Output.txt
├── FactoryMethod/
│ ├── Conceptual/
│ │ ├── Example.swift
│ │ ├── Info.plist
│ │ └── Output.txt
│ └── RealWorld/
│ ├── Example.swift
│ ├── Info.plist
│ └── Output.txt
├── Flyweight/
│ ├── Conceptual/
│ │ ├── Example.swift
│ │ ├── Info.plist
│ │ └── Output.txt
│ └── RealWorld/
│ ├── Example.swift
│ ├── Info.plist
│ └── Output.txt
├── Iterator/
│ ├── Conceptual/
│ │ ├── Example.swift
│ │ ├── Info.plist
│ │ └── Output.txt
│ └── RealWorld/
│ ├── Example.swift
│ ├── Info.plist
│ └── Output.txt
├── Mediator/
│ ├── Conceptual/
│ │ ├── Example.swift
│ │ ├── Info.plist
│ │ └── Output.txt
│ └── RealWorld/
│ ├── Example.swift
│ ├── Info.plist
│ └── Output.txt
├── Memento/
│ ├── Conceptual/
│ │ ├── Example.swift
│ │ ├── Info.plist
│ │ └── Output.txt
│ └── RealWorld/
│ ├── Example.swift
│ ├── Info.plist
│ └── Output.txt
├── Observer/
│ ├── Conceptual/
│ │ ├── Example.swift
│ │ ├── Info.plist
│ │ └── Output.txt
│ └── RealWorld/
│ ├── Example.swift
│ ├── Info.plist
│ └── Output.txt
├── Prototype/
│ ├── Conceptual/
│ │ ├── Example.swift
│ │ ├── Info.plist
│ │ └── Output.txt
│ └── RealWorld/
│ ├── Example.swift
│ ├── Info.plist
│ └── Output.txt
├── Proxy/
│ ├── Conceptual/
│ │ ├── Example.swift
│ │ ├── Info.plist
│ │ └── Output.txt
│ └── RealWorld/
│ ├── Example.swift
│ ├── Info.plist
│ └── Output.txt
├── Singleton/
│ ├── Conceptual/
│ │ ├── Example.swift
│ │ ├── Info.plist
│ │ └── Output.txt
│ └── RealWorld/
│ ├── Example.swift
│ ├── Info.plist
│ └── Output.txt
├── State/
│ ├── Conceptual/
│ │ ├── Example.swift
│ │ ├── Info.plist
│ │ └── Output.txt
│ └── RealWorld/
│ ├── Example.swift
│ ├── Info.plist
│ └── Output.txt
├── Strategy/
│ ├── Conceptual/
│ │ ├── Example.swift
│ │ ├── Info.plist
│ │ └── Output.txt
│ └── RealWorld/
│ ├── Example.swift
│ ├── Info.plist
│ └── Output.txt
├── TemplateMethod/
│ ├── Conceptual/
│ │ ├── Example.swift
│ │ ├── Info.plist
│ │ └── Output.txt
│ └── RealWorld/
│ ├── Example.swift
│ ├── Info.plist
│ └── Output.txt
└── Visitor/
├── Conceptual/
│ ├── Example.swift
│ ├── Info.plist
│ └── Output.txt
└── RealWorld/
├── Example.swift
├── Info.plist
└── Output.txt
================================================
FILE CONTENTS
================================================
================================================
FILE: .gitignore
================================================
# Xcode
#
build/
*.pbxuser
!default.pbxuser
*.mode1v3
!default.mode1v3
*.mode2v3
!default.mode2v3
*.perspectivev3
!default.perspectivev3
xcuserdata
*.xccheckout
*.moved-aside
DerivedData
*.hmap
*.ipa
*.xcuserstate
*.gcno
*.gcda
.DS_Store
#markdown files
*.md
*.mlmodel
fastlane/report.xml
Pods/
.idea
================================================
FILE: LICENSE.txt
================================================
Refactoring.Guru: Design Patterns in Swift
© by Eremenko Maxim and Alexander Shvets
This work is licensed under a
Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International License.
You should have received a copy of the license along with this
work. If not, see <http://creativecommons.org/licenses/by-nc-nd/4.0/>.
=======================================================================
Attribution-NonCommercial-NoDerivatives 4.0 International
=======================================================================
Creative Commons Corporation ("Creative Commons") is not a law firm and
does not provide legal services or legal advice. Distribution of
Creative Commons public licenses does not create a lawyer-client or
other relationship. Creative Commons makes its licenses and related
information available on an "as-is" basis. Creative Commons gives no
warranties regarding its licenses, any material licensed under their
terms and conditions, or any related information. Creative Commons
disclaims all liability for damages resulting from their use to the
fullest extent possible.
Using Creative Commons Public Licenses
Creative Commons public licenses provide a standard set of terms and
conditions that creators and other rights holders may use to share
original works of authorship and other material subject to copyright
and certain other rights specified in the public license below. The
following considerations are for informational purposes only, are not
exhaustive, and do not form part of our licenses.
Considerations for licensors: Our public licenses are
intended for use by those authorized to give the public
permission to use material in ways otherwise restricted by
copyright and certain other rights. Our licenses are
irrevocable. Licensors should read and understand the terms
and conditions of the license they choose before applying it.
Licensors should also secure all rights necessary before
applying our licenses so that the public can reuse the
material as expected. Licensors should clearly mark any
material not subject to the license. This includes other CC-
licensed material, or material used under an exception or
limitation to copyright. More considerations for licensors:
wiki.creativecommons.org/Considerations_for_licensors
Considerations for the public: By using one of our public
licenses, a licensor grants the public permission to use the
licensed material under specified terms and conditions. If
the licensor's permission is not necessary for any reason--for
example, because of any applicable exception or limitation to
copyright--then that use is not regulated by the license. Our
licenses grant only permissions under copyright and certain
other rights that a licensor has authority to grant. Use of
the licensed material may still be restricted for other
reasons, including because others have copyright or other
rights in the material. A licensor may make special requests,
such as asking that all changes be marked or described.
Although not required by our licenses, you are encouraged to
respect those requests where reasonable. More_considerations
for the public:
wiki.creativecommons.org/Considerations_for_licensees
=======================================================================
Creative Commons Attribution-NonCommercial-NoDerivatives 4.0
International Public License
By exercising the Licensed Rights (defined below), You accept and agree
to be bound by the terms and conditions of this Creative Commons
Attribution-NonCommercial-NoDerivatives 4.0 International Public
License ("Public License"). To the extent this Public License may be
interpreted as a contract, You are granted the Licensed Rights in
consideration of Your acceptance of these terms and conditions, and the
Licensor grants You such rights in consideration of benefits the
Licensor receives from making the Licensed Material available under
these terms and conditions.
Section 1 -- Definitions.
a. Adapted Material means material subject to Copyright and Similar
Rights that is derived from or based upon the Licensed Material
and in which the Licensed Material is translated, altered,
arranged, transformed, or otherwise modified in a manner requiring
permission under the Copyright and Similar Rights held by the
Licensor. For purposes of this Public License, where the Licensed
Material is a musical work, performance, or sound recording,
Adapted Material is always produced where the Licensed Material is
synched in timed relation with a moving image.
b. Copyright and Similar Rights means copyright and/or similar rights
closely related to copyright including, without limitation,
performance, broadcast, sound recording, and Sui Generis Database
Rights, without regard to how the rights are labeled or
categorized. For purposes of this Public License, the rights
specified in Section 2(b)(1)-(2) are not Copyright and Similar
Rights.
c. Effective Technological Measures means those measures that, in the
absence of proper authority, may not be circumvented under laws
fulfilling obligations under Article 11 of the WIPO Copyright
Treaty adopted on December 20, 1996, and/or similar international
agreements.
d. Exceptions and Limitations means fair use, fair dealing, and/or
any other exception or limitation to Copyright and Similar Rights
that applies to Your use of the Licensed Material.
e. Licensed Material means the artistic or literary work, database,
or other material to which the Licensor applied this Public
License.
f. Licensed Rights means the rights granted to You subject to the
terms and conditions of this Public License, which are limited to
all Copyright and Similar Rights that apply to Your use of the
Licensed Material and that the Licensor has authority to license.
g. Licensor means the individual(s) or entity(ies) granting rights
under this Public License.
h. NonCommercial means not primarily intended for or directed towards
commercial advantage or monetary compensation. For purposes of
this Public License, the exchange of the Licensed Material for
other material subject to Copyright and Similar Rights by digital
file-sharing or similar means is NonCommercial provided there is
no payment of monetary compensation in connection with the
exchange.
i. Share means to provide material to the public by any means or
process that requires permission under the Licensed Rights, such
as reproduction, public display, public performance, distribution,
dissemination, communication, or importation, and to make material
available to the public including in ways that members of the
public may access the material from a place and at a time
individually chosen by them.
j. Sui Generis Database Rights means rights other than copyright
resulting from Directive 96/9/EC of the European Parliament and of
the Council of 11 March 1996 on the legal protection of databases,
as amended and/or succeeded, as well as other essentially
equivalent rights anywhere in the world.
k. You means the individual or entity exercising the Licensed Rights
under this Public License. Your has a corresponding meaning.
Section 2 -- Scope.
a. License grant.
1. Subject to the terms and conditions of this Public License,
the Licensor hereby grants You a worldwide, royalty-free,
non-sublicensable, non-exclusive, irrevocable license to
exercise the Licensed Rights in the Licensed Material to:
a. reproduce and Share the Licensed Material, in whole or
in part, for NonCommercial purposes only; and
b. produce and reproduce, but not Share, Adapted Material
for NonCommercial purposes only.
2. Exceptions and Limitations. For the avoidance of doubt, where
Exceptions and Limitations apply to Your use, this Public
License does not apply, and You do not need to comply with
its terms and conditions.
3. Term. The term of this Public License is specified in Section
6(a).
4. Media and formats; technical modifications allowed. The
Licensor authorizes You to exercise the Licensed Rights in
all media and formats whether now known or hereafter created,
and to make technical modifications necessary to do so. The
Licensor waives and/or agrees not to assert any right or
authority to forbid You from making technical modifications
necessary to exercise the Licensed Rights, including
technical modifications necessary to circumvent Effective
Technological Measures. For purposes of this Public License,
simply making modifications authorized by this Section 2(a)
(4) never produces Adapted Material.
5. Downstream recipients.
a. Offer from the Licensor -- Licensed Material. Every
recipient of the Licensed Material automatically
receives an offer from the Licensor to exercise the
Licensed Rights under the terms and conditions of this
Public License.
b. No downstream restrictions. You may not offer or impose
any additional or different terms or conditions on, or
apply any Effective Technological Measures to, the
Licensed Material if doing so restricts exercise of the
Licensed Rights by any recipient of the Licensed
Material.
6. No endorsement. Nothing in this Public License constitutes or
may be construed as permission to assert or imply that You
are, or that Your use of the Licensed Material is, connected
with, or sponsored, endorsed, or granted official status by,
the Licensor or others designated to receive attribution as
provided in Section 3(a)(1)(A)(i).
b. Other rights.
1. Moral rights, such as the right of integrity, are not
licensed under this Public License, nor are publicity,
privacy, and/or other similar personality rights; however, to
the extent possible, the Licensor waives and/or agrees not to
assert any such rights held by the Licensor to the limited
extent necessary to allow You to exercise the Licensed
Rights, but not otherwise.
2. Patent and trademark rights are not licensed under this
Public License.
3. To the extent possible, the Licensor waives any right to
collect royalties from You for the exercise of the Licensed
Rights, whether directly or through a collecting society
under any voluntary or waivable statutory or compulsory
licensing scheme. In all other cases the Licensor expressly
reserves any right to collect such royalties, including when
the Licensed Material is used other than for NonCommercial
purposes.
Section 3 -- License Conditions.
Your exercise of the Licensed Rights is expressly made subject to the
following conditions.
a. Attribution.
1. If You Share the Licensed Material, You must:
a. retain the following if it is supplied by the Licensor
with the Licensed Material:
i. identification of the creator(s) of the Licensed
Material and any others designated to receive
attribution, in any reasonable manner requested by
the Licensor (including by pseudonym if
designated);
ii. a copyright notice;
iii. a notice that refers to this Public License;
iv. a notice that refers to the disclaimer of
warranties;
v. a URI or hyperlink to the Licensed Material to the
extent reasonably practicable;
b. indicate if You modified the Licensed Material and
retain an indication of any previous modifications; and
c. indicate the Licensed Material is licensed under this
Public License, and include the text of, or the URI or
hyperlink to, this Public License.
For the avoidance of doubt, You do not have permission under
this Public License to Share Adapted Material.
2. You may satisfy the conditions in Section 3(a)(1) in any
reasonable manner based on the medium, means, and context in
which You Share the Licensed Material. For example, it may be
reasonable to satisfy the conditions by providing a URI or
hyperlink to a resource that includes the required
information.
3. If requested by the Licensor, You must remove any of the
information required by Section 3(a)(1)(A) to the extent
reasonably practicable.
Section 4 -- Sui Generis Database Rights.
Where the Licensed Rights include Sui Generis Database Rights that
apply to Your use of the Licensed Material:
a. for the avoidance of doubt, Section 2(a)(1) grants You the right
to extract, reuse, reproduce, and Share all or a substantial
portion of the contents of the database for NonCommercial purposes
only and provided You do not Share Adapted Material;
b. if You include all or a substantial portion of the database
contents in a database in which You have Sui Generis Database
Rights, then the database in which You have Sui Generis Database
Rights (but not its individual contents) is Adapted Material; and
c. You must comply with the conditions in Section 3(a) if You Share
all or a substantial portion of the contents of the database.
For the avoidance of doubt, this Section 4 supplements and does not
replace Your obligations under this Public License where the Licensed
Rights include other Copyright and Similar Rights.
Section 5 -- Disclaimer of Warranties and Limitation of Liability.
a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE
EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS
AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF
ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS,
IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION,
WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR
PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS,
ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT
KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT
ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU.
b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE
TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION,
NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT,
INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES,
COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR
USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN
ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR
DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR
IN PART, THIS LIMITATION MAY NOT APPLY TO YOU.
c. The disclaimer of warranties and limitation of liability provided
above shall be interpreted in a manner that, to the extent
possible, most closely approximates an absolute disclaimer and
waiver of all liability.
Section 6 -- Term and Termination.
a. This Public License applies for the term of the Copyright and
Similar Rights licensed here. However, if You fail to comply with
this Public License, then Your rights under this Public License
terminate automatically.
b. Where Your right to use the Licensed Material has terminated under
Section 6(a), it reinstates:
1. automatically as of the date the violation is cured, provided
it is cured within 30 days of Your discovery of the
violation; or
2. upon express reinstatement by the Licensor.
For the avoidance of doubt, this Section 6(b) does not affect any
right the Licensor may have to seek remedies for Your violations
of this Public License.
c. For the avoidance of doubt, the Licensor may also offer the
Licensed Material under separate terms or conditions or stop
distributing the Licensed Material at any time; however, doing so
will not terminate this Public License.
d. Sections 1, 5, 6, 7, and 8 survive termination of this Public
License.
Section 7 -- Other Terms and Conditions.
a. The Licensor shall not be bound by any additional or different
terms or conditions communicated by You unless expressly agreed.
b. Any arrangements, understandings, or agreements regarding the
Licensed Material not stated herein are separate from and
independent of the terms and conditions of this Public License.
Section 8 -- Interpretation.
a. For the avoidance of doubt, this Public License does not, and
shall not be interpreted to, reduce, limit, restrict, or impose
conditions on any use of the Licensed Material that could lawfully
be made without permission under this Public License.
b. To the extent possible, if any provision of this Public License is
deemed unenforceable, it shall be automatically reformed to the
minimum extent necessary to make it enforceable. If the provision
cannot be reformed, it shall be severed from this Public License
without affecting the enforceability of the remaining terms and
conditions.
c. No term or condition of this Public License will be waived and no
failure to comply consented to unless expressly agreed to by the
Licensor.
d. Nothing in this Public License constitutes or may be interpreted
as a limitation upon, or waiver of, any privileges and immunities
that apply to the Licensor or You, including from the legal
processes of any jurisdiction or authority.
=======================================================================
Creative Commons is not a party to its public
licenses. Notwithstanding, Creative Commons may elect to apply one of
its public licenses to material it publishes and in those instances
will be considered the “Licensor.” The text of the Creative Commons
public licenses is dedicated to the public domain under the CC0 Public
Domain Dedication. Except for the limited purpose of indicating that
material is shared under a Creative Commons public license or as
otherwise permitted by the Creative Commons policies published at
creativecommons.org/policies, Creative Commons does not authorize the
use of the trademark "Creative Commons" or any other trademark or logo
of Creative Commons without its prior written consent including,
without limitation, in connection with any unauthorized modifications
to any of its public licenses or any other arrangements,
understandings, or agreements concerning use of licensed material. For
the avoidance of doubt, this paragraph does not form part of the
public licenses.
Creative Commons may be contacted at creativecommons.org.
================================================
FILE: ProjectBundle/Info.plist
================================================
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>$(DEVELOPMENT_LANGUAGE)</string>
<key>CFBundleExecutable</key>
<string>$(EXECUTABLE_NAME)</string>
<key>CFBundleIdentifier</key>
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>$(PRODUCT_NAME)</string>
<key>CFBundlePackageType</key>
<string>BNDL</string>
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<key>CFBundleVersion</key>
<string>1</string>
</dict>
</plist>
================================================
FILE: RefactoringGuru.Patterns.xcodeproj/project.pbxproj
================================================
// !$*UTF8*$!
{
archiveVersion = 1;
classes = {
};
objectVersion = 48;
objects = {
/* Begin PBXBuildFile section */
912C5CE2210BC33E007DC364 /* Example.swift in Sources */ = {isa = PBXBuildFile; fileRef = 912C5CE1210BC33E007DC364 /* Example.swift */; };
912C5CEF210BC3A4007DC364 /* Example.swift in Sources */ = {isa = PBXBuildFile; fileRef = 912C5CEE210BC3A4007DC364 /* Example.swift */; };
912C5D05210BC4A5007DC364 /* Example.swift in Sources */ = {isa = PBXBuildFile; fileRef = 912C5D03210BC4A5007DC364 /* Example.swift */; };
912C5D0E210BC4D9007DC364 /* Example.swift in Sources */ = {isa = PBXBuildFile; fileRef = 912C5D0D210BC4D9007DC364 /* Example.swift */; };
912C5D1B210BC553007DC364 /* Example.swift in Sources */ = {isa = PBXBuildFile; fileRef = 912C5D1A210BC553007DC364 /* Example.swift */; };
912C5D27210BC594007DC364 /* Example.swift in Sources */ = {isa = PBXBuildFile; fileRef = 912C5D26210BC594007DC364 /* Example.swift */; };
912C5D33210BC5E1007DC364 /* Example.swift in Sources */ = {isa = PBXBuildFile; fileRef = 912C5D32210BC5E1007DC364 /* Example.swift */; };
912C5D40210BC62D007DC364 /* Example.swift in Sources */ = {isa = PBXBuildFile; fileRef = 912C5D3F210BC62D007DC364 /* Example.swift */; };
912C5D4D210BC6A8007DC364 /* Example.swift in Sources */ = {isa = PBXBuildFile; fileRef = 912C5D4C210BC6A8007DC364 /* Example.swift */; };
912C5D59210BC6F1007DC364 /* Example.swift in Sources */ = {isa = PBXBuildFile; fileRef = 912C5D58210BC6F1007DC364 /* Example.swift */; };
912C5D65210BC749007DC364 /* Example.swift in Sources */ = {isa = PBXBuildFile; fileRef = 912C5D64210BC749007DC364 /* Example.swift */; };
912C5D72210BC7B1007DC364 /* Example.swift in Sources */ = {isa = PBXBuildFile; fileRef = 912C5D71210BC7B1007DC364 /* Example.swift */; };
912C5D7F210BC81E007DC364 /* Example.swift in Sources */ = {isa = PBXBuildFile; fileRef = 912C5D7E210BC81E007DC364 /* Example.swift */; };
912C5D8B210BC865007DC364 /* Example.swift in Sources */ = {isa = PBXBuildFile; fileRef = 912C5D8A210BC865007DC364 /* Example.swift */; };
91301AD520F55C25003B4FC0 /* Example.swift in Sources */ = {isa = PBXBuildFile; fileRef = 91301AD420F55C25003B4FC0 /* Example.swift */; };
91301AE220F55CAA003B4FC0 /* Example.swift in Sources */ = {isa = PBXBuildFile; fileRef = 91301AE120F55CAA003B4FC0 /* Example.swift */; };
919C89FA20DD7F03006EE57D /* Example.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9187BFB220B5D0A600266EF8 /* Example.swift */; };
919C8A0D20DD7F58006EE57D /* Example.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9187BFB620B5D0A600266EF8 /* Example.swift */; };
919C8A1B20DD81E7006EE57D /* Example.swift in Sources */ = {isa = PBXBuildFile; fileRef = 916B889F20BC6E6800BA92DF /* Example.swift */; };
919C8A2820DD829C006EE57D /* Example.swift in Sources */ = {isa = PBXBuildFile; fileRef = 916B88A520BD468100BA92DF /* Example.swift */; };
919C8A4120DD832C006EE57D /* Example.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9187BFDF20B5D0A700266EF8 /* Example.swift */; };
919C8A4E20DD83AA006EE57D /* Example.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9187BFDC20B5D0A700266EF8 /* Example.swift */; };
919C8A6720DD84DB006EE57D /* Example.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9187BFE520B5D0A700266EF8 /* Example.swift */; };
919C8A7520DD85A3006EE57D /* Example.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9187BFE320B5D0A700266EF8 /* Example.swift */; };
919C8A8220DD8698006EE57D /* Example.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9187BFD520B5D0A700266EF8 /* Example.swift */; };
919C8A8F20DD86EB006EE57D /* Example.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9187BFD220B5D0A700266EF8 /* Example.swift */; };
919C8AAA20DD879C006EE57D /* Example.swift in Sources */ = {isa = PBXBuildFile; fileRef = 916B889220BC4DA400BA92DF /* Example.swift */; };
919C8AB220DD87F2006EE57D /* Example.swift in Sources */ = {isa = PBXBuildFile; fileRef = 919C8AB120DD87F2006EE57D /* Example.swift */; };
919C8ACF20DD887F006EE57D /* Example.swift in Sources */ = {isa = PBXBuildFile; fileRef = 916B889A20BC587D00BA92DF /* Example.swift */; };
919C8AD720DD88C6006EE57D /* Example.swift in Sources */ = {isa = PBXBuildFile; fileRef = 919C8AD620DD88C6006EE57D /* Example.swift */; };
919C8AE820DD894F006EE57D /* Example.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9187BFBB20B5D0A600266EF8 /* Example.swift */; };
919C8AF520DD89CE006EE57D /* Example.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9187BFBF20B5D0A600266EF8 /* Example.swift */; };
919C8B0220DD8AB3006EE57D /* Example.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9187BFEE20B5D0A700266EF8 /* Example.swift */; };
919C8B0F20DD8B12006EE57D /* Example.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9187BFEA20B5D0A700266EF8 /* Example.swift */; };
919C8B1C20DD8B70006EE57D /* Example.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9187BFCC20B5D0A700266EF8 /* Example.swift */; };
919C8B2920DD8BC3006EE57D /* Example.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9187BFC920B5D0A700266EF8 /* Example.swift */; };
91B1206E20F610E400730C37 /* Example.swift in Sources */ = {isa = PBXBuildFile; fileRef = 91B1206D20F610E400730C37 /* Example.swift */; };
91B1207A20F6114A00730C37 /* Example.swift in Sources */ = {isa = PBXBuildFile; fileRef = 91B1207920F6114A00730C37 /* Example.swift */; };
91B1208620F611DA00730C37 /* Example.swift in Sources */ = {isa = PBXBuildFile; fileRef = 91B1208520F611DA00730C37 /* Example.swift */; };
91B1209320F6120C00730C37 /* Example.swift in Sources */ = {isa = PBXBuildFile; fileRef = 91B1209220F6120C00730C37 /* Example.swift */; };
91B120A020F6125500730C37 /* Example.swift in Sources */ = {isa = PBXBuildFile; fileRef = 91B1209F20F6125500730C37 /* Example.swift */; };
91B120AC20F6127400730C37 /* Example.swift in Sources */ = {isa = PBXBuildFile; fileRef = 91B120AB20F6127400730C37 /* Example.swift */; };
91B120B920F6130A00730C37 /* Example.swift in Sources */ = {isa = PBXBuildFile; fileRef = 91B120B820F6130A00730C37 /* Example.swift */; };
91B120C520F6132E00730C37 /* Example.swift in Sources */ = {isa = PBXBuildFile; fileRef = 91B120C420F6132E00730C37 /* Example.swift */; };
/* End PBXBuildFile section */
/* Begin PBXFileReference section */
912C5CDF210BC33D007DC364 /* MediatorConceptual.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = MediatorConceptual.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
912C5CE1210BC33E007DC364 /* Example.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Example.swift; sourceTree = "<group>"; };
912C5CE3210BC33E007DC364 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
912C5CEC210BC3A4007DC364 /* MediatorRealWorld.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = MediatorRealWorld.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
912C5CEE210BC3A4007DC364 /* Example.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Example.swift; sourceTree = "<group>"; };
912C5CF0210BC3A4007DC364 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
912C5CF8210BC3F5007DC364 /* MementoConceptual.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = MementoConceptual.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
912C5D03210BC4A5007DC364 /* Example.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Example.swift; sourceTree = "<group>"; };
912C5D04210BC4A5007DC364 /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
912C5D0B210BC4D8007DC364 /* MementoRealWorld.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = MementoRealWorld.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
912C5D0D210BC4D9007DC364 /* Example.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Example.swift; sourceTree = "<group>"; };
912C5D0F210BC4D9007DC364 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
912C5D18210BC553007DC364 /* ObserverConceptual.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = ObserverConceptual.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
912C5D1A210BC553007DC364 /* Example.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Example.swift; sourceTree = "<group>"; };
912C5D1C210BC553007DC364 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
912C5D24210BC594007DC364 /* ObserverRealWorld.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = ObserverRealWorld.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
912C5D26210BC594007DC364 /* Example.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Example.swift; sourceTree = "<group>"; };
912C5D28210BC594007DC364 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
912C5D30210BC5E1007DC364 /* StateConceptual.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = StateConceptual.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
912C5D32210BC5E1007DC364 /* Example.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Example.swift; sourceTree = "<group>"; };
912C5D34210BC5E1007DC364 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
912C5D3D210BC62D007DC364 /* StateRealWorld.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = StateRealWorld.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
912C5D3F210BC62D007DC364 /* Example.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Example.swift; sourceTree = "<group>"; };
912C5D41210BC62D007DC364 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
912C5D4A210BC6A8007DC364 /* StrategyConceptual.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = StrategyConceptual.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
912C5D4C210BC6A8007DC364 /* Example.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Example.swift; sourceTree = "<group>"; };
912C5D4E210BC6A8007DC364 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
912C5D56210BC6F0007DC364 /* StrategyRealWorld.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = StrategyRealWorld.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
912C5D58210BC6F1007DC364 /* Example.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Example.swift; sourceTree = "<group>"; };
912C5D5A210BC6F1007DC364 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
912C5D62210BC749007DC364 /* TemplateMethodConceptual.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = TemplateMethodConceptual.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
912C5D64210BC749007DC364 /* Example.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Example.swift; sourceTree = "<group>"; };
912C5D66210BC749007DC364 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
912C5D6F210BC7B1007DC364 /* TemplateMethodRealWorld.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = TemplateMethodRealWorld.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
912C5D71210BC7B1007DC364 /* Example.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Example.swift; sourceTree = "<group>"; };
912C5D73210BC7B1007DC364 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
912C5D7C210BC81E007DC364 /* VisitorConceptual.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = VisitorConceptual.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
912C5D7E210BC81E007DC364 /* Example.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Example.swift; sourceTree = "<group>"; };
912C5D80210BC81E007DC364 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
912C5D88210BC865007DC364 /* VisitorRealWorld.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = VisitorRealWorld.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
912C5D8A210BC865007DC364 /* Example.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Example.swift; sourceTree = "<group>"; };
912C5D8C210BC865007DC364 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
91301AD220F55C25003B4FC0 /* FlyweightConceptual.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = FlyweightConceptual.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
91301AD420F55C25003B4FC0 /* Example.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Example.swift; sourceTree = "<group>"; };
91301AD620F55C25003B4FC0 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
91301ADF20F55CAA003B4FC0 /* FlyweightRealWorld.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = FlyweightRealWorld.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
91301AE120F55CAA003B4FC0 /* Example.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Example.swift; sourceTree = "<group>"; };
91301AE320F55CAA003B4FC0 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
913E0137210CA53800B7D71E /* Output.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Output.txt; sourceTree = "<group>"; };
913E0139210CA54F00B7D71E /* Output.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Output.txt; sourceTree = "<group>"; };
913E013B210CA55A00B7D71E /* Output.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Output.txt; sourceTree = "<group>"; };
913E013D210CA56000B7D71E /* Output.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Output.txt; sourceTree = "<group>"; };
913E013F210CA57200B7D71E /* Output.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Output.txt; sourceTree = "<group>"; };
913E0141210CA57900B7D71E /* Output.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Output.txt; sourceTree = "<group>"; };
913E0143210CA58300B7D71E /* Output.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Output.txt; sourceTree = "<group>"; };
913E0145210CA58900B7D71E /* Output.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Output.txt; sourceTree = "<group>"; };
913E0147210CA59400B7D71E /* Output.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Output.txt; sourceTree = "<group>"; };
913E0149210CA59A00B7D71E /* Output.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Output.txt; sourceTree = "<group>"; };
913E014B210CA5A200B7D71E /* Output.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Output.txt; sourceTree = "<group>"; };
913E014D210CA5AE00B7D71E /* Output.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Output.txt; sourceTree = "<group>"; };
913E014F210CA5B800B7D71E /* Output.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Output.txt; sourceTree = "<group>"; };
913E0151210CA5BE00B7D71E /* Output.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Output.txt; sourceTree = "<group>"; };
913FF2262097835E00193902 /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
916B888F20BC4B1900BA92DF /* Output.txt */ = {isa = PBXFileReference; lastKnownFileType = text; path = Output.txt; sourceTree = "<group>"; };
916B889220BC4DA400BA92DF /* Example.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Example.swift; sourceTree = "<group>"; };
916B889420BC56FD00BA92DF /* Output.txt */ = {isa = PBXFileReference; lastKnownFileType = text; path = Output.txt; sourceTree = "<group>"; };
916B889A20BC587D00BA92DF /* Example.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Example.swift; sourceTree = "<group>"; };
916B889C20BC5B7600BA92DF /* Output.txt */ = {isa = PBXFileReference; lastKnownFileType = text; path = Output.txt; sourceTree = "<group>"; };
916B889F20BC6E6800BA92DF /* Example.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Example.swift; sourceTree = "<group>"; };
916B88A120BC717400BA92DF /* Output.txt */ = {isa = PBXFileReference; lastKnownFileType = text; path = Output.txt; sourceTree = "<group>"; };
916B88A520BD468100BA92DF /* Example.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Example.swift; sourceTree = "<group>"; };
916B88A720BD537300BA92DF /* Output.txt */ = {isa = PBXFileReference; lastKnownFileType = text; path = Output.txt; sourceTree = "<group>"; };
9187BFAB20B5D0A600266EF8 /* Output.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Output.txt; sourceTree = "<group>"; };
9187BFB220B5D0A600266EF8 /* Example.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Example.swift; sourceTree = "<group>"; };
9187BFB420B5D0A600266EF8 /* Output.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Output.txt; sourceTree = "<group>"; };
9187BFB620B5D0A600266EF8 /* Example.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Example.swift; sourceTree = "<group>"; };
9187BFBB20B5D0A600266EF8 /* Example.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Example.swift; sourceTree = "<group>"; };
9187BFBC20B5D0A600266EF8 /* Output.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Output.txt; sourceTree = "<group>"; };
9187BFBF20B5D0A600266EF8 /* Example.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Example.swift; sourceTree = "<group>"; };
9187BFC220B5D0A600266EF8 /* Output.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Output.txt; sourceTree = "<group>"; };
9187BFC820B5D0A700266EF8 /* Output.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Output.txt; sourceTree = "<group>"; };
9187BFC920B5D0A700266EF8 /* Example.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Example.swift; sourceTree = "<group>"; };
9187BFCB20B5D0A700266EF8 /* Output.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Output.txt; sourceTree = "<group>"; };
9187BFCC20B5D0A700266EF8 /* Example.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Example.swift; sourceTree = "<group>"; };
9187BFD220B5D0A700266EF8 /* Example.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Example.swift; sourceTree = "<group>"; };
9187BFD320B5D0A700266EF8 /* Output.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Output.txt; sourceTree = "<group>"; };
9187BFD520B5D0A700266EF8 /* Example.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Example.swift; sourceTree = "<group>"; };
9187BFD820B5D0A700266EF8 /* Output.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Output.txt; sourceTree = "<group>"; };
9187BFDC20B5D0A700266EF8 /* Example.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Example.swift; sourceTree = "<group>"; };
9187BFDE20B5D0A700266EF8 /* Output.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Output.txt; sourceTree = "<group>"; };
9187BFDF20B5D0A700266EF8 /* Example.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Example.swift; sourceTree = "<group>"; };
9187BFE220B5D0A700266EF8 /* Output.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Output.txt; sourceTree = "<group>"; };
9187BFE320B5D0A700266EF8 /* Example.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Example.swift; sourceTree = "<group>"; };
9187BFE520B5D0A700266EF8 /* Example.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Example.swift; sourceTree = "<group>"; };
9187BFE620B5D0A700266EF8 /* Output.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Output.txt; sourceTree = "<group>"; };
9187BFE920B5D0A700266EF8 /* Output.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Output.txt; sourceTree = "<group>"; };
9187BFEA20B5D0A700266EF8 /* Example.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Example.swift; sourceTree = "<group>"; };
9187BFEC20B5D0A700266EF8 /* Output.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Output.txt; sourceTree = "<group>"; };
9187BFEE20B5D0A700266EF8 /* Example.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Example.swift; sourceTree = "<group>"; };
919C89F120DD7EE4006EE57D /* AbstractFactoryRealWorld.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = AbstractFactoryRealWorld.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
919C89F520DD7EE4006EE57D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
919C8A0520DD7F3C006EE57D /* AbstractFactoryConceptual.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = AbstractFactoryConceptual.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
919C8A0920DD7F3C006EE57D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
919C8A1320DD81D0006EE57D /* FacadeConceptual.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = FacadeConceptual.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
919C8A1720DD81D0006EE57D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
919C8A2020DD8261006EE57D /* FacadeRealWorld.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = FacadeRealWorld.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
919C8A2420DD8261006EE57D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
919C8A3920DD82F0006EE57D /* BridgeConceptual.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = BridgeConceptual.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
919C8A3D20DD82F0006EE57D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
919C8A4620DD8393006EE57D /* BridgeRealWorld.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = BridgeRealWorld.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
919C8A4A20DD8393006EE57D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
919C8A5F20DD849A006EE57D /* AdapterConceptual.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = AdapterConceptual.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
919C8A6320DD849B006EE57D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
919C8A6C20DD858C006EE57D /* AdapterRealWorld.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = AdapterRealWorld.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
919C8A7020DD858C006EE57D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
919C8A7A20DD8688006EE57D /* BuilderConceptual.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = BuilderConceptual.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
919C8A7E20DD8688006EE57D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
919C8A8720DD86DC006EE57D /* BuilderRealWorld.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = BuilderRealWorld.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
919C8A8B20DD86DC006EE57D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
919C8AA220DD878D006EE57D /* CompositeConceptual.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = CompositeConceptual.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
919C8AA620DD878E006EE57D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
919C8AAF20DD87F2006EE57D /* CompositeRealWorld.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = CompositeRealWorld.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
919C8AB120DD87F2006EE57D /* Example.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Example.swift; sourceTree = "<group>"; };
919C8AB320DD87F2006EE57D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
919C8AC720DD8873006EE57D /* DecoratorConceptual.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = DecoratorConceptual.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
919C8ACB20DD8873006EE57D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
919C8AD420DD88C6006EE57D /* DecoratorRealWorld.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = DecoratorRealWorld.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
919C8AD620DD88C6006EE57D /* Example.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Example.swift; sourceTree = "<group>"; };
919C8AD820DD88C6006EE57D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
919C8AE020DD893E006EE57D /* FactoryMethodRealWorld.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = FactoryMethodRealWorld.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
919C8AE420DD893E006EE57D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
919C8AED20DD897E006EE57D /* FactoryMethodConceptual.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = FactoryMethodConceptual.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
919C8AF120DD897E006EE57D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
919C8AFA20DD8A98006EE57D /* PrototypeConceptual.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = PrototypeConceptual.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
919C8AFE20DD8A98006EE57D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
919C8B0720DD8AF0006EE57D /* PrototypeRealWorld.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = PrototypeRealWorld.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
919C8B0B20DD8AF0006EE57D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
919C8B1420DD8B59006EE57D /* SingletonConceptual.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = SingletonConceptual.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
919C8B1820DD8B59006EE57D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
919C8B2120DD8BA9006EE57D /* SingletonRealWorld.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = SingletonRealWorld.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
919C8B2520DD8BA9006EE57D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
91B1206220F56BFA00730C37 /* Output.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Output.txt; sourceTree = "<group>"; };
91B1206420F56C0100730C37 /* Output.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Output.txt; sourceTree = "<group>"; };
91B1206B20F610E400730C37 /* ChainOfResponsibilityConceptual.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = ChainOfResponsibilityConceptual.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
91B1206D20F610E400730C37 /* Example.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Example.swift; sourceTree = "<group>"; };
91B1206F20F610E400730C37 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
91B1207720F6114A00730C37 /* ChainOfResponsibilityRealWorld.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = ChainOfResponsibilityRealWorld.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
91B1207920F6114A00730C37 /* Example.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Example.swift; sourceTree = "<group>"; };
91B1207B20F6114A00730C37 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
91B1208320F611DA00730C37 /* CommandConceptual.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = CommandConceptual.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
91B1208520F611DA00730C37 /* Example.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Example.swift; sourceTree = "<group>"; };
91B1208720F611DA00730C37 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
91B1209020F6120C00730C37 /* CommandRealWorld.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = CommandRealWorld.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
91B1209220F6120C00730C37 /* Example.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Example.swift; sourceTree = "<group>"; };
91B1209420F6120C00730C37 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
91B1209D20F6125500730C37 /* IteratorConceptual.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = IteratorConceptual.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
91B1209F20F6125500730C37 /* Example.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Example.swift; sourceTree = "<group>"; };
91B120A120F6125500730C37 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
91B120A920F6127400730C37 /* IteratorRealWorld.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = IteratorRealWorld.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
91B120AB20F6127400730C37 /* Example.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Example.swift; sourceTree = "<group>"; };
91B120AD20F6127400730C37 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
91B120B620F6130900730C37 /* ProxyConceptual.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = ProxyConceptual.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
91B120B820F6130A00730C37 /* Example.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Example.swift; sourceTree = "<group>"; };
91B120BA20F6130A00730C37 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
91B120C220F6132E00730C37 /* ProxyRealWorld.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = ProxyRealWorld.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
91B120C420F6132E00730C37 /* Example.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Example.swift; sourceTree = "<group>"; };
91B120C620F6132E00730C37 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
91B120CA20F61BAD00730C37 /* Output.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Output.txt; sourceTree = "<group>"; };
91B120CC20F61BBC00730C37 /* Output.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Output.txt; sourceTree = "<group>"; };
91B120CE20F61BC600730C37 /* Output.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Output.txt; sourceTree = "<group>"; };
91B120D020F61BD000730C37 /* Output.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Output.txt; sourceTree = "<group>"; };
91B120D220F61BDA00730C37 /* Output.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Output.txt; sourceTree = "<group>"; };
91B120D420F61BE300730C37 /* Output.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Output.txt; sourceTree = "<group>"; };
91B120D620F61BE900730C37 /* Output.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Output.txt; sourceTree = "<group>"; };
91B120D820F61BF000730C37 /* Output.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Output.txt; sourceTree = "<group>"; };
91F0DA9520E6552A001F1C1A /* Output.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Output.txt; sourceTree = "<group>"; };
91F0DAAC20E68AAD001F1C1A /* Output.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Output.txt; sourceTree = "<group>"; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
912C5CDC210BC33D007DC364 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
912C5CE9210BC3A4007DC364 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
912C5CF5210BC3F5007DC364 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
912C5D08210BC4D8007DC364 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
912C5D15210BC553007DC364 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
912C5D21210BC594007DC364 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
912C5D2D210BC5E1007DC364 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
912C5D3A210BC62D007DC364 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
912C5D47210BC6A8007DC364 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
912C5D53210BC6F0007DC364 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
912C5D5F210BC749007DC364 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
912C5D6C210BC7B1007DC364 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
912C5D79210BC81E007DC364 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
912C5D85210BC865007DC364 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
91301ACF20F55C25003B4FC0 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
91301ADC20F55CAA003B4FC0 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
919C89EE20DD7EE4006EE57D /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
919C8A0220DD7F3C006EE57D /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
919C8A1020DD81D0006EE57D /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
919C8A1D20DD8261006EE57D /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
919C8A3620DD82F0006EE57D /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
919C8A4320DD8393006EE57D /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
919C8A5C20DD849A006EE57D /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
919C8A6920DD858C006EE57D /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
919C8A7720DD8688006EE57D /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
919C8A8420DD86DC006EE57D /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
919C8A9F20DD878D006EE57D /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
919C8AAC20DD87F2006EE57D /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
919C8AC420DD8873006EE57D /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
919C8AD120DD88C6006EE57D /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
919C8ADD20DD893E006EE57D /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
919C8AEA20DD897E006EE57D /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
919C8AF720DD8A98006EE57D /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
919C8B0420DD8AF0006EE57D /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
919C8B1120DD8B59006EE57D /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
919C8B1E20DD8BA9006EE57D /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
91B1206820F610E400730C37 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
91B1207420F6114A00730C37 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
91B1208020F611DA00730C37 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
91B1208D20F6120C00730C37 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
91B1209A20F6125500730C37 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
91B120A620F6127400730C37 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
91B120B320F6130900730C37 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
91B120BF20F6132E00730C37 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXGroup section */
912C5CE0210BC33D007DC364 /* Conceptual */ = {
isa = PBXGroup;
children = (
912C5CE1210BC33E007DC364 /* Example.swift */,
912C5CE3210BC33E007DC364 /* Info.plist */,
913E0137210CA53800B7D71E /* Output.txt */,
);
path = Conceptual;
sourceTree = "<group>";
};
912C5CE7210BC34E007DC364 /* Mediator */ = {
isa = PBXGroup;
children = (
912C5CE0210BC33D007DC364 /* Conceptual */,
912C5CED210BC3A4007DC364 /* RealWorld */,
);
path = Mediator;
sourceTree = "<group>";
};
912C5CED210BC3A4007DC364 /* RealWorld */ = {
isa = PBXGroup;
children = (
912C5CEE210BC3A4007DC364 /* Example.swift */,
913E0139210CA54F00B7D71E /* Output.txt */,
912C5CF0210BC3A4007DC364 /* Info.plist */,
);
path = RealWorld;
sourceTree = "<group>";
};
912C5D01210BC4A5007DC364 /* Memento */ = {
isa = PBXGroup;
children = (
912C5D02210BC4A5007DC364 /* Conceptual */,
912C5D0C210BC4D9007DC364 /* RealWorld */,
);
path = Memento;
sourceTree = "<group>";
};
912C5D02210BC4A5007DC364 /* Conceptual */ = {
isa = PBXGroup;
children = (
912C5D03210BC4A5007DC364 /* Example.swift */,
913E013B210CA55A00B7D71E /* Output.txt */,
912C5D04210BC4A5007DC364 /* Info.plist */,
);
path = Conceptual;
sourceTree = "<group>";
};
912C5D0C210BC4D9007DC364 /* RealWorld */ = {
isa = PBXGroup;
children = (
912C5D0D210BC4D9007DC364 /* Example.swift */,
913E013D210CA56000B7D71E /* Output.txt */,
912C5D0F210BC4D9007DC364 /* Info.plist */,
);
path = RealWorld;
sourceTree = "<group>";
};
912C5D13210BC53A007DC364 /* Observer */ = {
isa = PBXGroup;
children = (
912C5D19210BC553007DC364 /* Conceptual */,
912C5D25210BC594007DC364 /* RealWorld */,
);
path = Observer;
sourceTree = "<group>";
};
912C5D19210BC553007DC364 /* Conceptual */ = {
isa = PBXGroup;
children = (
912C5D1A210BC553007DC364 /* Example.swift */,
913E013F210CA57200B7D71E /* Output.txt */,
912C5D1C210BC553007DC364 /* Info.plist */,
);
path = Conceptual;
sourceTree = "<group>";
};
912C5D25210BC594007DC364 /* RealWorld */ = {
isa = PBXGroup;
children = (
912C5D26210BC594007DC364 /* Example.swift */,
913E0141210CA57900B7D71E /* Output.txt */,
912C5D28210BC594007DC364 /* Info.plist */,
);
path = RealWorld;
sourceTree = "<group>";
};
912C5D31210BC5E1007DC364 /* Conceptual */ = {
isa = PBXGroup;
children = (
912C5D32210BC5E1007DC364 /* Example.swift */,
913E0143210CA58300B7D71E /* Output.txt */,
912C5D34210BC5E1007DC364 /* Info.plist */,
);
path = Conceptual;
sourceTree = "<group>";
};
912C5D38210BC5EB007DC364 /* State */ = {
isa = PBXGroup;
children = (
912C5D31210BC5E1007DC364 /* Conceptual */,
912C5D3E210BC62D007DC364 /* RealWorld */,
);
path = State;
sourceTree = "<group>";
};
912C5D3E210BC62D007DC364 /* RealWorld */ = {
isa = PBXGroup;
children = (
912C5D3F210BC62D007DC364 /* Example.swift */,
913E0145210CA58900B7D71E /* Output.txt */,
912C5D41210BC62D007DC364 /* Info.plist */,
);
path = RealWorld;
sourceTree = "<group>";
};
912C5D45210BC687007DC364 /* Strategy */ = {
isa = PBXGroup;
children = (
912C5D4B210BC6A8007DC364 /* Conceptual */,
912C5D57210BC6F1007DC364 /* RealWorld */,
);
path = Strategy;
sourceTree = "<group>";
};
912C5D4B210BC6A8007DC364 /* Conceptual */ = {
isa = PBXGroup;
children = (
912C5D4C210BC6A8007DC364 /* Example.swift */,
913E0149210CA59A00B7D71E /* Output.txt */,
912C5D4E210BC6A8007DC364 /* Info.plist */,
);
path = Conceptual;
sourceTree = "<group>";
};
912C5D57210BC6F1007DC364 /* RealWorld */ = {
isa = PBXGroup;
children = (
912C5D58210BC6F1007DC364 /* Example.swift */,
913E0147210CA59400B7D71E /* Output.txt */,
912C5D5A210BC6F1007DC364 /* Info.plist */,
);
path = RealWorld;
sourceTree = "<group>";
};
912C5D63210BC749007DC364 /* Conceptual */ = {
isa = PBXGroup;
children = (
912C5D64210BC749007DC364 /* Example.swift */,
913E014D210CA5AE00B7D71E /* Output.txt */,
912C5D66210BC749007DC364 /* Info.plist */,
);
path = Conceptual;
sourceTree = "<group>";
};
912C5D6A210BC750007DC364 /* TemplateMethod */ = {
isa = PBXGroup;
children = (
912C5D63210BC749007DC364 /* Conceptual */,
912C5D70210BC7B1007DC364 /* RealWorld */,
);
path = TemplateMethod;
sourceTree = "<group>";
};
912C5D70210BC7B1007DC364 /* RealWorld */ = {
isa = PBXGroup;
children = (
912C5D71210BC7B1007DC364 /* Example.swift */,
913E014B210CA5A200B7D71E /* Output.txt */,
912C5D73210BC7B1007DC364 /* Info.plist */,
);
path = RealWorld;
sourceTree = "<group>";
};
912C5D77210BC80B007DC364 /* Visitor */ = {
isa = PBXGroup;
children = (
912C5D7D210BC81E007DC364 /* Conceptual */,
912C5D89210BC865007DC364 /* RealWorld */,
);
path = Visitor;
sourceTree = "<group>";
};
912C5D7D210BC81E007DC364 /* Conceptual */ = {
isa = PBXGroup;
children = (
912C5D7E210BC81E007DC364 /* Example.swift */,
913E014F210CA5B800B7D71E /* Output.txt */,
912C5D80210BC81E007DC364 /* Info.plist */,
);
path = Conceptual;
sourceTree = "<group>";
};
912C5D89210BC865007DC364 /* RealWorld */ = {
isa = PBXGroup;
children = (
912C5D8A210BC865007DC364 /* Example.swift */,
913E0151210CA5BE00B7D71E /* Output.txt */,
912C5D8C210BC865007DC364 /* Info.plist */,
);
path = RealWorld;
sourceTree = "<group>";
};
91301AD320F55C25003B4FC0 /* Conceptual */ = {
isa = PBXGroup;
children = (
91301AD420F55C25003B4FC0 /* Example.swift */,
91301AD620F55C25003B4FC0 /* Info.plist */,
91B1206420F56C0100730C37 /* Output.txt */,
);
path = Conceptual;
sourceTree = "<group>";
};
91301ADA20F55C4E003B4FC0 /* Flyweight */ = {
isa = PBXGroup;
children = (
91301AE020F55CAA003B4FC0 /* RealWorld */,
91301AD320F55C25003B4FC0 /* Conceptual */,
);
path = Flyweight;
sourceTree = "<group>";
};
91301AE020F55CAA003B4FC0 /* RealWorld */ = {
isa = PBXGroup;
children = (
91301AE120F55CAA003B4FC0 /* Example.swift */,
91301AE320F55CAA003B4FC0 /* Info.plist */,
91B1206220F56BFA00730C37 /* Output.txt */,
);
path = RealWorld;
sourceTree = "<group>";
};
9139FA6F2088D85C00229150 = {
isa = PBXGroup;
children = (
913FF2252097835E00193902 /* ProjectBundle */,
914ADA0420B2D4D200E0A74F /* Sources */,
9139FA792088D85C00229150 /* Products */,
);
sourceTree = "<group>";
};
9139FA792088D85C00229150 /* Products */ = {
isa = PBXGroup;
children = (
919C89F120DD7EE4006EE57D /* AbstractFactoryRealWorld.xctest */,
919C8A0520DD7F3C006EE57D /* AbstractFactoryConceptual.xctest */,
919C8A1320DD81D0006EE57D /* FacadeConceptual.xctest */,
919C8A2020DD8261006EE57D /* FacadeRealWorld.xctest */,
919C8A3920DD82F0006EE57D /* BridgeConceptual.xctest */,
919C8A4620DD8393006EE57D /* BridgeRealWorld.xctest */,
919C8A5F20DD849A006EE57D /* AdapterConceptual.xctest */,
919C8A6C20DD858C006EE57D /* AdapterRealWorld.xctest */,
919C8A7A20DD8688006EE57D /* BuilderConceptual.xctest */,
919C8A8720DD86DC006EE57D /* BuilderRealWorld.xctest */,
919C8AA220DD878D006EE57D /* CompositeConceptual.xctest */,
919C8AAF20DD87F2006EE57D /* CompositeRealWorld.xctest */,
919C8AC720DD8873006EE57D /* DecoratorConceptual.xctest */,
919C8AD420DD88C6006EE57D /* DecoratorRealWorld.xctest */,
919C8AE020DD893E006EE57D /* FactoryMethodRealWorld.xctest */,
919C8AED20DD897E006EE57D /* FactoryMethodConceptual.xctest */,
919C8AFA20DD8A98006EE57D /* PrototypeConceptual.xctest */,
919C8B0720DD8AF0006EE57D /* PrototypeRealWorld.xctest */,
919C8B1420DD8B59006EE57D /* SingletonConceptual.xctest */,
919C8B2120DD8BA9006EE57D /* SingletonRealWorld.xctest */,
91301AD220F55C25003B4FC0 /* FlyweightConceptual.xctest */,
91301ADF20F55CAA003B4FC0 /* FlyweightRealWorld.xctest */,
91B1206B20F610E400730C37 /* ChainOfResponsibilityConceptual.xctest */,
91B1207720F6114A00730C37 /* ChainOfResponsibilityRealWorld.xctest */,
91B1208320F611DA00730C37 /* CommandConceptual.xctest */,
91B1209020F6120C00730C37 /* CommandRealWorld.xctest */,
91B1209D20F6125500730C37 /* IteratorConceptual.xctest */,
91B120A920F6127400730C37 /* IteratorRealWorld.xctest */,
91B120B620F6130900730C37 /* ProxyConceptual.xctest */,
91B120C220F6132E00730C37 /* ProxyRealWorld.xctest */,
912C5CDF210BC33D007DC364 /* MediatorConceptual.xctest */,
912C5CEC210BC3A4007DC364 /* MediatorRealWorld.xctest */,
912C5CF8210BC3F5007DC364 /* MementoConceptual.xctest */,
912C5D0B210BC4D8007DC364 /* MementoRealWorld.xctest */,
912C5D18210BC553007DC364 /* ObserverConceptual.xctest */,
912C5D24210BC594007DC364 /* ObserverRealWorld.xctest */,
912C5D30210BC5E1007DC364 /* StateConceptual.xctest */,
912C5D3D210BC62D007DC364 /* StateRealWorld.xctest */,
912C5D4A210BC6A8007DC364 /* StrategyConceptual.xctest */,
912C5D56210BC6F0007DC364 /* StrategyRealWorld.xctest */,
912C5D62210BC749007DC364 /* TemplateMethodConceptual.xctest */,
912C5D6F210BC7B1007DC364 /* TemplateMethodRealWorld.xctest */,
912C5D7C210BC81E007DC364 /* VisitorConceptual.xctest */,
912C5D88210BC865007DC364 /* VisitorRealWorld.xctest */,
);
name = Products;
sourceTree = "<group>";
};
913FF2252097835E00193902 /* ProjectBundle */ = {
isa = PBXGroup;
children = (
913FF2262097835E00193902 /* Info.plist */,
);
path = ProjectBundle;
sourceTree = "<group>";
};
914ADA0420B2D4D200E0A74F /* Sources */ = {
isa = PBXGroup;
children = (
919C8A0E20DD7F7B006EE57D /* AbstractFactory */,
9187BFB820B5D0A600266EF8 /* FactoryMethod */,
9187BFCD20B5D0A700266EF8 /* Builder */,
9187BFE720B5D0A700266EF8 /* Prototype */,
9187BFC320B5D0A700266EF8 /* Singleton */,
9187BFE020B5D0A700266EF8 /* Adapter */,
9187BFDA20B5D0A700266EF8 /* Bridge */,
916B889120BC4D8100BA92DF /* Composite */,
916B889620BC582D00BA92DF /* Decorator */,
916B889E20BC5C5800BA92DF /* Facade */,
91301ADA20F55C4E003B4FC0 /* Flyweight */,
91B120B120F612F600730C37 /* Proxy */,
91B1206620F610B600730C37 /* ChainOfResponsibility */,
91B1208B20F611EF00730C37 /* Command */,
91B1209820F6124200730C37 /* Iterator */,
912C5CE7210BC34E007DC364 /* Mediator */,
912C5D01210BC4A5007DC364 /* Memento */,
912C5D13210BC53A007DC364 /* Observer */,
912C5D38210BC5EB007DC364 /* State */,
912C5D45210BC687007DC364 /* Strategy */,
912C5D6A210BC750007DC364 /* TemplateMethod */,
912C5D77210BC80B007DC364 /* Visitor */,
);
path = Sources;
sourceTree = "<group>";
};
916B889120BC4D8100BA92DF /* Composite */ = {
isa = PBXGroup;
children = (
919C8AB020DD87F2006EE57D /* RealWorld */,
919C8AA320DD878E006EE57D /* Conceptual */,
);
path = Composite;
sourceTree = "<group>";
};
916B889620BC582D00BA92DF /* Decorator */ = {
isa = PBXGroup;
children = (
919C8AD520DD88C6006EE57D /* RealWorld */,
919C8AC820DD8873006EE57D /* Conceptual */,
);
path = Decorator;
sourceTree = "<group>";
};
916B889E20BC5C5800BA92DF /* Facade */ = {
isa = PBXGroup;
children = (
919C8A2120DD8261006EE57D /* RealWorld */,
919C8A1420DD81D0006EE57D /* Conceptual */,
);
path = Facade;
sourceTree = "<group>";
};
9187BFB820B5D0A600266EF8 /* FactoryMethod */ = {
isa = PBXGroup;
children = (
919C8AEE20DD897E006EE57D /* Conceptual */,
919C8AE120DD893E006EE57D /* RealWorld */,
);
path = FactoryMethod;
sourceTree = "<group>";
};
9187BFC320B5D0A700266EF8 /* Singleton */ = {
isa = PBXGroup;
children = (
919C8B2220DD8BA9006EE57D /* RealWorld */,
919C8B1520DD8B59006EE57D /* Conceptual */,
);
path = Singleton;
sourceTree = "<group>";
};
9187BFCD20B5D0A700266EF8 /* Builder */ = {
isa = PBXGroup;
children = (
919C8A8820DD86DC006EE57D /* RealWorld */,
919C8A7B20DD8688006EE57D /* Conceptual */,
);
path = Builder;
sourceTree = "<group>";
};
9187BFDA20B5D0A700266EF8 /* Bridge */ = {
isa = PBXGroup;
children = (
919C8A4720DD8393006EE57D /* RealWorld */,
919C8A3A20DD82F0006EE57D /* Conceptual */,
);
path = Bridge;
sourceTree = "<group>";
};
9187BFE020B5D0A700266EF8 /* Adapter */ = {
isa = PBXGroup;
children = (
919C8A6D20DD858C006EE57D /* RealWorld */,
919C8A6020DD849B006EE57D /* Conceptual */,
);
path = Adapter;
sourceTree = "<group>";
};
9187BFE720B5D0A700266EF8 /* Prototype */ = {
isa = PBXGroup;
children = (
919C8B0820DD8AF0006EE57D /* RealWorld */,
919C8AFB20DD8A98006EE57D /* Conceptual */,
);
path = Prototype;
sourceTree = "<group>";
};
919C89F220DD7EE4006EE57D /* RealWorld */ = {
isa = PBXGroup;
children = (
9187BFB220B5D0A600266EF8 /* Example.swift */,
9187BFAB20B5D0A600266EF8 /* Output.txt */,
919C89F520DD7EE4006EE57D /* Info.plist */,
);
path = RealWorld;
sourceTree = "<group>";
};
919C8A0620DD7F3C006EE57D /* Conceptual */ = {
isa = PBXGroup;
children = (
9187BFB620B5D0A600266EF8 /* Example.swift */,
9187BFB420B5D0A600266EF8 /* Output.txt */,
919C8A0920DD7F3C006EE57D /* Info.plist */,
);
path = Conceptual;
sourceTree = "<group>";
};
919C8A0E20DD7F7B006EE57D /* AbstractFactory */ = {
isa = PBXGroup;
children = (
919C89F220DD7EE4006EE57D /* RealWorld */,
919C8A0620DD7F3C006EE57D /* Conceptual */,
);
path = AbstractFactory;
sourceTree = "<group>";
};
919C8A1420DD81D0006EE57D /* Conceptual */ = {
isa = PBXGroup;
children = (
916B889F20BC6E6800BA92DF /* Example.swift */,
916B88A120BC717400BA92DF /* Output.txt */,
919C8A1720DD81D0006EE57D /* Info.plist */,
);
path = Conceptual;
sourceTree = "<group>";
};
919C8A2120DD8261006EE57D /* RealWorld */ = {
isa = PBXGroup;
children = (
916B88A520BD468100BA92DF /* Example.swift */,
916B88A720BD537300BA92DF /* Output.txt */,
919C8A2420DD8261006EE57D /* Info.plist */,
);
path = RealWorld;
sourceTree = "<group>";
};
919C8A3A20DD82F0006EE57D /* Conceptual */ = {
isa = PBXGroup;
children = (
9187BFDF20B5D0A700266EF8 /* Example.swift */,
9187BFDE20B5D0A700266EF8 /* Output.txt */,
919C8A3D20DD82F0006EE57D /* Info.plist */,
);
path = Conceptual;
sourceTree = "<group>";
};
919C8A4720DD8393006EE57D /* RealWorld */ = {
isa = PBXGroup;
children = (
9187BFDC20B5D0A700266EF8 /* Example.swift */,
916B888F20BC4B1900BA92DF /* Output.txt */,
919C8A4A20DD8393006EE57D /* Info.plist */,
);
path = RealWorld;
sourceTree = "<group>";
};
919C8A6020DD849B006EE57D /* Conceptual */ = {
isa = PBXGroup;
children = (
9187BFE520B5D0A700266EF8 /* Example.swift */,
9187BFE620B5D0A700266EF8 /* Output.txt */,
919C8A6320DD849B006EE57D /* Info.plist */,
);
path = Conceptual;
sourceTree = "<group>";
};
919C8A6D20DD858C006EE57D /* RealWorld */ = {
isa = PBXGroup;
children = (
9187BFE320B5D0A700266EF8 /* Example.swift */,
9187BFE220B5D0A700266EF8 /* Output.txt */,
919C8A7020DD858C006EE57D /* Info.plist */,
);
path = RealWorld;
sourceTree = "<group>";
};
919C8A7B20DD8688006EE57D /* Conceptual */ = {
isa = PBXGroup;
children = (
9187BFD520B5D0A700266EF8 /* Example.swift */,
9187BFD820B5D0A700266EF8 /* Output.txt */,
919C8A7E20DD8688006EE57D /* Info.plist */,
);
path = Conceptual;
sourceTree = "<group>";
};
919C8A8820DD86DC006EE57D /* RealWorld */ = {
isa = PBXGroup;
children = (
9187BFD220B5D0A700266EF8 /* Example.swift */,
9187BFD320B5D0A700266EF8 /* Output.txt */,
919C8A8B20DD86DC006EE57D /* Info.plist */,
);
path = RealWorld;
sourceTree = "<group>";
};
919C8AA320DD878E006EE57D /* Conceptual */ = {
isa = PBXGroup;
children = (
916B889220BC4DA400BA92DF /* Example.swift */,
916B889420BC56FD00BA92DF /* Output.txt */,
919C8AA620DD878E006EE57D /* Info.plist */,
);
path = Conceptual;
sourceTree = "<group>";
};
919C8AB020DD87F2006EE57D /* RealWorld */ = {
isa = PBXGroup;
children = (
919C8AB120DD87F2006EE57D /* Example.swift */,
91F0DAAC20E68AAD001F1C1A /* Output.txt */,
919C8AB320DD87F2006EE57D /* Info.plist */,
);
path = RealWorld;
sourceTree = "<group>";
};
919C8AC820DD8873006EE57D /* Conceptual */ = {
isa = PBXGroup;
children = (
916B889A20BC587D00BA92DF /* Example.swift */,
916B889C20BC5B7600BA92DF /* Output.txt */,
919C8ACB20DD8873006EE57D /* Info.plist */,
);
path = Conceptual;
sourceTree = "<group>";
};
919C8AD520DD88C6006EE57D /* RealWorld */ = {
isa = PBXGroup;
children = (
919C8AD620DD88C6006EE57D /* Example.swift */,
91F0DA9520E6552A001F1C1A /* Output.txt */,
919C8AD820DD88C6006EE57D /* Info.plist */,
);
path = RealWorld;
sourceTree = "<group>";
};
919C8AE120DD893E006EE57D /* RealWorld */ = {
isa = PBXGroup;
children = (
9187BFBB20B5D0A600266EF8 /* Example.swift */,
9187BFBC20B5D0A600266EF8 /* Output.txt */,
919C8AE420DD893E006EE57D /* Info.plist */,
);
path = RealWorld;
sourceTree = "<group>";
};
919C8AEE20DD897E006EE57D /* Conceptual */ = {
isa = PBXGroup;
children = (
9187BFBF20B5D0A600266EF8 /* Example.swift */,
9187BFC220B5D0A600266EF8 /* Output.txt */,
919C8AF120DD897E006EE57D /* Info.plist */,
);
path = Conceptual;
sourceTree = "<group>";
};
919C8AFB20DD8A98006EE57D /* Conceptual */ = {
isa = PBXGroup;
children = (
9187BFEE20B5D0A700266EF8 /* Example.swift */,
9187BFEC20B5D0A700266EF8 /* Output.txt */,
919C8AFE20DD8A98006EE57D /* Info.plist */,
);
path = Conceptual;
sourceTree = "<group>";
};
919C8B0820DD8AF0006EE57D /* RealWorld */ = {
isa = PBXGroup;
children = (
9187BFEA20B5D0A700266EF8 /* Example.swift */,
9187BFE920B5D0A700266EF8 /* Output.txt */,
919C8B0B20DD8AF0006EE57D /* Info.plist */,
);
path = RealWorld;
sourceTree = "<group>";
};
919C8B1520DD8B59006EE57D /* Conceptual */ = {
isa = PBXGroup;
children = (
9187BFCC20B5D0A700266EF8 /* Example.swift */,
9187BFCB20B5D0A700266EF8 /* Output.txt */,
919C8B1820DD8B59006EE57D /* Info.plist */,
);
path = Conceptual;
sourceTree = "<group>";
};
919C8B2220DD8BA9006EE57D /* RealWorld */ = {
isa = PBXGroup;
children = (
9187BFC920B5D0A700266EF8 /* Example.swift */,
9187BFC820B5D0A700266EF8 /* Output.txt */,
919C8B2520DD8BA9006EE57D /* Info.plist */,
);
path = RealWorld;
sourceTree = "<group>";
};
91B1206620F610B600730C37 /* ChainOfResponsibility */ = {
isa = PBXGroup;
children = (
91B1206C20F610E400730C37 /* Conceptual */,
91B1207820F6114A00730C37 /* RealWorld */,
);
path = ChainOfResponsibility;
sourceTree = "<group>";
};
91B1206C20F610E400730C37 /* Conceptual */ = {
isa = PBXGroup;
children = (
91B1206D20F610E400730C37 /* Example.swift */,
91B1206F20F610E400730C37 /* Info.plist */,
91B120CA20F61BAD00730C37 /* Output.txt */,
);
path = Conceptual;
sourceTree = "<group>";
};
91B1207820F6114A00730C37 /* RealWorld */ = {
isa = PBXGroup;
children = (
91B1207920F6114A00730C37 /* Example.swift */,
91B120CC20F61BBC00730C37 /* Output.txt */,
91B1207B20F6114A00730C37 /* Info.plist */,
);
path = RealWorld;
sourceTree = "<group>";
};
91B1208420F611DA00730C37 /* Conceptual */ = {
isa = PBXGroup;
children = (
91B1208520F611DA00730C37 /* Example.swift */,
91B1208720F611DA00730C37 /* Info.plist */,
91B120D020F61BD000730C37 /* Output.txt */,
);
path = Conceptual;
sourceTree = "<group>";
};
91B1208B20F611EF00730C37 /* Command */ = {
isa = PBXGroup;
children = (
91B1208420F611DA00730C37 /* Conceptual */,
91B1209120F6120C00730C37 /* RealWorld */,
);
path = Command;
sourceTree = "<group>";
};
91B1209120F6120C00730C37 /* RealWorld */ = {
isa = PBXGroup;
children = (
91B1209220F6120C00730C37 /* Example.swift */,
91B120CE20F61BC600730C37 /* Output.txt */,
91B1209420F6120C00730C37 /* Info.plist */,
);
path = RealWorld;
sourceTree = "<group>";
};
91B1209820F6124200730C37 /* Iterator */ = {
isa = PBXGroup;
children = (
91B120AA20F6127400730C37 /* RealWorld */,
91B1209E20F6125500730C37 /* Conceptual */,
);
path = Iterator;
sourceTree = "<group>";
};
91B1209E20F6125500730C37 /* Conceptual */ = {
isa = PBXGroup;
children = (
91B1209F20F6125500730C37 /* Example.swift */,
91B120D420F61BE300730C37 /* Output.txt */,
91B120A120F6125500730C37 /* Info.plist */,
);
path = Conceptual;
sourceTree = "<group>";
};
91B120AA20F6127400730C37 /* RealWorld */ = {
isa = PBXGroup;
children = (
91B120AB20F6127400730C37 /* Example.swift */,
91B120D220F61BDA00730C37 /* Output.txt */,
91B120AD20F6127400730C37 /* Info.plist */,
);
path = RealWorld;
sourceTree = "<group>";
};
91B120B120F612F600730C37 /* Proxy */ = {
isa = PBXGroup;
children = (
91B120C320F6132E00730C37 /* RealWorld */,
91B120B720F6130A00730C37 /* Conceptual */,
);
path = Proxy;
sourceTree = "<group>";
};
91B120B720F6130A00730C37 /* Conceptual */ = {
isa = PBXGroup;
children = (
91B120B820F6130A00730C37 /* Example.swift */,
91B120D820F61BF000730C37 /* Output.txt */,
91B120BA20F6130A00730C37 /* Info.plist */,
);
path = Conceptual;
sourceTree = "<group>";
};
91B120C320F6132E00730C37 /* RealWorld */ = {
isa = PBXGroup;
children = (
91B120C420F6132E00730C37 /* Example.swift */,
91B120D620F61BE900730C37 /* Output.txt */,
91B120C620F6132E00730C37 /* Info.plist */,
);
path = RealWorld;
sourceTree = "<group>";
};
/* End PBXGroup section */
/* Begin PBXNativeTarget section */
912C5CDE210BC33D007DC364 /* MediatorConceptual */ = {
isa = PBXNativeTarget;
buildConfigurationList = 912C5CE4210BC33E007DC364 /* Build configuration list for PBXNativeTarget "MediatorConceptual" */;
buildPhases = (
912C5CDB210BC33D007DC364 /* Sources */,
912C5CDC210BC33D007DC364 /* Frameworks */,
912C5CDD210BC33D007DC364 /* Resources */,
);
buildRules = (
);
dependencies = (
);
name = MediatorConceptual;
productName = MediatorConceptual;
productReference = 912C5CDF210BC33D007DC364 /* MediatorConceptual.xctest */;
productType = "com.apple.product-type.bundle.unit-test";
};
912C5CEB210BC3A4007DC364 /* MediatorRealWorld */ = {
isa = PBXNativeTarget;
buildConfigurationList = 912C5CF1210BC3A4007DC364 /* Build configuration list for PBXNativeTarget "MediatorRealWorld" */;
buildPhases = (
912C5CE8210BC3A4007DC364 /* Sources */,
912C5CE9210BC3A4007DC364 /* Frameworks */,
912C5CEA210BC3A4007DC364 /* Resources */,
);
buildRules = (
);
dependencies = (
);
name = MediatorRealWorld;
productName = MediatorRealWorld;
productReference = 912C5CEC210BC3A4007DC364 /* MediatorRealWorld.xctest */;
productType = "com.apple.product-type.bundle.unit-test";
};
912C5CF7210BC3F5007DC364 /* MementoConceptual */ = {
isa = PBXNativeTarget;
buildConfigurationList = 912C5CFD210BC3F5007DC364 /* Build configuration list for PBXNativeTarget "MementoConceptual" */;
buildPhases = (
912C5CF4210BC3F5007DC364 /* Sources */,
912C5CF5210BC3F5007DC364 /* Frameworks */,
912C5CF6210BC3F5007DC364 /* Resources */,
);
buildRules = (
);
dependencies = (
);
name = MementoConceptual;
productName = MementoConceptual;
productReference = 912C5CF8210BC3F5007DC364 /* MementoConceptual.xctest */;
productType = "com.apple.product-type.bundle.unit-test";
};
912C5D0A210BC4D8007DC364 /* MementoRealWorld */ = {
isa = PBXNativeTarget;
buildConfigurationList = 912C5D10210BC4D9007DC364 /* Build configuration list for PBXNativeTarget "MementoRealWorld" */;
buildPhases = (
912C5D07210BC4D8007DC364 /* Sources */,
912C5D08210BC4D8007DC364 /* Frameworks */,
912C5D09210BC4D8007DC364 /* Resources */,
);
buildRules = (
);
dependencies = (
);
name = MementoRealWorld;
productName = MementoRealWorld;
productReference = 912C5D0B210BC4D8007DC364 /* MementoRealWorld.xctest */;
productType = "com.apple.product-type.bundle.unit-test";
};
912C5D17210BC553007DC364 /* ObserverConceptual */ = {
isa = PBXNativeTarget;
buildConfigurationList = 912C5D1D210BC553007DC364 /* Build configuration list for PBXNativeTarget "ObserverConceptual" */;
buildPhases = (
912C5D14210BC553007DC364 /* Sources */,
912C5D15210BC553007DC364 /* Frameworks */,
912C5D16210BC553007DC364 /* Resources */,
);
buildRules = (
);
dependencies = (
);
name = ObserverConceptual;
productName = ObserverConceptual;
productReference = 912C5D18210BC553007DC364 /* ObserverConceptual.xctest */;
productType = "com.apple.product-type.bundle.unit-test";
};
912C5D23210BC594007DC364 /* ObserverRealWorld */ = {
isa = PBXNativeTarget;
buildConfigurationList = 912C5D29210BC594007DC364 /* Build configuration list for PBXNativeTarget "ObserverRealWorld" */;
buildPhases = (
912C5D20210BC594007DC364 /* Sources */,
912C5D21210BC594007DC364 /* Frameworks */,
912C5D22210BC594007DC364 /* Resources */,
);
buildRules = (
);
dependencies = (
);
name = ObserverRealWorld;
productName = ObserverRealWorld;
productReference = 912C5D24210BC594007DC364 /* ObserverRealWorld.xctest */;
productType = "com.apple.product-type.bundle.unit-test";
};
912C5D2F210BC5E1007DC364 /* StateConceptual */ = {
isa = PBXNativeTarget;
buildConfigurationList = 912C5D35210BC5E1007DC364 /* Build configuration list for PBXNativeTarget "StateConceptual" */;
buildPhases = (
912C5D2C210BC5E1007DC364 /* Sources */,
912C5D2D210BC5E1007DC364 /* Frameworks */,
912C5D2E210BC5E1007DC364 /* Resources */,
);
buildRules = (
);
dependencies = (
);
name = StateConceptual;
productName = StateConceptual;
productReference = 912C5D30210BC5E1007DC364 /* StateConceptual.xctest */;
productType = "com.apple.product-type.bundle.unit-test";
};
912C5D3C210BC62D007DC364 /* StateRealWorld */ = {
isa = PBXNativeTarget;
buildConfigurationList = 912C5D42210BC62D007DC364 /* Build configuration list for PBXNativeTarget "StateRealWorld" */;
buildPhases = (
912C5D39210BC62D007DC364 /* Sources */,
912C5D3A210BC62D007DC364 /* Frameworks */,
912C5D3B210BC62D007DC364 /* Resources */,
);
buildRules = (
);
dependencies = (
);
name = StateRealWorld;
productName = StateRealWorld;
productReference = 912C5D3D210BC62D007DC364 /* StateRealWorld.xctest */;
productType = "com.apple.product-type.bundle.unit-test";
};
912C5D49210BC6A8007DC364 /* StrategyConceptual */ = {
isa = PBXNativeTarget;
buildConfigurationList = 912C5D4F210BC6A8007DC364 /* Build configuration list for PBXNativeTarget "StrategyConceptual" */;
buildPhases = (
912C5D46210BC6A8007DC364 /* Sources */,
912C5D47210BC6A8007DC364 /* Frameworks */,
912C5D48210BC6A8007DC364 /* Resources */,
);
buildRules = (
);
dependencies = (
);
name = StrategyConceptual;
productName = StrategyConceptual;
productReference = 912C5D4A210BC6A8007DC364 /* StrategyConceptual.xctest */;
productType = "com.apple.product-type.bundle.unit-test";
};
912C5D55210BC6F0007DC364 /* StrategyRealWorld */ = {
isa = PBXNativeTarget;
buildConfigurationList = 912C5D5B210BC6F1007DC364 /* Build configuration list for PBXNativeTarget "StrategyRealWorld" */;
buildPhases = (
912C5D52210BC6F0007DC364 /* Sources */,
912C5D53210BC6F0007DC364 /* Frameworks */,
912C5D54210BC6F0007DC364 /* Resources */,
);
buildRules = (
);
dependencies = (
);
name = StrategyRealWorld;
productName = StrategyRealWorld;
productReference = 912C5D56210BC6F0007DC364 /* StrategyRealWorld.xctest */;
productType = "com.apple.product-type.bundle.unit-test";
};
912C5D61210BC749007DC364 /* TemplateMethodConceptual */ = {
isa = PBXNativeTarget;
buildConfigurationList = 912C5D67210BC749007DC364 /* Build configuration list for PBXNativeTarget "TemplateMethodConceptual" */;
buildPhases = (
912C5D5E210BC749007DC364 /* Sources */,
912C5D5F210BC749007DC364 /* Frameworks */,
912C5D60210BC749007DC364 /* Resources */,
);
buildRules = (
);
dependencies = (
);
name = TemplateMethodConceptual;
productName = TemplateMethodConceptual;
productReference = 912C5D62210BC749007DC364 /* TemplateMethodConceptual.xctest */;
productType = "com.apple.product-type.bundle.unit-test";
};
912C5D6E210BC7B1007DC364 /* TemplateMethodRealWorld */ = {
isa = PBXNativeTarget;
buildConfigurationList = 912C5D74210BC7B1007DC364 /* Build configuration list for PBXNativeTarget "TemplateMethodRealWorld" */;
buildPhases = (
912C5D6B210BC7B1007DC364 /* Sources */,
912C5D6C210BC7B1007DC364 /* Frameworks */,
912C5D6D210BC7B1007DC364 /* Resources */,
);
buildRules = (
);
dependencies = (
);
name = TemplateMethodRealWorld;
productName = TemplateMethodRealWorld;
productReference = 912C5D6F210BC7B1007DC364 /* TemplateMethodRealWorld.xctest */;
productType = "com.apple.product-type.bundle.unit-test";
};
912C5D7B210BC81E007DC364 /* VisitorConceptual */ = {
isa = PBXNativeTarget;
buildConfigurationList = 912C5D81210BC81E007DC364 /* Build configuration list for PBXNativeTarget "VisitorConceptual" */;
buildPhases = (
912C5D78210BC81E007DC364 /* Sources */,
912C5D79210BC81E007DC364 /* Frameworks */,
912C5D7A210BC81E007DC364 /* Resources */,
);
buildRules = (
);
dependencies = (
);
name = VisitorConceptual;
productName = VisitorConceptual;
productReference = 912C5D7C210BC81E007DC364 /* VisitorConceptual.xctest */;
productType = "com.apple.product-type.bundle.unit-test";
};
912C5D87210BC865007DC364 /* VisitorRealWorld */ = {
isa = PBXNativeTarget;
buildConfigurationList = 912C5D8D210BC865007DC364 /* Build configuration list for PBXNativeTarget "VisitorRealWorld" */;
buildPhases = (
912C5D84210BC865007DC364 /* Sources */,
912C5D85210BC865007DC364 /* Frameworks */,
912C5D86210BC865007DC364 /* Resources */,
);
buildRules = (
);
dependencies = (
);
name = VisitorRealWorld;
productName = VisitorRealWorld;
productReference = 912C5D88210BC865007DC364 /* VisitorRealWorld.xctest */;
productType = "com.apple.product-type.bundle.unit-test";
};
91301AD120F55C25003B4FC0 /* FlyweightConceptual */ = {
isa = PBXNativeTarget;
buildConfigurationList = 91301AD720F55C25003B4FC0 /* Build configuration list for PBXNativeTarget "FlyweightConceptual" */;
buildPhases = (
91301ACE20F55C25003B4FC0 /* Sources */,
91301ACF20F55C25003B4FC0 /* Frameworks */,
91301AD020F55C25003B4FC0 /* Resources */,
);
buildRules = (
);
dependencies = (
);
name = FlyweightConceptual;
productName = FlyweightConceptual;
productReference = 91301AD220F55C25003B4FC0 /* FlyweightConceptual.xctest */;
productType = "com.apple.product-type.bundle.unit-test";
};
91301ADE20F55CAA003B4FC0 /* FlyweightRealWorld */ = {
isa = PBXNativeTarget;
buildConfigurationList = 91301AE420F55CAA003B4FC0 /* Build configuration list for PBXNativeTarget "FlyweightRealWorld" */;
buildPhases = (
91301ADB20F55CAA003B4FC0 /* Sources */,
91301ADC20F55CAA003B4FC0 /* Frameworks */,
91301ADD20F55CAA003B4FC0 /* Resources */,
);
buildRules = (
);
dependencies = (
);
name = FlyweightRealWorld;
productName = FlyweightRealWorld;
productReference = 91301ADF20F55CAA003B4FC0 /* FlyweightRealWorld.xctest */;
productType = "com.apple.product-type.bundle.unit-test";
};
919C89F020DD7EE4006EE57D /* AbstractFactoryRealWorld */ = {
isa = PBXNativeTarget;
buildConfigurationList = 919C89F820DD7EE4006EE57D /* Build configuration list for PBXNativeTarget "AbstractFactoryRealWorld" */;
buildPhases = (
919C89ED20DD7EE4006EE57D /* Sources */,
919C89EE20DD7EE4006EE57D /* Frameworks */,
919C89EF20DD7EE4006EE57D /* Resources */,
);
buildRules = (
);
dependencies = (
);
name = AbstractFactoryRealWorld;
productName = AbstractFactoryRealWorld;
productReference = 919C89F120DD7EE4006EE57D /* AbstractFactoryRealWorld.xctest */;
productType = "com.apple.product-type.bundle.unit-test";
};
919C8A0420DD7F3C006EE57D /* AbstractFactoryConceptual */ = {
isa = PBXNativeTarget;
buildConfigurationList = 919C8A0A20DD7F3C006EE57D /* Build configuration list for PBXNativeTarget "AbstractFactoryConceptual" */;
buildPhases = (
919C8A0120DD7F3C006EE57D /* Sources */,
919C8A0220DD7F3C006EE57D /* Frameworks */,
919C8A0320DD7F3C006EE57D /* Resources */,
);
buildRules = (
);
dependencies = (
);
name = AbstractFactoryConceptual;
productName = AbstractFactoryConceptual;
productReference = 919C8A0520DD7F3C006EE57D /* AbstractFactoryConceptual.xctest */;
productType = "com.apple.product-type.bundle.unit-test";
};
919C8A1220DD81D0006EE57D /* FacadeConceptual */ = {
isa = PBXNativeTarget;
buildConfigurationList = 919C8A1820DD81D0006EE57D /* Build configuration list for PBXNativeTarget "FacadeConceptual" */;
buildPhases = (
919C8A0F20DD81D0006EE57D /* Sources */,
919C8A1020DD81D0006EE57D /* Frameworks */,
919C8A1120DD81D0006EE57D /* Resources */,
);
buildRules = (
);
dependencies = (
);
name = FacadeConceptual;
productName = FacadeConceptual;
productReference = 919C8A1320DD81D0006EE57D /* FacadeConceptual.xctest */;
productType = "com.apple.product-type.bundle.unit-test";
};
919C8A1F20DD8261006EE57D /* FacadeRealWorld */ = {
isa = PBXNativeTarget;
buildConfigurationList = 919C8A2520DD8261006EE57D /* Build configuration list for PBXNativeTarget "FacadeRealWorld" */;
buildPhases = (
919C8A1C20DD8261006EE57D /* Sources */,
919C8A1D20DD8261006EE57D /* Frameworks */,
919C8A1E20DD8261006EE57D /* Resources */,
);
buildRules = (
);
dependencies = (
);
name = FacadeRealWorld;
productName = FacadeRealWorld;
productReference = 919C8A2020DD8261006EE57D /* FacadeRealWorld.xctest */;
productType = "com.apple.product-type.bundle.unit-test";
};
919C8A3820DD82F0006EE57D /* BridgeConceptual */ = {
isa = PBXNativeTarget;
buildConfigurationList = 919C8A3E20DD82F0006EE57D /* Build configuration list for PBXNativeTarget "BridgeConceptual" */;
buildPhases = (
919C8A3520DD82F0006EE57D /* Sources */,
919C8A3620DD82F0006EE57D /* Frameworks */,
919C8A3720DD82F0006EE57D /* Resources */,
);
buildRules = (
);
dependencies = (
);
name = BridgeConceptual;
productName = BridgeConceptual;
productReference = 919C8A3920DD82F0006EE57D /* BridgeConceptual.xctest */;
productType = "com.apple.product-type.bundle.unit-test";
};
919C8A4520DD8393006EE57D /* BridgeRealWorld */ = {
isa = PBXNativeTarget;
buildConfigurationList = 919C8A4B20DD8393006EE57D /* Build configuration list for PBXNativeTarget "BridgeRealWorld" */;
buildPhases = (
919C8A4220DD8393006EE57D /* Sources */,
919C8A4320DD8393006EE57D /* Frameworks */,
919C8A4420DD8393006EE57D /* Resources */,
);
buildRules = (
);
dependencies = (
);
name = BridgeRealWorld;
productName = BridgeRealWorld;
productReference = 919C8A4620DD8393006EE57D /* BridgeRealWorld.xctest */;
productType = "com.apple.product-type.bundle.unit-test";
};
919C8A5E20DD849A006EE57D /* AdapterConceptual */ = {
isa = PBXNativeTarget;
buildConfigurationList = 919C8A6420DD849B006EE57D /* Build configuration list for PBXNativeTarget "AdapterConceptual" */;
buildPhases = (
919C8A5B20DD849A006EE57D /* Sources */,
919C8A5C20DD849A006EE57D /* Frameworks */,
919C8A5D20DD849A006EE57D /* Resources */,
);
buildRules = (
);
dependencies = (
);
name = AdapterConceptual;
productName = AdapterConceptual;
productReference = 919C8A5F20DD849A006EE57D /* AdapterConceptual.xctest */;
productType = "com.apple.product-type.bundle.unit-test";
};
919C8A6B20DD858C006EE57D /* AdapterRealWorld */ = {
isa = PBXNativeTarget;
buildConfigurationList = 919C8A7120DD858C006EE57D /* Build configuration list for PBXNativeTarget "AdapterRealWorld" */;
buildPhases = (
919C8A6820DD858C006EE57D /* Sources */,
919C8A6920DD858C006EE57D /* Frameworks */,
919C8A6A20DD858C006EE57D /* Resources */,
);
buildRules = (
);
dependencies = (
);
name = AdapterRealWorld;
productName = AdapterRealWorld;
productReference = 919C8A6C20DD858C006EE57D /* AdapterRealWorld.xctest */;
productType = "com.apple.product-type.bundle.unit-test";
};
919C8A7920DD8688006EE57D /* BuilderConceptual */ = {
isa = PBXNativeTarget;
buildConfigurationList = 919C8A7F20DD8688006EE57D /* Build configuration list for PBXNativeTarget "BuilderConceptual" */;
buildPhases = (
919C8A7620DD8688006EE57D /* Sources */,
919C8A7720DD8688006EE57D /* Frameworks */,
919C8A7820DD8688006EE57D /* Resources */,
);
buildRules = (
);
dependencies = (
);
name = BuilderConceptual;
productName = BuilderConceptual;
productReference = 919C8A7A20DD8688006EE57D /* BuilderConceptual.xctest */;
productType = "com.apple.product-type.bundle.unit-test";
};
919C8A8620DD86DC006EE57D /* BuilderRealWorld */ = {
isa = PBXNativeTarget;
buildConfigurationList = 919C8A8C20DD86DC006EE57D /* Build configuration list for PBXNativeTarget "BuilderRealWorld" */;
buildPhases = (
919C8A8320DD86DC006EE57D /* Sources */,
919C8A8420DD86DC006EE57D /* Frameworks */,
919C8A8520DD86DC006EE57D /* Resources */,
);
buildRules = (
);
dependencies = (
);
name = BuilderRealWorld;
productName = BuilderRealWorld;
productReference = 919C8A8720DD86DC006EE57D /* BuilderRealWorld.xctest */;
productType = "com.apple.product-type.bundle.unit-test";
};
919C8AA120DD878D006EE57D /* CompositeConceptual */ = {
isa = PBXNativeTarget;
buildConfigurationList = 919C8AA720DD878E006EE57D /* Build configuration list for PBXNativeTarget "CompositeConceptual" */;
buildPhases = (
919C8A9E20DD878D006EE57D /* Sources */,
919C8A9F20DD878D006EE57D /* Frameworks */,
919C8AA020DD878D006EE57D /* Resources */,
);
buildRules = (
);
dependencies = (
);
name = CompositeConceptual;
productName = CompositeConceptual;
productReference = 919C8AA220DD878D006EE57D /* CompositeConceptual.xctest */;
productType = "com.apple.product-type.bundle.unit-test";
};
919C8AAE20DD87F2006EE57D /* CompositeRealWorld */ = {
isa = PBXNativeTarget;
buildConfigurationList = 919C8AB420DD87F2006EE57D /* Build configuration list for PBXNativeTarget "CompositeRealWorld" */;
buildPhases = (
919C8AAB20DD87F2006EE57D /* Sources */,
919C8AAC20DD87F2006EE57D /* Frameworks */,
919C8AAD20DD87F2006EE57D /* Resources */,
);
buildRules = (
);
dependencies = (
);
name = CompositeRealWorld;
productName = CompositeRealWorld;
productReference = 919C8AAF20DD87F2006EE57D /* CompositeRealWorld.xctest */;
productType = "com.apple.product-type.bundle.unit-test";
};
919C8AC620DD8873006EE57D /* DecoratorConceptual */ = {
isa = PBXNativeTarget;
buildConfigurationList = 919C8ACC20DD8873006EE57D /* Build configuration list for PBXNativeTarget "DecoratorConceptual" */;
buildPhases = (
919C8AC320DD8873006EE57D /* Sources */,
919C8AC420DD8873006EE57D /* Frameworks */,
919C8AC520DD8873006EE57D /* Resources */,
);
buildRules = (
);
dependencies = (
);
name = DecoratorConceptual;
productName = DecoratorConceptual;
productReference = 919C8AC720DD8873006EE57D /* DecoratorConceptual.xctest */;
productType = "com.apple.product-type.bundle.unit-test";
};
919C8AD320DD88C6006EE57D /* DecoratorRealWorld */ = {
isa = PBXNativeTarget;
buildConfigurationList = 919C8AD920DD88C6006EE57D /* Build configuration list for PBXNativeTarget "DecoratorRealWorld" */;
buildPhases = (
919C8AD020DD88C6006EE57D /* Sources */,
919C8AD120DD88C6006EE57D /* Frameworks */,
919C8AD220DD88C6006EE57D /* Resources */,
);
buildRules = (
);
dependencies = (
);
name = DecoratorRealWorld;
productName = DecoratorRealWorld;
productReference = 919C8AD420DD88C6006EE57D /* DecoratorRealWorld.xctest */;
productType = "com.apple.product-type.bundle.unit-test";
};
919C8ADF20DD893E006EE57D /* FactoryMethodRealWorld */ = {
isa = PBXNativeTarget;
buildConfigurationList = 919C8AE520DD893E006EE57D /* Build configuration list for PBXNativeTarget "FactoryMethodRealWorld" */;
buildPhases = (
919C8ADC20DD893E006EE57D /* Sources */,
919C8ADD20DD893E006EE57D /* Frameworks */,
919C8ADE20DD893E006EE57D /* Resources */,
);
buildRules = (
);
dependencies = (
);
name = FactoryMethodRealWorld;
productName = FactoryMethodRealWorld;
productReference = 919C8AE020DD893E006EE57D /* FactoryMethodRealWorld.xctest */;
productType = "com.apple.product-type.bundle.unit-test";
};
919C8AEC20DD897E006EE57D /* FactoryMethodConceptual */ = {
isa = PBXNativeTarget;
buildConfigurationList = 919C8AF220DD897E006EE57D /* Build configuration list for PBXNativeTarget "FactoryMethodConceptual" */;
buildPhases = (
919C8AE920DD897E006EE57D /* Sources */,
919C8AEA20DD897E006EE57D /* Frameworks */,
919C8AEB20DD897E006EE57D /* Resources */,
);
buildRules = (
);
dependencies = (
);
name = FactoryMethodConceptual;
productName = FactoryConceptual;
productReference = 919C8AED20DD897E006EE57D /* FactoryMethodConceptual.xctest */;
productType = "com.apple.product-type.bundle.unit-test";
};
919C8AF920DD8A98006EE57D /* PrototypeConceptual */ = {
isa = PBXNativeTarget;
buildConfigurationList = 919C8AFF20DD8A98006EE57D /* Build configuration list for PBXNativeTarget "PrototypeConceptual" */;
buildPhases = (
919C8AF620DD8A98006EE57D /* Sources */,
919C8AF720DD8A98006EE57D /* Frameworks */,
919C8AF820DD8A98006EE57D /* Resources */,
);
buildRules = (
);
dependencies = (
);
name = PrototypeConceptual;
productName = PrototypeConceptual;
productReference = 919C8AFA20DD8A98006EE57D /* PrototypeConceptual.xctest */;
productType = "com.apple.product-type.bundle.unit-test";
};
919C8B0620DD8AF0006EE57D /* PrototypeRealWorld */ = {
isa = PBXNativeTarget;
buildConfigurationList = 919C8B0C20DD8AF0006EE57D /* Build configuration list for PBXNativeTarget "PrototypeRealWorld" */;
buildPhases = (
919C8B0320DD8AF0006EE57D /* Sources */,
919C8B0420DD8AF0006EE57D /* Frameworks */,
919C8B0520DD8AF0006EE57D /* Resources */,
);
buildRules = (
);
dependencies = (
);
name = PrototypeRealWorld;
productName = PrototypeRealWorld;
productReference = 919C8B0720DD8AF0006EE57D /* PrototypeRealWorld.xctest */;
productType = "com.apple.product-type.bundle.unit-test";
};
919C8B1320DD8B59006EE57D /* SingletonConceptual */ = {
isa = PBXNativeTarget;
buildConfigurationList = 919C8B1920DD8B59006EE57D /* Build configuration list for PBXNativeTarget "SingletonConceptual" */;
buildPhases = (
919C8B1020DD8B59006EE57D /* Sources */,
919C8B1120DD8B59006EE57D /* Frameworks */,
919C8B1220DD8B59006EE57D /* Resources */,
);
buildRules = (
);
dependencies = (
);
name = SingletonConceptual;
productName = SingletonConceptual;
productReference = 919C8B1420DD8B59006EE57D /* SingletonConceptual.xctest */;
productType = "com.apple.product-type.bundle.unit-test";
};
919C8B2020DD8BA9006EE57D /* SingletonRealWorld */ = {
isa = PBXNativeTarget;
buildConfigurationList = 919C8B2620DD8BA9006EE57D /* Build configuration list for PBXNativeTarget "SingletonRealWorld" */;
buildPhases = (
919C8B1D20DD8BA9006EE57D /* Sources */,
919C8B1E20DD8BA9006EE57D /* Frameworks */,
919C8B1F20DD8BA9006EE57D /* Resources */,
);
buildRules = (
);
dependencies = (
);
name = SingletonRealWorld;
productName = SingletonRealWorld;
productReference = 919C8B2120DD8BA9006EE57D /* SingletonRealWorld.xctest */;
productType = "com.apple.product-type.bundle.unit-test";
};
91B1206A20F610E400730C37 /* ChainOfResponsibilityConceptual */ = {
isa = PBXNativeTarget;
buildConfigurationList = 91B1207020F610E400730C37 /* Build configuration list for PBXNativeTarget "ChainOfResponsibilityConceptual" */;
buildPhases = (
91B1206720F610E400730C37 /* Sources */,
91B1206820F610E400730C37 /* Frameworks */,
91B1206920F610E400730C37 /* Resources */,
);
buildRules = (
);
dependencies = (
);
name = ChainOfResponsibilityConceptual;
productName = ChainOfResponsibilityConceptual;
productReference = 91B1206B20F610E400730C37 /* ChainOfResponsibilityConceptual.xctest */;
productType = "com.apple.product-type.bundle.unit-test";
};
91B1207620F6114A00730C37 /* ChainOfResponsibilityRealWorld */ = {
isa = PBXNativeTarget;
buildConfigurationList = 91B1207C20F6114A00730C37 /* Build configuration list for PBXNativeTarget "ChainOfResponsibilityRealWorld" */;
buildPhases = (
91B1207320F6114A00730C37 /* Sources */,
91B1207420F6114A00730C37 /* Frameworks */,
91B1207520F6114A00730C37 /* Resources */,
);
buildRules = (
);
dependencies = (
);
name = ChainOfResponsibilityRealWorld;
productName = ChainOfResponsibilityRealWorld;
productReference = 91B1207720F6114A00730C37 /* ChainOfResponsibilityRealWorld.xctest */;
productType = "com.apple.product-type.bundle.unit-test";
};
91B1208220F611DA00730C37 /* CommandConceptual */ = {
isa = PBXNativeTarget;
buildConfigurationList = 91B1208820F611DA00730C37 /* Build configuration list for PBXNativeTarget "CommandConceptual" */;
buildPhases = (
91B1207F20F611DA00730C37 /* Sources */,
91B1208020F611DA00730C37 /* Frameworks */,
91B1208120F611DA00730C37 /* Resources */,
);
buildRules = (
);
dependencies = (
);
name = CommandConceptual;
productName = CommandConceptual;
productReference = 91B1208320F611DA00730C37 /* CommandConceptual.xctest */;
productType = "com.apple.product-type.bundle.unit-test";
};
91B1208F20F6120C00730C37 /* CommandRealWorld */ = {
isa = PBXNativeTarget;
buildConfigurationList = 91B1209520F6120C00730C37 /* Build configuration list for PBXNativeTarget "CommandRealWorld" */;
buildPhases = (
91B1208C20F6120C00730C37 /* Sources */,
91B1208D20F6120C00730C37 /* Frameworks */,
91B1208E20F6120C00730C37 /* Resources */,
);
buildRules = (
);
dependencies = (
);
name = CommandRealWorld;
productName = CommandRealWorld;
productReference = 91B1209020F6120C00730C37 /* CommandRealWorld.xctest */;
productType = "com.apple.product-type.bundle.unit-test";
};
91B1209C20F6125500730C37 /* IteratorConceptual */ = {
isa = PBXNativeTarget;
buildConfigurationList = 91B120A220F6125500730C37 /* Build configuration list for PBXNativeTarget "IteratorConceptual" */;
buildPhases = (
91B1209920F6125500730C37 /* Sources */,
91B1209A20F6125500730C37 /* Frameworks */,
91B1209B20F6125500730C37 /* Resources */,
);
buildRules = (
);
dependencies = (
);
name = IteratorConceptual;
productName = IteratorConceptual;
productReference = 91B1209D20F6125500730C37 /* IteratorConceptual.xctest */;
productType = "com.apple.product-type.bundle.unit-test";
};
91B120A820F6127400730C37 /* IteratorRealWorld */ = {
isa = PBXNativeTarget;
buildConfigurationList = 91B120AE20F6127400730C37 /* Build configuration list for PBXNativeTarget "IteratorRealWorld" */;
buildPhases = (
91B120A520F6127400730C37 /* Sources */,
91B120A620F6127400730C37 /* Frameworks */,
91B120A720F6127400730C37 /* Resources */,
);
buildRules = (
);
dependencies = (
);
name = IteratorRealWorld;
productName = IteratorRealWorld;
productReference = 91B120A920F6127400730C37 /* IteratorRealWorld.xctest */;
productType = "com.apple.product-type.bundle.unit-test";
};
91B120B520F6130900730C37 /* ProxyConceptual */ = {
isa = PBXNativeTarget;
buildConfigurationList = 91B120BB20F6130A00730C37 /* Build configuration list for PBXNativeTarget "ProxyConceptual" */;
buildPhases = (
91B120B220F6130900730C37 /* Sources */,
91B120B320F6130900730C37 /* Frameworks */,
91B120B420F6130900730C37 /* Resources */,
);
buildRules = (
);
dependencies = (
);
name = ProxyConceptual;
productName = ProxyConceptual;
productReference = 91B120B620F6130900730C37 /* ProxyConceptual.xctest */;
productType = "com.apple.product-type.bundle.unit-test";
};
91B120C120F6132E00730C37 /* ProxyRealWorld */ = {
isa = PBXNativeTarget;
buildConfigurationList = 91B120C720F6132E00730C37 /* Build configuration list for PBXNativeTarget "ProxyRealWorld" */;
buildPhases = (
91B120BE20F6132E00730C37 /* Sources */,
91B120BF20F6132E00730C37 /* Frameworks */,
91B120C020F6132E00730C37 /* Resources */,
);
buildRules = (
);
dependencies = (
);
name = ProxyRealWorld;
productName = ProxyRealWorld;
productReference = 91B120C220F6132E00730C37 /* ProxyRealWorld.xctest */;
productType = "com.apple.product-type.bundle.unit-test";
};
/* End PBXNativeTarget section */
/* Begin PBXProject section */
9139FA702088D85C00229150 /* Project object */ = {
isa = PBXProject;
attributes = {
LastSwiftUpdateCheck = 0930;
LastUpgradeCheck = 0930;
ORGANIZATIONNAME = "Eremenko Maxim";
TargetAttributes = {
912C5CDE210BC33D007DC364 = {
CreatedOnToolsVersion = 9.3;
LastSwiftMigration = 1140;
ProvisioningStyle = Automatic;
};
912C5CEB210BC3A4007DC364 = {
CreatedOnToolsVersion = 9.3;
LastSwiftMigration = 1140;
ProvisioningStyle = Automatic;
};
912C5CF7210BC3F5007DC364 = {
CreatedOnToolsVersion = 9.3;
LastSwiftMigration = 1140;
ProvisioningStyle = Automatic;
};
912C5D0A210BC4D8007DC364 = {
CreatedOnToolsVersion = 9.3;
LastSwiftMigration = 1140;
ProvisioningStyle = Automatic;
};
912C5D17210BC553007DC364 = {
CreatedOnToolsVersion = 9.3;
LastSwiftMigration = 1140;
ProvisioningStyle = Automatic;
};
912C5D23210BC594007DC364 = {
CreatedOnToolsVersion = 9.3;
LastSwiftMigration = 1140;
ProvisioningStyle = Automatic;
};
912C5D2F210BC5E1007DC364 = {
CreatedOnToolsVersion = 9.3;
LastSwiftMigration = 1140;
ProvisioningStyle = Automatic;
};
912C5D3C210BC62D007DC364 = {
CreatedOnToolsVersion = 9.3;
LastSwiftMigration = 1140;
ProvisioningStyle = Automatic;
};
912C5D49210BC6A8007DC364 = {
CreatedOnToolsVersion = 9.3;
LastSwiftMigration = 1140;
ProvisioningStyle = Automatic;
};
912C5D55210BC6F0007DC364 = {
CreatedOnToolsVersion = 9.3;
LastSwiftMigration = 1140;
ProvisioningStyle = Automatic;
};
912C5D61210BC749007DC364 = {
CreatedOnToolsVersion = 9.3;
LastSwiftMigration = 1140;
ProvisioningStyle = Automatic;
};
912C5D6E210BC7B1007DC364 = {
CreatedOnToolsVersion = 9.3;
LastSwiftMigration = 1140;
ProvisioningStyle = Automatic;
};
912C5D7B210BC81E007DC364 = {
CreatedOnToolsVersion = 9.3;
LastSwiftMigration = 1140;
ProvisioningStyle = Automatic;
};
912C5D87210BC865007DC364 = {
CreatedOnToolsVersion = 9.3;
LastSwiftMigration = 1140;
ProvisioningStyle = Automatic;
};
91301AD120F55C25003B4FC0 = {
CreatedOnToolsVersion = 9.3;
LastSwiftMigration = 1140;
ProvisioningStyle = Automatic;
};
91301ADE20F55CAA003B4FC0 = {
CreatedOnToolsVersion = 9.3;
LastSwiftMigration = 1140;
ProvisioningStyle = Automatic;
};
919C89F020DD7EE4006EE57D = {
CreatedOnToolsVersion = 9.3;
LastSwiftMigration = 1140;
ProvisioningStyle = Automatic;
};
919C8A0420DD7F3C006EE57D = {
CreatedOnToolsVersion = 9.3;
LastSwiftMigration = 1140;
ProvisioningStyle = Automatic;
};
919C8A1220DD81D0006EE57D = {
CreatedOnToolsVersion = 9.3;
LastSwiftMigration = 1140;
ProvisioningStyle = Automatic;
};
919C8A1F20DD8261006EE57D = {
CreatedOnToolsVersion = 9.3;
LastSwiftMigration = 1140;
ProvisioningStyle = Automatic;
};
919C8A3820DD82F0006EE57D = {
CreatedOnToolsVersion = 9.3;
LastSwiftMigration = 1140;
ProvisioningStyle = Automatic;
};
919C8A4520DD8393006EE57D = {
CreatedOnToolsVersion = 9.3;
LastSwiftMigration = 1140;
ProvisioningStyle = Automatic;
};
919C8A5E20DD849A006EE57D = {
CreatedOnToolsVersion = 9.3;
LastSwiftMigration = 1140;
ProvisioningStyle = Automatic;
};
919C8A6B20DD858C006EE57D = {
CreatedOnToolsVersion = 9.3;
LastSwiftMigration = 1140;
ProvisioningStyle = Automatic;
};
919C8A7920DD8688006EE57D = {
CreatedOnToolsVersion = 9.3;
LastSwiftMigration = 1140;
ProvisioningStyle = Automatic;
};
919C8A8620DD86DC006EE57D = {
CreatedOnToolsVersion = 9.3;
LastSwiftMigration = 1140;
ProvisioningStyle = Automatic;
};
919C8AA120DD878D006EE57D = {
CreatedOnToolsVersion = 9.3;
LastSwiftMigration = 1140;
ProvisioningStyle = Automatic;
};
919C8AAE20DD87F2006EE57D = {
CreatedOnToolsVersion = 9.3;
LastSwiftMigration = 1140;
ProvisioningStyle = Automatic;
};
919C8AC620DD8873006EE57D = {
CreatedOnToolsVersion = 9.3;
LastSwiftMigration = 1140;
ProvisioningStyle = Automatic;
};
919C8AD320DD88C6006EE57D = {
CreatedOnToolsVersion = 9.3;
LastSwiftMigration = 1140;
ProvisioningStyle = Automatic;
};
919C8ADF20DD893E006EE57D = {
CreatedOnToolsVersion = 9.3;
LastSwiftMigration = 1140;
ProvisioningStyle = Automatic;
};
919C8AEC20DD897E006EE57D = {
CreatedOnToolsVersion = 9.3;
LastSwiftMigration = 1140;
ProvisioningStyle = Automatic;
};
919C8AF920DD8A98006EE57D = {
CreatedOnToolsVersion = 9.3;
LastSwiftMigration = 1140;
ProvisioningStyle = Automatic;
};
919C8B0620DD8AF0006EE57D = {
CreatedOnToolsVersion = 9.3;
LastSwiftMigration = 1140;
ProvisioningStyle = Automatic;
};
919C8B1320DD8B59006EE57D = {
CreatedOnToolsVersion = 9.3;
LastSwiftMigration = 1140;
ProvisioningStyle = Automatic;
};
919C8B2020DD8BA9006EE57D = {
CreatedOnToolsVersion = 9.3;
LastSwiftMigration = 1140;
ProvisioningStyle = Automatic;
};
91B1206A20F610E400730C37 = {
CreatedOnToolsVersion = 9.3;
LastSwiftMigration = 1140;
ProvisioningStyle = Automatic;
};
91B1207620F6114A00730C37 = {
CreatedOnToolsVersion = 9.3;
LastSwiftMigration = 1140;
ProvisioningStyle = Automatic;
};
91B1208220F611DA00730C37 = {
CreatedOnToolsVersion = 9.3;
LastSwiftMigration = 1140;
ProvisioningStyle = Automatic;
};
91B1208F20F6120C00730C37 = {
CreatedOnToolsVersion = 9.3;
LastSwiftMigration = 1140;
ProvisioningStyle = Automatic;
};
91B1209C20F6125500730C37 = {
CreatedOnToolsVersion = 9.3;
LastSwiftMigration = 1140;
ProvisioningStyle = Automatic;
};
91B120A820F6127400730C37 = {
CreatedOnToolsVersion = 9.3;
LastSwiftMigration = 1140;
ProvisioningStyle = Automatic;
};
91B120B520F6130900730C37 = {
CreatedOnToolsVersion = 9.3;
LastSwiftMigration = 1140;
ProvisioningStyle = Automatic;
};
91B120C120F6132E00730C37 = {
CreatedOnToolsVersion = 9.3;
LastSwiftMigration = 1140;
ProvisioningStyle = Automatic;
};
};
};
buildConfigurationList = 9139FA732088D85C00229150 /* Build configuration list for PBXProject "RefactoringGuru.Patterns" */;
compatibilityVersion = "Xcode 8.0";
developmentRegion = en;
hasScannedForEncodings = 0;
knownRegions = (
en,
Base,
);
mainGroup = 9139FA6F2088D85C00229150;
productRefGroup = 9139FA792088D85C00229150 /* Products */;
projectDirPath = "";
projectRoot = "";
targets = (
919C8A0420DD7F3C006EE57D /* AbstractFactoryConceptual */,
919C89F020DD7EE4006EE57D /* AbstractFactoryRealWorld */,
919C8A5E20DD849A006EE57D /* AdapterConceptual */,
919C8A6B20DD858C006EE57D /* AdapterRealWorld */,
919C8A3820DD82F0006EE57D /* BridgeConceptual */,
919C8A4520DD8393006EE57D /* BridgeRealWorld */,
919C8A7920DD8688006EE57D /* BuilderConceptual */,
919C8A8620DD86DC006EE57D /* BuilderRealWorld */,
919C8A1220DD81D0006EE57D /* FacadeConceptual */,
919C8A1F20DD8261006EE57D /* FacadeRealWorld */,
919C8AA120DD878D006EE57D /* CompositeConceptual */,
919C8AAE20DD87F2006EE57D /* CompositeRealWorld */,
919C8AC620DD8873006EE57D /* DecoratorConceptual */,
919C8AD320DD88C6006EE57D /* DecoratorRealWorld */,
919C8AEC20DD897E006EE57D /* FactoryMethodConceptual */,
919C8ADF20DD893E006EE57D /* FactoryMethodRealWorld */,
919C8AF920DD8A98006EE57D /* PrototypeConceptual */,
919C8B0620DD8AF0006EE57D /* PrototypeRealWorld */,
919C8B1320DD8B59006EE57D /* SingletonConceptual */,
919C8B2020DD8BA9006EE57D /* SingletonRealWorld */,
91301AD120F55C25003B4FC0 /* FlyweightConceptual */,
91301ADE20F55CAA003B4FC0 /* FlyweightRealWorld */,
91B1206A20F610E400730C37 /* ChainOfResponsibilityConceptual */,
91B1207620F6114A00730C37 /* ChainOfResponsibilityRealWorld */,
91B1208220F611DA00730C37 /* CommandConceptual */,
91B1208F20F6120C00730C37 /* CommandRealWorld */,
91B1209C20F6125500730C37 /* IteratorConceptual */,
91B120A820F6127400730C37 /* IteratorRealWorld */,
91B120B520F6130900730C37 /* ProxyConceptual */,
91B120C120F6132E00730C37 /* ProxyRealWorld */,
912C5CDE210BC33D007DC364 /* MediatorConceptual */,
912C5CEB210BC3A4007DC364 /* MediatorRealWorld */,
912C5CF7210BC3F5007DC364 /* MementoConceptual */,
912C5D0A210BC4D8007DC364 /* MementoRealWorld */,
912C5D17210BC553007DC364 /* ObserverConceptual */,
912C5D23210BC594007DC364 /* ObserverRealWorld */,
912C5D2F210BC5E1007DC364 /* StateConceptual */,
912C5D3C210BC62D007DC364 /* StateRealWorld */,
912C5D49210BC6A8007DC364 /* StrategyConceptual */,
912C5D55210BC6F0007DC364 /* StrategyRealWorld */,
912C5D61210BC749007DC364 /* TemplateMethodConceptual */,
912C5D6E210BC7B1007DC364 /* TemplateMethodRealWorld */,
912C5D7B210BC81E007DC364 /* VisitorConceptual */,
912C5D87210BC865007DC364 /* VisitorRealWorld */,
);
};
/* End PBXProject section */
/* Begin PBXResourcesBuildPhase section */
912C5CDD210BC33D007DC364 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
912C5CEA210BC3A4007DC364 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
912C5CF6210BC3F5007DC364 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
912C5D09210BC4D8007DC364 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
912C5D16210BC553007DC364 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
912C5D22210BC594007DC364 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
912C5D2E210BC5E1007DC364 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
912C5D3B210BC62D007DC364 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
912C5D48210BC6A8007DC364 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
912C5D54210BC6F0007DC364 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
912C5D60210BC749007DC364 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
912C5D6D210BC7B1007DC364 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
912C5D7A210BC81E007DC364 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
912C5D86210BC865007DC364 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
91301AD020F55C25003B4FC0 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
91301ADD20F55CAA003B4FC0 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
919C89EF20DD7EE4006EE57D /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
919C8A0320DD7F3C006EE57D /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
919C8A1120DD81D0006EE57D /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
919C8A1E20DD8261006EE57D /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
919C8A3720DD82F0006EE57D /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
919C8A4420DD8393006EE57D /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
919C8A5D20DD849A006EE57D /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
919C8A6A20DD858C006EE57D /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
919C8A7820DD8688006EE57D /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
919C8A8520DD86DC006EE57D /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
919C8AA020DD878D006EE57D /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
919C8AAD20DD87F2006EE57D /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
919C8AC520DD8873006EE57D /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
919C8AD220DD88C6006EE57D /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
919C8ADE20DD893E006EE57D /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
919C8AEB20DD897E006EE57D /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
919C8AF820DD8A98006EE57D /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
919C8B0520DD8AF0006EE57D /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
919C8B1220DD8B59006EE57D /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
919C8B1F20DD8BA9006EE57D /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
91B1206920F610E400730C37 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
91B1207520F6114A00730C37 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
91B1208120F611DA00730C37 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
91B1208E20F6120C00730C37 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
91B1209B20F6125500730C37 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
91B120A720F6127400730C37 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
91B120B420F6130900730C37 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
91B120C020F6132E00730C37 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
912C5CDB210BC33D007DC364 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
912C5CE2210BC33E007DC364 /* Example.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
912C5CE8210BC3A4007DC364 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
912C5CEF210BC3A4007DC364 /* Example.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
912C5CF4210BC3F5007DC364 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
912C5D05210BC4A5007DC364 /* Example.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
912C5D07210BC4D8007DC364 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
912C5D0E210BC4D9007DC364 /* Example.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
912C5D14210BC553007DC364 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
912C5D1B210BC553007DC364 /* Example.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
912C5D20210BC594007DC364 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
912C5D27210BC594007DC364 /* Example.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
912C5D2C210BC5E1007DC364 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
912C5D33210BC5E1007DC364 /* Example.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
912C5D39210BC62D007DC364 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
912C5D40210BC62D007DC364 /* Example.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
912C5D46210BC6A8007DC364 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
912C5D4D210BC6A8007DC364 /* Example.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
912C5D52210BC6F0007DC364 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
912C5D59210BC6F1007DC364 /* Example.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
912C5D5E210BC749007DC364 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
912C5D65210BC749007DC364 /* Example.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
912C5D6B210BC7B1007DC364 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
912C5D72210BC7B1007DC364 /* Example.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
912C5D78210BC81E007DC364 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
912C5D7F210BC81E007DC364 /* Example.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
912C5D84210BC865007DC364 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
912C5D8B210BC865007DC364 /* Example.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
91301ACE20F55C25003B4FC0 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
91301AD520F55C25003B4FC0 /* Example.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
91301ADB20F55CAA003B4FC0 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
91301AE220F55CAA003B4FC0 /* Example.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
919C89ED20DD7EE4006EE57D /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
919C89FA20DD7F03006EE57D /* Example.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
919C8A0120DD7F3C006EE57D /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
919C8A0D20DD7F58006EE57D /* Example.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
919C8A0F20DD81D0006EE57D /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
919C8A1B20DD81E7006EE57D /* Example.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
919C8A1C20DD8261006EE57D /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
919C8A2820DD829C006EE57D /* Example.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
919C8A3520DD82F0006EE57D /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
919C8A4120DD832C006EE57D /* Example.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
919C8A4220DD8393006EE57D /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
919C8A4E20DD83AA006EE57D /* Example.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
919C8A5B20DD849A006EE57D /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
919C8A6720DD84DB006EE57D /* Example.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
919C8A6820DD858C006EE57D /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
919C8A7520DD85A3006EE57D /* Example.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
919C8A7620DD8688006EE57D /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
919C8A8220DD8698006EE57D /* Example.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
919C8A8320DD86DC006EE57D /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
919C8A8F20DD86EB006EE57D /* Example.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
919C8A9E20DD878D006EE57D /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
919C8AAA20DD879C006EE57D /* Example.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
919C8AAB20DD87F2006EE57D /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
919C8AB220DD87F2006EE57D /* Example.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
919C8AC320DD8873006EE57D /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
919C8ACF20DD887F006EE57D /* Example.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
919C8AD020DD88C6006EE57D /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
919C8AD720DD88C6006EE57D /* Example.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
919C8ADC20DD893E006EE57D /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
919C8AE820DD894F006EE57D /* Example.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
919C8AE920DD897E006EE57D /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
919C8AF520DD89CE006EE57D /* Example.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
919C8AF620DD8A98006EE57D /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
919C8B0220DD8AB3006EE57D /* Example.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
919C8B0320DD8AF0006EE57D /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
919C8B0F20DD8B12006EE57D /* Example.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
919C8B1020DD8B59006EE57D /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
919C8B1C20DD8B70006EE57D /* Example.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
919C8B1D20DD8BA9006EE57D /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
919C8B2920DD8BC3006EE57D /* Example.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
91B1206720F610E400730C37 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
91B1206E20F610E400730C37 /* Example.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
91B1207320F6114A00730C37 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
91B1207A20F6114A00730C37 /* Example.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
91B1207F20F611DA00730C37 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
91B1208620F611DA00730C37 /* Example.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
91B1208C20F6120C00730C37 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
91B1209320F6120C00730C37 /* Example.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
91B1209920F6125500730C37 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
91B120A020F6125500730C37 /* Example.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
91B120A520F6127400730C37 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
91B120AC20F6127400730C37 /* Example.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
91B120B220F6130900730C37 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
91B120B920F6130A00730C37 /* Example.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
91B120BE20F6132E00730C37 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
91B120C520F6132E00730C37 /* Example.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */
/* Begin XCBuildConfiguration section */
912C5CE5210BC33E007DC364 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_STYLE = Automatic;
INFOPLIST_FILE = Sources/Mediator/Conceptual/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = com.maxim.eremenko.MediatorConceptual;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2";
};
name = Debug;
};
912C5CE6210BC33E007DC364 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_STYLE = Automatic;
INFOPLIST_FILE = Sources/Mediator/Conceptual/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = com.maxim.eremenko.MediatorConceptual;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2";
};
name = Release;
};
912C5CF2210BC3A4007DC364 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_STYLE = Automatic;
INFOPLIST_FILE = Sources/Mediator/RealWorld/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = com.maxim.eremenko.MediatorRealWorld;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2";
};
name = Debug;
};
912C5CF3210BC3A4007DC364 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_STYLE = Automatic;
INFOPLIST_FILE = Sources/Mediator/RealWorld/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = com.maxim.eremenko.MediatorRealWorld;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2";
};
name = Release;
};
912C5CFE210BC3F5007DC364 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_STYLE = Automatic;
INFOPLIST_FILE = Sources/Memento/Conceptual/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = com.maxim.eremenko.MementoConceptual;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2";
};
name = Debug;
};
912C5CFF210BC3F5007DC364 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_STYLE = Automatic;
INFOPLIST_FILE = Sources/Memento/Conceptual/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = com.maxim.eremenko.MementoConceptual;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2";
};
name = Release;
};
912C5D11210BC4D9007DC364 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_STYLE = Automatic;
INFOPLIST_FILE = Sources/Memento/RealWorld/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = com.maxim.eremenko.MementoRealWorld;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2";
};
name = Debug;
};
912C5D12210BC4D9007DC364 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_STYLE = Automatic;
INFOPLIST_FILE = Sources/Memento/RealWorld/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = com.maxim.eremenko.MementoRealWorld;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2";
};
name = Release;
};
912C5D1E210BC553007DC364 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_STYLE = Automatic;
INFOPLIST_FILE = Sources/Observer/Conceptual/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = com.maxim.eremenko.ObserverConceptual;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2";
};
name = Debug;
};
912C5D1F210BC553007DC364 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_STYLE = Automatic;
INFOPLIST_FILE = Sources/Observer/Conceptual/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = com.maxim.eremenko.ObserverConceptual;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2";
};
name = Release;
};
912C5D2A210BC594007DC364 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_STYLE = Automatic;
INFOPLIST_FILE = Sources/Observer/RealWorld/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = com.maxim.eremenko.ObserverRealWorld;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2";
};
name = Debug;
};
912C5D2B210BC594007DC364 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_STYLE = Automatic;
INFOPLIST_FILE = Sources/Observer/RealWorld/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = com.maxim.eremenko.ObserverRealWorld;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2";
};
name = Release;
};
912C5D36210BC5E1007DC364 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_STYLE = Automatic;
INFOPLIST_FILE = Sources/State/Conceptual/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = com.maxim.eremenko.StateConceptual;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2";
};
name = Debug;
};
912C5D37210BC5E1007DC364 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_STYLE = Automatic;
INFOPLIST_FILE = Sources/State/Conceptual/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = com.maxim.eremenko.StateConceptual;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2";
};
name = Release;
};
912C5D43210BC62D007DC364 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_STYLE = Automatic;
INFOPLIST_FILE = Sources/State/RealWorld/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = com.maxim.eremenko.StateRealWorld;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2";
};
name = Debug;
};
912C5D44210BC62D007DC364 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_STYLE = Automatic;
INFOPLIST_FILE = Sources/State/RealWorld/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = com.maxim.eremenko.StateRealWorld;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2";
};
name = Release;
};
912C5D50210BC6A8007DC364 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_STYLE = Automatic;
INFOPLIST_FILE = Sources/Strategy/Conceptual/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = com.maxim.eremenko.StrategyConceptual;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2";
};
name = Debug;
};
912C5D51210BC6A8007DC364 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_STYLE = Automatic;
INFOPLIST_FILE = Sources/Strategy/Conceptual/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = com.maxim.eremenko.StrategyConceptual;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2";
};
name = Release;
};
912C5D5C210BC6F1007DC364 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_STYLE = Automatic;
INFOPLIST_FILE = Sources/Strategy/RealWorld/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = com.maxim.eremenko.StrategyRealWorld;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2";
};
name = Debug;
};
912C5D5D210BC6F1007DC364 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_STYLE = Automatic;
INFOPLIST_FILE = Sources/Strategy/RealWorld/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = com.maxim.eremenko.StrategyRealWorld;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2";
};
name = Release;
};
912C5D68210BC749007DC364 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_STYLE = Automatic;
INFOPLIST_FILE = Sources/TemplateMethod/Conceptual/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = com.maxim.eremenko.TemplateMethodConceptual;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2";
};
name = Debug;
};
912C5D69210BC749007DC364 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_STYLE = Automatic;
INFOPLIST_FILE = Sources/TemplateMethod/Conceptual/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = com.maxim.eremenko.TemplateMethodConceptual;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2";
};
name = Release;
};
912C5D75210BC7B1007DC364 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_STYLE = Automatic;
INFOPLIST_FILE = Sources/TemplateMethod/RealWorld/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = com.maxim.eremenko.TemplateMethodRealWorld;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2";
};
name = Debug;
};
912C5D76210BC7B1007DC364 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_STYLE = Automatic;
INFOPLIST_FILE = Sources/TemplateMethod/RealWorld/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = com.maxim.eremenko.TemplateMethodRealWorld;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2";
};
name = Release;
};
912C5D82210BC81E007DC364 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_STYLE = Automatic;
INFOPLIST_FILE = Sources/Visitor/Conceptual/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = com.maxim.eremenko.VisitorConceptual;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2";
};
name = Debug;
};
912C5D83210BC81E007DC364 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_STYLE = Automatic;
INFOPLIST_FILE = Sources/Visitor/Conceptual/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = com.maxim.eremenko.VisitorConceptual;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2";
};
name = Release;
};
912C5D8E210BC865007DC364 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_STYLE = Automatic;
INFOPLIST_FILE = Sources/Visitor/RealWorld/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = com.maxim.eremenko.VisitorRealWorld;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2";
};
name = Debug;
};
912C5D8F210BC865007DC364 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_STYLE = Automatic;
INFOPLIST_FILE = Sources/Visitor/RealWorld/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = com.maxim.eremenko.VisitorRealWorld;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2";
};
name = Release;
};
91301AD820F55C25003B4FC0 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_STYLE = Automatic;
INFOPLIST_FILE = Sources/Flyweight/Conceptual/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = com.maxim.eremenko.FlyweightConceptual;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2";
};
name = Debug;
};
91301AD920F55C25003B4FC0 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_STYLE = Automatic;
INFOPLIST_FILE = Sources/Flyweight/Conceptual/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = com.maxim.eremenko.FlyweightConceptual;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2";
};
name = Release;
};
91301AE520F55CAA003B4FC0 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_STYLE = Automatic;
INFOPLIST_FILE = Sources/Flyweight/RealWorld/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = com.maxim.eremenko.FlyweightRealWorld;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2";
};
name = Debug;
};
91301AE620F55CAA003B4FC0 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_STYLE = Automatic;
INFOPLIST_FILE = Sources/Flyweight/RealWorld/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = com.maxim.eremenko.FlyweightRealWorld;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2";
};
name = Release;
};
9139FA932088D85F00229150 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
CLANG_ANALYZER_NONNULL = YES;
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
CLANG_CXX_LIBRARY = "libc++";
CLANG_ENABLE_MODULES = YES;
CLANG_ENABLE_OBJC_ARC = YES;
CLANG_ENABLE_OBJC_WEAK = YES;
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
CLANG_WARN_BOOL_CONVERSION = YES;
CLANG_WARN_COMMA = YES;
CLANG_WARN_CONSTANT_CONVERSION = YES;
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
CLANG_WARN_EMPTY_BODY = YES;
CLANG_WARN_ENUM_CONVERSION = YES;
CLANG_WARN_INFINITE_RECURSION = YES;
CLANG_WARN_INT_CONVERSION = YES;
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
CLANG_WARN_STRICT_PROTOTYPES = YES;
CLANG_WARN_SUSPICIOUS_MOVE = YES;
CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
CLANG_WARN_UNREACHABLE_CODE = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
CODE_SIGN_IDENTITY = "iPhone Developer";
COPY_PHASE_STRIP = NO;
DEBUG_INFORMATION_FORMAT = dwarf;
ENABLE_STRICT_OBJC_MSGSEND = YES;
ENABLE_TESTABILITY = YES;
GCC_C_LANGUAGE_STANDARD = gnu11;
GCC_DYNAMIC_NO_PIC = NO;
GCC_NO_COMMON_BLOCKS = YES;
GCC_OPTIMIZATION_LEVEL = 0;
GCC_PREPROCESSOR_DEFINITIONS = (
"DEBUG=1",
"$(inherited)",
);
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
GCC_WARN_UNDECLARED_SELECTOR = YES;
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 11.3;
MTL_ENABLE_DEBUG_INFO = YES;
ONLY_ACTIVE_ARCH = YES;
SDKROOT = iphoneos;
SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
};
name = Debug;
};
9139FA942088D85F00229150 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
CLANG_ANALYZER_NONNULL = YES;
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
CLANG_CXX_LIBRARY = "libc++";
CLANG_ENABLE_MODULES = YES;
CLANG_ENABLE_OBJC_ARC = YES;
CLANG_ENABLE_OBJC_WEAK = YES;
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
CLANG_WARN_BOOL_CONVERSION = YES;
CLANG_WARN_COMMA = YES;
CLANG_WARN_CONSTANT_CONVERSION = YES;
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
CLANG_WARN_EMPTY_BODY = YES;
CLANG_WARN_ENUM_CONVERSION = YES;
CLANG_WARN_INFINITE_RECURSION = YES;
CLANG_WARN_INT_CONVERSION = YES;
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
CLANG_WARN_STRICT_PROTOTYPES = YES;
CLANG_WARN_SUSPICIOUS_MOVE = YES;
CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
CLANG_WARN_UNREACHABLE_CODE = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
CODE_SIGN_IDENTITY = "iPhone Developer";
COPY_PHASE_STRIP = NO;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
ENABLE_NS_ASSERTIONS = NO;
ENABLE_STRICT_OBJC_MSGSEND = YES;
GCC_C_LANGUAGE_STANDARD = gnu11;
GCC_NO_COMMON_BLOCKS = YES;
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
GCC_WARN_UNDECLARED_SELECTOR = YES;
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 11.3;
MTL_ENABLE_DEBUG_INFO = NO;
SDKROOT = iphoneos;
SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule";
VALIDATE_PRODUCT = YES;
};
name = Release;
};
919C89F620DD7EE4006EE57D /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_STYLE = Automatic;
INFOPLIST_FILE = Sources/AbstractFactory/RealWorld/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = com.maxim.eremenko.AbstractFactoryRealWorld;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2";
};
name = Debug;
};
919C89F720DD7EE4006EE57D /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_STYLE = Automatic;
INFOPLIST_FILE = Sources/AbstractFactory/RealWorld/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = com.maxim.eremenko.AbstractFactoryRealWorld;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2";
};
name = Release;
};
919C8A0B20DD7F3C006EE57D /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_STYLE = Automatic;
INFOPLIST_FILE = Sources/AbstractFactory/Conceptual/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = com.maxim.eremenko.AbstractFactoryConceptual;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2";
};
name = Debug;
};
919C8A0C20DD7F3C006EE57D /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_STYLE = Automatic;
INFOPLIST_FILE = Sources/AbstractFactory/Conceptual/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = com.maxim.eremenko.AbstractFactoryConceptual;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2";
};
name = Release;
};
919C8A1920DD81D0006EE57D /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_STYLE = Automatic;
INFOPLIST_FILE = Sources/Facade/Conceptual/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = com.maxim.eremenko.FacadeConceptual;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2";
};
name = Debug;
};
919C8A1A20DD81D0006EE57D /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_STYLE = Automatic;
INFOPLIST_FILE = Sources/Facade/Conceptual/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = com.maxim.eremenko.FacadeConceptual;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2";
};
name = Release;
};
919C8A2620DD8261006EE57D /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_STYLE = Automatic;
INFOPLIST_FILE = Sources/Facade/RealWorld/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = com.maxim.eremenko.FacadeRealWorld;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2";
};
name = Debug;
};
919C8A2720DD8261006EE57D /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_STYLE = Automatic;
INFOPLIST_FILE = Sources/Facade/RealWorld/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = com.maxim.eremenko.FacadeRealWorld;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2";
};
name = Release;
};
919C8A3F20DD82F0006EE57D /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_STYLE = Automatic;
INFOPLIST_FILE = Sources/Bridge/Conceptual/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = com.maxim.eremenko.BridgeConceptual;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2";
};
name = Debug;
};
919C8A4020DD82F0006EE57D /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_STYLE = Automatic;
INFOPLIST_FILE = Sources/Bridge/Conceptual/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = com.maxim.eremenko.BridgeConceptual;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2";
};
name = Release;
};
919C8A4C20DD8393006EE57D /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_STYLE = Automatic;
INFOPLIST_FILE = Sources/Bridge/RealWorld/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = com.maxim.eremenko.BridgeRealWorld;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2";
};
name = Debug;
};
919C8A4D20DD8393006EE57D /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_STYLE = Automatic;
INFOPLIST_FILE = Sources/Bridge/RealWorld/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = com.maxim.eremenko.BridgeRealWorld;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2";
};
name = Release;
};
919C8A6520DD849B006EE57D /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_STYLE = Automatic;
INFOPLIST_FILE = Sources/Adapter/Conceptual/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = com.maxim.eremenko.AdapterConceptual;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2";
};
name = Debug;
};
919C8A6620DD849B006EE57D /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_STYLE = Automatic;
INFOPLIST_FILE = Sources/Adapter/Conceptual/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = com.maxim.eremenko.AdapterConceptual;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2";
};
name = Release;
};
919C8A7220DD858C006EE57D /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_STYLE = Automatic;
INFOPLIST_FILE = Sources/Adapter/RealWorld/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = com.maxim.eremenko.AdapterRealWorld;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2";
};
name = Debug;
};
919C8A7320DD858C006EE57D /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_STYLE = Automatic;
INFOPLIST_FILE = Sources/Adapter/RealWorld/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = com.maxim.eremenko.AdapterRealWorld;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2";
};
name = Release;
};
919C8A8020DD8688006EE57D /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_STYLE = Automatic;
INFOPLIST_FILE = Sources/Builder/Conceptual/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = com.maxim.eremenko.BuilderConceptual;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2";
};
name = Debug;
};
919C8A8120DD8688006EE57D /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_STYLE = Automatic;
INFOPLIST_FILE = Sources/Builder/Conceptual/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = com.maxim.eremenko.BuilderConceptual;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2";
};
name = Release;
};
919C8A8D20DD86DC006EE57D /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_STYLE = Automatic;
INFOPLIST_FILE = Sources/Builder/RealWorld/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = com.maxim.eremenko.BuilderRealWorld;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2";
};
name = Debug;
};
919C8A8E20DD86DC006EE57D /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_STYLE = Automatic;
INFOPLIST_FILE = Sources/Builder/RealWorld/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = com.maxim.eremenko.BuilderRealWorld;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2";
};
name = Release;
};
919C8AA820DD878E006EE57D /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_STYLE = Automatic;
INFOPLIST_FILE = Sources/Composite/Conceptual/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = com.maxim.eremenko.CompositeConceptual;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2";
};
name = Debug;
};
919C8AA920DD878E006EE57D /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_STYLE = Automatic;
INFOPLIST_FILE = Sources/Composite/Conceptual/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = com.maxim.eremenko.CompositeConceptual;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2";
};
name = Release;
};
919C8AB520DD87F2006EE57D /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_STYLE = Automatic;
INFOPLIST_FILE = Sources/Composite/RealWorld/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = com.maxim.eremenko.CompositeRealWorld;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2";
};
name = Debug;
};
919C8AB620DD87F2006EE57D /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_STYLE = Automatic;
INFOPLIST_FILE = Sources/Composite/RealWorld/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = com.maxim.eremenko.CompositeRealWorld;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2";
};
name = Release;
};
919C8ACD20DD8873006EE57D /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_STYLE = Automatic;
INFOPLIST_FILE = Sources/Decorator/Conceptual/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = com.maxim.eremenko.DecoratorConceptual;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2";
};
name = Debug;
};
919C8ACE20DD8873006EE57D /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_STYLE = Automatic;
INFOPLIST_FILE = Sources/Decorator/Conceptual/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = com.maxim.eremenko.DecoratorConceptual;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2";
};
name = Release;
};
919C8ADA20DD88C6006EE57D /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_STYLE = Automatic;
INFOPLIST_FILE = Sources/Decorator/RealWorld/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = com.maxim.eremenko.DecoratorRealWorld;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2";
};
name = Debug;
};
919C8ADB20DD88C6006EE57D /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_STYLE = Automatic;
INFOPLIST_FILE = Sources/Decorator/RealWorld/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = com.maxim.eremenko.DecoratorRealWorld;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2";
};
name = Release;
};
919C8AE620DD893E006EE57D /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_STYLE = Automatic;
INFOPLIST_FILE = Sources/FactoryMethod/RealWorld/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = com.maxim.eremenko.FactoryMethodRealWorld;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2";
};
name = Debug;
};
919C8AE720DD893E006EE57D /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_STYLE = Automatic;
INFOPLIST_FILE = Sources/FactoryMethod/RealWorld/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = com.maxim.eremenko.FactoryMethodRealWorld;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2";
};
name = Release;
};
919C8AF320DD897E006EE57D /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_STYLE = Automatic;
INFOPLIST_FILE = Sources/FactoryMethod/Conceptual/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = com.maxim.eremenko.FactoryConceptual;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2";
};
name = Debug;
};
919C8AF420DD897E006EE57D /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_STYLE = Automatic;
INFOPLIST_FILE = Sources/FactoryMethod/Conceptual/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = com.maxim.eremenko.FactoryConceptual;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2";
};
name = Release;
};
919C8B0020DD8A98006EE57D /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_STYLE = Automatic;
INFOPLIST_FILE = Sources/Prototype/Conceptual/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = com.maxim.eremenko.PrototypeConceptual;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2";
};
name = Debug;
};
919C8B0120DD8A98006EE57D /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_STYLE = Automatic;
INFOPLIST_FILE = Sources/Prototype/Conceptual/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = com.maxim.eremenko.PrototypeConceptual;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2";
};
name = Release;
};
919C8B0D20DD8AF0006EE57D /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_STYLE = Automatic;
INFOPLIST_FILE = Sources/Prototype/RealWorld/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = com.maxim.eremenko.PrototypeRealWorld;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2";
};
name = Debug;
};
919C8B0E20DD8AF0006EE57D /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_STYLE = Automatic;
INFOPLIST_FILE = Sources/Prototype/RealWorld/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = com.maxim.eremenko.PrototypeRealWorld;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2";
};
name = Release;
};
919C8B1A20DD8B59006EE57D /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_STYLE = Automatic;
INFOPLIST_FILE = Sources/Singleton/Conceptual/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = com.maxim.eremenko.SingletonConceptual;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2";
};
name = Debug;
};
919C8B1B20DD8B59006EE57D /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_STYLE = Automatic;
INFOPLIST_FILE = Sources/Singleton/Conceptual/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = com.maxim.eremenko.SingletonConceptual;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2";
};
name = Release;
};
919C8B2720DD8BA9006EE57D /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_STYLE = Automatic;
INFOPLIST_FILE = Sources/Singleton/RealWorld/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = com.maxim.eremenko.SingletonRealWorld;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2";
};
name = Debug;
};
919C8B2820DD8BA9006EE57D /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_STYLE = Automatic;
INFOPLIST_FILE = Sources/Singleton/RealWorld/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = com.maxim.eremenko.SingletonRealWorld;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2";
};
name = Release;
};
91B1207120F610E400730C37 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_STYLE = Automatic;
INFOPLIST_FILE = Sources/ChainOfResponsibility/Conceptual/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = com.maxim.eremenko.ChainOfResponsibilityConceptual;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2";
};
name = Debug;
};
91B1207220F610E400730C37 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_STYLE = Automatic;
INFOPLIST_FILE = Sources/ChainOfResponsibility/Conceptual/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = com.maxim.eremenko.ChainOfResponsibilityConceptual;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2";
};
name = Release;
};
91B1207D20F6114A00730C37 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_STYLE = Automatic;
INFOPLIST_FILE = Sources/ChainOfResponsibility/RealWorld/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = com.maxim.eremenko.ChainOfResponsibilityRealWorld;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2";
};
name = Debug;
};
91B1207E20F6114A00730C37 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_STYLE = Automatic;
INFOPLIST_FILE = Sources/ChainOfResponsibility/RealWorld/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = com.maxim.eremenko.ChainOfResponsibilityRealWorld;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2";
};
name = Release;
};
91B1208920F611DA00730C37 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_STYLE = Automatic;
INFOPLIST_FILE = Sources/Command/Conceptual/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = com.maxim.eremenko.CommandConceptual;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2";
};
name = Debug;
};
91B1208A20F611DA00730C37 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_STYLE = Automatic;
INFOPLIST_FILE = Sources/Command/Conceptual/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = com.maxim.eremenko.CommandConceptual;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2";
};
name = Release;
};
91B1209620F6120C00730C37 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_STYLE = Automatic;
INFOPLIST_FILE = Sources/Command/RealWorld/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = com.maxim.eremenko.CommandRealWorld;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2";
};
name = Debug;
};
91B1209720F6120C00730C37 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_STYLE = Automatic;
INFOPLIST_FILE = Sources/Command/RealWorld/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = com.maxim.eremenko.CommandRealWorld;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2";
};
name = Release;
};
91B120A320F6125500730C37 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_STYLE = Automatic;
INFOPLIST_FILE = Sources/Iterator/Conceptual/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = com.maxim.eremenko.IteratorConceptual;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2";
};
name = Debug;
};
91B120A420F6125500730C37 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_STYLE = Automatic;
INFOPLIST_FILE = Sources/Iterator/Conceptual/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = com.maxim.eremenko.IteratorConceptual;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2";
};
name = Release;
};
91B120AF20F6127400730C37 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_STYLE = Automatic;
INFOPLIST_FILE = Sources/Iterator/RealWorld/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = com.maxim.eremenko.IteratorRealWorld;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2";
};
name = Debug;
};
91B120B020F6127400730C37 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_STYLE = Automatic;
INFOPLIST_FILE = Sources/Iterator/RealWorld/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = com.maxim.eremenko.IteratorRealWorld;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2";
};
name = Release;
};
91B120BC20F6130A00730C37 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_STYLE = Automatic;
INFOPLIST_FILE = Sources/Proxy/Conceptual/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = com.maxim.eremenko.ProxyConceptual;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2";
};
name = Debug;
};
91B120BD20F6130A00730C37 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_STYLE = Automatic;
INFOPLIST_FILE = Sources/Proxy/Conceptual/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = com.maxim.eremenko.ProxyConceptual;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2";
};
name = Release;
};
91B120C820F6132E00730C37 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_STYLE = Automatic;
INFOPLIST_FILE = Sources/Proxy/RealWorld/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = com.maxim.eremenko.ProxyRealWorld;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2";
};
name = Debug;
};
91B120C920F6132E00730C37 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_STYLE = Automatic;
INFOPLIST_FILE = Sources/Proxy/RealWorld/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = com.maxim.eremenko.ProxyRealWorld;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2";
};
name = Release;
};
/* End XCBuildConfiguration section */
/* Begin XCConfigurationList section */
912C5CE4210BC33E007DC364 /* Build configuration list for PBXNativeTarget "MediatorConceptual" */ = {
isa = XCConfigurationList;
buildConfigurations = (
912C5CE5210BC33E007DC364 /* Debug */,
912C5CE6210BC33E007DC364 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
912C5CF1210BC3A4007DC364 /* Build configuration list for PBXNativeTarget "MediatorRealWorld" */ = {
isa = XCConfigurationList;
buildConfigurations = (
912C5CF2210BC3A4007DC364 /* Debug */,
912C5CF3210BC3A4007DC364 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
912C5CFD210BC3F5007DC364 /* Build configuration list for PBXNativeTarget "MementoConceptual" */ = {
isa = XCConfigurationList;
buildConfigurations = (
912C5CFE210BC3F5007DC364 /* Debug */,
912C5CFF210BC3F5007DC364 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
912C5D10210BC4D9007DC364 /* Build configuration list for PBXNativeTarget "MementoRealWorld" */ = {
isa = XCConfigurationList;
buildConfigurations = (
912C5D11210BC4D9007DC364 /* Debug */,
912C5D12210BC4D9007DC364 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
912C5D1D210BC553007DC364 /* Build configuration list for PBXNativeTarget "ObserverConceptual" */ = {
isa = XCConfigurationList;
buildConfigurations = (
912C5D1E210BC553007DC364 /* Debug */,
912C5D1F210BC553007DC364 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
912C5D29210BC594007DC364 /* Build configuration list for PBXNativeTarget "ObserverRealWorld" */ = {
isa = XCConfigurationList;
buildConfigurations = (
912C5D2A210BC594007DC364 /* Debug */,
912C5D2B210BC594007DC364 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
912C5D35210BC5E1007DC364 /* Build configuration list for PBXNativeTarget "StateConceptual" */ = {
isa = XCConfigurationList;
buildConfigurations = (
912C5D36210BC5E1007DC364 /* Debug */,
912C5D37210BC5E1007DC364 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
912C5D42210BC62D007DC364 /* Build configuration list for PBXNativeTarget "StateRealWorld" */ = {
isa = XCConfigurationList;
buildConfigurations = (
912C5D43210BC62D007DC364 /* Debug */,
912C5D44210BC62D007DC364 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
912C5D4F210BC6A8007DC364 /* Build configuration list for PBXNativeTarget "StrategyConceptual" */ = {
isa = XCConfigurationList;
buildConfigurations = (
912C5D50210BC6A8007DC364 /* Debug */,
912C5D51210BC6A8007DC364 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
912C5D5B210BC6F1007DC364 /* Build configuration list for PBXNativeTarget "StrategyRealWorld" */ = {
isa = XCConfigurationList;
buildConfigurations = (
912C5D5C210BC6F1007DC364 /* Debug */,
912C5D5D210BC6F1007DC364 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
912C5D67210BC749007DC364 /* Build configuration list for PBXNativeTarget "TemplateMethodConceptual" */ = {
isa = XCConfigurationList;
buildConfigurations = (
912C5D68210BC749007DC364 /* Debug */,
912C5D69210BC749007DC364 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
912C5D74210BC7B1007DC364 /* Build configuration list for PBXNativeTarget "TemplateMethodRealWorld" */ = {
isa = XCConfigurationList;
buildConfigurations = (
912C5D75210BC7B1007DC364 /* Debug */,
912C5D76210BC7B1007DC364 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
912C5D81210BC81E007DC364 /* Build configuration list for PBXNativeTarget "VisitorConceptual" */ = {
isa = XCConfigurationList;
buildConfigurations = (
912C5D82210BC81E007DC364 /* Debug */,
912C5D83210BC81E007DC364 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
912C5D8D210BC865007DC364 /* Build configuration list for PBXNativeTarget "VisitorRealWorld" */ = {
isa = XCConfigurationList;
buildConfigurations = (
912C5D8E210BC865007DC364 /* Debug */,
912C5D8F210BC865007DC364 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
91301AD720F55C25003B4FC0 /* Build configuration list for PBXNativeTarget "FlyweightConceptual" */ = {
isa = XCConfigurationList;
buildConfigurations = (
91301AD820F55C25003B4FC0 /* Debug */,
91301AD920F55C25003B4FC0 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
91301AE420F55CAA003B4FC0 /* Build configuration list for PBXNativeTarget "FlyweightRealWorld" */ = {
isa = XCConfigurationList;
buildConfigurations = (
91301AE520F55CAA003B4FC0 /* Debug */,
91301AE620F55CAA003B4FC0 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
9139FA732088D85C00229150 /* Build configuration list for PBXProject "RefactoringGuru.Patterns" */ = {
isa = XCConfigurationList;
buildConfigurations = (
9139FA932088D85F00229150 /* Debug */,
9139FA942088D85F00229150 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
919C89F820DD7EE4006EE57D /* Build configuration list for PBXNativeTarget "AbstractFactoryRealWorld" */ = {
isa = XCConfigurationList;
buildConfigurations = (
919C89F620DD7EE4006EE57D /* Debug */,
919C89F720DD7EE4006EE57D /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
919C8A0A20DD7F3C006EE57D /* Build configuration list for PBXNativeTarget "AbstractFactoryConceptual" */ = {
isa = XCConfigurationList;
buildConfigurations = (
919C8A0B20DD7F3C006EE57D /* Debug */,
919C8A0C20DD7F3C006EE57D /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
919C8A1820DD81D0006EE57D /* Build configuration list for PBXNativeTarget "FacadeConceptual" */ = {
isa = XCConfigurationList;
buildConfigurations = (
919C8A1920DD81D0006EE57D /* Debug */,
919C8A1A20DD81D0006EE57D /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
919C8A2520DD8261006EE57D /* Build configuration list for PBXNativeTarget "FacadeRealWorld" */ = {
isa = XCConfigurationList;
buildConfigurations = (
919C8A2620DD8261006EE57D /* Debug */,
919C8A2720DD8261006EE57D /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
919C8A3E20DD82F0006EE57D /* Build configuration list for PBXNativeTarget "BridgeConceptual" */ = {
isa = XCConfigurationList;
buildConfigurations = (
919C8A3F20DD82F0006EE57D /* Debug */,
919C8A4020DD82F0006EE57D /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
919C8A4B20DD8393006EE57D /* Build configuration list for PBXNativeTarget "BridgeRealWorld" */ = {
isa = XCConfigurationList;
buildConfigurations = (
919C8A4C20DD8393006EE57D /* Debug */,
919C8A4D20DD8393006EE57D /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
919C8A6420DD849B006EE57D /* Build configuration list for PBXNativeTarget "AdapterConceptual" */ = {
isa = XCConfigurationList;
buildConfigurations = (
919C8A6520DD849B006EE57D /* Debug */,
919C8A6620DD849B006EE57D /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
919C8A7120DD858C006EE57D /* Build configuration list for PBXNativeTarget "AdapterRealWorld" */ = {
isa = XCConfigurationList;
buildConfigurations = (
919C8A7220DD858C006EE57D /* Debug */,
919C8A
gitextract_bw7a_rjj/
├── .gitignore
├── LICENSE.txt
├── ProjectBundle/
│ └── Info.plist
├── RefactoringGuru.Patterns.xcodeproj/
│ ├── project.pbxproj
│ ├── project.xcworkspace/
│ │ ├── contents.xcworkspacedata
│ │ └── xcshareddata/
│ │ └── IDEWorkspaceChecks.plist
│ └── xcshareddata/
│ └── xcschemes/
│ ├── AbstractFactoryConceptual.xcscheme
│ ├── AbstractFactoryRealWorld.xcscheme
│ ├── AdapterConceptual.xcscheme
│ ├── AdapterRealWorld.xcscheme
│ ├── BridgeConceptual.xcscheme
│ ├── BridgeRealWorld.xcscheme
│ ├── BuilderConceptual.xcscheme
│ ├── BuilderRealWorld.xcscheme
│ ├── ChainOfResponsibilityConceptual.xcscheme
│ ├── ChainOfResponsibilityRealWorld.xcscheme
│ ├── CommandConceptual.xcscheme
│ ├── CommandRealWorld.xcscheme
│ ├── CompositeConceptual.xcscheme
│ ├── CompositeRealWorld.xcscheme
│ ├── DecoratorConceptual.xcscheme
│ ├── DecoratorRealWorld.xcscheme
│ ├── FacadeConceptual.xcscheme
│ ├── FacadeRealWorld.xcscheme
│ ├── FactoryMethodConceptual.xcscheme
│ ├── FactoryMethodRealWorld.xcscheme
│ ├── FlyweightConceptual.xcscheme
│ ├── FlyweightRealWorld.xcscheme
│ ├── IteratorConceptual.xcscheme
│ ├── IteratorRealWorld.xcscheme
│ ├── MediatorConceptual.xcscheme
│ ├── MediatorRealWorld.xcscheme
│ ├── MementoConceptual.xcscheme
│ ├── MementoRealWorld.xcscheme
│ ├── ObserverConceptual.xcscheme
│ ├── ObserverRealWorld.xcscheme
│ ├── PrototypeConceptual.xcscheme
│ ├── PrototypeRealWorld.xcscheme
│ ├── ProxyConceptual.xcscheme
│ ├── ProxyRealWorld.xcscheme
│ ├── SingletonConceptual.xcscheme
│ ├── SingletonRealWorld.xcscheme
│ ├── StateConceptual.xcscheme
│ ├── StateRealWorld.xcscheme
│ ├── StrategyConceptual.xcscheme
│ ├── StrategyRealWorld.xcscheme
│ ├── TemplateMethodConceptual.xcscheme
│ ├── TemplateMethodRealWorld.xcscheme
│ ├── VisitorConceptual.xcscheme
│ └── VisitorRealWorld.xcscheme
└── Sources/
├── AbstractFactory/
│ ├── Conceptual/
│ │ ├── Example.swift
│ │ ├── Info.plist
│ │ └── Output.txt
│ └── RealWorld/
│ ├── Example.swift
│ ├── Info.plist
│ └── Output.txt
├── Adapter/
│ ├── Conceptual/
│ │ ├── Example.swift
│ │ ├── Info.plist
│ │ └── Output.txt
│ └── RealWorld/
│ ├── Example.swift
│ ├── Info.plist
│ └── Output.txt
├── Bridge/
│ ├── Conceptual/
│ │ ├── Example.swift
│ │ ├── Info.plist
│ │ └── Output.txt
│ └── RealWorld/
│ ├── Example.swift
│ ├── Info.plist
│ └── Output.txt
├── Builder/
│ ├── Conceptual/
│ │ ├── Example.swift
│ │ ├── Info.plist
│ │ └── Output.txt
│ └── RealWorld/
│ ├── Example.swift
│ ├── Info.plist
│ └── Output.txt
├── ChainOfResponsibility/
│ ├── Conceptual/
│ │ ├── Example.swift
│ │ ├── Info.plist
│ │ └── Output.txt
│ └── RealWorld/
│ ├── Example.swift
│ ├── Info.plist
│ └── Output.txt
├── Command/
│ ├── Conceptual/
│ │ ├── Example.swift
│ │ ├── Info.plist
│ │ └── Output.txt
│ └── RealWorld/
│ ├── Example.swift
│ ├── Info.plist
│ └── Output.txt
├── Composite/
│ ├── Conceptual/
│ │ ├── Example.swift
│ │ ├── Info.plist
│ │ └── Output.txt
│ └── RealWorld/
│ ├── Example.swift
│ ├── Info.plist
│ └── Output.txt
├── Decorator/
│ ├── Conceptual/
│ │ ├── Example.swift
│ │ ├── Info.plist
│ │ └── Output.txt
│ └── RealWorld/
│ ├── Example.swift
│ ├── Info.plist
│ └── Output.txt
├── Facade/
│ ├── Conceptual/
│ │ ├── Example.swift
│ │ ├── Info.plist
│ │ └── Output.txt
│ └── RealWorld/
│ ├── Example.swift
│ ├── Info.plist
│ └── Output.txt
├── FactoryMethod/
│ ├── Conceptual/
│ │ ├── Example.swift
│ │ ├── Info.plist
│ │ └── Output.txt
│ └── RealWorld/
│ ├── Example.swift
│ ├── Info.plist
│ └── Output.txt
├── Flyweight/
│ ├── Conceptual/
│ │ ├── Example.swift
│ │ ├── Info.plist
│ │ └── Output.txt
│ └── RealWorld/
│ ├── Example.swift
│ ├── Info.plist
│ └── Output.txt
├── Iterator/
│ ├── Conceptual/
│ │ ├── Example.swift
│ │ ├── Info.plist
│ │ └── Output.txt
│ └── RealWorld/
│ ├── Example.swift
│ ├── Info.plist
│ └── Output.txt
├── Mediator/
│ ├── Conceptual/
│ │ ├── Example.swift
│ │ ├── Info.plist
│ │ └── Output.txt
│ └── RealWorld/
│ ├── Example.swift
│ ├── Info.plist
│ └── Output.txt
├── Memento/
│ ├── Conceptual/
│ │ ├── Example.swift
│ │ ├── Info.plist
│ │ └── Output.txt
│ └── RealWorld/
│ ├── Example.swift
│ ├── Info.plist
│ └── Output.txt
├── Observer/
│ ├── Conceptual/
│ │ ├── Example.swift
│ │ ├── Info.plist
│ │ └── Output.txt
│ └── RealWorld/
│ ├── Example.swift
│ ├── Info.plist
│ └── Output.txt
├── Prototype/
│ ├── Conceptual/
│ │ ├── Example.swift
│ │ ├── Info.plist
│ │ └── Output.txt
│ └── RealWorld/
│ ├── Example.swift
│ ├── Info.plist
│ └── Output.txt
├── Proxy/
│ ├── Conceptual/
│ │ ├── Example.swift
│ │ ├── Info.plist
│ │ └── Output.txt
│ └── RealWorld/
│ ├── Example.swift
│ ├── Info.plist
│ └── Output.txt
├── Singleton/
│ ├── Conceptual/
│ │ ├── Example.swift
│ │ ├── Info.plist
│ │ └── Output.txt
│ └── RealWorld/
│ ├── Example.swift
│ ├── Info.plist
│ └── Output.txt
├── State/
│ ├── Conceptual/
│ │ ├── Example.swift
│ │ ├── Info.plist
│ │ └── Output.txt
│ └── RealWorld/
│ ├── Example.swift
│ ├── Info.plist
│ └── Output.txt
├── Strategy/
│ ├── Conceptual/
│ │ ├── Example.swift
│ │ ├── Info.plist
│ │ └── Output.txt
│ └── RealWorld/
│ ├── Example.swift
│ ├── Info.plist
│ └── Output.txt
├── TemplateMethod/
│ ├── Conceptual/
│ │ ├── Example.swift
│ │ ├── Info.plist
│ │ └── Output.txt
│ └── RealWorld/
│ ├── Example.swift
│ ├── Info.plist
│ └── Output.txt
└── Visitor/
├── Conceptual/
│ ├── Example.swift
│ ├── Info.plist
│ └── Output.txt
└── RealWorld/
├── Example.swift
├── Info.plist
└── Output.txt
Condensed preview — 182 files, each showing path, character count, and a content snippet. Download the .json file or copy for the full structured content (606K chars).
[
{
"path": ".gitignore",
"chars": 303,
"preview": "# Xcode\n#\nbuild/\n*.pbxuser\n!default.pbxuser\n*.mode1v3\n!default.mode1v3\n*.mode2v3\n!default.mode2v3\n*.perspectivev3\n!defau"
},
{
"path": "LICENSE.txt",
"chars": 19525,
"preview": "Refactoring.Guru: Design Patterns in Swift\n© by Eremenko Maxim and Alexander Shvets\n\nThis work is licensed under a\nCreat"
},
{
"path": "ProjectBundle/Info.plist",
"chars": 701,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/P"
},
{
"path": "RefactoringGuru.Patterns.xcodeproj/project.pbxproj",
"chars": 185881,
"preview": "// !$*UTF8*$!\n{\n\tarchiveVersion = 1;\n\tclasses = {\n\t};\n\tobjectVersion = 48;\n\tobjects = {\n\n/* Begin PBXBuildFile section *"
},
{
"path": "RefactoringGuru.Patterns.xcodeproj/project.xcworkspace/contents.xcworkspacedata",
"chars": 212,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Workspace\n version = \"1.0\">\n <FileRef\n location = \"self:/Users/devme/De"
},
{
"path": "RefactoringGuru.Patterns.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist",
"chars": 238,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/P"
},
{
"path": "RefactoringGuru.Patterns.xcodeproj/xcshareddata/xcschemes/AbstractFactoryConceptual.xcscheme",
"chars": 1962,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Scheme\n LastUpgradeVersion = \"0930\"\n version = \"1.3\">\n <BuildAction\n "
},
{
"path": "RefactoringGuru.Patterns.xcodeproj/xcshareddata/xcschemes/AbstractFactoryRealWorld.xcscheme",
"chars": 1960,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Scheme\n LastUpgradeVersion = \"0930\"\n version = \"1.3\">\n <BuildAction\n "
},
{
"path": "RefactoringGuru.Patterns.xcodeproj/xcshareddata/xcschemes/AdapterConceptual.xcscheme",
"chars": 1946,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Scheme\n LastUpgradeVersion = \"0930\"\n version = \"1.3\">\n <BuildAction\n "
},
{
"path": "RefactoringGuru.Patterns.xcodeproj/xcshareddata/xcschemes/AdapterRealWorld.xcscheme",
"chars": 1944,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Scheme\n LastUpgradeVersion = \"0930\"\n version = \"1.3\">\n <BuildAction\n "
},
{
"path": "RefactoringGuru.Patterns.xcodeproj/xcshareddata/xcschemes/BridgeConceptual.xcscheme",
"chars": 1944,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Scheme\n LastUpgradeVersion = \"0930\"\n version = \"1.3\">\n <BuildAction\n "
},
{
"path": "RefactoringGuru.Patterns.xcodeproj/xcshareddata/xcschemes/BridgeRealWorld.xcscheme",
"chars": 1942,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Scheme\n LastUpgradeVersion = \"0930\"\n version = \"1.3\">\n <BuildAction\n "
},
{
"path": "RefactoringGuru.Patterns.xcodeproj/xcshareddata/xcschemes/BuilderConceptual.xcscheme",
"chars": 1946,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Scheme\n LastUpgradeVersion = \"0930\"\n version = \"1.3\">\n <BuildAction\n "
},
{
"path": "RefactoringGuru.Patterns.xcodeproj/xcshareddata/xcschemes/BuilderRealWorld.xcscheme",
"chars": 1944,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Scheme\n LastUpgradeVersion = \"0930\"\n version = \"1.3\">\n <BuildAction\n "
},
{
"path": "RefactoringGuru.Patterns.xcodeproj/xcshareddata/xcschemes/ChainOfResponsibilityConceptual.xcscheme",
"chars": 1974,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Scheme\n LastUpgradeVersion = \"0940\"\n version = \"1.3\">\n <BuildAction\n "
},
{
"path": "RefactoringGuru.Patterns.xcodeproj/xcshareddata/xcschemes/ChainOfResponsibilityRealWorld.xcscheme",
"chars": 1972,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Scheme\n LastUpgradeVersion = \"0940\"\n version = \"1.3\">\n <BuildAction\n "
},
{
"path": "RefactoringGuru.Patterns.xcodeproj/xcshareddata/xcschemes/CommandConceptual.xcscheme",
"chars": 1946,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Scheme\n LastUpgradeVersion = \"0940\"\n version = \"1.3\">\n <BuildAction\n "
},
{
"path": "RefactoringGuru.Patterns.xcodeproj/xcshareddata/xcschemes/CommandRealWorld.xcscheme",
"chars": 1944,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Scheme\n LastUpgradeVersion = \"0940\"\n version = \"1.3\">\n <BuildAction\n "
},
{
"path": "RefactoringGuru.Patterns.xcodeproj/xcshareddata/xcschemes/CompositeConceptual.xcscheme",
"chars": 1950,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Scheme\n LastUpgradeVersion = \"0930\"\n version = \"1.3\">\n <BuildAction\n "
},
{
"path": "RefactoringGuru.Patterns.xcodeproj/xcshareddata/xcschemes/CompositeRealWorld.xcscheme",
"chars": 1948,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Scheme\n LastUpgradeVersion = \"0930\"\n version = \"1.3\">\n <BuildAction\n "
},
{
"path": "RefactoringGuru.Patterns.xcodeproj/xcshareddata/xcschemes/DecoratorConceptual.xcscheme",
"chars": 1950,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Scheme\n LastUpgradeVersion = \"0930\"\n version = \"1.3\">\n <BuildAction\n "
},
{
"path": "RefactoringGuru.Patterns.xcodeproj/xcshareddata/xcschemes/DecoratorRealWorld.xcscheme",
"chars": 1948,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Scheme\n LastUpgradeVersion = \"0930\"\n version = \"1.3\">\n <BuildAction\n "
},
{
"path": "RefactoringGuru.Patterns.xcodeproj/xcshareddata/xcschemes/FacadeConceptual.xcscheme",
"chars": 1944,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Scheme\n LastUpgradeVersion = \"0930\"\n version = \"1.3\">\n <BuildAction\n "
},
{
"path": "RefactoringGuru.Patterns.xcodeproj/xcshareddata/xcschemes/FacadeRealWorld.xcscheme",
"chars": 1942,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Scheme\n LastUpgradeVersion = \"0930\"\n version = \"1.3\">\n <BuildAction\n "
},
{
"path": "RefactoringGuru.Patterns.xcodeproj/xcshareddata/xcschemes/FactoryMethodConceptual.xcscheme",
"chars": 1958,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Scheme\n LastUpgradeVersion = \"0930\"\n version = \"1.3\">\n <BuildAction\n "
},
{
"path": "RefactoringGuru.Patterns.xcodeproj/xcshareddata/xcschemes/FactoryMethodRealWorld.xcscheme",
"chars": 1956,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Scheme\n LastUpgradeVersion = \"0930\"\n version = \"1.3\">\n <BuildAction\n "
},
{
"path": "RefactoringGuru.Patterns.xcodeproj/xcshareddata/xcschemes/FlyweightConceptual.xcscheme",
"chars": 1950,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Scheme\n LastUpgradeVersion = \"0940\"\n version = \"1.3\">\n <BuildAction\n "
},
{
"path": "RefactoringGuru.Patterns.xcodeproj/xcshareddata/xcschemes/FlyweightRealWorld.xcscheme",
"chars": 1948,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Scheme\n LastUpgradeVersion = \"0940\"\n version = \"1.3\">\n <BuildAction\n "
},
{
"path": "RefactoringGuru.Patterns.xcodeproj/xcshareddata/xcschemes/IteratorConceptual.xcscheme",
"chars": 1948,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Scheme\n LastUpgradeVersion = \"0940\"\n version = \"1.3\">\n <BuildAction\n "
},
{
"path": "RefactoringGuru.Patterns.xcodeproj/xcshareddata/xcschemes/IteratorRealWorld.xcscheme",
"chars": 1946,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Scheme\n LastUpgradeVersion = \"0940\"\n version = \"1.3\">\n <BuildAction\n "
},
{
"path": "RefactoringGuru.Patterns.xcodeproj/xcshareddata/xcschemes/MediatorConceptual.xcscheme",
"chars": 1948,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Scheme\n LastUpgradeVersion = \"0940\"\n version = \"1.3\">\n <BuildAction\n "
},
{
"path": "RefactoringGuru.Patterns.xcodeproj/xcshareddata/xcschemes/MediatorRealWorld.xcscheme",
"chars": 1946,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Scheme\n LastUpgradeVersion = \"0940\"\n version = \"1.3\">\n <BuildAction\n "
},
{
"path": "RefactoringGuru.Patterns.xcodeproj/xcshareddata/xcschemes/MementoConceptual.xcscheme",
"chars": 1946,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Scheme\n LastUpgradeVersion = \"0940\"\n version = \"1.3\">\n <BuildAction\n "
},
{
"path": "RefactoringGuru.Patterns.xcodeproj/xcshareddata/xcschemes/MementoRealWorld.xcscheme",
"chars": 1944,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Scheme\n LastUpgradeVersion = \"0940\"\n version = \"1.3\">\n <BuildAction\n "
},
{
"path": "RefactoringGuru.Patterns.xcodeproj/xcshareddata/xcschemes/ObserverConceptual.xcscheme",
"chars": 1948,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Scheme\n LastUpgradeVersion = \"0940\"\n version = \"1.3\">\n <BuildAction\n "
},
{
"path": "RefactoringGuru.Patterns.xcodeproj/xcshareddata/xcschemes/ObserverRealWorld.xcscheme",
"chars": 1946,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Scheme\n LastUpgradeVersion = \"0940\"\n version = \"1.3\">\n <BuildAction\n "
},
{
"path": "RefactoringGuru.Patterns.xcodeproj/xcshareddata/xcschemes/PrototypeConceptual.xcscheme",
"chars": 1950,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Scheme\n LastUpgradeVersion = \"0930\"\n version = \"1.3\">\n <BuildAction\n "
},
{
"path": "RefactoringGuru.Patterns.xcodeproj/xcshareddata/xcschemes/PrototypeRealWorld.xcscheme",
"chars": 1948,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Scheme\n LastUpgradeVersion = \"0930\"\n version = \"1.3\">\n <BuildAction\n "
},
{
"path": "RefactoringGuru.Patterns.xcodeproj/xcshareddata/xcschemes/ProxyConceptual.xcscheme",
"chars": 1942,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Scheme\n LastUpgradeVersion = \"0940\"\n version = \"1.3\">\n <BuildAction\n "
},
{
"path": "RefactoringGuru.Patterns.xcodeproj/xcshareddata/xcschemes/ProxyRealWorld.xcscheme",
"chars": 1940,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Scheme\n LastUpgradeVersion = \"0940\"\n version = \"1.3\">\n <BuildAction\n "
},
{
"path": "RefactoringGuru.Patterns.xcodeproj/xcshareddata/xcschemes/SingletonConceptual.xcscheme",
"chars": 1950,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Scheme\n LastUpgradeVersion = \"0930\"\n version = \"1.3\">\n <BuildAction\n "
},
{
"path": "RefactoringGuru.Patterns.xcodeproj/xcshareddata/xcschemes/SingletonRealWorld.xcscheme",
"chars": 1948,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Scheme\n LastUpgradeVersion = \"0930\"\n version = \"1.3\">\n <BuildAction\n "
},
{
"path": "RefactoringGuru.Patterns.xcodeproj/xcshareddata/xcschemes/StateConceptual.xcscheme",
"chars": 1942,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Scheme\n LastUpgradeVersion = \"0940\"\n version = \"1.3\">\n <BuildAction\n "
},
{
"path": "RefactoringGuru.Patterns.xcodeproj/xcshareddata/xcschemes/StateRealWorld.xcscheme",
"chars": 1940,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Scheme\n LastUpgradeVersion = \"0940\"\n version = \"1.3\">\n <BuildAction\n "
},
{
"path": "RefactoringGuru.Patterns.xcodeproj/xcshareddata/xcschemes/StrategyConceptual.xcscheme",
"chars": 1948,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Scheme\n LastUpgradeVersion = \"0940\"\n version = \"1.3\">\n <BuildAction\n "
},
{
"path": "RefactoringGuru.Patterns.xcodeproj/xcshareddata/xcschemes/StrategyRealWorld.xcscheme",
"chars": 1946,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Scheme\n LastUpgradeVersion = \"0940\"\n version = \"1.3\">\n <BuildAction\n "
},
{
"path": "RefactoringGuru.Patterns.xcodeproj/xcshareddata/xcschemes/TemplateMethodConceptual.xcscheme",
"chars": 1960,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Scheme\n LastUpgradeVersion = \"0940\"\n version = \"1.3\">\n <BuildAction\n "
},
{
"path": "RefactoringGuru.Patterns.xcodeproj/xcshareddata/xcschemes/TemplateMethodRealWorld.xcscheme",
"chars": 1958,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Scheme\n LastUpgradeVersion = \"0940\"\n version = \"1.3\">\n <BuildAction\n "
},
{
"path": "RefactoringGuru.Patterns.xcodeproj/xcshareddata/xcschemes/VisitorConceptual.xcscheme",
"chars": 1946,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Scheme\n LastUpgradeVersion = \"0940\"\n version = \"1.3\">\n <BuildAction\n "
},
{
"path": "RefactoringGuru.Patterns.xcodeproj/xcshareddata/xcschemes/VisitorRealWorld.xcscheme",
"chars": 1944,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Scheme\n LastUpgradeVersion = \"0940\"\n version = \"1.3\">\n <BuildAction\n "
},
{
"path": "Sources/AbstractFactory/Conceptual/Example.swift",
"chars": 7407,
"preview": "/// EN: Abstract Factory Design Pattern\n///\n/// Intent: Lets you produce families of related objects without specifying\n"
},
{
"path": "Sources/AbstractFactory/Conceptual/Info.plist",
"chars": 701,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/P"
},
{
"path": "Sources/AbstractFactory/Conceptual/Output.txt",
"chars": 336,
"preview": "Client: Testing client code with the first factory type:\nThe result of the product B1.\nThe result of the B1 collaboratin"
},
{
"path": "Sources/AbstractFactory/RealWorld/Example.swift",
"chars": 5310,
"preview": "import Foundation\nimport UIKit\nimport XCTest\n\nenum AuthType {\n case login\n case signUp\n}\n\n\nprotocol AuthViewFactor"
},
{
"path": "Sources/AbstractFactory/RealWorld/Info.plist",
"chars": 701,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/P"
},
{
"path": "Sources/AbstractFactory/RealWorld/Output.txt",
"chars": 208,
"preview": "Teacher View has been created\nTeacher View Controller has been created\nLogin screen has been presented\nTeacher View has "
},
{
"path": "Sources/Adapter/Conceptual/Example.swift",
"chars": 2476,
"preview": "/// EN: Adapter Design Pattern\n///\n/// Intent: Provides a unified interface that allows objects with incompatible\n/// in"
},
{
"path": "Sources/Adapter/Conceptual/Info.plist",
"chars": 701,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/P"
},
{
"path": "Sources/Adapter/Conceptual/Output.txt",
"chars": 314,
"preview": "Client: I can work just fine with the Target objects:\nTarget: The default target's behavior.\nClient: The Adaptee class h"
},
{
"path": "Sources/Adapter/RealWorld/Example.swift",
"chars": 2564,
"preview": "import XCTest\nimport UIKit\n\n/// Adapter Design Pattern\n///\n/// Intent: Convert the interface of a class into the interfa"
},
{
"path": "Sources/Adapter/RealWorld/Info.plist",
"chars": 701,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/P"
},
{
"path": "Sources/Adapter/RealWorld/Output.txt",
"chars": 229,
"preview": "Starting an authorization via Facebook\nFacebook WebView has been shown\n///\nStarting an authorization via Twitter\nThe Ada"
},
{
"path": "Sources/Bridge/Conceptual/Example.swift",
"chars": 5002,
"preview": "/// EN: Bridge Design Pattern\n///\n/// Intent: Lets you split a large class or a set of closely related classes\n/// into "
},
{
"path": "Sources/Bridge/Conceptual/Info.plist",
"chars": 701,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/P"
},
{
"path": "Sources/Bridge/Conceptual/Output.txt",
"chars": 203,
"preview": "Abstraction: Base operation with:\nConcreteImplementationA: Here's the result on the platform A\n\nExtendedAbstraction: Ext"
},
{
"path": "Sources/Bridge/RealWorld/Example.swift",
"chars": 2652,
"preview": "import XCTest\n\nprivate class BridgeRealWorld: XCTestCase {\n\n func testBridgeRealWorld() {\n\n print(\"Client: Pus"
},
{
"path": "Sources/Bridge/RealWorld/Info.plist",
"chars": 701,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/P"
},
{
"path": "Sources/Bridge/RealWorld/Output.txt",
"chars": 500,
"preview": "Client: Pushing Photo View Controller...\nPhotoViewController: User selected a Food Model to share\nService: Food Model wa"
},
{
"path": "Sources/Builder/Conceptual/Example.swift",
"chars": 7762,
"preview": "/// EN: Builder Design Pattern\n///\n/// Intent: Lets you construct complex objects step by step. The pattern allows\n/// y"
},
{
"path": "Sources/Builder/Conceptual/Info.plist",
"chars": 701,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/P"
},
{
"path": "Sources/Builder/Conceptual/Output.txt",
"chars": 164,
"preview": "Standard basic product:\nProduct parts: PartA1\n\nStandard full featured product:\nProduct parts: PartA1, PartB1, PartC1\n\nCu"
},
{
"path": "Sources/Builder/RealWorld/Example.swift",
"chars": 4745,
"preview": "import Foundation\nimport XCTest\n\n\nclass BaseQueryBuilder<Model: DomainModel> {\n\n typealias Predicate = (Model) -> (Bo"
},
{
"path": "Sources/Builder/RealWorld/Info.plist",
"chars": 701,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/P"
},
{
"path": "Sources/Builder/RealWorld/Output.txt",
"chars": 587,
"preview": "Client: Start fetching data from Realm\nRealmQueryBuilder: Initializing RealmDataProvider with 2 operations:\nRealmProvide"
},
{
"path": "Sources/ChainOfResponsibility/Conceptual/Example.swift",
"chars": 4500,
"preview": "/// EN: Chain of Responsibility Design Pattern\n///\n/// Intent: Lets you pass requests along a chain of handlers. Upon re"
},
{
"path": "Sources/ChainOfResponsibility/Conceptual/Info.plist",
"chars": 701,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/P"
},
{
"path": "Sources/ChainOfResponsibility/Conceptual/Output.txt",
"chars": 357,
"preview": "Chain: Monkey > Squirrel > Dog\n\n\nClient: Who wants a Nut?\n\nSquirrel: I'll eat the Nut.\n\nClient: Who wants a Banana?\n\nMon"
},
{
"path": "Sources/ChainOfResponsibility/RealWorld/Example.swift",
"chars": 6228,
"preview": "import Foundation\nimport UIKit\nimport XCTest\n\n\nprotocol Handler {\n\n var next: Handler? { get }\n\n func handle(_ req"
},
{
"path": "Sources/ChainOfResponsibility/RealWorld/Info.plist",
"chars": 701,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/P"
},
{
"path": "Sources/ChainOfResponsibility/RealWorld/Output.txt",
"chars": 337,
"preview": "Client: Let's test Login flow!\nLogin View Controller: User selected Login button\nLogin View Controller: Preconditions ar"
},
{
"path": "Sources/Command/Conceptual/Example.swift",
"chars": 4796,
"preview": "/// EN: Command Design Pattern\n///\n/// Intent: Turns a request into a stand-alone object that contains all\n/// informati"
},
{
"path": "Sources/Command/Conceptual/Info.plist",
"chars": 701,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/P"
},
{
"path": "Sources/Command/Conceptual/Output.txt",
"chars": 374,
"preview": "Invoker: Does anybody want something done before I begin?\nSimpleCommand: See, I can do simple things like printing (Say "
},
{
"path": "Sources/Command/RealWorld/Example.swift",
"chars": 4391,
"preview": "import Foundation\nimport XCTest\n\n\nclass DelayedOperation: Operation, @unchecked Sendable {\n\n private var delay: TimeI"
},
{
"path": "Sources/Command/RealWorld/Info.plist",
"chars": 701,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/P"
},
{
"path": "Sources/Command/RealWorld/Output.txt",
"chars": 357,
"preview": "User: Hey Siri, I am leaving my home\nSiri: performing leaveHome-action\n\nUser: Hey Siri, I am leaving my work in 3 minute"
},
{
"path": "Sources/Composite/Conceptual/Example.swift",
"chars": 7477,
"preview": "/// EN: Composite Design Pattern\n///\n/// Intent: Lets you compose objects into tree structures and then work with\n/// th"
},
{
"path": "Sources/Composite/Conceptual/Info.plist",
"chars": 701,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/P"
},
{
"path": "Sources/Composite/Conceptual/Output.txt",
"chars": 282,
"preview": "Client: I've got a simple component:\nResult: Leaf\n\nClient: Now I've got a composite tree:\nResult: Branch(Branch(Leaf Lea"
},
{
"path": "Sources/Composite/RealWorld/Example.swift",
"chars": 4604,
"preview": "import UIKit\nimport XCTest\n\nprotocol Component {\n\n func accept<T: Theme>(theme: T)\n}\n\nextension Component where Self:"
},
{
"path": "Sources/Composite/RealWorld/Info.plist",
"chars": 701,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/P"
},
{
"path": "Sources/Composite/RealWorld/Output.txt",
"chars": 425,
"preview": "Client: Applying 'default' theme for 'UIButton'\nUIButton: has applied Default Buttom Theme\n\nClient: Applying 'night' the"
},
{
"path": "Sources/Decorator/Conceptual/Example.swift",
"chars": 4736,
"preview": "/// EN: Decorator Design Pattern\n///\n/// Intent: Lets you attach new behaviors to objects by placing these objects\n/// i"
},
{
"path": "Sources/Decorator/Conceptual/Info.plist",
"chars": 701,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/P"
},
{
"path": "Sources/Decorator/Conceptual/Output.txt",
"chars": 172,
"preview": "Client: I've got a simple component\nResult: ConcreteComponent\n\nClient: Now I've got a decorated component\nResult: Concre"
},
{
"path": "Sources/Decorator/RealWorld/Example.swift",
"chars": 4689,
"preview": "import UIKit\nimport XCTest\n\n\nprotocol ImageEditor: CustomStringConvertible {\n\n func apply() -> UIImage\n}\n\nclass Image"
},
{
"path": "Sources/Decorator/RealWorld/Info.plist",
"chars": 701,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/P"
},
{
"path": "Sources/Decorator/RealWorld/Output.txt",
"chars": 155,
"preview": "Client: set up an editors stack\n\nBlurFilter applies changes\nResizer applies changes\nImage applies changes\n\nClient: all c"
},
{
"path": "Sources/Facade/Conceptual/Example.swift",
"chars": 4923,
"preview": "/// EN: Facade Design Pattern\n///\n/// Intent: Provides a simplified interface to a library, a framework, or any\n/// othe"
},
{
"path": "Sources/Facade/Conceptual/Info.plist",
"chars": 701,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/P"
},
{
"path": "Sources/Facade/Conceptual/Output.txt",
"chars": 156,
"preview": "Facade initializes subsystems: Sybsystem1: Ready!\nSybsystem2: Get ready!\n\nFacade orders subsystems to perform the action"
},
{
"path": "Sources/Facade/RealWorld/Example.swift",
"chars": 2360,
"preview": "import XCTest\n\n/// Facade Design Pattern\n///\n/// Intent: Provides a simplified interface to a library, a framework, or a"
},
{
"path": "Sources/Facade/RealWorld/Info.plist",
"chars": 701,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/P"
},
{
"path": "Sources/Facade/RealWorld/Output.txt",
"chars": 97,
"preview": "Let's set an image for the image view\nStart downloading...\nHandle an image...\nImage has been set\n"
},
{
"path": "Sources/FactoryMethod/Conceptual/Example.swift",
"chars": 5642,
"preview": "/// EN: Factory Method Design Pattern\n///\n/// Intent: Provides an interface for creating objects in a superclass, but\n//"
},
{
"path": "Sources/FactoryMethod/Conceptual/Info.plist",
"chars": 701,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/P"
},
{
"path": "Sources/FactoryMethod/Conceptual/Output.txt",
"chars": 389,
"preview": "App: Launched with the ConcreteCreator1.\nClient: I'm not aware of the creator's class, but it still works.\nCreator: The "
},
{
"path": "Sources/FactoryMethod/RealWorld/Example.swift",
"chars": 2926,
"preview": "import XCTest\n\nclass FactoryMethodRealWorld: XCTestCase {\n\n func testFactoryMethodRealWorld() {\n\n let info = \""
},
{
"path": "Sources/FactoryMethod/RealWorld/Info.plist",
"chars": 701,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/P"
},
{
"path": "Sources/FactoryMethod/RealWorld/Output.txt",
"chars": 143,
"preview": "Info is presented over Wifi: Very important info of the presentation\nInfo is presented over Bluetooth: Very important in"
},
{
"path": "Sources/Flyweight/Conceptual/Example.swift",
"chars": 5043,
"preview": "/// EN: Flyweight Design Pattern\n///\n/// Intent: Lets you fit more objects into the available amount of RAM by\n/// shari"
},
{
"path": "Sources/Flyweight/Conceptual/Info.plist",
"chars": 701,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/P"
},
{
"path": "Sources/Flyweight/Conceptual/Output.txt",
"chars": 638,
"preview": "FlyweightFactory: I have 5 flyweights:\n\nMercedes BenzC500red\nChevroletCamaro2018pink\nMercedes BenzC300black\nBMWX6white\nB"
},
{
"path": "Sources/Flyweight/RealWorld/Example.swift",
"chars": 3691,
"preview": "import XCTest\nimport UIKit\n\nclass FlyweightRealWorld: XCTestCase {\n\n func testFlyweightRealWorld() {\n\n let mai"
},
{
"path": "Sources/Flyweight/RealWorld/Info.plist",
"chars": 701,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/P"
},
{
"path": "Sources/Flyweight/RealWorld/Output.txt",
"chars": 617,
"preview": "Client: I created a number of objects to display\nClient: Let's show animals for the 1st time\n\nAppearanceFactory: Can't f"
},
{
"path": "Sources/Iterator/Conceptual/Example.swift",
"chars": 3933,
"preview": "/// EN: Iterator Design Pattern\n///\n/// Intent: Lets you traverse elements of a collection without exposing its\n/// unde"
},
{
"path": "Sources/Iterator/Conceptual/Info.plist",
"chars": 701,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/P"
},
{
"path": "Sources/Iterator/Conceptual/Output.txt",
"chars": 106,
"preview": "Straight traversal using IteratorProtocol:\nFirst\nSecond\nThird\n\nReverse traversal using AnyIterator:\n3\n2\n1\n"
},
{
"path": "Sources/Iterator/RealWorld/Example.swift",
"chars": 1751,
"preview": "import XCTest\n\nclass IteratorRealWorld: XCTestCase {\n\n func test() {\n\n let tree = Tree(1)\n tree.left = "
},
{
"path": "Sources/Iterator/RealWorld/Info.plist",
"chars": 701,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/P"
},
{
"path": "Sources/Iterator/RealWorld/Output.txt",
"chars": 95,
"preview": "Tree traversal: Inorder\n2\n1\n3\n\nTree traversal: Preorder\n1\n2\n3\n\nTree traversal: Postorder\n2\n3\n1\n"
},
{
"path": "Sources/Mediator/Conceptual/Example.swift",
"chars": 3742,
"preview": "/// EN: Mediator Design Pattern\n///\n/// Intent: Lets you reduce chaotic dependencies between objects. The pattern\n/// re"
},
{
"path": "Sources/Mediator/Conceptual/Info.plist",
"chars": 701,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/P"
},
{
"path": "Sources/Mediator/Conceptual/Output.txt",
"chars": 271,
"preview": "Client triggers operation A.\nComponent 1 does A.\nMediator reacts on A and triggers following operations:\nComponent 2 doe"
},
{
"path": "Sources/Mediator/RealWorld/Example.swift",
"chars": 4040,
"preview": "import XCTest\n\nclass MediatorRealWorld: XCTestCase {\n\n func test() {\n\n let newsArray = [News(id: 1, title: \"Ne"
},
{
"path": "Sources/Mediator/RealWorld/Info.plist",
"chars": 701,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/P"
},
{
"path": "Sources/Mediator/RealWorld/Output.txt",
"chars": 1010,
"preview": "News Feed: User LIKED all news models\nNews Feed: I am telling to mediator about it...\n\nScreen Mediator: Received a liked"
},
{
"path": "Sources/Memento/Conceptual/Example.swift",
"chars": 5542,
"preview": "/// EN: Memento Design Pattern\n///\n/// Intent: Lets you save and restore the previous state of an object without\n/// rev"
},
{
"path": "Sources/Memento/Conceptual/Info.plist",
"chars": 701,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/P"
},
{
"path": "Sources/Memento/Conceptual/Output.txt",
"chars": 795,
"preview": "Originator: My initial state is: Super-duper-super-puper-super.\n\nCaretaker: Saving Originator's state...\n\nOriginator: I'"
},
{
"path": "Sources/Memento/RealWorld/Example.swift",
"chars": 2443,
"preview": "import XCTest\n\nclass MementoRealWorld: XCTestCase {\n\n /// State and Command are often used together when the previous"
},
{
"path": "Sources/Memento/RealWorld/Info.plist",
"chars": 701,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/P"
},
{
"path": "Sources/Memento/RealWorld/Output.txt",
"chars": 592,
"preview": "Text: First Change\nDate: hour: 12 minute: 21 second: 50 nanosecond: 821737051 isLeapMonth: false\nColor: nil\nRange: {12, "
},
{
"path": "Sources/Observer/Conceptual/Example.swift",
"chars": 5763,
"preview": "/// EN: Observer Design Pattern\n///\n/// Intent: Lets you define a subscription mechanism to notify multiple objects\n/// "
},
{
"path": "Sources/Observer/Conceptual/Info.plist",
"chars": 701,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/P"
},
{
"path": "Sources/Observer/Conceptual/Output.txt",
"chars": 530,
"preview": "Subject: Attached an observer.\n\nSubject: Attached an observer.\n\n\nSubject: I'm doing something important.\n\nSubject: My st"
},
{
"path": "Sources/Observer/RealWorld/Example.swift",
"chars": 2793,
"preview": "import XCTest\n\nclass ObserverRealWorld: XCTestCase {\n\n func test() {\n\n let cartManager = CartManager()\n\n "
},
{
"path": "Sources/Observer/RealWorld/Info.plist",
"chars": 701,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/P"
},
{
"path": "Sources/Observer/RealWorld/Output.txt",
"chars": 666,
"preview": "CartManager: I'am adding a new subscriber: UINavigationBar\nCartManager: I'am adding a new subscriber: CartViewController"
},
{
"path": "Sources/Prototype/Conceptual/Example.swift",
"chars": 2990,
"preview": "/// EN: Prototype Design Pattern\n///\n/// Intent: Lets you copy existing objects without making your code dependent on\n//"
},
{
"path": "Sources/Prototype/Conceptual/Info.plist",
"chars": 701,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/P"
},
{
"path": "Sources/Prototype/Conceptual/Output.txt",
"chars": 141,
"preview": "Values defined in BaseClass have been cloned!\nValues defined in SubClass have been cloned!\nThe original object is equal "
},
{
"path": "Sources/Prototype/RealWorld/Example.swift",
"chars": 1934,
"preview": "import XCTest\n\nclass PrototypeRealWorld: XCTestCase {\n\n func testPrototypeRealWorld() {\n\n let author = Author("
},
{
"path": "Sources/Prototype/RealWorld/Info.plist",
"chars": 701,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/P"
},
{
"path": "Sources/Prototype/RealWorld/Output.txt",
"chars": 86,
"preview": "Original title: My First Page\nCopied title: Copy of 'My First Page'\nCount of pages: 2\n"
},
{
"path": "Sources/Proxy/Conceptual/Example.swift",
"chars": 4890,
"preview": "/// EN: Proxy Design Pattern\n///\n/// Intent: Provide a surrogate or placeholder for another object to control\n/// access"
},
{
"path": "Sources/Proxy/Conceptual/Info.plist",
"chars": 701,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/P"
},
{
"path": "Sources/Proxy/Conceptual/Output.txt",
"chars": 261,
"preview": "Client: Executing the client code with a real subject:\nRealSubject: Handling request.\n\nClient: Executing the same client"
},
{
"path": "Sources/Proxy/RealWorld/Example.swift",
"chars": 5357,
"preview": "import XCTest\n\nclass ProxyRealWorld: XCTestCase {\n\n /// EN: Proxy Design Pattern\n ///\n /// Intent: Provide a su"
},
{
"path": "Sources/Proxy/RealWorld/Info.plist",
"chars": 701,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/P"
},
{
"path": "Sources/Proxy/RealWorld/Output.txt",
"chars": 310,
"preview": "Client: Loading a profile WITHOUT proxy\nClient: Basic profile is loaded\nClient: Basic profile with a bank account is loa"
},
{
"path": "Sources/Singleton/Conceptual/Example.swift",
"chars": 2816,
"preview": "/// EN: Singleton Design Pattern\n///\n/// Intent: Lets you ensure that a class has only one instance, while providing\n///"
},
{
"path": "Sources/Singleton/Conceptual/Info.plist",
"chars": 701,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/P"
},
{
"path": "Sources/Singleton/Conceptual/Output.txt",
"chars": 59,
"preview": "Singleton works, both variables contain the same instance.\n"
},
{
"path": "Sources/Singleton/RealWorld/Example.swift",
"chars": 4490,
"preview": "import XCTest\n\n/// Singleton Design Pattern\n///\n/// Intent: Ensure that class has a single instance, and provide a globa"
},
{
"path": "Sources/Singleton/RealWorld/Info.plist",
"chars": 701,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/P"
},
{
"path": "Sources/Singleton/RealWorld/Output.txt",
"chars": 362,
"preview": "MessagesListVC starts receive messages\nMessagesListVC accepted 'new messages'\nMessagesListVC accepted 'removed messages'"
},
{
"path": "Sources/State/Conceptual/Example.swift",
"chars": 3667,
"preview": "/// EN: State Design Pattern\n///\n/// Intent: Lets an object alter its behavior when its internal state changes.\n/// It a"
},
{
"path": "Sources/State/Conceptual/Info.plist",
"chars": 701,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/P"
},
{
"path": "Sources/State/Conceptual/Output.txt",
"chars": 345,
"preview": "Context: Transition to StateConceptual.ConcreteStateA\nConcreteStateA handles request1.\nConcreteStateA wants to change th"
},
{
"path": "Sources/State/RealWorld/Example.swift",
"chars": 4101,
"preview": "import XCTest\n\nclass StateRealWorld: XCTestCase {\n\n func test() {\n\n print(\"Client: I'm starting working with a"
},
{
"path": "Sources/State/RealWorld/Info.plist",
"chars": 701,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/P"
},
{
"path": "Sources/State/RealWorld/Output.txt",
"chars": 1084,
"preview": "Client: I'm starting working with a location tracker\n\nEnabledTrackingState: startTracking is invoked\nEnabledTrackingStat"
},
{
"path": "Sources/Strategy/Conceptual/Example.swift",
"chars": 4197,
"preview": "/// EN: Strategy Design Pattern\n///\n/// Intent: Lets you define a family of algorithms, put each of them into a\n/// sepa"
},
{
"path": "Sources/Strategy/Conceptual/Info.plist",
"chars": 701,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/P"
},
{
"path": "Sources/Strategy/Conceptual/Output.txt",
"chars": 249,
"preview": "Client: Strategy is set to normal sorting.\n\nContext: Sorting data using the strategy (not sure how it'll do it)\n\na,b,c,d"
},
{
"path": "Sources/Strategy/RealWorld/Example.swift",
"chars": 2605,
"preview": "import XCTest\n\nclass StrategyRealWorld: XCTestCase {\n\n /// This example shows a simple implementation of a list contr"
},
{
"path": "Sources/Strategy/RealWorld/Info.plist",
"chars": 701,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/P"
},
{
"path": "Sources/Strategy/RealWorld/Output.txt",
"chars": 323,
"preview": "ListController: Displaying models...\nUser(id: 1, username: \"username1\")\nUser(id: 2, username: \"username2\")\n\nListControll"
},
{
"path": "Sources/TemplateMethod/Conceptual/Example.swift",
"chars": 5231,
"preview": "/// EN: Template Method Design Pattern\n///\n/// Intent: Defines the skeleton of an algorithm in the superclass but lets\n/"
},
{
"path": "Sources/TemplateMethod/Conceptual/Info.plist",
"chars": 701,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/P"
},
{
"path": "Sources/TemplateMethod/Conceptual/Output.txt",
"chars": 752,
"preview": "Same client code can work with different subclasses:\n\nAbstractProtocol says: I am doing the bulk of the work\n\nConcreteCl"
},
{
"path": "Sources/TemplateMethod/RealWorld/Example.swift",
"chars": 3034,
"preview": "import XCTest\nimport AVFoundation\nimport CoreLocation\nimport Photos\n\nclass TemplateMethodRealWorld: XCTestCase {\n\n //"
},
{
"path": "Sources/TemplateMethod/RealWorld/Info.plist",
"chars": 701,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/P"
},
{
"path": "Sources/TemplateMethod/RealWorld/Output.txt",
"chars": 164,
"preview": "You have access to Camera\n\nYou have access to Microphone\n\nPhotoLibrary Accessor: Rejected with access. Updating analytic"
},
{
"path": "Sources/Visitor/Conceptual/Example.swift",
"chars": 5950,
"preview": "/// EN: Visitor Design Pattern\n///\n/// Intent: Lets you separate algorithms from the objects on which they operate.\n///\n"
},
{
"path": "Sources/Visitor/Conceptual/Info.plist",
"chars": 701,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/P"
},
{
"path": "Sources/Visitor/Conceptual/Output.txt",
"chars": 235,
"preview": "The client code works with all visitors via the base Visitor interface:\n\nA + ConcreteVisitor1\n\nB + ConcreteVisitor1\n\n\nIt"
},
{
"path": "Sources/Visitor/RealWorld/Example.swift",
"chars": 4120,
"preview": "import Foundation\nimport XCTest\n\n\nprotocol Notification: CustomStringConvertible {\n\n func accept(visitor: Notificatio"
},
{
"path": "Sources/Visitor/RealWorld/Info.plist",
"chars": 701,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/P"
},
{
"path": "Sources/Visitor/RealWorld/Output.txt",
"chars": 340,
"preview": "Client: Using Default Policy Visitor and Black List Visitor\n Email notification will be shown\n SMS notification wi"
}
]
About this extraction
This page contains the full source code of the RefactoringGuru/design-patterns-swift GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 182 files (516.2 KB), approximately 146.7k tokens. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.
Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.