Skip to content

Commit 3518229

Browse files
authored
Version 5.0.0 (#309)
1 parent f2ab28c commit 3518229

File tree

130 files changed

+2547
-6415
lines changed

Some content is hidden

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

130 files changed

+2547
-6415
lines changed

.gitignore

Lines changed: 66 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,45 @@
1+
# General
2+
.DS_Store
3+
.AppleDouble
4+
.LSOverride
5+
6+
# Icon must end with two \r
7+
Icon
8+
9+
# Thumbnails
10+
._*
11+
12+
# Files that might appear in the root of a volume
13+
.DocumentRevisions-V100
14+
.fseventsd
15+
.Spotlight-V100
16+
.TemporaryItems
17+
.Trashes
18+
.VolumeIcon.icns
19+
.com.apple.timemachine.donotpresent
20+
21+
# Directories potentially created on remote AFP share
22+
.AppleDB
23+
.AppleDesktop
24+
Network Trash Folder
25+
Temporary Items
26+
.apdisk
27+
128
# Xcode
229
#
330
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
431

5-
## Build generated
32+
## User settings
33+
xcuserdata/
34+
35+
## compatibility with Xcode 8 and earlier (ignoring not required starting Xcode 9)
36+
*.xcscmblueprint
37+
*.xccheckout
38+
39+
## compatibility with Xcode 3 and earlier (ignoring not required starting Xcode 4)
640
build/
741
DerivedData/
8-
9-
## Various settings
42+
*.moved-aside
1043
*.pbxuser
1144
!default.pbxuser
1245
*.mode1v3
@@ -15,15 +48,11 @@ DerivedData/
1548
!default.mode2v3
1649
*.perspectivev3
1750
!default.perspectivev3
18-
xcuserdata/
19-
20-
## Other
21-
*.moved-aside
22-
*.xcuserstate
23-
.DS_Store
2451

2552
## Obj-C/Swift specific
2653
*.hmap
54+
55+
## App packaging
2756
*.ipa
2857
*.dSYM.zip
2958
*.dSYM
@@ -36,6 +65,14 @@ playground.xcworkspace
3665
#
3766
# Add this line if you want to avoid checking in source code from Swift Package Manager dependencies.
3867
# Packages/
68+
# Package.pins
69+
# Package.resolved
70+
# *.xcodeproj
71+
#
72+
# Xcode automatically generates this directory with a .xcworkspacedata file and xcuserdata
73+
# hence it is not needed unless you have added a package configuration file to your project
74+
.swiftpm
75+
3976
.build/
4077

4178
# CocoaPods
@@ -44,23 +81,37 @@ playground.xcworkspace
4481
# you should judge for yourself, the pros and cons are mentioned at:
4582
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
4683
#
47-
Pods/
84+
# Pods/
85+
#
86+
# Add this line if you want to avoid checking in source code from the Xcode workspace
87+
# *.xcworkspace
4888

4989
# Carthage
5090
#
5191
# Add this line if you want to avoid checking in source code from Carthage dependencies.
5292
# Carthage/Checkouts
5393

54-
Carthage/Build
94+
Carthage/Build/
95+
96+
# Accio dependency management
97+
Dependencies/
98+
.accio/
5599

56100
# fastlane
57101
#
58-
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
59-
# screenshots whenever they are needed.
102+
# It is recommended to not store the screenshots in the git repo.
103+
# Instead, use fastlane to re-generate the screenshots whenever they are needed.
60104
# For more information about the recommended setup visit:
61-
# https://github.com/fastlane/fastlane/blob/master/fastlane/docs/Gitignore.md
105+
# https://docs.fastlane.tools/best-practices/source-control/#source-control
62106

63107
fastlane/report.xml
64108
fastlane/Preview.html
65-
fastlane/screenshots
109+
fastlane/screenshots/**/*.png
66110
fastlane/test_output
111+
112+
# Code Injection
113+
#
114+
# After new code Injection tools there's a generated folder /iOSInjectionProject
115+
# https://github.com/johnno1962/injectionforxcode
116+
117+
iOSInjectionProject/

.hound.yml

Lines changed: 0 additions & 2 deletions
This file was deleted.

.jazzy.yaml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,13 @@ github_url: https://github.com/ninjaprox/NVActivityIndicatorView
55

66
theme: fullwidth
77
disable_search: true
8+
hide_documentation_coverage: true
9+
clean: true
810

911
module: NVActivityIndicatorView
10-
source_directory: Source
11-
xcodebuild_arguments:
12+
module_version: 5.0.0
13+
build_tool_arguments:
1214
- -scheme
13-
- NVActivityIndicatorView-iOS
15+
- NVActivityIndicatorView-Package
1416
- -project
1517
- NVActivityIndicatorView.xcodeproj
File renamed without changes.

.travis.yml

Lines changed: 4 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,5 @@
11
language: objective-c
2-
env:
3-
global:
4-
- WORKSPACE=Example/NVActivityIndicatorViewExample.xcworkspace
5-
- SCHEME=NVActivityIndicatorViewTests
6-
matrix:
7-
include:
8-
- osx_image: xcode10.2
9-
env: SDK="iphonesimulator12.2" DESTINATION="name=iPhone 6s,OS=12.2"
10-
script:
11-
- set -o pipefail
12-
- pod install --project-directory=Example
13-
- xcodebuild -workspace "$WORKSPACE" -scheme "$SCHEME" -sdk "$SDK" -destination "$DESTINATION" ONLY_ACTIVE_ARCH=YES clean test | xcpretty -c
2+
osx_image: xcode11.3
3+
xcode_project: NVActivityIndicatorView.xcodeproj
4+
xcode_scheme: Example
5+
xcode_destination: platform=iOS Simulator,name=iPhone 8

0 commit comments

Comments
 (0)