add scripts for analizators
This commit is contained in:
parent
1e84726697
commit
87983ba59c
|
|
@ -101,6 +101,8 @@
|
|||
952A63871C5408AC00E3572C /* Resources */,
|
||||
FCFE4B565A7903B741E3244E /* Embed Pods Frameworks */,
|
||||
05526FCA226DE1CD8B67E2DA /* Copy Pods Resources */,
|
||||
952A639E1C540E4D00E3572C /* Tailor */,
|
||||
952A639F1C540E4F00E3572C /* Swiftline */,
|
||||
);
|
||||
buildRules = (
|
||||
);
|
||||
|
|
@ -188,6 +190,34 @@
|
|||
shellScript = "diff \"${PODS_ROOT}/../Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [[ $? != 0 ]] ; then\n cat << EOM\nerror: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\nEOM\n exit 1\nfi\n";
|
||||
showEnvVarsInLog = 0;
|
||||
};
|
||||
952A639E1C540E4D00E3572C /* Tailor */ = {
|
||||
isa = PBXShellScriptBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
);
|
||||
inputPaths = (
|
||||
);
|
||||
name = Tailor;
|
||||
outputPaths = (
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
shellPath = /bin/sh;
|
||||
shellScript = "if hash tailor 2>/dev/null; then\n tailor\nelse\n echo \"warning: Please install Tailor from https://tailor.sh\"\nfi\n\ninclude:\n- Source # Inspect all Swift files under \"Source/\"\nexclude:\n- '**Tests.swift' # Ignore Swift files that end in \"Tests\"\n- Source/Carthage # Ignore Swift files under \"Source/Carthage/\"\n- Source/Pods # Ignore Swift files under \"Source/Pods/\"";
|
||||
};
|
||||
952A639F1C540E4F00E3572C /* Swiftline */ = {
|
||||
isa = PBXShellScriptBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
);
|
||||
inputPaths = (
|
||||
);
|
||||
name = Swiftline;
|
||||
outputPaths = (
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
shellPath = /bin/sh;
|
||||
shellScript = "if which swiftlint >/dev/null; then\n swiftlint\nelse\n echo \"SwiftLint does not exist, download from https://github.com/realm/SwiftLint\"\nfi";
|
||||
};
|
||||
FCFE4B565A7903B741E3244E /* Embed Pods Frameworks */ = {
|
||||
isa = PBXShellScriptBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
|
|
|
|||
|
|
@ -0,0 +1,9 @@
|
|||
# Uncomment this line to define a global platform for your project
|
||||
# platform :ios, '8.0'
|
||||
# Uncomment this line if you're using Swift
|
||||
use_frameworks!
|
||||
inhibit_all_warnings!
|
||||
|
||||
target 'iOS-Base-Library' do
|
||||
pod 'Alamofire', '~> 3.0'
|
||||
end
|
||||
Loading…
Reference in New Issue