Skip to content

Commit

Permalink
init
Browse files Browse the repository at this point in the history
  • Loading branch information
15038777234 committed Mar 18, 2017
1 parent 869bf83 commit 4587233
Show file tree
Hide file tree
Showing 133 changed files with 7,478 additions and 1,151 deletions.
Binary file modified .DS_Store
Binary file not shown.
55 changes: 14 additions & 41 deletions .gitignore
@@ -1,12 +1,8 @@
# Xcode
#
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
# OS X
.DS_Store

## Build generated
# Xcode
build/
DerivedData/

## Various settings
*.pbxuser
!default.pbxuser
*.mode1v3
Expand All @@ -16,45 +12,22 @@ DerivedData/
*.perspectivev3
!default.perspectivev3
xcuserdata/

## Other
*.xccheckout
profile
*.moved-aside
*.xcuserstate

## Obj-C/Swift specific
DerivedData
*.hmap
*.ipa
*.dSYM.zip
*.dSYM

# CocoaPods
#
# 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:
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
# 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
#
# Pods/

# Carthage
#
# Add this line if you want to avoid checking in source code from Carthage dependencies.
# Carthage/Checkouts

Carthage/Build

# fastlane
#
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
# screenshots whenever they are needed.
# For more information about the recommended setup visit:
# https://github.com/fastlane/fastlane/blob/master/fastlane/docs/Gitignore.md

fastlane/report.xml
fastlane/screenshots

#Code Injection
#
# After new code Injection tools there's a generated folder /iOSInjectionProject
# https://github.com/johnno1962/injectionforxcode

iOSInjectionProject/
14 changes: 14 additions & 0 deletions .travis.yml
@@ -0,0 +1,14 @@
# references:
# * http://www.objc.io/issue-6/travis-ci.html
# * https://github.com/supermarin/xcpretty#usage

osx_image: xcode7.3
language: objective-c
# cache: cocoapods
# podfile: Example/Podfile
# before_install:
# - gem install cocoapods # Since Travis is not always on latest version
# - pod install --project-directory=Example
script:
- set -o pipefail && xcodebuild test -workspace Example/ZHTableViewGroup.xcworkspace -scheme ZHTableViewGroup-Example -sdk iphonesimulator9.3 ONLY_ACTIVE_ARCH=NO | xcpretty
- pod lib lint
11 changes: 11 additions & 0 deletions Example/Podfile
@@ -0,0 +1,11 @@
use_frameworks!

target 'ZHTableViewGroup_Example' do
pod 'ZHTableViewGroup', :path => '../'
pod 'Masonry'
target 'ZHTableViewGroup_Tests' do
inherit! :search_paths


end
end
19 changes: 19 additions & 0 deletions Example/Podfile.lock
@@ -0,0 +1,19 @@
PODS:
- Masonry (1.0.2)
- ZHTableViewGroup (0.1.0)

DEPENDENCIES:
- Masonry
- ZHTableViewGroup (from `../`)

EXTERNAL SOURCES:
ZHTableViewGroup:
:path: "../"

SPEC CHECKSUMS:
Masonry: 7c429b56da9d4ee0bbb3ed77a5ea710d6a5df39e
ZHTableViewGroup: d865079c2240123f21433019144284a21d6d16ab

PODFILE CHECKSUM: 021401a6334f105e6404e24ce9f6a3d8eff70b71

COCOAPODS: 1.2.0
22 changes: 22 additions & 0 deletions Example/Pods/Local Podspecs/ZHTableViewGroup.podspec.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

19 changes: 19 additions & 0 deletions Example/Pods/Manifest.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

19 changes: 19 additions & 0 deletions Example/Pods/Masonry/LICENSE

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

26 changes: 26 additions & 0 deletions Example/Pods/Masonry/Masonry/MASCompositeConstraint.h

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

177 changes: 177 additions & 0 deletions Example/Pods/Masonry/Masonry/MASCompositeConstraint.m

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 4587233

Please sign in to comment.