Skip to content
This repository has been archived by the owner on Nov 7, 2024. It is now read-only.

Commit

Permalink
Merge pull request #10 from AckeeCZ/carthage_support
Browse files Browse the repository at this point in the history
Carthage support
  • Loading branch information
janmisar authored Dec 28, 2017
2 parents c809f5f + 3df3836 commit 5752aef
Show file tree
Hide file tree
Showing 30 changed files with 1,204 additions and 849 deletions.
20 changes: 9 additions & 11 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,12 @@
# references:
# * http://www.objc.io/issue-6/travis-ci.html
# * https://github.com/supermarin/xcpretty#usage

osx_image: xcode9.1
osx_image: xcode9.2
language: objective-c
cache: cocoapods
podfile: Example/Podfile
cache:
directories:
- Carthage
before_install:
- gem install cocoapods # Since Travis is not always on latest version
- pod install --project-directory=Example --repo-update
- brew update
- brew outdated carthage || brew upgrade carthage
- carthage bootstrap --platform iOS --cache-builds
script:
- set -o pipefail && xcodebuild test -workspace Example/ReactiveLocation.xcworkspace -scheme ReactiveLocation-Example -destination 'platform=iOS Simulator,name=iPhone 8,OS=11.1' ONLY_ACTIVE_ARCH=NO | xcpretty
- pod lib lint --allow-warnings
- set -o pipefail && xcodebuild test -scheme ReactiveLocation -destination 'platform=iOS Simulator,name=iPhone 8,OS=11.2' ONLY_ACTIVE_ARCH=NO | xcpretty
- pod lib lint
1 change: 1 addition & 0 deletions Cartfile
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
github "ReactiveCocoa/ReactiveSwift" ~> 3.0
2 changes: 2 additions & 0 deletions Cartfile.resolved
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
github "ReactiveCocoa/ReactiveSwift" "3.0.0"
github "antitypical/Result" "3.2.4"
11 changes: 0 additions & 11 deletions Example/Podfile

This file was deleted.

22 changes: 0 additions & 22 deletions Example/Podfile.lock

This file was deleted.

623 changes: 0 additions & 623 deletions Example/ReactiveLocation.xcodeproj/project.pbxproj

This file was deleted.

10 changes: 0 additions & 10 deletions Example/ReactiveLocation.xcworkspace/contents.xcworkspacedata

This file was deleted.

41 changes: 0 additions & 41 deletions Example/ReactiveLocation/Base.lproj/LaunchScreen.xib

This file was deleted.

25 changes: 0 additions & 25 deletions Example/ReactiveLocation/Base.lproj/Main.storyboard

This file was deleted.

This file was deleted.

4 changes: 2 additions & 2 deletions ReactiveLocation.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

Pod::Spec.new do |s|
s.name = 'ReactiveLocation'
s.version = '3.0.0'
s.version = '3.0.1'
s.summary = 'Simple yet powerful wrapper of CLLocationManager for ReactiveCocoa'

# This description is used to generate tags and improve search results.
Expand All @@ -30,7 +30,7 @@ DESC

s.ios.deployment_target = '8.0'

s.source_files = 'ReactiveLocation/Classes/**/*'
s.source_files = 'ReactiveLocation/*.swift'

# s.resource_bundles = {
# 'ReactiveLocation' => ['ReactiveLocation/Assets/*.png']
Expand Down
Loading

0 comments on commit 5752aef

Please sign in to comment.