forked from vadymmarkov/Fakery
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
36d76f8
commit a035e4a
Showing
3 changed files
with
12 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
2.2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,14 @@ | ||
osx_image: xcode7.3 | ||
language: objective-c | ||
xcode_sdk: iphonesimulator9.3 | ||
|
||
before_install: | ||
- brew update | ||
- if brew outdated | grep -qx carthage; then brew upgrade carthage; fi | ||
- travis_wait 35 carthage bootstrap --platform iOS,Mac,tvOS | ||
- travis_wait 35 carthage bootstrap --platform iOS,Mac | ||
|
||
# Use when you have third party dependencies (CocoaPods generates a workspace) | ||
- xcodebuild clean build -project Fakery.xcodeproj -scheme "Fakery iOS" -sdk iphonesimulator | ||
- xcodebuild clean build -project Fakery.xcodeproj -scheme "Fakery OSX" -sdk macosx | ||
- xcodebuild clean build -project Fakery.xcodeproj -scheme "Fakery tvOS" -destination 'platform=tvOS Simulator,name=Apple TV 1080p,OS=9.2' | ||
script: | ||
- xcodebuild clean build -project Fakery.xcodeproj -scheme Fakery-iOS -sdk iphonesimulator | ||
- xcodebuild test -project Fakery.xcodeproj -scheme Fakery-iOS -sdk iphonesimulator | ||
- xcodebuild clean build -project Fakery.xcodeproj -scheme Fakery-Mac -sdk macosx | ||
- xcodebuild test -project Fakery.xcodeproj -scheme Fakery-Mac -sdk macosx |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
Pod::Spec.new do |s| | ||
s.name = "Fakery" | ||
s.version = "1.3.2" | ||
s.version = "1.4.0" | ||
s.summary = "Swift fake data generator" | ||
s.homepage = "https://github.com/vadymmarkov/Fakery" | ||
s.license = { | ||
|
@@ -10,10 +10,12 @@ Pod::Spec.new do |s| | |
s.author = { | ||
"Vadym Markov" => "[email protected]" | ||
} | ||
|
||
s.source = { | ||
:git => "https://github.com/vadymmarkov/Fakery.git", | ||
:tag => s.version.to_s | ||
} | ||
|
||
s.social_media_url = 'https://twitter.com/vadymmarkov' | ||
|
||
s.ios.deployment_target = "8.0" | ||
|
@@ -23,6 +25,7 @@ Pod::Spec.new do |s| | |
s.resource_bundles = { | ||
'Faker' => ['Resources/Locales/*.{json}'] | ||
} | ||
|
||
s.source_files = 'Source/**/*' | ||
s.frameworks = 'Foundation' | ||
end |