Skip to content

Commit 3e494d5

Browse files
committed
Initial commit
0 parents  commit 3e494d5

File tree

301 files changed

+12744
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

301 files changed

+12744
-0
lines changed

.gitignore

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
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+
22+
# Bundler
23+
.bundle
24+
25+
Carthage
26+
# We recommend against adding the Pods directory to your .gitignore. However
27+
# you should judge for yourself, the pros and cons are mentioned at:
28+
# http://guides.cocoapods.org/using/using-cocoapods.html#should-i-ignore-the-pods-directory-in-source-control
29+
#
30+
# Note: if you ignore the Pods directory, make sure to uncomment
31+
# `pod install` in .travis.yml
32+
#
33+
# Pods/

.travis.yml

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
language: objective-c
2+
3+
osx_image: xcode7.1
4+
5+
before_install:
6+
- gem install cocoapods
7+
8+
script:
9+
# Fails with "Unable to find Analytics/TestFlight".
10+
# - pod lib lint --allow-warnings
11+
- make xctest
12+
13+
notifications:
14+
email: false

Example/Podfile

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
source 'https://github.com/CocoaPods/Specs.git'
2+
use_frameworks!
3+
4+
target 'Segment-Flurry_Example', :exclusive => true do
5+
pod "Segment-Flurry", :path => "../"
6+
end
7+
8+
target 'Segment-Flurry_Tests', :exclusive => true do
9+
pod "Segment-Flurry", :path => "../"
10+
11+
pod 'Specta'
12+
pod 'Expecta'
13+
end

Example/Podfile.lock

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
PODS:
2+
- Analytics (3.0.1-alpha)
3+
- Expecta (1.0.5)
4+
- Flurry-iOS-SDK (7.3.0):
5+
- Flurry-iOS-SDK/FlurrySDK (= 7.3.0)
6+
- Flurry-iOS-SDK/FlurrySDK (7.3.0)
7+
- Segment-Flurry (7.3.0-alpha):
8+
- Analytics (~> 3.0.1-alpha)
9+
- Flurry-iOS-SDK (~> 7.3.0)
10+
- Specta (1.0.5)
11+
12+
DEPENDENCIES:
13+
- Expecta
14+
- Segment-Flurry (from `../`)
15+
- Specta
16+
17+
EXTERNAL SOURCES:
18+
Segment-Flurry:
19+
:path: ../
20+
21+
SPEC CHECKSUMS:
22+
Analytics: 3c6d01bd56bc9b29974b05ccd988272e90d15f4c
23+
Expecta: e1c022fcd33910b6be89c291d2775b3fe27a89fe
24+
Flurry-iOS-SDK: 054befae0fa0244fb000985bfe757d70f87a9f60
25+
Segment-Flurry: 4660d45fb0d20aaec989c4dcef3a13ddc3105ccf
26+
Specta: ac94d110b865115fe60ff2c6d7281053c6f8e8a2
27+
28+
COCOAPODS: 0.39.0

Example/Pods/Analytics/LICENSE

+19
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Example/Pods/Analytics/Pod/Classes/Integrations/SEGAliasPayload.h

+13
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Example/Pods/Analytics/Pod/Classes/Integrations/SEGAliasPayload.m

+16
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Example/Pods/Analytics/Pod/Classes/Integrations/SEGGroupPayload.h

+16
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Example/Pods/Analytics/Pod/Classes/Integrations/SEGGroupPayload.m

+18
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Example/Pods/Analytics/Pod/Classes/Integrations/SEGIdentifyPayload.h

+16
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Example/Pods/Analytics/Pod/Classes/Integrations/SEGIdentifyPayload.m

+18
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Example/Pods/Analytics/Pod/Classes/Integrations/SEGIntegration.h

+64
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Example/Pods/Analytics/Pod/Classes/Integrations/SEGIntegrationFactory.h

+18
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Example/Pods/Analytics/Pod/Classes/Integrations/SEGPayload.h

+11
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Example/Pods/Analytics/Pod/Classes/Integrations/SEGPayload.m

+15
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Example/Pods/Analytics/Pod/Classes/Integrations/SEGScreenPayload.h

+18
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Example/Pods/Analytics/Pod/Classes/Integrations/SEGScreenPayload.m

+18
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Example/Pods/Analytics/Pod/Classes/Integrations/SEGTrackPayload.h

+16
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)