Compare commits

...

7 Commits

Author SHA1 Message Date
Jeff Potter 761df17e04 Updated to xctool instead of xcodebuild 2016-09-25 22:32:24 -06:00
David Patterson 5622b3b863 more mods. last one: lions barrage 2016-08-17 22:04:07 -05:00
David Patterson ecad4da221 more mods again 2016-08-17 22:00:29 -05:00
David Patterson 867dbb5b25 more mods 2016-08-17 21:57:40 -05:00
David Patterson 22d3c0e071 minor edit to travis.yml 2016-08-17 21:29:50 -05:00
David Patterson bab425304f podspec now mirrors tag 4.0.1 2016-08-17 21:06:50 -05:00
David Patterson b44c6b09da minor changes to podspec 2016-08-17 20:55:26 -05:00
2 changed files with 17 additions and 13 deletions

View File

@ -1,16 +1,20 @@
# Docs: https://docs.travis-ci.com/user/osx-ci-environment
language: objective-c
osx_image: xcode8
xcode_sdk: iphonesimulator10.0
xcode_project: Validator.xcodeproj
xcode_scheme: Validator
osx_image:
- xcode7.3
- xcode8
xcode_sdk:
- iphonesimulator10.0
before_install:
- brew update
- brew outdated xctool || brew upgrade xctool
- gem install xcpretty --no-rdoc --no-ri --no-document --quiet
script:
- pwd
- xctool -project Validator.xcodeproj -scheme Validator -sdk iphonesimulator test
script:
- xcodebuild clean build test -project Validator.xcodeproj -scheme Validator -sdk iphonesimulator -destination "platform=iOS Simulator,OS=10.0,name=iPhone 6" -enableCodeCoverage YES CODE_SIGNING_REQUIRED=NO | xcpretty
- pod lib lint
after_success:
- bash <(curl -s https://codecov.io/bash)
- bash <(curl -s https://codecov.io/bash)

View File

@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "SwiftValidator"
s.version = "4.0.0"
s.version = "4.0.1"
s.summary = "A UITextField Validation library for Swift"
s.homepage = "https://github.com/jpotts18/SwiftValidator"
s.screenshots = "https://raw.githubusercontent.com/jpotts18/SwiftValidator/master/swift-validator-v2.gif"
@ -8,8 +8,8 @@ Pod::Spec.new do |s|
s.author = { "Jeff Potter" => "jeff.potter6@gmail.com" }
s.social_media_url = "http://twitter.com/jpotts18"
s.platform = :ios
s.ios.deployment_target = '8.0'
s.source = { :git => "https://github.com/jpotts18/SwiftValidator.git", :tag => "4.0.0" }
s.ios.deployment_target = '10.0'
s.source = { :git => "https://github.com/ed-mejia/SwiftValidator.git", :tag => "4.0.1" }
s.source_files = "SwiftValidator/**/*.swift"
s.exclude_files = "Validator/AppDelegate.swift"
s.frameworks = ['Foundation', 'UIKit']