Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
abarisain committed Dec 22, 2020
0 parents commit f30be97
Show file tree
Hide file tree
Showing 23 changed files with 1,373 additions and 0 deletions.
37 changes: 37 additions & 0 deletions .gitignore
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/
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
}
27 changes: 27 additions & 0 deletions BatchMixpanelSwiftDispatcher.podspec
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
Loading

0 comments on commit f30be97

Please sign in to comment.