Skip to content

Commit 293d450

Browse files
committed
Merge pull request #62 from jpotts18/3.0.0-podspec
updating travis to check podspec, bumping version to 3.0.1
2 parents 2de6805 + e1be08b commit 293d450

File tree

2 files changed

+8
-14
lines changed

2 files changed

+8
-14
lines changed

.travis.yml

Lines changed: 5 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,9 @@
11
language: objective-c
22
osx_image: xcode7
33

4-
xcode_project: Validator.xcodeproj
5-
xcode_scheme: Validator
6-
xcode_sdk: iphonesimulator9.0
4+
before_install:
5+
- gem install cocoapods --no-rdoc --no-ri --no-document --quiet
76

8-
# before_install:
9-
# - gem install xcpretty --no-rdoc --no-ri --no-document --quiet
10-
11-
# script:
12-
# - set -o pipefail
13-
# - xcodebuild -version
14-
# - xcodebuild -project Validator.xcodeproj -scheme Validator -sdk iphonesiumlator -destination 'platform=iOS Simulator,name=iPhone 6,OS=9.0'
15-
# -configuration Debug ONLY_ACTIVE_ARCH=NO test | xcpretty -c
7+
script:
8+
- xctool -project Validator.xcodeproj -scheme Validator -sdk iphonesimulator9.0 build test
9+
- pod lib lint

SwiftValidator.podspec

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "SwiftValidator"
3-
s.version = "3.0.0"
3+
s.version = "3.0.1"
44
s.summary = "A UITextField Validation library for Swift"
55
s.homepage = "https://github.com/jpotts18/SwiftValidator"
66
s.screenshots = "https://raw.githubusercontent.com/jpotts18/SwiftValidator/master/swift-validator-v2.gif"
@@ -9,8 +9,8 @@ Pod::Spec.new do |s|
99
s.social_media_url = "http://twitter.com/jpotts18"
1010
s.platform = :ios
1111
s.ios.deployment_target = '8.0'
12-
s.source = { :git => "https://github.com/jpotts18/SwiftValidator.git", :tag => "3.0.0" }
13-
s.source_files = "Validator/*.swift"
12+
s.source = { :git => "https://github.com/jpotts18/SwiftValidator.git", :tag => "3.0.1" }
13+
s.source_files = "SwiftValidator/**/*.swift"
1414
s.exclude_files = "Validator/AppDelegate.swift"
1515
s.frameworks = ['Foundation', 'UIKit']
1616
s.requires_arc = true

0 commit comments

Comments
 (0)