Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

AcraWriter: prepare for publishing pod #235

Merged
merged 3 commits into from
Aug 8, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,10 @@ xcuserdata
*.swp

# ios projects
wrappers/objc/DerivedData
wrappers/objc/AcraWriter/DerivedData
wrappers/objc/AcraWriter/Example/Pods
wrappers/objc/AcraWriter/Example/DerivedData
wrappers/objc/Example/Pods
wrappers/objc/Example/DerivedData


# Python
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ Pod::Spec.new do |s|
s.summary = "AcraWriter library for iOS: encrypts data into AcraStructs, allowing Acra to decrypt it"
s.description = "Part of Acra database protection suite: developers can encrypt the sensitive data by generating AcraStructs with AcraWriter anywhere across their apps. AcraServer or AcraTranslator can be used for decryption."
s.homepage = "https://cossacklabs.com"
s.license = { :type => 'Apache 2.0', :file => '../../../LICENSE'}
s.source = { :git => "https://github.com/cossacklabs/acra.git", :tag => "#{s.version}" }
s.source = { :git => "https://github.com/cossacklabs/acra.git", :branch => 'master'}
s.license = { :type => 'Apache 2.0'}
s.author = {'cossacklabs' => '[email protected]'}

s.dependency 'themis', '0.10.0'
Expand All @@ -15,8 +15,8 @@ Pod::Spec.new do |s|

s.ios.frameworks = 'UIKit', 'Foundation', 'CoreFoundation'

s.source_files = "AcraWriter/*.{h,m}"
s.public_header_files = "AcraWriter/AcraWriter.h", "AcraWriter/AcraStruct.h"
s.source_files = "wrappers/objc/AcraWriter/*.{h,m}"
s.public_header_files = "wrappers/objc/AcraWriter/AcraWriter.h", "wrappers/objc/AcraWriter/AcraStruct.h"

s.ios.xcconfig = { 'OTHER_CFLAGS' => '-DLIBRESSL', 'USE_HEADERMAP' => 'NO',
'HEADER_SEARCH_PATHS' => '"${PODS_ROOT}/themis/src" "${PODS_ROOT}/themis/src/wrappers/themis/Obj-C"', 'CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES' => 'YES' }
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,99 @@
<?xml version="1.0" encoding="UTF-8"?>
<Scheme
LastUpgradeVersion = "0940"
version = "1.3">
<BuildAction
parallelizeBuildables = "YES"
buildImplicitDependencies = "YES">
<BuildActionEntries>
<BuildActionEntry
buildForTesting = "YES"
buildForRunning = "YES"
buildForProfiling = "YES"
buildForArchiving = "YES"
buildForAnalyzing = "YES">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "732D83C7211335930003A087"
BuildableName = "AcraWriter.framework"
BlueprintName = "AcraWriter"
ReferencedContainer = "container:AcraWriter.xcodeproj">
</BuildableReference>
</BuildActionEntry>
</BuildActionEntries>
</BuildAction>
<TestAction
buildConfiguration = "Debug"
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
shouldUseLaunchSchemeArgsEnv = "YES">
<Testables>
<TestableReference
skipped = "NO">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "732D83D0211335940003A087"
BuildableName = "AcraWriterTests.xctest"
BlueprintName = "AcraWriterTests"
ReferencedContainer = "container:AcraWriter.xcodeproj">
</BuildableReference>
</TestableReference>
</Testables>
<MacroExpansion>
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "732D83C7211335930003A087"
BuildableName = "AcraWriter.framework"
BlueprintName = "AcraWriter"
ReferencedContainer = "container:AcraWriter.xcodeproj">
</BuildableReference>
</MacroExpansion>
<AdditionalOptions>
</AdditionalOptions>
</TestAction>
<LaunchAction
buildConfiguration = "Debug"
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
launchStyle = "0"
useCustomWorkingDirectory = "NO"
ignoresPersistentStateOnLaunch = "NO"
debugDocumentVersioning = "YES"
debugServiceExtension = "internal"
allowLocationSimulation = "YES">
<MacroExpansion>
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "732D83C7211335930003A087"
BuildableName = "AcraWriter.framework"
BlueprintName = "AcraWriter"
ReferencedContainer = "container:AcraWriter.xcodeproj">
</BuildableReference>
</MacroExpansion>
<AdditionalOptions>
</AdditionalOptions>
</LaunchAction>
<ProfileAction
buildConfiguration = "Release"
shouldUseLaunchSchemeArgsEnv = "YES"
savedToolIdentifier = ""
useCustomWorkingDirectory = "NO"
debugDocumentVersioning = "YES">
<MacroExpansion>
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "732D83C7211335930003A087"
BuildableName = "AcraWriter.framework"
BlueprintName = "AcraWriter"
ReferencedContainer = "container:AcraWriter.xcodeproj">
</BuildableReference>
</MacroExpansion>
</ProfileAction>
<AnalyzeAction
buildConfiguration = "Debug">
</AnalyzeAction>
<ArchiveAction
buildConfiguration = "Release"
revealArchiveInOrganizer = "YES">
</ArchiveAction>
</Scheme>
15 changes: 0 additions & 15 deletions wrappers/objc/AcraWriter/Example/Podfile

This file was deleted.

Loading