Skip to content

Commit b230ebb

Browse files
committed
Initial commit
0 parents  commit b230ebb

File tree

21 files changed

+1191
-0
lines changed

21 files changed

+1191
-0
lines changed

.gitignore

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
# macOS
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+
*.moved-aside
17+
DerivedData
18+
*.hmap
19+
*.ipa
20+
21+
# Bundler
22+
.bundle
23+
24+
# Add this line if you want to avoid checking in source code from Carthage dependencies.
25+
# Carthage/Checkouts
26+
27+
Carthage/Build
28+
29+
# We recommend against adding the Pods directory to your .gitignore. However
30+
# you should judge for yourself, the pros and cons are mentioned at:
31+
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-ignore-the-pods-directory-in-source-control
32+
#
33+
# Note: if you ignore the Pods directory, make sure to uncomment
34+
# `pod install` in .travis.yml
35+
#
36+
# Pods/

.travis.yml

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# references:
2+
# * https://www.objc.io/issues/6-build-tools/travis-ci/
3+
# * https://github.com/supermarin/xcpretty#usage
4+
5+
osx_image: xcode7.3
6+
language: objective-c
7+
# cache: cocoapods
8+
# podfile: Example/Podfile
9+
# before_install:
10+
# - gem install cocoapods # Since Travis is not always on latest version
11+
# - pod install --project-directory=Example
12+
script:
13+
- set -o pipefail && xcodebuild test -enableCodeCoverage YES -workspace Example/QRReader.xcworkspace -scheme QRReader-Example -sdk iphonesimulator9.3 ONLY_ACTIVE_ARCH=NO | xcpretty
14+
- pod lib lint

Example/Podfile

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
use_frameworks!
2+
3+
platform :ios, '10.0'
4+
5+
target 'QRReader_Example' do
6+
pod 'QRReader', :path => '../'
7+
8+
target 'QRReader_Tests' do
9+
inherit! :search_paths
10+
11+
pod 'Quick', '~> 2.2.0'
12+
pod 'Nimble', '~> 10.0.0'
13+
end
14+
end

0 commit comments

Comments
 (0)