Skip to content
This repository has been archived by the owner on Mar 17, 2019. It is now read-only.

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Ilya Lobanov committed Nov 18, 2018
0 parents commit 2e23cf8
Show file tree
Hide file tree
Showing 129 changed files with 15,707 additions and 0 deletions.
37 changes: 37 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
# OS X
.DS_Store

# Xcode
build/
*.pbxuser
!default.pbxuser
*.mode1v3
!default.mode1v3
*.mode2v3
!default.mode2v3
*.perspectivev3
!default.perspectivev3
xcuserdata/
*.xccheckout
profile
*.moved-aside
DerivedData
*.hmap
*.ipa

# Bundler
.bundle

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

Carthage/Build

# 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-ignore-the-pods-directory-in-source-control
#
# Note: if you ignore the Pods directory, make sure to uncomment
# `pod install` in .travis.yml
#
# Pods/
14 changes: 14 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# references:
# * https://www.objc.io/issues/6-build-tools/travis-ci/
# * 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 -enableCodeCoverage YES -workspace Example/ShadeView.xcworkspace -scheme ShadeView-Example -sdk iphonesimulator9.3 ONLY_ACTIVE_ARCH=NO | xcpretty
- pod lib lint
11 changes: 11 additions & 0 deletions Example/Podfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
use_frameworks!

platform :ios, '9.3'

target 'ShadeView_Example' do
pod 'ShadeView', :path => '../'

target 'ShadeView_Tests' do
inherit! :search_paths
end
end
23 changes: 23 additions & 0 deletions Example/Podfile.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
PODS:
- pop (1.0.10)
- ShadeView (0.1.5):
- pop (~> 1.0)

DEPENDENCIES:
- ShadeView (from `../`)

SPEC REPOS:
https://github.com/cocoapods/specs.git:
- pop

EXTERNAL SOURCES:
ShadeView:
:path: "../"

SPEC CHECKSUMS:
pop: 82ca6b068ce9278fd350fd9dd09482a0ce9492e6
ShadeView: 7f6510e109daa62876d116338889b7d389126c00

PODFILE CHECKSUM: dc28743ef0bbecf1ff4a8ce1a271cd5cb8e4b7fa

COCOAPODS: 1.5.3
29 changes: 29 additions & 0 deletions Example/Pods/Local Podspecs/ShadeView.podspec.json

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

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

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

1,243 changes: 1,243 additions & 0 deletions Example/Pods/Pods.xcodeproj/project.pbxproj

Large diffs are not rendered by default.

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

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

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

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

Loading

0 comments on commit 2e23cf8

Please sign in to comment.