Skip to content

Commit fcb6d0d

Browse files
committed
all: initial commit
0 parents  commit fcb6d0d

19 files changed

+1027
-0
lines changed

.gitignore

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
.DS_Store
2+
*.xcuserdatad
3+
xcuserdata/
4+
5+
*.xcodeproj/*
6+
!*.xcodeproj/project.pbxproj
7+
!*.xcodeproj/xcshareddata/
8+
!*.xcworkspace/contents.xcworkspacedata
9+
/*.gcno
10+
11+
.swiftpm/
12+
.build/

BatchExtension.podspec

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
Pod::Spec.new do |spec|
2+
3+
spec.name = "BatchExtension"
4+
spec.version = "2.0.0"
5+
spec.summary = "Batch.com iOS SDK for App Extensions."
6+
spec.homepage = "https://batch.com"
7+
spec.license = { :type => "MIT", :file => "LICENSE" }
8+
spec.author = { "Batch.com" => "[email protected]" }
9+
10+
spec.platform = :ios, "10.0"
11+
spec.source = { :git => "https://github.com/BatchLabs/Batch-iOS-SDK-Extension.git", :tag => "#{spec.version}" }
12+
13+
spec.requires_arc = true
14+
spec.source_files = "Sources", "Sources/**/*.{h,m}", "Sources/**/*.swift"
15+
spec.public_header_files = "Classes/**/*.h"
16+
end

0 commit comments

Comments
 (0)