Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
gouyelliot authored and abarisain committed Mar 6, 2020
0 parents commit d4970fb
Show file tree
Hide file tree
Showing 37 changed files with 2,248 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# OS X
.DS_Store

# Xcode
build/
*.pbxuser
!default.pbxuser
*.mode1v3
!default.mode1v3
*.mode2v3
!default.mode2v3
*.perspectivev3
!default.perspectivev3
xcuserdata/
xcshareddata/
*.xccheckout
profile
*.moved-aside
DerivedData
*.hmap
*.ipa

# 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:
# http://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
27 changes: 27 additions & 0 deletions BatchFirebaseDispatcher.podspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
Pod::Spec.new do |s|
s.name = 'BatchFirebaseDispatcher'
s.version = '1.0.0'
s.summary = 'Batch.com Events Dispatcher Firebase implementation.'

s.description = <<-DESC
A ready-to-go event dispatcher for Firebase. Requires the Batch iOS SDK.
DESC

s.homepage = 'https://batch.com'
s.license = { :type => 'MIT' }
s.author = { 'Batch.com' => '[email protected]' }
s.source = { :git => 'https://github.com/BatchLabs/Batch-iOS-firebase-dispatcher.git', :tag => s.version.to_s }

s.ios.deployment_target = '8.0'
s.platforms = {
"ios" => "8.0"
}

s.requires_arc = true
s.static_framework = true

s.dependency 'Batch', '~> 1.15'
s.dependency 'Firebase/Analytics'

s.source_files = 'BatchFirebaseDispatcher/Classes/**/*'
end
Loading

0 comments on commit d4970fb

Please sign in to comment.