diff --git a/iOS-Base-Library/iOS-Base-Library.xcodeproj/project.pbxproj b/iOS-Base-Library/iOS-Base-Library.xcodeproj/project.pbxproj index fc1fbd9a..41a9e2d6 100644 --- a/iOS-Base-Library/iOS-Base-Library.xcodeproj/project.pbxproj +++ b/iOS-Base-Library/iOS-Base-Library.xcodeproj/project.pbxproj @@ -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; diff --git a/iOS-Base-Library/Копия Podfile b/iOS-Base-Library/Копия Podfile new file mode 100644 index 00000000..6d1af3c4 --- /dev/null +++ b/iOS-Base-Library/Копия Podfile @@ -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 \ No newline at end of file