Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
rcholic committed Mar 20, 2017
1 parent ebd35c5 commit 9b5100a
Show file tree
Hide file tree
Showing 56 changed files with 2,910 additions and 65 deletions.
33 changes: 1 addition & 32 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,33 +1,2 @@
# 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

Carthage
# We recommend against adding the Pods directory to your .gitignore. However
# you should judge for yourself, the pros and cons are mentioned at:
# 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/
ResizableView/.DS_Store
16 changes: 13 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,21 @@

osx_image: xcode7.3
language: objective-c
sudo: required

branches:
only:
- master
# cache: cocoapods
# podfile: Example/Podfile
# before_install:
before_install:
- brew update
- if brew outdated | grep -qx xctool; then brew upgrade xctool; fi
- export LANG=en_US.UTF-8
- gem install xcpretty --no-ri --no-rdoc
# - gem install cocoapods # Since Travis is not always on latest version
# - pod install --project-directory=Example
script:
- set -o pipefail && xcodebuild test -workspace Example/ResizableView.xcworkspace -scheme ResizableView-Example -sdk iphonesimulator9.3 ONLY_ACTIVE_ARCH=NO | xcpretty
- pod lib lint
- xcodebuild -workspace Example/ResizableView.xcworkspace -scheme SwiftySoundRecorder-Example -sdk iphonesimulator -destination 'platform=iOS Simulator,name=iPhone 6,OS=10.0' clean build test | xcpretty --test --color

- pod lib lint --quick
16 changes: 16 additions & 0 deletions Example/Podfile.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
PODS:
- ResizableView (0.1.0)

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

EXTERNAL SOURCES:
ResizableView:
:path: "../"

SPEC CHECKSUMS:
ResizableView: 9707991814c761191c2ff4dd0f1cce46925c7555

PODFILE CHECKSUM: ebb8857314e38faeed9e806bf5d486099babf2b3

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

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

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

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

707 changes: 707 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.

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

Loading

0 comments on commit 9b5100a

Please sign in to comment.