Skip to content

Commit

Permalink
Carthage support
Browse files Browse the repository at this point in the history
Set Swift compiler to 4 for new target & added Eureka 4.0.1 as dependency
  • Loading branch information
Marco Betschart committed Dec 6, 2017
1 parent aaa5657 commit 6d622e6
Show file tree
Hide file tree
Showing 7 changed files with 352 additions and 12 deletions.
5 changes: 3 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ Pods/
# Carthage
#
# Add this line if you want to avoid checking in source code from Carthage dependencies.

Carthage/
Cartfile.resolved

Carthage/Build
Frameworks/
1 change: 1 addition & 0 deletions Cartfile
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
github "xmartlabs/Eureka" ~> 4.0
1 change: 1 addition & 0 deletions Cartfile.resolved
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
github "xmartlabs/Eureka" "9678ff95edd7b217ecb73c02938ce47d206cb03d"
232 changes: 222 additions & 10 deletions SuggestionRow.xcodeproj/project.pbxproj

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -0,0 +1,82 @@
<?xml version="1.0" encoding="UTF-8"?>
<Scheme
LastUpgradeVersion = "0910"
version = "1.3">
<BuildAction
parallelizeBuildables = "YES"
buildImplicitDependencies = "YES">
<BuildActionEntries>
<BuildActionEntry
buildForTesting = "YES"
buildForRunning = "YES"
buildForProfiling = "YES"
buildForArchiving = "YES"
buildForAnalyzing = "YES">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "79E4A8241FD82BF50023D6B6"
BuildableName = "SuggestionRow.framework"
BlueprintName = "SuggestionRow"
ReferencedContainer = "container:SuggestionRow.xcodeproj">
</BuildableReference>
</BuildActionEntry>
</BuildActionEntries>
</BuildAction>
<TestAction
buildConfiguration = "Debug"
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
language = ""
shouldUseLaunchSchemeArgsEnv = "YES">
<Testables>
</Testables>
<AdditionalOptions>
</AdditionalOptions>
</TestAction>
<LaunchAction
buildConfiguration = "Debug"
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
language = ""
launchStyle = "0"
useCustomWorkingDirectory = "NO"
ignoresPersistentStateOnLaunch = "NO"
debugDocumentVersioning = "YES"
debugServiceExtension = "internal"
allowLocationSimulation = "YES">
<MacroExpansion>
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "79E4A8241FD82BF50023D6B6"
BuildableName = "SuggestionRow.framework"
BlueprintName = "SuggestionRow"
ReferencedContainer = "container:SuggestionRow.xcodeproj">
</BuildableReference>
</MacroExpansion>
<AdditionalOptions>
</AdditionalOptions>
</LaunchAction>
<ProfileAction
buildConfiguration = "Release"
shouldUseLaunchSchemeArgsEnv = "YES"
savedToolIdentifier = ""
useCustomWorkingDirectory = "NO"
debugDocumentVersioning = "YES">
<MacroExpansion>
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "79E4A8241FD82BF50023D6B6"
BuildableName = "SuggestionRow.framework"
BlueprintName = "SuggestionRow"
ReferencedContainer = "container:SuggestionRow.xcodeproj">
</BuildableReference>
</MacroExpansion>
</ProfileAction>
<AnalyzeAction
buildConfiguration = "Debug">
</AnalyzeAction>
<ArchiveAction
buildConfiguration = "Release"
revealArchiveInOrganizer = "YES">
</ArchiveAction>
</Scheme>
24 changes: 24 additions & 0 deletions SuggestionRow/Info.plist
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>$(DEVELOPMENT_LANGUAGE)</string>
<key>CFBundleExecutable</key>
<string>$(EXECUTABLE_NAME)</string>
<key>CFBundleIdentifier</key>
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>$(PRODUCT_NAME)</string>
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
<key>NSPrincipalClass</key>
<string></string>
</dict>
</plist>
19 changes: 19 additions & 0 deletions SuggestionRow/SuggestionRow.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
//
// SuggestionRow.h
// SuggestionRow
//
// Created by Marco Betschart on 06.12.17.
// Copyright © 2017 Helene Martin. All rights reserved.
//

#import <UIKit/UIKit.h>

//! Project version number for SuggestionRow.
FOUNDATION_EXPORT double SuggestionRowVersionNumber;

//! Project version string for SuggestionRow.
FOUNDATION_EXPORT const unsigned char SuggestionRowVersionString[];

// In this header, you should import all the public headers of your framework using statements like #import <SuggestionRow/PublicHeader.h>


0 comments on commit 6d622e6

Please sign in to comment.