jazzy 0.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.gitignore +59 -0
- data/LICENSE +21 -0
- data/README.md +62 -0
- data/Rakefile +1 -0
- data/bin/ASTDump +0 -0
- data/bin/SwiftHeader +22 -0
- data/bin/jazzy +42 -0
- data/jazzy.gemspec +27 -0
- data/lib/assets/CSS/style-1.1.15.css +3366 -0
- data/lib/assets/Images/apple2.png +0 -0
- data/lib/assets/Images/carat_2x.png +0 -0
- data/lib/assets/Images/check.png +0 -0
- data/lib/assets/Images/class_node_parent_and_child_2x.png +0 -0
- data/lib/assets/Images/class_node_subclass_last_child_2x.png +0 -0
- data/lib/assets/Images/class_node_subclass_with_siblings_2x.png +0 -0
- data/lib/assets/Images/closebox_2x.png +0 -0
- data/lib/assets/Images/collection_last_child_2x.png +0 -0
- data/lib/assets/Images/collection_last_child_orphan_grandparent_2x.png +0 -0
- data/lib/assets/Images/collection_last_child_orphan_parent_2x.png +0 -0
- data/lib/assets/Images/collection_last_child_orphan_parent_and_grandparent_2x.png +0 -0
- data/lib/assets/Images/collection_node_2x.png +0 -0
- data/lib/assets/Images/collection_node_orphan_grandparent_2x.png +0 -0
- data/lib/assets/Images/collection_node_orphan_parent_2x.png +0 -0
- data/lib/assets/Images/collection_node_orphan_parent_and_grandparent_2x.png +0 -0
- data/lib/assets/Images/collection_node_parent_2x.png +0 -0
- data/lib/assets/Images/collection_node_parent_last_child_orphan_parent_2x.png +0 -0
- data/lib/assets/Images/collection_node_parent_orphan_parent_2x.png +0 -0
- data/lib/assets/Images/collection_parent_last_child_2x.png +0 -0
- data/lib/assets/Images/download_2x.png +0 -0
- data/lib/assets/Images/left_arrow_2x.png +0 -0
- data/lib/assets/Images/magnify_2x.png +0 -0
- data/lib/assets/Images/minus_2x.png +0 -0
- data/lib/assets/Images/playbutton.svg +15 -0
- data/lib/assets/Images/plus_2x.png +0 -0
- data/lib/assets/Images/right_arrow_2x.png +0 -0
- data/lib/assets/Images/search_2x.png +0 -0
- data/lib/assets/Images/shortstack_2x.png +0 -0
- data/lib/assets/JavaScript/devpubs-1.1.15.js +1293 -0
- data/lib/jazzy.rb +133 -0
- data/lib/jazzy/jazzhtml.rb +7 -0
- data/lib/jazzy/klass.mustache +325 -0
- data/lib/jazzy/klass.rb +27 -0
- data/lib/jazzy/partials/klass-method.mustache +84 -0
- data/lib/jazzy/partials/klass-overview.mustache +6 -0
- data/lib/jazzy/partials/klass-property.mustache +52 -0
- data/parser/ASTDump.xcodeproj/project.pbxproj +288 -0
- data/parser/ASTDump.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
- data/parser/ASTDump.xcodeproj/project.xcworkspace/xcshareddata/ASTDump.xccheckout +41 -0
- data/parser/ASTDump.xcodeproj/project.xcworkspace/xcuserdata/ta.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
- data/parser/ASTDump.xcodeproj/xcuserdata/ta.xcuserdatad/xcschemes/ASTDump.xcscheme +86 -0
- data/parser/ASTDump.xcodeproj/xcuserdata/ta.xcuserdatad/xcschemes/xcschememanagement.plist +22 -0
- data/parser/ASTDump/JAZMusician.h +38 -0
- data/parser/ASTDump/JAZMusician.m +19 -0
- data/parser/ASTDump/main.cpp +71 -0
- data/parser/clang-c/BuildSystem.h +148 -0
- data/parser/clang-c/CXCompilationDatabase.h +170 -0
- data/parser/clang-c/CXErrorCode.h +64 -0
- data/parser/clang-c/CXString.h +61 -0
- data/parser/clang-c/Documentation.h +554 -0
- data/parser/clang-c/Index.h +5438 -0
- data/parser/clang-c/Platform.h +45 -0
- metadata +190 -0
    
        data/lib/jazzy/klass.rb
    ADDED
    
    | @@ -0,0 +1,27 @@ | |
| 1 | 
            +
            class Jazzy::Klass < Mustache
         | 
| 2 | 
            +
              self.template_path = File.dirname(__FILE__) + '/..'
         | 
| 3 | 
            +
             | 
| 4 | 
            +
              # def name
         | 
| 5 | 
            +
              #   self[:root]["Other"][0]["Name"]
         | 
| 6 | 
            +
              # end
         | 
| 7 | 
            +
             | 
| 8 | 
            +
              def rendered_abstract
         | 
| 9 | 
            +
                $markdown.render self[:abstract]
         | 
| 10 | 
            +
              end
         | 
| 11 | 
            +
             | 
| 12 | 
            +
              def rendered_discussion
         | 
| 13 | 
            +
                $markdown.render self[:discussion]
         | 
| 14 | 
            +
              end
         | 
| 15 | 
            +
             | 
| 16 | 
            +
              def rendered_abstract_for_overview
         | 
| 17 | 
            +
                self[:abstract].chop! + ' <a class="overview-bulk-toggle">More...</a>'
         | 
| 18 | 
            +
              end
         | 
| 19 | 
            +
             | 
| 20 | 
            +
              def date
         | 
| 21 | 
            +
                DateTime.now.strftime("%Y-%m-%d")
         | 
| 22 | 
            +
              end
         | 
| 23 | 
            +
             | 
| 24 | 
            +
              def uri_fragment
         | 
| 25 | 
            +
                URI.escape(self[:name])
         | 
| 26 | 
            +
              end
         | 
| 27 | 
            +
            end
         | 
| @@ -0,0 +1,84 @@ | |
| 1 | 
            +
            <li class="item symbol" data-availability="8.0">
         | 
| 2 | 
            +
                <div class="task-group-term">
         | 
| 3 | 
            +
                    <code class="code-voice">
         | 
| 4 | 
            +
                        <a name="{{declaration.objc}}"></a><a name="{{usr}}"></a><a name="{{declaration.swift}}"></a>
         | 
| 5 | 
            +
                        <a class="x-instance-method Swift" href="#{{declaration.swift}}" title="{{abstract}}">{{name.swift}}</a>
         | 
| 6 | 
            +
                        <a class="x-instance-method Objective-C" href="#{{declaration.objc}}" title="{{abstract}}">{{name.objc}}</a>
         | 
| 7 | 
            +
                    </code>
         | 
| 8 | 
            +
                    <span class="new">(New in iOS 8)</span>
         | 
| 9 | 
            +
                </div>
         | 
| 10 | 
            +
             | 
| 11 | 
            +
                <div class="height-container hidden">
         | 
| 12 | 
            +
                    <div class="pointy-thing-container"></div>
         | 
| 13 | 
            +
                    <section class="section instance-method">
         | 
| 14 | 
            +
                        <div class="pointy-thing"></div>
         | 
| 15 | 
            +
             | 
| 16 | 
            +
                        <div class="abstract">
         | 
| 17 | 
            +
                            {{{rendered_abstract}}}
         | 
| 18 | 
            +
                        </div>
         | 
| 19 | 
            +
             | 
| 20 | 
            +
             | 
| 21 | 
            +
                        <div class="declaration">
         | 
| 22 | 
            +
                            <h4>Declaration</h4>
         | 
| 23 | 
            +
             | 
| 24 | 
            +
                            <div class="Swift">
         | 
| 25 | 
            +
                                <p class="aside-title">Swift</p>
         | 
| 26 | 
            +
                                <p class="para">
         | 
| 27 | 
            +
                                    <code class="code-voice">{{declaration.swift}}</code>
         | 
| 28 | 
            +
                                </p>
         | 
| 29 | 
            +
                            </div>
         | 
| 30 | 
            +
             | 
| 31 | 
            +
                            <div class="Objective-C">
         | 
| 32 | 
            +
                                <p class="aside-title">Objective-C</p>
         | 
| 33 | 
            +
                                <p class="para">
         | 
| 34 | 
            +
                                    <code class="code-voice">{{declaration.objc}}</code>
         | 
| 35 | 
            +
                                </p>
         | 
| 36 | 
            +
                            </div>
         | 
| 37 | 
            +
                        </div>
         | 
| 38 | 
            +
             | 
| 39 | 
            +
                        <div class="parameters">
         | 
| 40 | 
            +
                            <h4>Parameters</h4>
         | 
| 41 | 
            +
                            <table class="graybox" border="0" cellspacing="0" cellpadding="5">
         | 
| 42 | 
            +
                                <tbody>
         | 
| 43 | 
            +
                                    {{#parameters}}
         | 
| 44 | 
            +
                                    <tr>
         | 
| 45 | 
            +
                                        <td scope="row">
         | 
| 46 | 
            +
                                            <code class="code-voice">
         | 
| 47 | 
            +
                                                <em class="term">{{name}}</em>
         | 
| 48 | 
            +
                                            </code>
         | 
| 49 | 
            +
                                        </td>
         | 
| 50 | 
            +
                                        <td>
         | 
| 51 | 
            +
                                            <div class="definition">
         | 
| 52 | 
            +
                                                <p class="para">
         | 
| 53 | 
            +
                                                    {{discussion}}
         | 
| 54 | 
            +
                                                </p>
         | 
| 55 | 
            +
             | 
| 56 | 
            +
                                            </div>
         | 
| 57 | 
            +
                                        </td>
         | 
| 58 | 
            +
                                    </tr>
         | 
| 59 | 
            +
                                    {{/parameters}}
         | 
| 60 | 
            +
                                </tbody>
         | 
| 61 | 
            +
                            </table>
         | 
| 62 | 
            +
                        </div>
         | 
| 63 | 
            +
             | 
| 64 | 
            +
                        <div class="result-description">
         | 
| 65 | 
            +
                            <h4>Return Value</h4>
         | 
| 66 | 
            +
                            <p class="para">
         | 
| 67 | 
            +
                                {{result}}
         | 
| 68 | 
            +
                            </p>
         | 
| 69 | 
            +
             | 
| 70 | 
            +
                        </div>
         | 
| 71 | 
            +
             | 
| 72 | 
            +
                        <div class="discussion">
         | 
| 73 | 
            +
                            <h4>Discussion</h4>
         | 
| 74 | 
            +
                            {{{rendered_discussion}}}
         | 
| 75 | 
            +
                        </div>
         | 
| 76 | 
            +
             | 
| 77 | 
            +
                        <div class="availability">
         | 
| 78 | 
            +
                            <h4>Availability</h4>
         | 
| 79 | 
            +
                            <p class="para availability-item">Available in iOS 8.0 and later.</p>
         | 
| 80 | 
            +
                        </div>
         | 
| 81 | 
            +
             | 
| 82 | 
            +
                    </section>
         | 
| 83 | 
            +
                </div>
         | 
| 84 | 
            +
            </li>
         | 
| @@ -0,0 +1,52 @@ | |
| 1 | 
            +
            <li class="item symbol" data-availability="8.0">
         | 
| 2 | 
            +
                <div class="task-group-term">
         | 
| 3 | 
            +
                    <code class="code-voice">
         | 
| 4 | 
            +
                        <a name="{{declaration.objc}}"></a><a name="{{usr}}"></a><a name="{{declaration.swift}}"></a>
         | 
| 5 | 
            +
                        <a class="x-api-property-task-list Swift" href="#{{declaration.swift}}" title="{{abstract}}">{{name.swift}}</a>
         | 
| 6 | 
            +
                        <a class="x-api-property-task-list Objective-C" href="#{{declaration.objc}}" title="{{abstract}}">{{name.objc}}</a>
         | 
| 7 | 
            +
                    </code>
         | 
| 8 | 
            +
                </div>
         | 
| 9 | 
            +
             | 
| 10 | 
            +
                <div class="height-container">
         | 
| 11 | 
            +
                    <div class="pointy-thing-container"></div>
         | 
| 12 | 
            +
                    <section class="section property-obj-c">
         | 
| 13 | 
            +
                        <div class="pointy-thing"></div>
         | 
| 14 | 
            +
             | 
| 15 | 
            +
                        <div class="abstract">
         | 
| 16 | 
            +
                            {{{rendered_abstract}}}
         | 
| 17 | 
            +
                        </div>
         | 
| 18 | 
            +
             | 
| 19 | 
            +
                        <div class="declaration">
         | 
| 20 | 
            +
                            <h4>Declaration</h4>
         | 
| 21 | 
            +
                            <div class="Swift">
         | 
| 22 | 
            +
                                <p class="aside-title">Swift</p>
         | 
| 23 | 
            +
                                <p class="para">
         | 
| 24 | 
            +
                                    <code class="code-voice">
         | 
| 25 | 
            +
                                        {{declaration.swift}}
         | 
| 26 | 
            +
                                    </code>
         | 
| 27 | 
            +
                                </p>
         | 
| 28 | 
            +
                            </div>
         | 
| 29 | 
            +
                            <div class="Objective-C">
         | 
| 30 | 
            +
                                <p class="aside-title">Objective-C</p>
         | 
| 31 | 
            +
                                <p class="para">
         | 
| 32 | 
            +
                                    <code class="code-voice">
         | 
| 33 | 
            +
                                        {{declaration.objc}}
         | 
| 34 | 
            +
                                    </code>
         | 
| 35 | 
            +
                                </p>
         | 
| 36 | 
            +
                            </div>
         | 
| 37 | 
            +
                        </div>
         | 
| 38 | 
            +
             | 
| 39 | 
            +
                        <div class="discussion">
         | 
| 40 | 
            +
                            <h4>Discussion</h4>
         | 
| 41 | 
            +
                            {{{rendered_discussion}}}
         | 
| 42 | 
            +
             | 
| 43 | 
            +
                        </div>
         | 
| 44 | 
            +
             | 
| 45 | 
            +
                        <div class="availability">
         | 
| 46 | 
            +
                            <h4>Availability</h4>
         | 
| 47 | 
            +
                            <p class="para availability-item">Available in iOS 8.0 and later.</p>
         | 
| 48 | 
            +
                        </div>
         | 
| 49 | 
            +
             | 
| 50 | 
            +
                    </section>
         | 
| 51 | 
            +
                </div>
         | 
| 52 | 
            +
            </li>
         | 
| @@ -0,0 +1,288 @@ | |
| 1 | 
            +
            // !$*UTF8*$!
         | 
| 2 | 
            +
            {
         | 
| 3 | 
            +
            	archiveVersion = 1;
         | 
| 4 | 
            +
            	classes = {
         | 
| 5 | 
            +
            	};
         | 
| 6 | 
            +
            	objectVersion = 46;
         | 
| 7 | 
            +
            	objects = {
         | 
| 8 | 
            +
             | 
| 9 | 
            +
            /* Begin PBXBuildFile section */
         | 
| 10 | 
            +
            		E80E07DE194125F400E2B0B5 /* libclang.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = E80E07DD194125F400E2B0B5 /* libclang.dylib */; settings = {ATTRIBUTES = (Required, ); }; };
         | 
| 11 | 
            +
            		E80E07FA1941481800E2B0B5 /* JAZMusician.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = E80E07F6194147EA00E2B0B5 /* JAZMusician.h */; };
         | 
| 12 | 
            +
            		E80E07FC1941488500E2B0B5 /* main.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E80E07D4194125DB00E2B0B5 /* main.cpp */; };
         | 
| 13 | 
            +
            		E80E07FD1941494700E2B0B5 /* JAZMusician.m in Sources */ = {isa = PBXBuildFile; fileRef = E80E07F7194147EA00E2B0B5 /* JAZMusician.m */; };
         | 
| 14 | 
            +
            /* End PBXBuildFile section */
         | 
| 15 | 
            +
             | 
| 16 | 
            +
            /* Begin PBXCopyFilesBuildPhase section */
         | 
| 17 | 
            +
            		E80E07F91941480C00E2B0B5 /* CopyFiles */ = {
         | 
| 18 | 
            +
            			isa = PBXCopyFilesBuildPhase;
         | 
| 19 | 
            +
            			buildActionMask = 2147483647;
         | 
| 20 | 
            +
            			dstPath = "";
         | 
| 21 | 
            +
            			dstSubfolderSpec = 16;
         | 
| 22 | 
            +
            			files = (
         | 
| 23 | 
            +
            				E80E07FA1941481800E2B0B5 /* JAZMusician.h in CopyFiles */,
         | 
| 24 | 
            +
            			);
         | 
| 25 | 
            +
            			runOnlyForDeploymentPostprocessing = 0;
         | 
| 26 | 
            +
            		};
         | 
| 27 | 
            +
            /* End PBXCopyFilesBuildPhase section */
         | 
| 28 | 
            +
             | 
| 29 | 
            +
            /* Begin PBXFileReference section */
         | 
| 30 | 
            +
            		E80E07D1194125DB00E2B0B5 /* ASTDump */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = ASTDump; sourceTree = BUILT_PRODUCTS_DIR; };
         | 
| 31 | 
            +
            		E80E07D4194125DB00E2B0B5 /* main.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = main.cpp; sourceTree = "<group>"; };
         | 
| 32 | 
            +
            		E80E07DD194125F400E2B0B5 /* libclang.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libclang.dylib; path = Toolchains/XcodeDefault.xctoolchain/usr/lib/libclang.dylib; sourceTree = DEVELOPER_DIR; };
         | 
| 33 | 
            +
            		E80E07EA1941280000E2B0B5 /* BuildSystem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BuildSystem.h; sourceTree = "<group>"; };
         | 
| 34 | 
            +
            		E80E07EB1941280000E2B0B5 /* CXCompilationDatabase.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CXCompilationDatabase.h; sourceTree = "<group>"; };
         | 
| 35 | 
            +
            		E80E07EC1941280000E2B0B5 /* CXErrorCode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CXErrorCode.h; sourceTree = "<group>"; };
         | 
| 36 | 
            +
            		E80E07ED1941280000E2B0B5 /* CXString.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CXString.h; sourceTree = "<group>"; };
         | 
| 37 | 
            +
            		E80E07EE1941280000E2B0B5 /* Documentation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Documentation.h; sourceTree = "<group>"; };
         | 
| 38 | 
            +
            		E80E07EF1941280000E2B0B5 /* Index.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Index.h; sourceTree = "<group>"; };
         | 
| 39 | 
            +
            		E80E07F11941280000E2B0B5 /* Platform.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Platform.h; sourceTree = "<group>"; };
         | 
| 40 | 
            +
            		E80E07F6194147EA00E2B0B5 /* JAZMusician.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JAZMusician.h; sourceTree = "<group>"; };
         | 
| 41 | 
            +
            		E80E07F7194147EA00E2B0B5 /* JAZMusician.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JAZMusician.m; sourceTree = "<group>"; };
         | 
| 42 | 
            +
            /* End PBXFileReference section */
         | 
| 43 | 
            +
             | 
| 44 | 
            +
            /* Begin PBXFrameworksBuildPhase section */
         | 
| 45 | 
            +
            		E80E07CE194125DB00E2B0B5 /* Frameworks */ = {
         | 
| 46 | 
            +
            			isa = PBXFrameworksBuildPhase;
         | 
| 47 | 
            +
            			buildActionMask = 2147483647;
         | 
| 48 | 
            +
            			files = (
         | 
| 49 | 
            +
            				E80E07DE194125F400E2B0B5 /* libclang.dylib in Frameworks */,
         | 
| 50 | 
            +
            			);
         | 
| 51 | 
            +
            			runOnlyForDeploymentPostprocessing = 0;
         | 
| 52 | 
            +
            		};
         | 
| 53 | 
            +
            /* End PBXFrameworksBuildPhase section */
         | 
| 54 | 
            +
             | 
| 55 | 
            +
            /* Begin PBXGroup section */
         | 
| 56 | 
            +
            		E80E07C8194125DB00E2B0B5 = {
         | 
| 57 | 
            +
            			isa = PBXGroup;
         | 
| 58 | 
            +
            			children = (
         | 
| 59 | 
            +
            				E80E07E91941280000E2B0B5 /* clang-c */,
         | 
| 60 | 
            +
            				E80E07DD194125F400E2B0B5 /* libclang.dylib */,
         | 
| 61 | 
            +
            				E80E07D3194125DB00E2B0B5 /* ASTDump */,
         | 
| 62 | 
            +
            				E80E07D2194125DB00E2B0B5 /* Products */,
         | 
| 63 | 
            +
            			);
         | 
| 64 | 
            +
            			sourceTree = "<group>";
         | 
| 65 | 
            +
            		};
         | 
| 66 | 
            +
            		E80E07D2194125DB00E2B0B5 /* Products */ = {
         | 
| 67 | 
            +
            			isa = PBXGroup;
         | 
| 68 | 
            +
            			children = (
         | 
| 69 | 
            +
            				E80E07D1194125DB00E2B0B5 /* ASTDump */,
         | 
| 70 | 
            +
            			);
         | 
| 71 | 
            +
            			name = Products;
         | 
| 72 | 
            +
            			sourceTree = "<group>";
         | 
| 73 | 
            +
            		};
         | 
| 74 | 
            +
            		E80E07D3194125DB00E2B0B5 /* ASTDump */ = {
         | 
| 75 | 
            +
            			isa = PBXGroup;
         | 
| 76 | 
            +
            			children = (
         | 
| 77 | 
            +
            				E80E07F6194147EA00E2B0B5 /* JAZMusician.h */,
         | 
| 78 | 
            +
            				E80E07F7194147EA00E2B0B5 /* JAZMusician.m */,
         | 
| 79 | 
            +
            				E80E07D4194125DB00E2B0B5 /* main.cpp */,
         | 
| 80 | 
            +
            			);
         | 
| 81 | 
            +
            			path = ASTDump;
         | 
| 82 | 
            +
            			sourceTree = "<group>";
         | 
| 83 | 
            +
            		};
         | 
| 84 | 
            +
            		E80E07E91941280000E2B0B5 /* clang-c */ = {
         | 
| 85 | 
            +
            			isa = PBXGroup;
         | 
| 86 | 
            +
            			children = (
         | 
| 87 | 
            +
            				E80E07EA1941280000E2B0B5 /* BuildSystem.h */,
         | 
| 88 | 
            +
            				E80E07EB1941280000E2B0B5 /* CXCompilationDatabase.h */,
         | 
| 89 | 
            +
            				E80E07EC1941280000E2B0B5 /* CXErrorCode.h */,
         | 
| 90 | 
            +
            				E80E07ED1941280000E2B0B5 /* CXString.h */,
         | 
| 91 | 
            +
            				E80E07EE1941280000E2B0B5 /* Documentation.h */,
         | 
| 92 | 
            +
            				E80E07EF1941280000E2B0B5 /* Index.h */,
         | 
| 93 | 
            +
            				E80E07F11941280000E2B0B5 /* Platform.h */,
         | 
| 94 | 
            +
            			);
         | 
| 95 | 
            +
            			path = "clang-c";
         | 
| 96 | 
            +
            			sourceTree = "<group>";
         | 
| 97 | 
            +
            		};
         | 
| 98 | 
            +
            /* End PBXGroup section */
         | 
| 99 | 
            +
             | 
| 100 | 
            +
            /* Begin PBXNativeTarget section */
         | 
| 101 | 
            +
            		E80E07D0194125DB00E2B0B5 /* ASTDump */ = {
         | 
| 102 | 
            +
            			isa = PBXNativeTarget;
         | 
| 103 | 
            +
            			buildConfigurationList = E80E07DA194125DB00E2B0B5 /* Build configuration list for PBXNativeTarget "ASTDump" */;
         | 
| 104 | 
            +
            			buildPhases = (
         | 
| 105 | 
            +
            				E80E07CD194125DB00E2B0B5 /* Sources */,
         | 
| 106 | 
            +
            				E80E07CE194125DB00E2B0B5 /* Frameworks */,
         | 
| 107 | 
            +
            				E80E07F91941480C00E2B0B5 /* CopyFiles */,
         | 
| 108 | 
            +
            			);
         | 
| 109 | 
            +
            			buildRules = (
         | 
| 110 | 
            +
            			);
         | 
| 111 | 
            +
            			dependencies = (
         | 
| 112 | 
            +
            			);
         | 
| 113 | 
            +
            			name = ASTDump;
         | 
| 114 | 
            +
            			productName = ASTDump;
         | 
| 115 | 
            +
            			productReference = E80E07D1194125DB00E2B0B5 /* ASTDump */;
         | 
| 116 | 
            +
            			productType = "com.apple.product-type.tool";
         | 
| 117 | 
            +
            		};
         | 
| 118 | 
            +
            /* End PBXNativeTarget section */
         | 
| 119 | 
            +
             | 
| 120 | 
            +
            /* Begin PBXProject section */
         | 
| 121 | 
            +
            		E80E07C9194125DB00E2B0B5 /* Project object */ = {
         | 
| 122 | 
            +
            			isa = PBXProject;
         | 
| 123 | 
            +
            			attributes = {
         | 
| 124 | 
            +
            				CLASSPREFIX = "";
         | 
| 125 | 
            +
            				LastUpgradeCheck = 0510;
         | 
| 126 | 
            +
            				ORGANIZATIONNAME = "";
         | 
| 127 | 
            +
            			};
         | 
| 128 | 
            +
            			buildConfigurationList = E80E07CC194125DB00E2B0B5 /* Build configuration list for PBXProject "ASTDump" */;
         | 
| 129 | 
            +
            			compatibilityVersion = "Xcode 3.2";
         | 
| 130 | 
            +
            			developmentRegion = English;
         | 
| 131 | 
            +
            			hasScannedForEncodings = 0;
         | 
| 132 | 
            +
            			knownRegions = (
         | 
| 133 | 
            +
            				en,
         | 
| 134 | 
            +
            			);
         | 
| 135 | 
            +
            			mainGroup = E80E07C8194125DB00E2B0B5;
         | 
| 136 | 
            +
            			productRefGroup = E80E07D2194125DB00E2B0B5 /* Products */;
         | 
| 137 | 
            +
            			projectDirPath = "";
         | 
| 138 | 
            +
            			projectRoot = "";
         | 
| 139 | 
            +
            			targets = (
         | 
| 140 | 
            +
            				E80E07D0194125DB00E2B0B5 /* ASTDump */,
         | 
| 141 | 
            +
            			);
         | 
| 142 | 
            +
            		};
         | 
| 143 | 
            +
            /* End PBXProject section */
         | 
| 144 | 
            +
             | 
| 145 | 
            +
            /* Begin PBXSourcesBuildPhase section */
         | 
| 146 | 
            +
            		E80E07CD194125DB00E2B0B5 /* Sources */ = {
         | 
| 147 | 
            +
            			isa = PBXSourcesBuildPhase;
         | 
| 148 | 
            +
            			buildActionMask = 2147483647;
         | 
| 149 | 
            +
            			files = (
         | 
| 150 | 
            +
            				E80E07FD1941494700E2B0B5 /* JAZMusician.m in Sources */,
         | 
| 151 | 
            +
            				E80E07FC1941488500E2B0B5 /* main.cpp in Sources */,
         | 
| 152 | 
            +
            			);
         | 
| 153 | 
            +
            			runOnlyForDeploymentPostprocessing = 0;
         | 
| 154 | 
            +
            		};
         | 
| 155 | 
            +
            /* End PBXSourcesBuildPhase section */
         | 
| 156 | 
            +
             | 
| 157 | 
            +
            /* Begin XCBuildConfiguration section */
         | 
| 158 | 
            +
            		E80E07D8194125DB00E2B0B5 /* Debug */ = {
         | 
| 159 | 
            +
            			isa = XCBuildConfiguration;
         | 
| 160 | 
            +
            			buildSettings = {
         | 
| 161 | 
            +
            				ALWAYS_SEARCH_USER_PATHS = NO;
         | 
| 162 | 
            +
            				CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
         | 
| 163 | 
            +
            				CLANG_CXX_LIBRARY = "libc++";
         | 
| 164 | 
            +
            				CLANG_ENABLE_MODULES = YES;
         | 
| 165 | 
            +
            				CLANG_ENABLE_OBJC_ARC = YES;
         | 
| 166 | 
            +
            				CLANG_WARN_BOOL_CONVERSION = YES;
         | 
| 167 | 
            +
            				CLANG_WARN_CONSTANT_CONVERSION = YES;
         | 
| 168 | 
            +
            				CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
         | 
| 169 | 
            +
            				CLANG_WARN_EMPTY_BODY = YES;
         | 
| 170 | 
            +
            				CLANG_WARN_ENUM_CONVERSION = YES;
         | 
| 171 | 
            +
            				CLANG_WARN_INT_CONVERSION = YES;
         | 
| 172 | 
            +
            				CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
         | 
| 173 | 
            +
            				CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
         | 
| 174 | 
            +
            				COPY_PHASE_STRIP = NO;
         | 
| 175 | 
            +
            				GCC_C_LANGUAGE_STANDARD = gnu99;
         | 
| 176 | 
            +
            				GCC_DYNAMIC_NO_PIC = NO;
         | 
| 177 | 
            +
            				GCC_ENABLE_OBJC_EXCEPTIONS = YES;
         | 
| 178 | 
            +
            				GCC_OPTIMIZATION_LEVEL = 0;
         | 
| 179 | 
            +
            				GCC_PREPROCESSOR_DEFINITIONS = (
         | 
| 180 | 
            +
            					"DEBUG=1",
         | 
| 181 | 
            +
            					"$(inherited)",
         | 
| 182 | 
            +
            				);
         | 
| 183 | 
            +
            				GCC_SYMBOLS_PRIVATE_EXTERN = NO;
         | 
| 184 | 
            +
            				GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
         | 
| 185 | 
            +
            				GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
         | 
| 186 | 
            +
            				GCC_WARN_UNDECLARED_SELECTOR = YES;
         | 
| 187 | 
            +
            				GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
         | 
| 188 | 
            +
            				GCC_WARN_UNUSED_FUNCTION = YES;
         | 
| 189 | 
            +
            				GCC_WARN_UNUSED_VARIABLE = YES;
         | 
| 190 | 
            +
            				MACOSX_DEPLOYMENT_TARGET = 10.10;
         | 
| 191 | 
            +
            				ONLY_ACTIVE_ARCH = YES;
         | 
| 192 | 
            +
            				SDKROOT = macosx;
         | 
| 193 | 
            +
            			};
         | 
| 194 | 
            +
            			name = Debug;
         | 
| 195 | 
            +
            		};
         | 
| 196 | 
            +
            		E80E07D9194125DB00E2B0B5 /* Release */ = {
         | 
| 197 | 
            +
            			isa = XCBuildConfiguration;
         | 
| 198 | 
            +
            			buildSettings = {
         | 
| 199 | 
            +
            				ALWAYS_SEARCH_USER_PATHS = NO;
         | 
| 200 | 
            +
            				CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
         | 
| 201 | 
            +
            				CLANG_CXX_LIBRARY = "libc++";
         | 
| 202 | 
            +
            				CLANG_ENABLE_MODULES = YES;
         | 
| 203 | 
            +
            				CLANG_ENABLE_OBJC_ARC = YES;
         | 
| 204 | 
            +
            				CLANG_WARN_BOOL_CONVERSION = YES;
         | 
| 205 | 
            +
            				CLANG_WARN_CONSTANT_CONVERSION = YES;
         | 
| 206 | 
            +
            				CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
         | 
| 207 | 
            +
            				CLANG_WARN_EMPTY_BODY = YES;
         | 
| 208 | 
            +
            				CLANG_WARN_ENUM_CONVERSION = YES;
         | 
| 209 | 
            +
            				CLANG_WARN_INT_CONVERSION = YES;
         | 
| 210 | 
            +
            				CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
         | 
| 211 | 
            +
            				CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
         | 
| 212 | 
            +
            				COPY_PHASE_STRIP = YES;
         | 
| 213 | 
            +
            				DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
         | 
| 214 | 
            +
            				ENABLE_NS_ASSERTIONS = NO;
         | 
| 215 | 
            +
            				GCC_C_LANGUAGE_STANDARD = gnu99;
         | 
| 216 | 
            +
            				GCC_ENABLE_OBJC_EXCEPTIONS = YES;
         | 
| 217 | 
            +
            				GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
         | 
| 218 | 
            +
            				GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
         | 
| 219 | 
            +
            				GCC_WARN_UNDECLARED_SELECTOR = YES;
         | 
| 220 | 
            +
            				GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
         | 
| 221 | 
            +
            				GCC_WARN_UNUSED_FUNCTION = YES;
         | 
| 222 | 
            +
            				GCC_WARN_UNUSED_VARIABLE = YES;
         | 
| 223 | 
            +
            				MACOSX_DEPLOYMENT_TARGET = 10.10;
         | 
| 224 | 
            +
            				SDKROOT = macosx;
         | 
| 225 | 
            +
            			};
         | 
| 226 | 
            +
            			name = Release;
         | 
| 227 | 
            +
            		};
         | 
| 228 | 
            +
            		E80E07DB194125DB00E2B0B5 /* Debug */ = {
         | 
| 229 | 
            +
            			isa = XCBuildConfiguration;
         | 
| 230 | 
            +
            			buildSettings = {
         | 
| 231 | 
            +
            				HEADER_SEARCH_PATHS = (
         | 
| 232 | 
            +
            					"$(inherited)",
         | 
| 233 | 
            +
            					/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include,
         | 
| 234 | 
            +
            					"$(SRCROOT)/**",
         | 
| 235 | 
            +
            				);
         | 
| 236 | 
            +
            				LD_RUNPATH_SEARCH_PATHS = /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib;
         | 
| 237 | 
            +
            				LIBRARY_SEARCH_PATHS = (
         | 
| 238 | 
            +
            					"$(inherited)",
         | 
| 239 | 
            +
            					"$(DEVELOPER_DIR)/Toolchains/XcodeDefault.xctoolchain/usr/lib",
         | 
| 240 | 
            +
            				);
         | 
| 241 | 
            +
            				MACOSX_DEPLOYMENT_TARGET = 10.9;
         | 
| 242 | 
            +
            				PRODUCT_NAME = "$(TARGET_NAME)";
         | 
| 243 | 
            +
            			};
         | 
| 244 | 
            +
            			name = Debug;
         | 
| 245 | 
            +
            		};
         | 
| 246 | 
            +
            		E80E07DC194125DB00E2B0B5 /* Release */ = {
         | 
| 247 | 
            +
            			isa = XCBuildConfiguration;
         | 
| 248 | 
            +
            			buildSettings = {
         | 
| 249 | 
            +
            				HEADER_SEARCH_PATHS = (
         | 
| 250 | 
            +
            					"$(inherited)",
         | 
| 251 | 
            +
            					/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include,
         | 
| 252 | 
            +
            					"$(SRCROOT)/**",
         | 
| 253 | 
            +
            				);
         | 
| 254 | 
            +
            				LD_RUNPATH_SEARCH_PATHS = /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib;
         | 
| 255 | 
            +
            				LIBRARY_SEARCH_PATHS = (
         | 
| 256 | 
            +
            					"$(inherited)",
         | 
| 257 | 
            +
            					"$(DEVELOPER_DIR)/Toolchains/XcodeDefault.xctoolchain/usr/lib",
         | 
| 258 | 
            +
            				);
         | 
| 259 | 
            +
            				MACOSX_DEPLOYMENT_TARGET = 10.9;
         | 
| 260 | 
            +
            				PRODUCT_NAME = "$(TARGET_NAME)";
         | 
| 261 | 
            +
            			};
         | 
| 262 | 
            +
            			name = Release;
         | 
| 263 | 
            +
            		};
         | 
| 264 | 
            +
            /* End XCBuildConfiguration section */
         | 
| 265 | 
            +
             | 
| 266 | 
            +
            /* Begin XCConfigurationList section */
         | 
| 267 | 
            +
            		E80E07CC194125DB00E2B0B5 /* Build configuration list for PBXProject "ASTDump" */ = {
         | 
| 268 | 
            +
            			isa = XCConfigurationList;
         | 
| 269 | 
            +
            			buildConfigurations = (
         | 
| 270 | 
            +
            				E80E07D8194125DB00E2B0B5 /* Debug */,
         | 
| 271 | 
            +
            				E80E07D9194125DB00E2B0B5 /* Release */,
         | 
| 272 | 
            +
            			);
         | 
| 273 | 
            +
            			defaultConfigurationIsVisible = 0;
         | 
| 274 | 
            +
            			defaultConfigurationName = Release;
         | 
| 275 | 
            +
            		};
         | 
| 276 | 
            +
            		E80E07DA194125DB00E2B0B5 /* Build configuration list for PBXNativeTarget "ASTDump" */ = {
         | 
| 277 | 
            +
            			isa = XCConfigurationList;
         | 
| 278 | 
            +
            			buildConfigurations = (
         | 
| 279 | 
            +
            				E80E07DB194125DB00E2B0B5 /* Debug */,
         | 
| 280 | 
            +
            				E80E07DC194125DB00E2B0B5 /* Release */,
         | 
| 281 | 
            +
            			);
         | 
| 282 | 
            +
            			defaultConfigurationIsVisible = 0;
         | 
| 283 | 
            +
            			defaultConfigurationName = Release;
         | 
| 284 | 
            +
            		};
         | 
| 285 | 
            +
            /* End XCConfigurationList section */
         | 
| 286 | 
            +
            	};
         | 
| 287 | 
            +
            	rootObject = E80E07C9194125DB00E2B0B5 /* Project object */;
         | 
| 288 | 
            +
            }
         |