Skip to content

Commit 0e888b1

Browse files
More changes
1 parent 05c71eb commit 0e888b1

File tree

76 files changed

+2409
-780
lines changed

Some content is hidden

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

76 files changed

+2409
-780
lines changed

.gitignore

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
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+
/.build
23+
/Packages
24+
/*.xcodeproj
25+
26+
# Bundler
27+
.bundle
28+
29+
# Add this line if you want to avoid checking in source code from Carthage dependencies.
30+
# Carthage/Checkouts
31+
32+
Carthage/Build
33+
34+
# We recommend against adding the Pods directory to your .gitignore. However
35+
# you should judge for yourself, the pros and cons are mentioned at:
36+
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-ignore-the-pods-directory-in-source-control
37+
#
38+
# Note: if you ignore the Pods directory, make sure to uncomment
39+
# `pod install` in .travis.yml
40+
#
41+
# Pods/

MasterDetail.xcodeproj/project.xcworkspace/contents.xcworkspacedata renamed to .swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.travis.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# references:
2+
# * https://www.objc.io/issues/6-build-tools/travis-ci/
3+
# * https://github.com/supermarin/xcpretty#usage
4+
5+
osx_image: xcode11
6+
language: objective-c
7+
# cache: cocoapods
8+
# podfile: Example/Podfile
9+
# before_install:
10+
# - gem install cocoapods # Since Travis is not always on latest version
11+
# - pod install --project-directory=Example
12+
script:
13+
- set -o pipefail && xcodebuild test -enableCodeCoverage YES -workspace Example/SideTabBar.xcworkspace -scheme SideTabBar-Example -sdk iphonesimulator13.0 ONLY_ACTIVE_ARCH=NO | xcpretty
14+
- pod lib lint

Example/Podfile

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
use_frameworks!
2+
platform :ios, '13.0'
3+
4+
target 'SideTabBar_Example' do
5+
pod 'SideTabBar', :path => '../'
6+
7+
target 'SideTabBar_Tests' do
8+
inherit! :search_paths
9+
10+
11+
end
12+
end

Example/Podfile.lock

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
PODS:
2+
- SideTabBar (0.1.0)
3+
4+
DEPENDENCIES:
5+
- SideTabBar (from `../`)
6+
7+
EXTERNAL SOURCES:
8+
SideTabBar:
9+
:path: "../"
10+
11+
SPEC CHECKSUMS:
12+
SideTabBar: 5120d7bf8515597f1b9f6e08ee49353048247912
13+
14+
PODFILE CHECKSUM: 559e4019944bcd0795952bde172885d27b5bded8
15+
16+
COCOAPODS: 1.7.5

Example/Pods/Local Podspecs/SideTabBar.podspec.json

Lines changed: 25 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Example/Pods/Manifest.lock

Lines changed: 16 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Example/Pods/Pods.xcodeproj/project.pbxproj

Lines changed: 786 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Example/Pods/Target Support Files/Pods-SideTabBar_Example/Pods-SideTabBar_Example-Info.plist

Lines changed: 26 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Example/Pods/Target Support Files/Pods-SideTabBar_Example/Pods-SideTabBar_Example-acknowledgements.markdown

Lines changed: 26 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Example/Pods/Target Support Files/Pods-SideTabBar_Example/Pods-SideTabBar_Example-acknowledgements.plist

Lines changed: 58 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Example/Pods/Target Support Files/Pods-SideTabBar_Example/Pods-SideTabBar_Example-dummy.m

Lines changed: 5 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)