Skip to content

Commit

Permalink
Add first version of Protium v3 example.
Browse files Browse the repository at this point in the history
  • Loading branch information
fe9lix committed Oct 9, 2016
0 parents commit 67ee0c5
Show file tree
Hide file tree
Showing 407 changed files with 48,057 additions and 0 deletions.
68 changes: 68 additions & 0 deletions .gitignore
@@ -0,0 +1,68 @@
# MacOS
.DS_Store

# Xcode
#
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore

## Build generated
build/
DerivedData/

## Various settings
*.pbxuser
!default.pbxuser
*.mode1v3
!default.mode1v3
*.mode2v3
!default.mode2v3
*.perspectivev3
!default.perspectivev3
xcuserdata/

## Other
*.moved-aside
*.xcuserstate

## Obj-C/Swift specific
*.hmap
*.ipa
*.dSYM.zip
*.dSYM

## Playgrounds
timeline.xctimeline
playground.xcworkspace

# Swift Package Manager
#
# Add this line if you want to avoid checking in source code from Swift Package Manager dependencies.
# Packages/
.build/

# CocoaPods
#
# We recommend against adding the Pods directory to your .gitignore. However
# you should judge for yourself, the pros and cons are mentioned at:
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
#
# Pods/

# Carthage
#
# Add this line if you want to avoid checking in source code from Carthage dependencies.
# Carthage/Checkouts

Carthage/Build

# fastlane
#
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
# screenshots whenever they are needed.
# For more information about the recommended setup visit:
# https://github.com/fastlane/fastlane/blob/master/fastlane/docs/Gitignore.md

fastlane/report.xml
fastlane/Preview.html
fastlane/screenshots
fastlane/test_output
29 changes: 29 additions & 0 deletions Podfile
@@ -0,0 +1,29 @@
platform :ios, "9.0"

target "Protium" do
use_frameworks!

pod "RxSwift", "3.0.0-beta.2"
pod "RxCocoa", "3.0.0-beta.2"
pod "JASON", "3.0"
pod "Kingfisher", "3.1.1"

target "ProtiumTests" do
inherit! :search_paths
pod "RxBlocking", "3.0.0-beta.2"
pod "RxTests", "3.0.0-beta.2"
end

target "ProtiumUITests" do
inherit! :search_paths
end
end

post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings["SWIFT_VERSION"] = "3.0"
config.build_settings["MACOSX_DEPLOYMENT_TARGET"] = "10.10"
end
end
end
30 changes: 30 additions & 0 deletions Podfile.lock
@@ -0,0 +1,30 @@
PODS:
- JASON (3.0)
- Kingfisher (3.1.1)
- RxBlocking (3.0.0-beta.2):
- RxSwift (~> 3.0.0-beta.2)
- RxCocoa (3.0.0-beta.2):
- RxSwift (~> 3.0.0-beta.2)
- RxSwift (3.0.0-beta.2)
- RxTests (3.0.0-beta.2):
- RxSwift (~> 3.0.0-beta.2)

DEPENDENCIES:
- JASON
- Kingfisher (= 3.1.1)
- RxBlocking (= 3.0.0-beta.2)
- RxCocoa (= 3.0.0-beta.2)
- RxSwift (= 3.0.0-beta.2)
- RxTests (= 3.0.0-beta.2)

SPEC CHECKSUMS:
JASON: cf4d762e61428a20db8eaef2acb6a569a10c1801
Kingfisher: 12b755ae697cc9f0fd3e550db8417fa1233e09ab
RxBlocking: 75dad8ed874b732da94780fdf7cf48eabf0d5d2b
RxCocoa: 1dd105d8a4e18034ccd7bd6d136445363ce67c8e
RxSwift: 0ea939d7d97cb70657190ffde8dc2a9b455778fc
RxTests: 9b696439878a1c7653bb55853af027fc261d0635

PODFILE CHECKSUM: 6f0018b65760ac7a8f462654e4fd7e3f3c05aae8

COCOAPODS: 1.0.1
19 changes: 19 additions & 0 deletions Pods/JASON/LICENSE

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 67ee0c5

Please sign in to comment.