Skip to content

Commit 5bf2d26

Browse files
author
andela-gukpere
committed
feature(CI and Testing); Begin config for CI and testing
1 parent 06e0975 commit 5bf2d26

File tree

6 files changed

+18
-7
lines changed

6 files changed

+18
-7
lines changed

.travis.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
langnguage: swift
2+
osx_image: xcode7.3
3+
xcode_project: IOSSwiftBoiler.xcodeproj
4+
xcode_workspace: IOSSwiftBoiler.xcworkspace
5+
xcode_scheme: IOSSwiftBoiler
6+
xcode_sdk: iphonesimulator9.3

IOSSwiftBoiler.xcodeproj/xcuserdata/goodson.xcuserdatad/xcschemes/xcschememanagement.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<dict>
55
<key>SchemeUserState</key>
66
<dict>
7-
<key>IOSSwiftBoiler.xcscheme</key>
7+
<key>IOSSwiftBoiler.xcscheme_^#shared#^_</key>
88
<dict>
99
<key>orderHint</key>
1010
<integer>0</integer>

IOSSwiftBoiler/Base.lproj/Main.storyboard

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
2-
<document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="9531" systemVersion="15D21" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" initialViewController="Wil-PY-vKz">
2+
<document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="10116" systemVersion="15E65" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" initialViewController="Wil-PY-vKz">
33
<dependencies>
44
<deployment identifier="iOS"/>
5-
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="9529"/>
5+
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="10085"/>
66
<capability name="Constraints with non-1.0 multipliers" minToolsVersion="5.1"/>
77
<capability name="Segues with Peek and Pop" minToolsVersion="7.1"/>
88
</dependencies>
@@ -22,10 +22,10 @@
2222
<view hidden="YES" tag="1" contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="D1F-Yi-EYr" userLabel="Inactive">
2323
<rect key="frame" x="0.0" y="0.0" width="600" height="600"/>
2424
<subviews>
25-
<imageView userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="user-large" translatesAutoresizingMaskIntoConstraints="NO" id="XF3-LF-s5U">
25+
<imageView userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" misplaced="YES" image="user-large" translatesAutoresizingMaskIntoConstraints="NO" id="XF3-LF-s5U">
2626
<rect key="frame" x="220" y="70" width="160" height="160"/>
2727
</imageView>
28-
<button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" reversesTitleShadowWhenHighlighted="YES" showsTouchWhenHighlighted="YES" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="Zhu-o7-AfR">
28+
<button opaque="NO" contentMode="scaleToFill" misplaced="YES" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" reversesTitleShadowWhenHighlighted="YES" showsTouchWhenHighlighted="YES" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="Zhu-o7-AfR">
2929
<rect key="frame" x="10" y="340" width="570" height="34"/>
3030
<fontDescription key="fontDescription" type="system" pointSize="18"/>
3131
<state key="normal" title="Go To Login">
@@ -39,7 +39,7 @@
3939
</segue>
4040
</connections>
4141
</button>
42-
<textView clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" text="Login to view and manage your profile." textAlignment="center" translatesAutoresizingMaskIntoConstraints="NO" id="i70-dk-yuS">
42+
<textView clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" misplaced="YES" text="Login to view and manage your profile." textAlignment="center" translatesAutoresizingMaskIntoConstraints="NO" id="i70-dk-yuS">
4343
<rect key="frame" x="180" y="260" width="240" height="50"/>
4444
<color key="backgroundColor" white="1" alpha="1" colorSpace="calibratedWhite"/>
4545
<constraints>

IOSSwiftBoiler/Helpers.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ class Helpers {
6363
}
6464

6565
static func async(run:()->(), completed:(()->())? = nil) {
66-
let backgroundQueue = dispatch_get_global_queue(QOS_CLASS_BACKGROUND, 0)
66+
let backgroundQueue = dispatch_get_global_queue(QOS_CLASS_USER_INTERACTIVE, 0)
6767
dispatch_async(backgroundQueue, {
6868
run()
6969
if completed != nil {

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,6 @@
11
# IOS Swift Boiler Plate with Authentication
2+
3+
[![Build Status](https://travis-ci.org/gottsohn/ios-swift-boiler.svg?branch=master)](https://travis-ci.org/gottsohn/ios-swift-boiler)
4+
5+
[![Coverage Status](https://coveralls.io/repos/github/gottsohn/ios-swift-boiler/badge.svg?branch=master)](https://coveralls.io/github/gottsohn/ios-swift-boiler?branch=master)
6+

0 commit comments

Comments
 (0)