forked from tmspzz/Tyro
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from OpenShelter/feature/swift3
Release 0.1.0
- Loading branch information
Showing
34 changed files
with
345 additions
and
312 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 |
---|---|---|
@@ -1,21 +1,20 @@ | ||
language: objective-c | ||
osx_image: xcode7.3 | ||
osx_image: xcode8.2 | ||
git: | ||
submodules: false | ||
before_install: | ||
- git submodule update --init --recursive | ||
install: true | ||
script: | ||
- pod lib lint | ||
# TODO: reenable when https://github.com/OpenShelter/Tyro/issues/2 solved | ||
# - pod lib lint | ||
- set -o pipefail | ||
- xcodebuild test -scheme Tyro -configuration Debug | xcpretty -c | ||
- xcodebuild test -scheme Tyro-iOS -configuration Debug -sdk iphonesimulator -destination "platform=iOS Simulator,name=iPhone 6s" | xcpretty -c | ||
- xcodebuild test -scheme Tyro-tvOS -destination 'platform=tvOS Simulator,name=Apple TV 1080p' | xcpretty -c | ||
- xcodebuild build -scheme Tyro-watchOS -destination 'platform=watchOS Simulator,name=Apple Watch - 42mm' | xcpretty -c | ||
notifications: | ||
webhooks: | ||
urls: | ||
- https://webhooks.gitter.im/e/1d781e1bcbabade5de35 | ||
on_success: always | ||
on_failure: always | ||
on_start: always | ||
# deploy: | ||
# provider: script | ||
# script: ./scripts/push.sh | ||
# on: | ||
# tags: true |
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 +1 @@ | ||
github "typelift/Swiftz" ~> 0.5.1 | ||
github "typelift/Swiftz" ~> 0.6.2 |
Submodule SwiftCheck
updated
57 files
Submodule Swiftz
updated
93 files
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,5 +1,5 @@ | ||
Tyro | ||
====== | ||
|
||
Tyro used to be a Swift library for Functional JSON parsing and encoding. It is | ||
now **deprecated**. Please use your favorite extension of `Dictionary` instead. | ||
Tyro is a Swift library for Functional JSON parsing and encoding. It is now supported on this repo for swift 3 but used | ||
to be maintained by [typelift](https://github.com/typelift/tyro). |
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,8 +1,8 @@ | ||
Pod::Spec.new do |s| | ||
s.name = "Tyro" | ||
s.version = "0.0.8" | ||
s.version = "0.1.0" | ||
s.summary = "Functional JSON parsing and encoding." | ||
s.homepage = "https://github.com/typelift/Tyro" | ||
s.homepage = "https://github.com/OpenShelter/Tyro" | ||
s.license = { :type => "BSD" } | ||
s.authors = { "CodaFi" => "[email protected]", "pthariensflame" => "[email protected]", "mpurland" => "[email protected]" } | ||
|
||
|
@@ -11,7 +11,7 @@ Pod::Spec.new do |s| | |
s.ios.deployment_target = "8.0" | ||
s.tvos.deployment_target = "9.1" | ||
s.watchos.deployment_target = "2.1" | ||
s.source = { :git => "https://github.com/typelift/Tyro.git", :tag => "v#{s.version}", :submodules => true } | ||
s.source = { :git => "https://github.com/OpenShelter/Tyro.git", :tag => "v#{s.version}", :submodules => true } | ||
s.source_files = "Tyro/*.swift" | ||
s.dependency "Swiftz" | ||
end |
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
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
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
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
Oops, something went wrong.