Skip to content

Commit 9d8639a

Browse files
author
Tom Thorpe
committed
initial commit
0 parents  commit 9d8639a

Some content is hidden

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

43 files changed

+2280
-0
lines changed

.gitignore

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
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+
# Bundler
23+
.bundle
24+
25+
# We recommend against adding the Pods directory to your .gitignore. However
26+
# you should judge for yourself, the pros and cons are mentioned at:
27+
# http://guides.cocoapods.org/using/using-cocoapods.html#should-i-ignore-the-pods-directory-in-source-control
28+
#
29+
# Note: if you ignore the Pods directory, make sure to uncomment
30+
# `pod install` in .travis.yml
31+
#
32+
# Pods/

.travis.yml

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

Example/Podfile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
source 'https://github.com/CocoaPods/Specs.git'
2+
3+
pod "TTRangeSlider", :path => "../"
4+

Example/Podfile.lock

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
PODS:
2+
- TTRangeSlider (1.0.0)
3+
4+
DEPENDENCIES:
5+
- TTRangeSlider (from `../`)
6+
7+
EXTERNAL SOURCES:
8+
TTRangeSlider:
9+
:path: ../
10+
11+
SPEC CHECKSUMS:
12+
TTRangeSlider: 69c1114c2fb86b8c6cd51a05978e880b530916d5
13+
14+
COCOAPODS: 0.36.1

Example/Pods/Headers/Private/TTRangeSlider/TTRangeSlider.h

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

Example/Pods/Headers/Private/TTRangeSlider/TTRangeSliderDelegate.h

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

Example/Pods/Headers/Public/TTRangeSlider/TTRangeSlider.h

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

Example/Pods/Headers/Public/TTRangeSlider/TTRangeSliderDelegate.h

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

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

Lines changed: 20 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: 14 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)