Skip to content

Instantly share code, notes, and snippets.

-- Looking for OGRE...
-- checking for module 'OGRE'
-- package 'OGRE' not found
-- Found Ogre Byatis (1.8.0)
-- Found OGRE: -framework OGRE
-- Looking for OGRE_Paging...
-- Could not locate OGRE_Paging
-- Looking for OGRE_Terrain...
-- Could not locate OGRE_Terrain
-- Looking for OGRE_Property...
@zykis
zykis / ReactiveCocoa.podspec.json
Created December 10, 2016 11:20 — forked from PaulTaykalo/ReactiveCocoa.podspec.json
Reactive cocoa 4.1.0 podspec for Cocoapods 1.0
{
"name": "ReactiveCocoa",
"version": "4.2.2",
"summary": "A framework for composing and transforming streams of values.",
"description": "ReactiveCocoa (RAC) is an Objective-C framework for Functional Reactive Programming.\nIt provides APIs for composing and transforming streams of values.",
"homepage": "https://github.com/ReactiveCocoa/ReactiveCocoa",
"license": {
"type": "MIT",
"file": "LICENSE.md"
},
@zykis
zykis / APIClient
Created October 7, 2020 11:34
Code sample
import Foundation
import Alamofire
let host = "https://api-dev.talala.la/api/v2"
protocol APIClientProtocol {
var authentication: APIClientAuthServiceProtocol { get }
var user: APIClientUserServiceProtocol { get }