-
Notifications
You must be signed in to change notification settings - Fork 333
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from iwasrobbed/master
Sync base with fork
- Loading branch information
Showing
21 changed files
with
200 additions
and
898 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,10 @@ | ||
osx_image: xcode8 | ||
language: objective-c | ||
before_install: | ||
before_install: | ||
- gem install xcpretty slather -N | ||
- xcrun instruments -w "iPhone 5 (9.3)" || echo "(Pre)Launched the simulator." | ||
script: | ||
- set -o pipefail && xcodebuild test -project Down.xcodeproj -scheme "Down-iOS" -destination "platform=iOS Simulator,name=iPhone 5,OS=9.3" -enableCodeCoverage YES ONLY_ACTIVE_ARCH=YES | xcpretty -c | ||
- set -o pipefail && xcodebuild -project Down.xcodeproj -scheme "DownTests-macOS" -sdk macosx -destination 'platform=OS X,arch=x86_64' test | xcpretty -c | ||
- set -o pipefail && xcodebuild -project Down.xcodeproj -scheme "Down" -destination "platform=iOS Simulator,name=iPhone 5,OS=9.3" -enableCodeCoverage YES ONLY_ACTIVE_ARCH=YES test | xcpretty -c | ||
- set -o pipefail && xcodebuild -project Down.xcodeproj -scheme "Down" -sdk macosx -destination 'platform=OS X,arch=x86_64' -enableCodeCoverage YES test | xcpretty -c | ||
after_success: | ||
- slather coverage --ignore "../**/*/Xcode*" --ignore "Source/cmark/*" --scheme "Down-iOS" Down.xcodeproj | ||
- slather coverage --ignore "../**/*/Xcode*" --ignore "Source/cmark/*" --scheme "Down-macOS" Down.xcodeproj | ||
- slather coverage --ignore "../**/*/Xcode*" --ignore "Source/cmark/*" --scheme "Down" Down.xcodeproj |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
Pod::Spec.new do |spec| | ||
spec.name = "Down" | ||
spec.summary = "Blazing fast Markdown rendering in Swift, built upon cmark." | ||
spec.version = "0.3.2" | ||
spec.version = "0.3.4" | ||
spec.homepage = "https://github.com/iwasrobbed/Down" | ||
spec.license = { :type => "MIT", :file => "LICENSE" } | ||
spec.authors = { "Rob Phillips" => "[email protected]" } | ||
|
Large diffs are not rendered by default.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
56 changes: 0 additions & 56 deletions
56
Down.xcodeproj/xcshareddata/xcschemes/DownTests-macOS.xcscheme
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
IPHONEOS_DEPLOYMENT_TARGET = 8.0 | ||
MACOSX_DEPLOYMENT_TARGET = 10.12 | ||
TVOS_DEPLOYMENT_TARGET = 9.0 | ||
WATCHOS_DEPLOYMENT_TARGET = 3.0 |
25 changes: 25 additions & 0 deletions
25
Resources/Configurations/Universal-Framework-Target.xcconfig
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
#include "Universal-Target-Base.xcconfig" | ||
|
||
// OSX-specific default settings | ||
FRAMEWORK_VERSION[sdk=macosx*] = A | ||
COMBINE_HIDPI_IMAGES[sdk=macosx*] = YES | ||
|
||
// iOS-specific default settings | ||
TARGETED_DEVICE_FAMILY[sdk=iphonesimulator*] = 1,2 | ||
TARGETED_DEVICE_FAMILY[sdk=iphone*] = 1,2 | ||
|
||
// TV-specific default settings | ||
TARGETED_DEVICE_FAMILY[sdk=appletvsimulator*] = 3 | ||
TARGETED_DEVICE_FAMILY[sdk=appletv*] = 3 | ||
|
||
// Watch-specific default settings | ||
TARGETED_DEVICE_FAMILY[sdk=watchsimulator*] = 4 | ||
TARGETED_DEVICE_FAMILY[sdk=watch*] = 4 | ||
|
||
ENABLE_BITCODE[sdk=macosx*] = NO | ||
ENABLE_BITCODE[sdk=watchsimulator*] = YES | ||
ENABLE_BITCODE[sdk=watch*] = YES | ||
ENABLE_BITCODE[sdk=iphonesimulator*] = NO | ||
ENABLE_BITCODE[sdk=iphone*] = YES | ||
ENABLE_BITCODE[sdk=appletvsimulator*] = YES | ||
ENABLE_BITCODE[sdk=appletv*] = YES |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
SUPPORTED_PLATFORMS = macosx iphonesimulator iphoneos watchos watchsimulator appletvos appletvsimulator | ||
VALID_ARCHS[sdk=macosx*] = i386 x86_64 | ||
VALID_ARCHS[sdk=iphoneos*] = arm64 armv7 armv7s | ||
VALID_ARCHS[sdk=iphonesimulator*] = i386 x86_64 | ||
VALID_ARCHS[sdk=watchos*] = armv7k | ||
VALID_ARCHS[sdk=watchsimulator*] = i386 | ||
VALID_ARCHS[sdk=appletv*] = arm64 | ||
VALID_ARCHS[sdk=appletvsimulator*] = x86_64 | ||
|
||
// Dynamic linking uses different default copy paths | ||
LD_RUNPATH_SEARCH_PATHS[sdk=macosx*] = $(inherited) '@executable_path/../Frameworks' '@loader_path/../Frameworks' | ||
LD_RUNPATH_SEARCH_PATHS[sdk=iphoneos*] = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' | ||
LD_RUNPATH_SEARCH_PATHS[sdk=iphonesimulator*] = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' | ||
LD_RUNPATH_SEARCH_PATHS[sdk=watchos*] = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' | ||
LD_RUNPATH_SEARCH_PATHS[sdk=watchsimulator*] = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' | ||
LD_RUNPATH_SEARCH_PATHS[sdk=appletvos*] = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' | ||
LD_RUNPATH_SEARCH_PATHS[sdk=appletvsimulator*] = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' | ||
|
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.