Skip to content

Commit

Permalink
Initial Commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Baianater committed Feb 4, 2021
0 parents commit 843a44d
Show file tree
Hide file tree
Showing 28 changed files with 1,504 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# 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


Example/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/UISwitchy.xcworkspace -scheme UISwitchy-Example -sdk iphonesimulator9.3 ONLY_ACTIVE_ARCH=NO | xcpretty
- pod lib lint
13 changes: 13 additions & 0 deletions Example/Podfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
use_frameworks!

platform :ios, '9.0'

target 'UISwitchy_Example' do
pod 'UISwitchy', :path => '../'

target 'UISwitchy_Tests' do
inherit! :search_paths


end
end
16 changes: 16 additions & 0 deletions Example/Podfile.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
PODS:
- UISwitchy (0.1.0)

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

EXTERNAL SOURCES:
UISwitchy:
:path: "../"

SPEC CHECKSUMS:
UISwitchy: 018c6e75d01ca417c29f94c18c65ea0197c71cce

PODFILE CHECKSUM: 6436902095868914f58d4cde298e4f9b2fcd9877

COCOAPODS: 1.10.0
Loading

0 comments on commit 843a44d

Please sign in to comment.