Skip to content

Commit f30be97

Browse files
committed
initial commit
0 parents  commit f30be97

File tree

23 files changed

+1373
-0
lines changed

23 files changed

+1373
-0
lines changed

.gitignore

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
# OS X
2+
.DS_Store
3+
4+
# Xcode
5+
build/
6+
*.pbxuser
7+
!default.pbxuser
8+
*.mode1v3
9+
!default.mode1v3
10+
*.mode2v3
11+
!default.mode2v3
12+
*.perspectivev3
13+
!default.perspectivev3
14+
xcuserdata/
15+
*.xccheckout
16+
profile
17+
*.moved-aside
18+
DerivedData
19+
*.hmap
20+
*.ipa
21+
.build
22+
.swiftpm
23+
Package.resolved
24+
25+
# Bundler
26+
.bundle
27+
28+
Carthage
29+
# We recommend against adding the Pods directory to your .gitignore. However
30+
# you should judge for yourself, the pros and cons are mentioned at:
31+
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-ignore-the-pods-directory-in-source-control
32+
#
33+
# Note: if you ignore the Pods directory, make sure to uncomment
34+
# `pod install` in .travis.yml
35+
#
36+
Example/Pods/
37+
.scannerwork/

BatchMixpanelObjcDispatcher.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved

Lines changed: 16 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
Pod::Spec.new do |s|
2+
s.name = 'BatchMixpanelSwiftDispatcher'
3+
s.version = '1.0.0'
4+
s.summary = 'Batch.com Events Dispatcher Mixpanel (Swift) implementation.'
5+
6+
s.description = <<-DESC
7+
A ready-to-go event dispatcher for the Mixpanel Swift SDK. Requires the Batch iOS SDK.
8+
DESC
9+
10+
s.homepage = 'https://batch.com'
11+
s.license = { :type => 'MIT' }
12+
s.author = { 'Batch.com' => '[email protected]' }
13+
s.source = { :git => 'https://github.com/BatchLabs/Batch-iOS-mixpanel-swift-dispatcher.git', :tag => s.version.to_s }
14+
15+
s.ios.deployment_target = '10.0'
16+
s.platforms = {
17+
"ios" => "10.0"
18+
}
19+
20+
s.requires_arc = true
21+
s.static_framework = true
22+
23+
s.dependency 'Batch', '~> 1.16'
24+
s.dependency 'Mixpanel-swift'
25+
26+
s.source_files = 'BatchMixpanelSwiftDispatcher/Classes/**/*'
27+
end

0 commit comments

Comments
 (0)