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

Swift package manager #1

Merged
merged 5 commits into from
Nov 26, 2021
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
7 changes: 7 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -67,3 +67,10 @@ fastlane/Preview.html
fastlane/screenshots
fastlane/test_output
*.DS_Store
.DS_Store
/.build
/Packages
/*.xcodeproj
xcuserdata/
DerivedData/
.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata
8 changes: 4 additions & 4 deletions GKBaseKit.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Pod::Spec.new do |s|

s.name = 'GKBaseKit'
s.version = '1.0.1'
s.version = '2.0.0'
s.summary = 'GKBaseKit framework.'
s.description = <<-DESC
* GKBaseKit framework
Expand All @@ -14,10 +14,10 @@ Pod::Spec.new do |s|
s.ios.deployment_target = '9.0'
s.source = { :git => 'https://github.com/gligorkot/GKBaseKit.git', :tag => s.version.to_s }

s.source_files = 'Classes/**', 'Classes/**/*.{swift}'
s.pod_target_xcconfig = { 'SWIFT_VERSION' => '5.2' }
s.source_files = 'Sources/GKBaseKit/**/*'
s.pod_target_xcconfig = { 'SWIFT_VERSION' => '5.5' }

s.requires_arc = true
s.swift_versions = ['4.0', '4.1', '4.2', '5.0', '5.1', '5.2']
s.swift_versions = ['4.0', '4.1', '4.2', '5.0', '5.1', '5.2', '5.3', '5.4', '5.5']

end
601 changes: 0 additions & 601 deletions GKBaseKitExample/GKBaseKitExample.xcodeproj/project.pbxproj

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

46 changes: 0 additions & 46 deletions GKBaseKitExample/GKBaseKitExample/AppDelegate.swift

This file was deleted.

This file was deleted.

Loading