Compare commits
7 Commits
master
...
swift3-dav
| Author | SHA1 | Date |
|---|---|---|
|
|
761df17e04 | |
|
|
5622b3b863 | |
|
|
ecad4da221 | |
|
|
867dbb5b25 | |
|
|
22d3c0e071 | |
|
|
bab425304f | |
|
|
b44c6b09da |
24
.travis.yml
24
.travis.yml
|
|
@ -1,16 +1,20 @@
|
||||||
|
# Docs: https://docs.travis-ci.com/user/osx-ci-environment
|
||||||
language: objective-c
|
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:
|
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:
|
after_success:
|
||||||
|
- bash <(curl -s https://codecov.io/bash)
|
||||||
- bash <(curl -s https://codecov.io/bash)
|
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
Pod::Spec.new do |s|
|
Pod::Spec.new do |s|
|
||||||
s.name = "SwiftValidator"
|
s.name = "SwiftValidator"
|
||||||
s.version = "4.0.0"
|
s.version = "4.0.1"
|
||||||
s.summary = "A UITextField Validation library for Swift"
|
s.summary = "A UITextField Validation library for Swift"
|
||||||
s.homepage = "https://github.com/jpotts18/SwiftValidator"
|
s.homepage = "https://github.com/jpotts18/SwiftValidator"
|
||||||
s.screenshots = "https://raw.githubusercontent.com/jpotts18/SwiftValidator/master/swift-validator-v2.gif"
|
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.author = { "Jeff Potter" => "jeff.potter6@gmail.com" }
|
||||||
s.social_media_url = "http://twitter.com/jpotts18"
|
s.social_media_url = "http://twitter.com/jpotts18"
|
||||||
s.platform = :ios
|
s.platform = :ios
|
||||||
s.ios.deployment_target = '8.0'
|
s.ios.deployment_target = '10.0'
|
||||||
s.source = { :git => "https://github.com/jpotts18/SwiftValidator.git", :tag => "4.0.0" }
|
s.source = { :git => "https://github.com/ed-mejia/SwiftValidator.git", :tag => "4.0.1" }
|
||||||
s.source_files = "SwiftValidator/**/*.swift"
|
s.source_files = "SwiftValidator/**/*.swift"
|
||||||
s.exclude_files = "Validator/AppDelegate.swift"
|
s.exclude_files = "Validator/AppDelegate.swift"
|
||||||
s.frameworks = ['Foundation', 'UIKit']
|
s.frameworks = ['Foundation', 'UIKit']
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue