From 570dc142cff5170572554bde320d08e4d6a709e5 Mon Sep 17 00:00:00 2001 From: Paul Cantrell Date: Tue, 16 Aug 2016 23:58:52 -0500 Subject: [PATCH] Fixed wildcards in exclude --- misc_jazzy_features/after/execution_output.txt | 3 ++- misc_jazzy_features/before/.jazzy.yaml | 1 + .../before/MiscJazzyFeatures.xcodeproj/project.pbxproj | 5 +++++ misc_jazzy_features/before/MiscJazzyFeatures/Ignored.swift | 1 + 4 files changed, 9 insertions(+), 1 deletion(-) create mode 100644 misc_jazzy_features/before/MiscJazzyFeatures/Ignored.swift diff --git a/misc_jazzy_features/after/execution_output.txt b/misc_jazzy_features/after/execution_output.txt index c0549f82d..5adadef7d 100644 --- a/misc_jazzy_features/after/execution_output.txt +++ b/misc_jazzy_features/after/execution_output.txt @@ -1,6 +1,7 @@ COCOAPODS_SKIP_UPDATE_MESSAGE=TRUE JAZZY_FAKE_DATE=YYYY-MM-DD JAZZY_FAKE_VERSION=X.X.X JAZZY_INTEGRATION_SPECS=TRUE ruby ROOT/bin/jazzy 2>&1 Using config file ROOT/tmp/misc_jazzy_features/.jazzy.yaml Running xcodebuild -Parsing Classes.swift (1/1) +Parsing Ignored.swift (1/2) +Parsing Classes.swift (2/2) building site jam out ♪♫ to your fresh new docs in `docs` diff --git a/misc_jazzy_features/before/.jazzy.yaml b/misc_jazzy_features/before/.jazzy.yaml index a961de5bb..dc190c897 100644 --- a/misc_jazzy_features/before/.jazzy.yaml +++ b/misc_jazzy_features/before/.jazzy.yaml @@ -9,6 +9,7 @@ abstract: Sections/*.md xcodebuild_arguments: - '-dry-run' theme: fullwidth +exclude: "*gnor*" custom_categories: - name: Guides diff --git a/misc_jazzy_features/before/MiscJazzyFeatures.xcodeproj/project.pbxproj b/misc_jazzy_features/before/MiscJazzyFeatures.xcodeproj/project.pbxproj index 447e0359e..56413771c 100644 --- a/misc_jazzy_features/before/MiscJazzyFeatures.xcodeproj/project.pbxproj +++ b/misc_jazzy_features/before/MiscJazzyFeatures.xcodeproj/project.pbxproj @@ -7,11 +7,13 @@ objects = { /* Begin PBXBuildFile section */ + DAC0B3791D64236300D25C44 /* Ignored.swift in Sources */ = {isa = PBXBuildFile; fileRef = DAC0B3781D64236300D25C44 /* Ignored.swift */; }; E87420B91A02D0E1009F74E1 /* MiscJazzyFeatures.h in Headers */ = {isa = PBXBuildFile; fileRef = E87420B81A02D0E1009F74E1 /* MiscJazzyFeatures.h */; settings = {ATTRIBUTES = (Public, ); }; }; E87420D01A02D125009F74E1 /* Classes.swift in Sources */ = {isa = PBXBuildFile; fileRef = E87420CF1A02D125009F74E1 /* Classes.swift */; }; /* End PBXBuildFile section */ /* Begin PBXFileReference section */ + DAC0B3781D64236300D25C44 /* Ignored.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Ignored.swift; sourceTree = ""; }; E87420B31A02D0E1009F74E1 /* MiscJazzyFeatures.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = MiscJazzyFeatures.framework; sourceTree = BUILT_PRODUCTS_DIR; }; E87420B71A02D0E1009F74E1 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; E87420B81A02D0E1009F74E1 /* MiscJazzyFeatures.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MiscJazzyFeatures.h; sourceTree = ""; }; @@ -50,6 +52,7 @@ children = ( E87420B81A02D0E1009F74E1 /* MiscJazzyFeatures.h */, E87420CF1A02D125009F74E1 /* Classes.swift */, + DAC0B3781D64236300D25C44 /* Ignored.swift */, E87420B61A02D0E1009F74E1 /* Supporting Files */, ); path = MiscJazzyFeatures; @@ -101,6 +104,7 @@ E87420AA1A02D0E1009F74E1 /* Project object */ = { isa = PBXProject; attributes = { + LastSwiftUpdateCheck = 0730; LastUpgradeCheck = 0610; ORGANIZATIONNAME = Realm; TargetAttributes = { @@ -141,6 +145,7 @@ isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( + DAC0B3791D64236300D25C44 /* Ignored.swift in Sources */, E87420D01A02D125009F74E1 /* Classes.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; diff --git a/misc_jazzy_features/before/MiscJazzyFeatures/Ignored.swift b/misc_jazzy_features/before/MiscJazzyFeatures/Ignored.swift new file mode 100644 index 000000000..8218cfdbd --- /dev/null +++ b/misc_jazzy_features/before/MiscJazzyFeatures/Ignored.swift @@ -0,0 +1 @@ +class ThisWholeFileShouldBeIgnored { }