-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit f30be97
Showing
23 changed files
with
1,373 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
# OS X | ||
.DS_Store | ||
|
||
# Xcode | ||
build/ | ||
*.pbxuser | ||
!default.pbxuser | ||
*.mode1v3 | ||
!default.mode1v3 | ||
*.mode2v3 | ||
!default.mode2v3 | ||
*.perspectivev3 | ||
!default.perspectivev3 | ||
xcuserdata/ | ||
*.xccheckout | ||
profile | ||
*.moved-aside | ||
DerivedData | ||
*.hmap | ||
*.ipa | ||
.build | ||
.swiftpm | ||
Package.resolved | ||
|
||
# Bundler | ||
.bundle | ||
|
||
Carthage | ||
# We recommend against adding the Pods directory to your .gitignore. However | ||
# you should judge for yourself, the pros and cons are mentioned at: | ||
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-ignore-the-pods-directory-in-source-control | ||
# | ||
# Note: if you ignore the Pods directory, make sure to uncomment | ||
# `pod install` in .travis.yml | ||
# | ||
Example/Pods/ | ||
.scannerwork/ |
16 changes: 16 additions & 0 deletions
16
...ixpanelObjcDispatcher.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{ | ||
"object": { | ||
"pins": [ | ||
{ | ||
"package": "InstantMock", | ||
"repositoryURL": "https://github.com/pirishd/InstantMock", | ||
"state": { | ||
"branch": null, | ||
"revision": "5172aedc823dcefd9a3e2d0aedf9b51b000dabb2", | ||
"version": "2.5.5" | ||
} | ||
} | ||
] | ||
}, | ||
"version": 1 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
Pod::Spec.new do |s| | ||
s.name = 'BatchMixpanelSwiftDispatcher' | ||
s.version = '1.0.0' | ||
s.summary = 'Batch.com Events Dispatcher Mixpanel (Swift) implementation.' | ||
|
||
s.description = <<-DESC | ||
A ready-to-go event dispatcher for the Mixpanel Swift SDK. Requires the Batch iOS SDK. | ||
DESC | ||
|
||
s.homepage = 'https://batch.com' | ||
s.license = { :type => 'MIT' } | ||
s.author = { 'Batch.com' => 'support@batch.com' } | ||
s.source = { :git => 'https://github.com/BatchLabs/Batch-iOS-mixpanel-swift-dispatcher.git', :tag => s.version.to_s } | ||
|
||
s.ios.deployment_target = '10.0' | ||
s.platforms = { | ||
"ios" => "10.0" | ||
} | ||
|
||
s.requires_arc = true | ||
s.static_framework = true | ||
|
||
s.dependency 'Batch', '~> 1.16' | ||
s.dependency 'Mixpanel-swift' | ||
|
||
s.source_files = 'BatchMixpanelSwiftDispatcher/Classes/**/*' | ||
end |
Oops, something went wrong.