Skip to content

Commit a3bd08c

Browse files
committed
Initial commit
0 parents  commit a3bd08c

File tree

347 files changed

+20807
-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.

347 files changed

+20807
-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-Amplitude_Example', :exclusive => true do
5+
pod "Segment-Amplitude", :path => "../"
6+
end
7+
8+
target 'Segment-Amplitude_Tests', :exclusive => true do
9+
pod "Segment-Amplitude", :path => "../"
10+
11+
pod 'Specta'
12+
pod 'Expecta'
13+
end

Example/Podfile.lock

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
PODS:
2+
- Amplitude-iOS (3.2.0):
3+
- FMDB/standard (~> 2.5)
4+
- Analytics (3.0.2-alpha)
5+
- Expecta (1.0.5)
6+
- FMDB/common (2.5)
7+
- FMDB/standard (2.5):
8+
- FMDB/common
9+
- Segment-Amplitude (3.2.0-alpha):
10+
- Amplitude-iOS (~> 3.2.0)
11+
- Analytics (~> 3.0.2-alpha)
12+
- Specta (1.0.5)
13+
14+
DEPENDENCIES:
15+
- Expecta
16+
- Segment-Amplitude (from `../`)
17+
- Specta
18+
19+
EXTERNAL SOURCES:
20+
Segment-Amplitude:
21+
:path: ../
22+
23+
SPEC CHECKSUMS:
24+
Amplitude-iOS: 6f82e97de436fd145ae9a205933b350fcdfbcddc
25+
Analytics: a9794c7b948c0208c6e15653e3871b30c3dc37ad
26+
Expecta: e1c022fcd33910b6be89c291d2775b3fe27a89fe
27+
FMDB: 96e8f1bcc1329e269330f99770ad4285d9003e52
28+
Segment-Amplitude: 43829e7ce5d6d778ef48a369858a7b0025a7db08
29+
Specta: ac94d110b865115fe60ff2c6d7281053c6f8e8a2
30+
31+
COCOAPODS: 0.39.0

Example/Pods/Amplitude-iOS/Amplitude/AMPARCMacros.h

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

Example/Pods/Amplitude-iOS/Amplitude/AMPConstants.h

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

Example/Pods/Amplitude-iOS/Amplitude/AMPConstants.m

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

Example/Pods/Amplitude-iOS/Amplitude/AMPDatabaseHelper.h

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

0 commit comments

Comments
 (0)