diff --git a/.gitignore b/.gitignore
index c545112..4be68d6 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1,118 @@
-xcuserdata/
+#########################
+# .gitignore file for Xcode4 and Xcode5 Source projects
+#
+# Apple bugs, waiting for Apple to fix/respond:
+#
+# 15564624 - what does the xccheckout file in Xcode5 do? Where's the documentation?
+#
+# Version 2.3
+# For latest version, see: http://stackoverflow.com/questions/49478/git-ignore-file-for-xcode-projects
+#
+# 2014 updates:
+# - appended non-standard items DISABLED by default (uncomment if you use those tools)
+# - removed the edit that an SO.com moderator made without bothering to ask me
+# - researched CocoaPods .lock more carefully, thanks to Gokhan Celiker
+# 2013 updates:
+# - fixed the broken "save personal Schemes"
+# - added line-by-line explanations for EVERYTHING (some were missing)
+#
+# NB: if you are storing "built" products, this WILL NOT WORK,
+# and you should use a different .gitignore (or none at all)
+# This file is for SOURCE projects, where there are many extra
+# files that we want to exclude
+#
+#########################
+
+#####
+# OS X temporary files that should never be committed
+#
+# c.f. http://www.westwind.com/reference/os-x/invisibles.html
+
+.DS_Store
+
+# c.f. http://www.westwind.com/reference/os-x/invisibles.html
+
+.Trashes
+
+# c.f. http://www.westwind.com/reference/os-x/invisibles.html
+
+*.swp
+
+#
+# *.lock - this is used and abused by many editors for many different things.
+# For the main ones I use (e.g. Eclipse), it should be excluded
+# from source-control, but YMMV.
+# (lock files are usually local-only file-synchronization on the local FS that should NOT go in git)
+# c.f. the "OPTIONAL" section at bottom though, for tool-specific variations!
+
+*.lock
+
+
+#
+# profile - REMOVED temporarily (on double-checking, I can't find it in OS X docs?)
+#profile
+
+
+####
+# Xcode temporary files that should never be committed
+#
+# NB: NIB/XIB files still exist even on Storyboard projects, so we want this...
+
+*~.nib
+
+
+####
+# Xcode build files -
+#
+# NB: slash on the end, so we only remove the FOLDER, not any files that were badly named "DerivedData"
+
+DerivedData/
+
+# NB: slash on the end, so we only remove the FOLDER, not any files that were badly named "build"
+
+build/
+
+
+#####
+# Xcode private settings (window sizes, bookmarks, breakpoints, custom executables, smart groups)
+#
+# This is complicated:
+#
+# SOMETIMES you need to put this file in version control.
+# Apple designed it poorly - if you use "custom executables", they are
+# saved in this file.
+# 99% of projects do NOT use those, so they do NOT want to version control this file.
+# ..but if you're in the 1%, comment out the line "*.pbxuser"
+
+# .pbxuser: http://lists.apple.com/archives/xcode-users/2004/Jan/msg00193.html
+
+*.pbxuser
+
+# .mode1v3: http://lists.apple.com/archives/xcode-users/2007/Oct/msg00465.html
+
+*.mode1v3
+
+# .mode2v3: http://lists.apple.com/archives/xcode-users/2007/Oct/msg00465.html
+
+*.mode2v3
+
+# .perspectivev3: http://stackoverflow.com/questions/5223297/xcode-projects-what-is-a-perspectivev3-file
+
+*.perspectivev3
+
+# NB: also, whitelist the default ones, some projects need to use these
+!default.pbxuser
+!default.mode1v3
+!default.mode2v3
+!default.perspectivev3
+
+
+xcuserdata
+*.xcworkspace
+
+*.moved-aside
+
+####
+## Pods
+Pods
+Podfile.lock
\ No newline at end of file
diff --git a/PocketForecast/AppDelegate.swift b/PocketForecast/AppDelegate.swift
index 5fd4d5b..2c8e1b3 100644
--- a/PocketForecast/AppDelegate.swift
+++ b/PocketForecast/AppDelegate.swift
@@ -16,11 +16,20 @@ import UIKit
class AppDelegate: UIResponder, UIApplicationDelegate {
var window: UIWindow?
- var cityDao: CityDao?
- var rootViewController: RootViewController?
+ var cityDao: CityDao? {
+
+ didSet {
+ println("did set city dao")
+ }
+ }
+ var rootViewController: RootViewController? {
+ didSet {
+ println("did set root view controller ")
+ }
+ }
func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool {
-
+ println("did finish launching ")
ICLoader.setImageName("cloud_icon.png")
ICLoader.setLabelFontName(UIFont.applicationFontOfSize(10).fontName)
diff --git a/PocketForecast/Assembly/ApplicationAssembly.swift b/PocketForecast/Assembly/ApplicationAssembly.swift
index ca319ba..4b72b9b 100644
--- a/PocketForecast/Assembly/ApplicationAssembly.swift
+++ b/PocketForecast/Assembly/ApplicationAssembly.swift
@@ -31,11 +31,29 @@ public class ApplicationAssembly: TyphoonAssembly {
public dynamic func appDelegate() -> AnyObject {
return TyphoonDefinition.withClass(AppDelegate.self) {
(definition) in
-
definition.injectProperty("cityDao", with:self.coreComponents.cityDao())
definition.injectProperty("rootViewController", with:self.rootViewController())
}
}
+
+ public dynamic func customObj() -> AnyObject {
+ return TyphoonDefinition.withClass(Temperature.self) {
+ (definition) in
+ definition.useInitializer("initWithCelciusString:") {
+ (initializer) in
+ initializer.injectParameterWith("1000")
+ }
+
+ /* This code will work. But I need overwrite the init method of Temperature class.
+ definition.useInitializer("init") {
+ }
+ */
+ }
+ }
+
+ public dynamic func customObj2() -> AnyObject {
+ return TyphoonDefinition.withClass(Temperature.self)
+ }
/*
@@ -69,7 +87,7 @@ public class ApplicationAssembly: TyphoonAssembly {
return TyphoonDefinition.withClass(CitiesListViewController.self) {
(definition) in
-
+ definition.scope = TyphoonScope.LazySingleton
definition.useInitializer("initWithCityDao:theme:") {
(initializer) in
diff --git a/PocketForecast/Assembly/Configuration.plist b/PocketForecast/Assembly/Configuration.plist
index af64757..4bfef62 100644
--- a/PocketForecast/Assembly/Configuration.plist
+++ b/PocketForecast/Assembly/Configuration.plist
@@ -5,7 +5,7 @@
service.url
NSURL(http://api.worldweatheronline.com/free/v2/weather.ashx)
api.key
- $$YOUR_API_KEY_HERE$$
+ a8f0760738b991f9a6d295a4230ff
days.to.retrieve
NSNumber(5)
diff --git a/PocketForecast/Client/WeatherClientBasicImpl.swift b/PocketForecast/Client/WeatherClientBasicImpl.swift
index d2d80a5..5764efc 100644
--- a/PocketForecast/Client/WeatherClientBasicImpl.swift
+++ b/PocketForecast/Client/WeatherClientBasicImpl.swift
@@ -14,7 +14,7 @@ import Foundation
public class WeatherClientBasicImpl: NSObject, WeatherClient {
var weatherReportDao: WeatherReportDao?
- var serviceUrl: NSURL?
+ var serviceUrl: NSURL! = NSURL(string: "http://free.worldweatheronline.com")
var daysToRetrieve: NSNumber?
var apiKey: String? {
diff --git a/PocketForecast/Model/Temperature.swift b/PocketForecast/Model/Temperature.swift
index 00f8459..dd2e2a1 100644
--- a/PocketForecast/Model/Temperature.swift
+++ b/PocketForecast/Model/Temperature.swift
@@ -16,7 +16,7 @@ public enum TemperatureUnits : Int {
case Fahrenheit
}
-
+@objc
public class Temperature : NSObject, NSCoding {
private var _temperatureInFahrenheit : NSDecimalNumber
@@ -31,7 +31,17 @@ public class Temperature : NSObject, NSCoding {
NSUserDefaults.standardUserDefaults().setInteger(units.rawValue, forKey: "pf.default.units")
}
-
+ override init() {
+ _temperatureInFahrenheit = NSDecimalNumber(string: "1000");
+
+ _shortFormatter = NSNumberFormatter()
+ _shortFormatter.minimumFractionDigits = 0;
+ _shortFormatter.maximumFractionDigits = 0;
+
+ _longFormatter = NSNumberFormatter()
+ _longFormatter.minimumFractionDigits = 0
+ _longFormatter.maximumFractionDigits = 1
+ }
public init(temperatureInFahrenheit : NSDecimalNumber) {
_temperatureInFahrenheit = temperatureInFahrenheit;
@@ -46,11 +56,11 @@ public class Temperature : NSObject, NSCoding {
}
- public convenience init(fahrenheitString : String) {
+ public dynamic convenience init(fahrenheitString : String) {
self.init(temperatureInFahrenheit:NSDecimalNumber(string: fahrenheitString))
}
- public convenience init(celciusString : String) {
+ public dynamic convenience init(celciusString : String) {
let fahrenheit = NSDecimalNumber(string: celciusString)
.decimalNumberByMultiplyingBy(9)
.decimalNumberByDividingBy(5)
diff --git a/PocketForecast/UserInterface/RootViewController.swift b/PocketForecast/UserInterface/RootViewController.swift
index eb5a281..2e5d80d 100644
--- a/PocketForecast/UserInterface/RootViewController.swift
+++ b/PocketForecast/UserInterface/RootViewController.swift
@@ -25,6 +25,7 @@ public class RootViewController : UIViewController, PaperFoldViewDelegate {
private var mainContentViewContainer : UIView!
private var sideViewState : SideViewState!
private var assembly : ApplicationAssembly!
+ var customObj: NSObject?
private var paperFoldView : PaperFoldView {
get {
@@ -45,7 +46,6 @@ public class RootViewController : UIViewController, PaperFoldViewDelegate {
public init(mainContentViewController : UIViewController, assembly : ApplicationAssembly) {
super.init(nibName : nil, bundle : nil)
-
self.assembly = assembly
self.sideViewState = SideViewState.Hidden
self.pushViewController(mainContentViewController, replaceRoot: true)
@@ -89,10 +89,19 @@ public class RootViewController : UIViewController, PaperFoldViewDelegate {
}
}
+ func address(o: T) -> Int {
+ return unsafeBitCast(o, Int.self)
+ }
+
public func showCitiesListController() {
+ //Test it here.
+ self.customObj = self.assembly.customObj() as? NSObject
+ let temp3 = self.assembly.customObj() as NSObject
+
if (self.sideViewState != SideViewState.Showing) {
self.sideViewState = SideViewState.Showing
- self.citiesListController = UINavigationController(rootViewController: self.assembly.citiesListController() as UIViewController)
+ let cityVC : UIViewController = self.assembly.citiesListController() as UIViewController
+ self.citiesListController = UINavigationController(rootViewController: cityVC)
self.citiesListController!.view.frame = CGRectMake(0, 0, SIDE_CONTROLLER_WIDTH, self.mainContentViewContainer.frame.size.height)
diff --git a/Podfile.lock b/Podfile.lock
index 3bedc08..86fe133 100644
--- a/Podfile.lock
+++ b/Podfile.lock
@@ -5,14 +5,14 @@ PODS:
- CKUITools
- NGAParallaxMotion (1.1.0)
- NSURL+QueryDictionary (1.0.3)
- - OCHamcrest (4.0.1)
+ - OCHamcrest (4.1.1)
- OCLogTemplate (1.0)
- - OCMockito (1.3.1):
+ - OCMockito (1.4.0):
- OCHamcrest (~> 4.0)
- PaperFold (1.2)
- - Typhoon (HEAD based on 2.3.2):
- - Typhoon/no-arc
- - Typhoon/no-arc (HEAD based on 2.3.2)
+ - Typhoon (HEAD based on 2.3.3):
+ - Typhoon/no-arc (= HEAD based on 2.3.3)
+ - Typhoon/no-arc (HEAD based on 2.3.3)
DEPENDENCIES:
- CKUITools
@@ -31,16 +31,21 @@ EXTERNAL SOURCES:
:git: https://github.com/jasperblues/PaperFold-for-iOS.git
:tag: 1.2-no-gesture-recognizers
+CHECKOUT OPTIONS:
+ PaperFold:
+ :git: https://github.com/jasperblues/PaperFold-for-iOS.git
+ :tag: 1.2-no-gesture-recognizers
+
SPEC CHECKSUMS:
CKUITools: b7e352ba583531b8946f22319aef43ce5e258f33
Expecta: 112bcafa2304ee0f3c5e586505f24555a47b25d5
ICLoader: fc21a5ad5ca6467dc897638fec533ef1516b7bdc
NGAParallaxMotion: 62644b783178f75a234f458270f416afee89877c
NSURL+QueryDictionary: 1ad81be60c10e3f4d80c5c4beb7125de96aaec5e
- OCHamcrest: b464725bbb48d0f1cd9c6f4ec3cb35fe0c4f2b94
+ OCHamcrest: af1c7c5ea345de69ea6c9c2958f65f3044e5c420
OCLogTemplate: 441259f3660762183dc412d6c30e68a6b6bd6adf
- OCMockito: 57b8c4bb54ff3a4a14eb2174f9e57faf9f56efb6
+ OCMockito: 991936bb775cc4c27f063d38f5e17b9161fbd21c
PaperFold: 56c21be56fe6454fa99927b251396471d341c874
- Typhoon: 9cd60aa73d729abc3478039a544fd7bb00a79f32
+ Typhoon: 4a4069a559bc0a033fba95611382a69ab194bec6
-COCOAPODS: 0.34.4
+COCOAPODS: 0.35.0
diff --git a/Pods/Headers/Build/Typhoon/TyphoonComponentFactoryPostProcessor.h b/Pods/Headers/Build/Typhoon/TyphoonComponentFactoryPostProcessor.h
deleted file mode 120000
index 71e4aec..0000000
--- a/Pods/Headers/Build/Typhoon/TyphoonComponentFactoryPostProcessor.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../Typhoon/Source/Configuration/TyphoonComponentFactoryPostProcessor.h
\ No newline at end of file
diff --git a/Pods/Headers/Build/Typhoon/TyphoonComponentPostProcessor.h b/Pods/Headers/Build/Typhoon/TyphoonComponentPostProcessor.h
deleted file mode 120000
index 28cdae6..0000000
--- a/Pods/Headers/Build/Typhoon/TyphoonComponentPostProcessor.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../Typhoon/Source/Configuration/TyphoonComponentPostProcessor.h
\ No newline at end of file
diff --git a/Pods/Headers/Public/OCHamcrest/HCBoolReturnGetter.h b/Pods/Headers/Public/OCHamcrest/HCBoolReturnGetter.h
deleted file mode 120000
index 344b4a8..0000000
--- a/Pods/Headers/Public/OCHamcrest/HCBoolReturnGetter.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCBoolReturnGetter.h
\ No newline at end of file
diff --git a/Pods/Headers/Public/OCHamcrest/HCCharReturnGetter.h b/Pods/Headers/Public/OCHamcrest/HCCharReturnGetter.h
deleted file mode 120000
index 24edd49..0000000
--- a/Pods/Headers/Public/OCHamcrest/HCCharReturnGetter.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCCharReturnGetter.h
\ No newline at end of file
diff --git a/Pods/Headers/Public/OCHamcrest/HCDoubleReturnGetter.h b/Pods/Headers/Public/OCHamcrest/HCDoubleReturnGetter.h
deleted file mode 120000
index e4ed473..0000000
--- a/Pods/Headers/Public/OCHamcrest/HCDoubleReturnGetter.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCDoubleReturnGetter.h
\ No newline at end of file
diff --git a/Pods/Headers/Public/OCHamcrest/HCFloatReturnGetter.h b/Pods/Headers/Public/OCHamcrest/HCFloatReturnGetter.h
deleted file mode 120000
index 2b30151..0000000
--- a/Pods/Headers/Public/OCHamcrest/HCFloatReturnGetter.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCFloatReturnGetter.h
\ No newline at end of file
diff --git a/Pods/Headers/Public/OCHamcrest/HCGenericTestFailureHandler.h b/Pods/Headers/Public/OCHamcrest/HCGenericTestFailureHandler.h
deleted file mode 120000
index dabaea1..0000000
--- a/Pods/Headers/Public/OCHamcrest/HCGenericTestFailureHandler.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../OCHamcrest/Source/Core/Helpers/TestFailureHandlers/HCGenericTestFailureHandler.h
\ No newline at end of file
diff --git a/Pods/Headers/Public/OCHamcrest/HCIntReturnGetter.h b/Pods/Headers/Public/OCHamcrest/HCIntReturnGetter.h
deleted file mode 120000
index b2bcd40..0000000
--- a/Pods/Headers/Public/OCHamcrest/HCIntReturnGetter.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCIntReturnGetter.h
\ No newline at end of file
diff --git a/Pods/Headers/Public/OCHamcrest/HCLongLongReturnGetter.h b/Pods/Headers/Public/OCHamcrest/HCLongLongReturnGetter.h
deleted file mode 120000
index edd4d34..0000000
--- a/Pods/Headers/Public/OCHamcrest/HCLongLongReturnGetter.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCLongLongReturnGetter.h
\ No newline at end of file
diff --git a/Pods/Headers/Public/OCHamcrest/HCLongReturnGetter.h b/Pods/Headers/Public/OCHamcrest/HCLongReturnGetter.h
deleted file mode 120000
index 83091ca..0000000
--- a/Pods/Headers/Public/OCHamcrest/HCLongReturnGetter.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCLongReturnGetter.h
\ No newline at end of file
diff --git a/Pods/Headers/Public/OCHamcrest/HCObjectReturnGetter.h b/Pods/Headers/Public/OCHamcrest/HCObjectReturnGetter.h
deleted file mode 120000
index 091ee29..0000000
--- a/Pods/Headers/Public/OCHamcrest/HCObjectReturnGetter.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCObjectReturnGetter.h
\ No newline at end of file
diff --git a/Pods/Headers/Public/OCHamcrest/HCReturnTypeHandlerChain.h b/Pods/Headers/Public/OCHamcrest/HCReturnTypeHandlerChain.h
deleted file mode 120000
index 84307b6..0000000
--- a/Pods/Headers/Public/OCHamcrest/HCReturnTypeHandlerChain.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCReturnTypeHandlerChain.h
\ No newline at end of file
diff --git a/Pods/Headers/Public/OCHamcrest/HCReturnValueGetter.h b/Pods/Headers/Public/OCHamcrest/HCReturnValueGetter.h
deleted file mode 120000
index 0fabb94..0000000
--- a/Pods/Headers/Public/OCHamcrest/HCReturnValueGetter.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCReturnValueGetter.h
\ No newline at end of file
diff --git a/Pods/Headers/Public/OCHamcrest/HCSenTestFailureHandler.h b/Pods/Headers/Public/OCHamcrest/HCSenTestFailureHandler.h
deleted file mode 120000
index d5d34da..0000000
--- a/Pods/Headers/Public/OCHamcrest/HCSenTestFailureHandler.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../OCHamcrest/Source/Core/Helpers/TestFailureHandlers/HCSenTestFailureHandler.h
\ No newline at end of file
diff --git a/Pods/Headers/Public/OCHamcrest/HCShortReturnGetter.h b/Pods/Headers/Public/OCHamcrest/HCShortReturnGetter.h
deleted file mode 120000
index e2e3ac1..0000000
--- a/Pods/Headers/Public/OCHamcrest/HCShortReturnGetter.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCShortReturnGetter.h
\ No newline at end of file
diff --git a/Pods/Headers/Public/OCHamcrest/HCUnsignedCharReturnGetter.h b/Pods/Headers/Public/OCHamcrest/HCUnsignedCharReturnGetter.h
deleted file mode 120000
index 7a44df7..0000000
--- a/Pods/Headers/Public/OCHamcrest/HCUnsignedCharReturnGetter.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCUnsignedCharReturnGetter.h
\ No newline at end of file
diff --git a/Pods/Headers/Public/OCHamcrest/HCUnsignedIntReturnGetter.h b/Pods/Headers/Public/OCHamcrest/HCUnsignedIntReturnGetter.h
deleted file mode 120000
index 6cd65ab..0000000
--- a/Pods/Headers/Public/OCHamcrest/HCUnsignedIntReturnGetter.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCUnsignedIntReturnGetter.h
\ No newline at end of file
diff --git a/Pods/Headers/Public/OCHamcrest/HCUnsignedLongLongReturnGetter.h b/Pods/Headers/Public/OCHamcrest/HCUnsignedLongLongReturnGetter.h
deleted file mode 120000
index a22ddf0..0000000
--- a/Pods/Headers/Public/OCHamcrest/HCUnsignedLongLongReturnGetter.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCUnsignedLongLongReturnGetter.h
\ No newline at end of file
diff --git a/Pods/Headers/Public/OCHamcrest/HCUnsignedLongReturnGetter.h b/Pods/Headers/Public/OCHamcrest/HCUnsignedLongReturnGetter.h
deleted file mode 120000
index f612e4a..0000000
--- a/Pods/Headers/Public/OCHamcrest/HCUnsignedLongReturnGetter.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCUnsignedLongReturnGetter.h
\ No newline at end of file
diff --git a/Pods/Headers/Public/OCHamcrest/HCUnsignedShortReturnGetter.h b/Pods/Headers/Public/OCHamcrest/HCUnsignedShortReturnGetter.h
deleted file mode 120000
index d5cdb61..0000000
--- a/Pods/Headers/Public/OCHamcrest/HCUnsignedShortReturnGetter.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCUnsignedShortReturnGetter.h
\ No newline at end of file
diff --git a/Pods/Headers/Public/OCHamcrest/HCXCTestFailureHandler.h b/Pods/Headers/Public/OCHamcrest/HCXCTestFailureHandler.h
deleted file mode 120000
index dcc76e2..0000000
--- a/Pods/Headers/Public/OCHamcrest/HCXCTestFailureHandler.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../OCHamcrest/Source/Core/Helpers/TestFailureHandlers/HCXCTestFailureHandler.h
\ No newline at end of file
diff --git a/Pods/Headers/Public/OCHamcrest/NSInvocation+OCHamcrest.h b/Pods/Headers/Public/OCHamcrest/NSInvocation+OCHamcrest.h
deleted file mode 120000
index ce6d765..0000000
--- a/Pods/Headers/Public/OCHamcrest/NSInvocation+OCHamcrest.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../OCHamcrest/Source/Core/Helpers/NSInvocation+OCHamcrest.h
\ No newline at end of file
diff --git a/Pods/Headers/Public/Typhoon/TyphoonComponentFactoryPostProcessor.h b/Pods/Headers/Public/Typhoon/TyphoonComponentFactoryPostProcessor.h
deleted file mode 120000
index 71e4aec..0000000
--- a/Pods/Headers/Public/Typhoon/TyphoonComponentFactoryPostProcessor.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../Typhoon/Source/Configuration/TyphoonComponentFactoryPostProcessor.h
\ No newline at end of file
diff --git a/Pods/Headers/Public/Typhoon/TyphoonComponentPostProcessor.h b/Pods/Headers/Public/Typhoon/TyphoonComponentPostProcessor.h
deleted file mode 120000
index 28cdae6..0000000
--- a/Pods/Headers/Public/Typhoon/TyphoonComponentPostProcessor.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../Typhoon/Source/Configuration/TyphoonComponentPostProcessor.h
\ No newline at end of file
diff --git a/Pods/Manifest.lock b/Pods/Manifest.lock
index 3bedc08..86fe133 100644
--- a/Pods/Manifest.lock
+++ b/Pods/Manifest.lock
@@ -5,14 +5,14 @@ PODS:
- CKUITools
- NGAParallaxMotion (1.1.0)
- NSURL+QueryDictionary (1.0.3)
- - OCHamcrest (4.0.1)
+ - OCHamcrest (4.1.1)
- OCLogTemplate (1.0)
- - OCMockito (1.3.1):
+ - OCMockito (1.4.0):
- OCHamcrest (~> 4.0)
- PaperFold (1.2)
- - Typhoon (HEAD based on 2.3.2):
- - Typhoon/no-arc
- - Typhoon/no-arc (HEAD based on 2.3.2)
+ - Typhoon (HEAD based on 2.3.3):
+ - Typhoon/no-arc (= HEAD based on 2.3.3)
+ - Typhoon/no-arc (HEAD based on 2.3.3)
DEPENDENCIES:
- CKUITools
@@ -31,16 +31,21 @@ EXTERNAL SOURCES:
:git: https://github.com/jasperblues/PaperFold-for-iOS.git
:tag: 1.2-no-gesture-recognizers
+CHECKOUT OPTIONS:
+ PaperFold:
+ :git: https://github.com/jasperblues/PaperFold-for-iOS.git
+ :tag: 1.2-no-gesture-recognizers
+
SPEC CHECKSUMS:
CKUITools: b7e352ba583531b8946f22319aef43ce5e258f33
Expecta: 112bcafa2304ee0f3c5e586505f24555a47b25d5
ICLoader: fc21a5ad5ca6467dc897638fec533ef1516b7bdc
NGAParallaxMotion: 62644b783178f75a234f458270f416afee89877c
NSURL+QueryDictionary: 1ad81be60c10e3f4d80c5c4beb7125de96aaec5e
- OCHamcrest: b464725bbb48d0f1cd9c6f4ec3cb35fe0c4f2b94
+ OCHamcrest: af1c7c5ea345de69ea6c9c2958f65f3044e5c420
OCLogTemplate: 441259f3660762183dc412d6c30e68a6b6bd6adf
- OCMockito: 57b8c4bb54ff3a4a14eb2174f9e57faf9f56efb6
+ OCMockito: 991936bb775cc4c27f063d38f5e17b9161fbd21c
PaperFold: 56c21be56fe6454fa99927b251396471d341c874
- Typhoon: 9cd60aa73d729abc3478039a544fd7bb00a79f32
+ Typhoon: 4a4069a559bc0a033fba95611382a69ab194bec6
-COCOAPODS: 0.34.4
+COCOAPODS: 0.35.0
diff --git a/Pods/OCHamcrest/LICENSE.txt b/Pods/OCHamcrest/LICENSE.txt
index 69310e5..bf185d5 100644
--- a/Pods/OCHamcrest/LICENSE.txt
+++ b/Pods/OCHamcrest/LICENSE.txt
@@ -1,27 +1,13 @@
-BSD License
-
+OCHamcrest by Jon Reid, http://qualitycoding.org/about/
Copyright 2014 hamcrest.org
All rights reserved.
-Redistribution and use in source and binary forms, with or without
-modification, are permitted provided that the following conditions are met:
+Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
+
+Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
-Redistributions of source code must retain the above copyright notice, this list of
-conditions and the following disclaimer. Redistributions in binary form must reproduce
-the above copyright notice, this list of conditions and the following disclaimer in
-the documentation and/or other materials provided with the distribution.
+Neither the name of Hamcrest nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
-Neither the name of Hamcrest nor the names of its contributors may be used to endorse
-or promote products derived from this software without specific prior written
-permission.
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
-EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
-OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
-SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
-INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
-TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
-BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY
-WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
-DAMAGE.
+(BSD License)
diff --git a/Pods/OCHamcrest/README.md b/Pods/OCHamcrest/README.md
index f658a8d..b78b23b 100644
--- a/Pods/OCHamcrest/README.md
+++ b/Pods/OCHamcrest/README.md
@@ -135,6 +135,7 @@ OCHamcrest comes with a library of useful matchers:
* `isA` - match object type precisely, no subclasses
* `nilValue`, `notNilValue` - match `nil`, or not `nil`
* `sameInstance` - match same object
+ * `throwsException` - match block that throws an exception
* Number
@@ -143,6 +144,8 @@ OCHamcrest comes with a library of useful matchers:
`equalToInt` for an `int`)
* `greaterThan`, `greaterThanOrEqualTo`, `lessThan`,
`lessThanOrEqualTo` - match numeric ordering
+ * `isFalse` - match zero
+ * `isTrue` - match non-zero
* Text
@@ -166,6 +169,7 @@ OCHamcrest comes with a library of useful matchers:
* `contains` - exactly match the entire collection
* `containsInAnyOrder` - match the entire collection, but in any order
+ * `everyItem` - match if every item in a collection satisfies a given matcher
* `hasCount` - match number of elements against another matcher
* `hasCountOf` - match collection with given number of elements
* `hasEntries` - match dictionary with list of key-value pairs
@@ -206,6 +210,20 @@ Other matchers that take matchers as arguments provide similar shortcuts,
wrapping non-matcher arguments in `equalTo`.
+How can I assert on an asynchronous call?
+-----------------------------------------
+
+`assertThatAfter` will keep trying to evaluate an expression until the matcher
+is satisfied or a timeout is reached. For example,
+
+```obj-c
+assertThatAfter(5, futureValueOf(self.someString), is(equalTo(@"expected")));
+```
+
+This checks several times for this string to be @"expected" before timing out
+after 5 seconds. `futureValueOf` is a convenience function to create a block.
+
+
Writing custom matchers
-----------------------
@@ -213,3 +231,9 @@ OCHamcrest comes bundled with lots of useful matchers, but you'll probably find
that you need to create your own from time to time to fit your testing needs.
See the ["Writing Custom Matchers" guide for more information](https://github.com/hamcrest/OCHamcrest/wiki/Writing-Custom-Matchers
).
+
+
+What about Swift?
+-----------------
+
+Try the [native Swift implementation of Hamcrest](https://github.com/nschum/SwiftHamcrest).
diff --git a/Pods/OCHamcrest/Source/Core/HCAssertThat.h b/Pods/OCHamcrest/Source/Core/HCAssertThat.h
index 9772861..fe52857 100644
--- a/Pods/OCHamcrest/Source/Core/HCAssertThat.h
+++ b/Pods/OCHamcrest/Source/Core/HCAssertThat.h
@@ -1,11 +1,5 @@
-//
-// OCHamcrest - HCAssertThat.h
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
#import
@@ -21,22 +15,59 @@ FOUNDATION_EXPORT void HC_assertThatWithLocation(id testCase, id actual, id matcher,
+ const char *fileName, int lineNumber);
+
+#define HC_assertThatAfter(maxTime, actualBlock, matcher) \
+ HC_assertThatAfterWithLocation(self, maxTime, actualBlock, matcher, __FILE__, __LINE__)
+
+#define HC_futureValueOf(actual) ^{ return actual; }
+
+/**
+ assertThatAfter(maxTime, actualBlock, matcher) -
+ Asserts that a value provided by a block will satisfy matcher in less than a given time.
+
+ @param maxTime Max time (in seconds) in which the matcher has to be satisfied.
+ @param actualBlock A block providing the object to evaluate until timeout or the matcher is satisfied.
+ @param matcher The matcher to satisfy as the expected condition.
+
+ @c assertThatAfter checks several times if the matcher is satisfied before timeout. To evaluate the
+ matcher, the @c actualBlock will provide updated values of actual. If the matcher is not satisfied
+ after @c maxTime, an exception is thrown describing the mismatch. An easy way of defining this
+ @c actualBlock is using the macro futureValueOf(actual)
, which also improves
+ readability.
+
+ In the event of a name clash, don't \#define @c HC_SHORTHAND and use the synonym
+ @c HC_assertThatAfter and HC_futureValueOf instead.
+
+ @ingroup integration
+*/
+#ifdef HC_SHORTHAND
+ #define assertThatAfter HC_assertThatAfter
+ #define futureValueOf HC_futureValueOf
+#endif
diff --git a/Pods/OCHamcrest/Source/Core/HCAssertThat.m b/Pods/OCHamcrest/Source/Core/HCAssertThat.m
index 2d38e32..fc9ace3 100644
--- a/Pods/OCHamcrest/Source/Core/HCAssertThat.m
+++ b/Pods/OCHamcrest/Source/Core/HCAssertThat.m
@@ -1,11 +1,5 @@
-//
-// OCHamcrest - HCAssertThat.m
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
#import "HCAssertThat.h"
@@ -14,6 +8,7 @@
#import "HCTestFailure.h"
#import "HCTestFailureHandler.h"
#import "HCTestFailureHandlerChain.h"
+#import
static NSString *describeMismatch(id matcher, id actual)
@@ -26,17 +21,41 @@
return [description description];
}
+static void reportMismatch(id testCase, id actual, id matcher,
+ char const *fileName, int lineNumber)
+{
+ HCTestFailure *failure = [[HCTestFailure alloc] initWithTestCase:testCase
+ fileName:[NSString stringWithUTF8String:fileName]
+ lineNumber:(NSUInteger)lineNumber
+ reason:describeMismatch(matcher, actual)];
+ HCTestFailureHandler *chain = HC_testFailureHandlerChain();
+ [chain handleFailure:failure];
+}
+
void HC_assertThatWithLocation(id testCase, id actual, id matcher,
const char *fileName, int lineNumber)
{
if (![matcher matches:actual])
+ reportMismatch(testCase, actual, matcher, fileName, lineNumber);
+}
+
+void HC_assertThatAfterWithLocation(id testCase, NSTimeInterval maxTime,
+ HCAssertThatAfterActualBlock actualBlock, id matcher,
+ const char *fileName, int lineNumber)
+{
+ BOOL match;
+ id actual;
+ NSDate *expiryDate = [NSDate dateWithTimeIntervalSinceNow:maxTime];
+ while (1)
{
- HCTestFailure *failure = [[HCTestFailure alloc] initWithTestCase:testCase
- fileName:[NSString stringWithUTF8String:fileName]
- lineNumber:(NSUInteger)lineNumber
- reason:describeMismatch(matcher, actual)];
- HCTestFailureHandler *chain = HC_testFailureHandlerChain();
- [chain handleFailure:failure];
+ actual = actualBlock();
+ match = [matcher matches:actual];
+ if (match || ([[NSDate date] compare:expiryDate] == NSOrderedDescending))
+ break;
+ [[NSRunLoop currentRunLoop] runUntilDate:[NSDate dateWithTimeIntervalSinceNow:0.01]];
+ OSMemoryBarrier();
}
-}
+ if (!match)
+ reportMismatch(testCase, actual, matcher, fileName, lineNumber);
+}
diff --git a/Pods/OCHamcrest/Source/Core/HCBaseDescription.h b/Pods/OCHamcrest/Source/Core/HCBaseDescription.h
index 6090618..6419ad9 100644
--- a/Pods/OCHamcrest/Source/Core/HCBaseDescription.h
+++ b/Pods/OCHamcrest/Source/Core/HCBaseDescription.h
@@ -1,11 +1,5 @@
-//
-// OCHamcrest - HCBaseDescription.h
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
#import
#import
@@ -13,7 +7,7 @@
/**
Base class for all HCDescription implementations.
-
+
@ingroup core
*/
@interface HCBaseDescription : NSObject
diff --git a/Pods/OCHamcrest/Source/Core/HCBaseDescription.m b/Pods/OCHamcrest/Source/Core/HCBaseDescription.m
index a22621d..37b1881 100644
--- a/Pods/OCHamcrest/Source/Core/HCBaseDescription.m
+++ b/Pods/OCHamcrest/Source/Core/HCBaseDescription.m
@@ -1,11 +1,5 @@
-//
-// OCHamcrest - HCBaseDescription.m
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
#import "HCBaseDescription.h"
@@ -26,11 +20,11 @@ @implementation HCBaseDescription
[self append:@"nil"];
else if ([value conformsToProtocol:@protocol(HCSelfDescribing)])
[value describeTo:self];
- else if ([value isKindOfClass:[NSString class]])
+ else if ([value respondsToSelector:@selector(isKindOfClass:)] && [value isKindOfClass:[NSString class]])
[self toCSyntaxString:value];
else
[self appendObjectDescriptionOf:value];
-
+
return self;
}
@@ -60,7 +54,7 @@ @implementation HCBaseDescription
end:(NSString *)end
{
BOOL separate = NO;
-
+
[self append:start];
for (id item in values)
{
diff --git a/Pods/OCHamcrest/Source/Core/HCBaseMatcher.h b/Pods/OCHamcrest/Source/Core/HCBaseMatcher.h
index b7e2f1c..2ff2be4 100644
--- a/Pods/OCHamcrest/Source/Core/HCBaseMatcher.h
+++ b/Pods/OCHamcrest/Source/Core/HCBaseMatcher.h
@@ -1,25 +1,24 @@
-//
-// OCHamcrest - HCBaseMatcher.h
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
#import
#import
+#define HC_ABSTRACT_METHOD [self subclassResponsibility:_cmd]
+
/**
Base class for all HCMatcher implementations.
-
- Most implementations can just implement @c -matches: and let
- -matches:describingMismatchTo:
call it. But if it makes more sense to generate the
- mismatch description during the matching, override -matches:describingMismatchTo:
- and have @c -matches: call it with a @c nil description.
-
+
+ Simple matchers can just subclass HCBaseMatcher and implement @c -matches: and @c -describeTo:. But
+ if the matching algorithm has several "no match" paths, consider subclassing HCDiagnosingMatcher
+ instead.
+
@ingroup core
*/
@interface HCBaseMatcher : NSObject
+
+/// Raises exception that command (a pseudo-abstract method) is not implemented.
+- (void)subclassResponsibility:(SEL)command;
+
@end
diff --git a/Pods/OCHamcrest/Source/Core/HCBaseMatcher.m b/Pods/OCHamcrest/Source/Core/HCBaseMatcher.m
index ab5db3c..2c05aa3 100644
--- a/Pods/OCHamcrest/Source/Core/HCBaseMatcher.m
+++ b/Pods/OCHamcrest/Source/Core/HCBaseMatcher.m
@@ -1,18 +1,10 @@
-//
-// OCHamcrest - HCBaseMatcher.m
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
#import "HCBaseMatcher.h"
#import "HCStringDescription.h"
-#define ABSTRACT_METHOD [self subclassResponsibility:_cmd]
-
@implementation HCBaseMatcher
@@ -23,7 +15,7 @@ - (NSString *)description
- (BOOL)matches:(id)item
{
- ABSTRACT_METHOD;
+ HC_ABSTRACT_METHOD;
return NO;
}
@@ -42,7 +34,7 @@ - (void)describeMismatchOf:(id)item to:(id)mismatchDescription
- (void)describeTo:(id)description
{
- ABSTRACT_METHOD;
+ HC_ABSTRACT_METHOD;
}
- (void)subclassResponsibility:(SEL)command
diff --git a/Pods/OCHamcrest/Source/Core/HCDescription.h b/Pods/OCHamcrest/Source/Core/HCDescription.h
index 00c1588..2a6a27c 100644
--- a/Pods/OCHamcrest/Source/Core/HCDescription.h
+++ b/Pods/OCHamcrest/Source/Core/HCDescription.h
@@ -1,43 +1,37 @@
-//
-// OCHamcrest - HCDescription.h
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
#import
/**
A description of an HCMatcher.
-
+
An HCMatcher will describe itself to a description which can later be used for reporting.
-
+
@ingroup core
*/
@protocol HCDescription
/**
Appends some plain text to the description.
-
+
@return @c self, for chaining.
*/
- (id)appendText:(NSString *)text;
/**
Appends description of given value to @c self.
-
+
If the value implements the @ref HCSelfDescribing protocol, then it will be used.
-
+
@return @c self, for chaining.
*/
- (id)appendDescriptionOf:(id)value;
-/**
+/**
Appends a list of objects to the description.
-
+
@return @c self, for chaining.
*/
- (id)appendList:(NSArray *)values
diff --git a/Pods/OCHamcrest/Source/Core/HCMatcher.h b/Pods/OCHamcrest/Source/Core/HCMatcher.h
index 31cae14..baf3dc2 100644
--- a/Pods/OCHamcrest/Source/Core/HCMatcher.h
+++ b/Pods/OCHamcrest/Source/Core/HCMatcher.h
@@ -1,31 +1,25 @@
-//
-// OCHamcrest - HCMatcher.h
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
#import "HCSelfDescribing.h"
/**
A matcher over acceptable values.
-
+
A matcher is able to describe itself to give feedback when it fails.
-
+
HCMatcher implementations should @b not directly implement this protocol.
Instead, @b extend the HCBaseMatcher class, which will ensure that the HCMatcher API can grow
to support new features and remain compatible with all HCMatcher implementations.
-
+
@ingroup core
*/
@protocol HCMatcher
/**
Evaluates the matcher for argument @a item.
-
+
@param item The object against which the matcher is evaluated.
@return @c YES if @a item matches, otherwise @c NO.
*/
@@ -33,7 +27,7 @@
/**
Evaluates the matcher for argument @a item.
-
+
@param item The object against which the matcher is evaluated.
@param mismatchDescription The description to be built or appended to if @a item does not match.
@return @c YES if @a item matches, otherwise @c NO.
@@ -42,12 +36,12 @@
/**
Generates a description of why the matcher has not accepted the item.
-
+
The description will be part of a larger description of why a matching failed, so it should be
concise.
-
+
This method assumes that @c matches:item is false, but will not check this.
-
+
@param item The item that the HCMatcher has rejected.
@param mismatchDescription The description to be built or appended to.
*/
diff --git a/Pods/OCHamcrest/Source/Core/HCSelfDescribing.h b/Pods/OCHamcrest/Source/Core/HCSelfDescribing.h
index e0ed74a..1e289b7 100644
--- a/Pods/OCHamcrest/Source/Core/HCSelfDescribing.h
+++ b/Pods/OCHamcrest/Source/Core/HCSelfDescribing.h
@@ -1,11 +1,5 @@
-//
-// OCHamcrest - HCSelfDescribing.h
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
#import
@@ -14,14 +8,14 @@
/**
The ability of an object to describe itself.
-
+
@ingroup core
*/
@protocol HCSelfDescribing
/**
Generates a description of the object.
-
+
The description may be part of a description of a larger object of which this is just a
component, so it should be worded appropriately.
diff --git a/Pods/OCHamcrest/Source/Core/HCStringDescription.h b/Pods/OCHamcrest/Source/Core/HCStringDescription.h
index 5b424bf..a6bea1d 100644
--- a/Pods/OCHamcrest/Source/Core/HCStringDescription.h
+++ b/Pods/OCHamcrest/Source/Core/HCStringDescription.h
@@ -1,11 +1,5 @@
-//
-// OCHamcrest - HCStringDescription.h
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
#import
@@ -14,7 +8,7 @@
/**
An HCDescription that is stored as a string.
-
+
@ingroup core
*/
@interface HCStringDescription : HCBaseDescription
@@ -24,7 +18,7 @@
/**
Returns the description of an HCSelfDescribing object as a string.
-
+
@param selfDescribing The object to be described.
@return The description of the object.
*/
diff --git a/Pods/OCHamcrest/Source/Core/HCStringDescription.m b/Pods/OCHamcrest/Source/Core/HCStringDescription.m
index 83e0b3e..bbfdad0 100644
--- a/Pods/OCHamcrest/Source/Core/HCStringDescription.m
+++ b/Pods/OCHamcrest/Source/Core/HCStringDescription.m
@@ -1,11 +1,5 @@
-//
-// OCHamcrest - HCStringDescription.m
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
#import "HCStringDescription.h"
diff --git a/Pods/OCHamcrest/Source/Core/Helpers/HCCollect.h b/Pods/OCHamcrest/Source/Core/Helpers/HCCollect.h
index e4c498e..2ca62e6 100644
--- a/Pods/OCHamcrest/Source/Core/Helpers/HCCollect.h
+++ b/Pods/OCHamcrest/Source/Core/Helpers/HCCollect.h
@@ -1,11 +1,5 @@
-//
-// OCHamcrest - HCCollect.h
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
#import
@@ -25,7 +19,7 @@ FOUNDATION_EXPORT NSMutableArray *HCCollectItems(id item, va_list args);
Returns an array of matchers from a variable-length comma-separated list terminated by @c nil.
Each item is wrapped in HCWrapInMatcher to transform non-matcher items into equality matchers.
-
+
@ingroup helpers
*/
FOUNDATION_EXPORT NSMutableArray *HCCollectMatchers(id item, va_list args);
diff --git a/Pods/OCHamcrest/Source/Core/Helpers/HCCollect.m b/Pods/OCHamcrest/Source/Core/Helpers/HCCollect.m
index c5828c7..b7edc58 100644
--- a/Pods/OCHamcrest/Source/Core/Helpers/HCCollect.m
+++ b/Pods/OCHamcrest/Source/Core/Helpers/HCCollect.m
@@ -1,11 +1,5 @@
-//
-// OCHamcrest - HCCollect.m
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
#import "HCCollect.h"
diff --git a/Pods/OCHamcrest/Source/Core/Helpers/HCInvocationMatcher.h b/Pods/OCHamcrest/Source/Core/Helpers/HCInvocationMatcher.h
index 700d040..0b3c1e5 100644
--- a/Pods/OCHamcrest/Source/Core/Helpers/HCInvocationMatcher.h
+++ b/Pods/OCHamcrest/Source/Core/Helpers/HCInvocationMatcher.h
@@ -1,20 +1,14 @@
-//
-// OCHamcrest - HCInvocationMatcher.h
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
#import
/**
Supporting class for matching a feature of an object.
-
+
Tests whether the result of passing a given invocation to the value satisfies a given matcher.
-
+
@ingroup helpers
*/
@interface HCInvocationMatcher : HCBaseMatcher
@@ -25,7 +19,7 @@
/**
Determines whether a mismatch will be described in short form.
-
+
Default is long form, which describes the object, the name of the invocation, and the
sub-matcher's mismatch diagnosis. Short form only has the sub-matcher's mismatch diagnosis.
*/
diff --git a/Pods/OCHamcrest/Source/Core/Helpers/HCInvocationMatcher.m b/Pods/OCHamcrest/Source/Core/Helpers/HCInvocationMatcher.m
index 4336b64..cf4b016 100644
--- a/Pods/OCHamcrest/Source/Core/Helpers/HCInvocationMatcher.m
+++ b/Pods/OCHamcrest/Source/Core/Helpers/HCInvocationMatcher.m
@@ -1,11 +1,5 @@
-//
-// OCHamcrest - HCInvocationMatcher.m
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
#import "HCInvocationMatcher.h"
diff --git a/Pods/OCHamcrest/Source/Core/Helpers/HCRequireNonNilObject.h b/Pods/OCHamcrest/Source/Core/Helpers/HCRequireNonNilObject.h
index 65e5072..904aed5 100644
--- a/Pods/OCHamcrest/Source/Core/Helpers/HCRequireNonNilObject.h
+++ b/Pods/OCHamcrest/Source/Core/Helpers/HCRequireNonNilObject.h
@@ -1,18 +1,12 @@
-//
-// OCHamcrest - HCRequireNonNilObject.h
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
#import
/**
Throws an NSException if @a obj is @c nil.
-
+
@ingroup helpers
*/
FOUNDATION_EXPORT void HCRequireNonNilObject(id obj);
diff --git a/Pods/OCHamcrest/Source/Core/Helpers/HCRequireNonNilObject.m b/Pods/OCHamcrest/Source/Core/Helpers/HCRequireNonNilObject.m
index 64b702a..99add1f 100644
--- a/Pods/OCHamcrest/Source/Core/Helpers/HCRequireNonNilObject.m
+++ b/Pods/OCHamcrest/Source/Core/Helpers/HCRequireNonNilObject.m
@@ -1,11 +1,5 @@
-//
-// OCHamcrest - HCRequireNonNilObject.m
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
#import "HCRequireNonNilObject.h"
diff --git a/Pods/OCHamcrest/Source/Core/Helpers/HCWrapInMatcher.h b/Pods/OCHamcrest/Source/Core/Helpers/HCWrapInMatcher.h
index 3396ab1..1068e2c 100644
--- a/Pods/OCHamcrest/Source/Core/Helpers/HCWrapInMatcher.h
+++ b/Pods/OCHamcrest/Source/Core/Helpers/HCWrapInMatcher.h
@@ -1,11 +1,5 @@
-//
-// OCHamcrest - HCWrapInMatcher.h
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
#import
@@ -14,9 +8,9 @@
/**
Wraps argument in a matcher, if necessary.
-
+
@return The argument as-if if it is already a matcher, otherwise wrapped in an @ref equalTo matcher.
-
+
@ingroup helpers
*/
FOUNDATION_EXPORT id HCWrapInMatcher(id matcherOrValue);
diff --git a/Pods/OCHamcrest/Source/Core/Helpers/HCWrapInMatcher.m b/Pods/OCHamcrest/Source/Core/Helpers/HCWrapInMatcher.m
index fec0e3b..32596d2 100644
--- a/Pods/OCHamcrest/Source/Core/Helpers/HCWrapInMatcher.m
+++ b/Pods/OCHamcrest/Source/Core/Helpers/HCWrapInMatcher.m
@@ -1,11 +1,5 @@
-//
-// OCHamcrest - HCWrapInMatcher.m
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
#import "HCWrapInMatcher.h"
@@ -16,7 +10,7 @@
{
if (!matcherOrValue)
return nil;
-
+
if ([matcherOrValue conformsToProtocol:@protocol(HCMatcher)])
return matcherOrValue;
return HC_equalTo(matcherOrValue);
diff --git a/Pods/OCHamcrest/Source/Core/Helpers/NSInvocation+OCHamcrest.h b/Pods/OCHamcrest/Source/Core/Helpers/NSInvocation+OCHamcrest.h
index 12906ff..f961278 100644
--- a/Pods/OCHamcrest/Source/Core/Helpers/NSInvocation+OCHamcrest.h
+++ b/Pods/OCHamcrest/Source/Core/Helpers/NSInvocation+OCHamcrest.h
@@ -1,11 +1,5 @@
-//
-// OCHamcrest - NSInvocation+OCHamcrest.h
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
#import
diff --git a/Pods/OCHamcrest/Source/Core/Helpers/NSInvocation+OCHamcrest.m b/Pods/OCHamcrest/Source/Core/Helpers/NSInvocation+OCHamcrest.m
index 4354854..8312614 100644
--- a/Pods/OCHamcrest/Source/Core/Helpers/NSInvocation+OCHamcrest.m
+++ b/Pods/OCHamcrest/Source/Core/Helpers/NSInvocation+OCHamcrest.m
@@ -1,11 +1,5 @@
-//
-// OCHamcrest - NSInvocation+OCHamcrest.m
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
#import "NSInvocation+OCHamcrest.h"
diff --git a/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCBoolReturnGetter.h b/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCBoolReturnGetter.h
index 206af20..51c2a5a 100644
--- a/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCBoolReturnGetter.h
+++ b/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCBoolReturnGetter.h
@@ -1,11 +1,5 @@
-//
-// OCHamcrest - HCBoolReturnGetter.h
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
#import "HCReturnValueGetter.h"
diff --git a/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCBoolReturnGetter.m b/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCBoolReturnGetter.m
index 2e7d06a..8df20a1 100644
--- a/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCBoolReturnGetter.m
+++ b/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCBoolReturnGetter.m
@@ -1,11 +1,5 @@
-//
-// OCHamcrest - HCBoolReturnGetter.m
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
#import "HCBoolReturnGetter.h"
diff --git a/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCCharReturnGetter.h b/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCCharReturnGetter.h
index 71d8834..746f19a 100644
--- a/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCCharReturnGetter.h
+++ b/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCCharReturnGetter.h
@@ -1,11 +1,5 @@
-//
-// OCHamcrest - HCCharReturnGetter.h
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
#import "HCReturnValueGetter.h"
diff --git a/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCCharReturnGetter.m b/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCCharReturnGetter.m
index 671bfcb..d3292b1 100644
--- a/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCCharReturnGetter.m
+++ b/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCCharReturnGetter.m
@@ -1,11 +1,5 @@
-//
-// OCHamcrest - HCCharReturnGetter.m
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
#import "HCCharReturnGetter.h"
diff --git a/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCDoubleReturnGetter.h b/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCDoubleReturnGetter.h
index 3fbe50e..16add08 100644
--- a/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCDoubleReturnGetter.h
+++ b/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCDoubleReturnGetter.h
@@ -1,11 +1,5 @@
-//
-// OCHamcrest - HCDoubleReturnGetter.h
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
#import "HCReturnValueGetter.h"
diff --git a/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCDoubleReturnGetter.m b/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCDoubleReturnGetter.m
index 9417030..e53ac5f 100644
--- a/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCDoubleReturnGetter.m
+++ b/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCDoubleReturnGetter.m
@@ -1,11 +1,5 @@
-//
-// OCHamcrest - HCDoubleReturnGetter.m
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
#import "HCDoubleReturnGetter.h"
diff --git a/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCFloatReturnGetter.h b/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCFloatReturnGetter.h
index 0756a68..3ce72d1 100644
--- a/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCFloatReturnGetter.h
+++ b/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCFloatReturnGetter.h
@@ -1,11 +1,5 @@
-//
-// OCHamcrest - HCFloatReturnGetter.h
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
#import "HCReturnValueGetter.h"
diff --git a/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCFloatReturnGetter.m b/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCFloatReturnGetter.m
index 829a11e..592c1f7 100644
--- a/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCFloatReturnGetter.m
+++ b/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCFloatReturnGetter.m
@@ -1,11 +1,5 @@
-//
-// OCHamcrest - HCFloatReturnGetter.m
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
#import "HCFloatReturnGetter.h"
diff --git a/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCIntReturnGetter.h b/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCIntReturnGetter.h
index 39a06a6..17e649e 100644
--- a/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCIntReturnGetter.h
+++ b/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCIntReturnGetter.h
@@ -1,11 +1,5 @@
-//
-// OCHamcrest - HCIntReturnGetter.h
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
#import "HCReturnValueGetter.h"
diff --git a/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCIntReturnGetter.m b/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCIntReturnGetter.m
index da9c854..d9accce 100644
--- a/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCIntReturnGetter.m
+++ b/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCIntReturnGetter.m
@@ -1,11 +1,5 @@
-//
-// OCHamcrest - HCIntReturnGetter.m
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
#import "HCIntReturnGetter.h"
diff --git a/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCLongLongReturnGetter.h b/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCLongLongReturnGetter.h
index 4e4783e..3fcaeeb 100644
--- a/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCLongLongReturnGetter.h
+++ b/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCLongLongReturnGetter.h
@@ -1,11 +1,5 @@
-//
-// OCHamcrest - HCLongLongReturnGetter.h
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
#import "HCReturnValueGetter.h"
diff --git a/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCLongLongReturnGetter.m b/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCLongLongReturnGetter.m
index 54bfbcd..94ccc64 100644
--- a/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCLongLongReturnGetter.m
+++ b/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCLongLongReturnGetter.m
@@ -1,11 +1,5 @@
-//
-// OCHamcrest - HCLongLongReturnGetter.m
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
#import "HCLongLongReturnGetter.h"
diff --git a/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCLongReturnGetter.h b/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCLongReturnGetter.h
index 7afb8ea..247c70f 100644
--- a/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCLongReturnGetter.h
+++ b/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCLongReturnGetter.h
@@ -1,11 +1,5 @@
-//
-// OCHamcrest - HCLongReturnGetter.h
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
#import "HCReturnValueGetter.h"
diff --git a/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCLongReturnGetter.m b/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCLongReturnGetter.m
index 8471230..ecc3d25 100644
--- a/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCLongReturnGetter.m
+++ b/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCLongReturnGetter.m
@@ -1,11 +1,5 @@
-//
-// OCHamcrest - HCLongReturnGetter.m
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
#import "HCLongReturnGetter.h"
diff --git a/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCObjectReturnGetter.h b/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCObjectReturnGetter.h
index f89db68..be21222 100644
--- a/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCObjectReturnGetter.h
+++ b/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCObjectReturnGetter.h
@@ -1,11 +1,5 @@
-//
-// OCHamcrest - HCObjectReturnGetter.h
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
#import "HCReturnValueGetter.h"
diff --git a/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCObjectReturnGetter.m b/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCObjectReturnGetter.m
index 65ac153..6fdec54 100644
--- a/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCObjectReturnGetter.m
+++ b/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCObjectReturnGetter.m
@@ -1,11 +1,5 @@
-//
-// OCHamcrest - HCObjectReturnGetter.m
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
#import "HCObjectReturnGetter.h"
diff --git a/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCReturnTypeHandlerChain.h b/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCReturnTypeHandlerChain.h
index fd64fdb..d4bb5fc 100644
--- a/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCReturnTypeHandlerChain.h
+++ b/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCReturnTypeHandlerChain.h
@@ -1,11 +1,5 @@
-//
-// OCHamcrest - HCReturnValueGetterChain.h
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
#import
diff --git a/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCReturnTypeHandlerChain.m b/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCReturnTypeHandlerChain.m
index c2e0f3c..44f49d5 100644
--- a/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCReturnTypeHandlerChain.m
+++ b/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCReturnTypeHandlerChain.m
@@ -1,11 +1,5 @@
-//
-// OCHamcrest - HCReturnValueGetterChain.m
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
#import "HCReturnTypeHandlerChain.h"
diff --git a/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCReturnValueGetter.h b/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCReturnValueGetter.h
index 677a958..9d3c52f 100644
--- a/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCReturnValueGetter.h
+++ b/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCReturnValueGetter.h
@@ -1,11 +1,5 @@
-//
-// OCHamcrest - HCReturnValueGetter.h
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
#import
diff --git a/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCReturnValueGetter.m b/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCReturnValueGetter.m
index c7e2070..1b10d30 100644
--- a/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCReturnValueGetter.m
+++ b/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCReturnValueGetter.m
@@ -1,11 +1,5 @@
-//
-// OCHamcrest - HCReturnValueGetter.m
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
#import "HCReturnValueGetter.h"
@@ -15,8 +9,8 @@ - (id)returnValueFromInvocation:(NSInvocation *)invocation;
@end
@interface HCReturnValueGetter ()
-@property (nonatomic, readonly) char const *handlerType;
-@property (nonatomic, readonly) HCReturnValueGetter *successor;
+@property (readonly, nonatomic, assign) char const *handlerType;
+@property (readonly, nonatomic, strong) HCReturnValueGetter *successor;
@end
@@ -42,8 +36,8 @@ - (id)returnValueOfType:(char const *)type fromInvocation:(NSInvocation *)invoca
{
if ([self handlesReturnType:type])
return [self returnValueFromInvocation:invocation];
- else
- return [self.successor returnValueOfType:type fromInvocation:invocation];
+
+ return [self.successor returnValueOfType:type fromInvocation:invocation];
}
@end
diff --git a/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCShortReturnGetter.h b/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCShortReturnGetter.h
index ed1fd9d..7105bc0 100644
--- a/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCShortReturnGetter.h
+++ b/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCShortReturnGetter.h
@@ -1,11 +1,5 @@
-//
-// OCHamcrest - HCShortReturnGetter.h
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
#import "HCReturnValueGetter.h"
diff --git a/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCShortReturnGetter.m b/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCShortReturnGetter.m
index c37531c..c7ac6a2 100644
--- a/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCShortReturnGetter.m
+++ b/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCShortReturnGetter.m
@@ -1,11 +1,5 @@
-//
-// OCHamcrest - HCShortReturnGetter.m
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
#import "HCShortReturnGetter.h"
diff --git a/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCUnsignedCharReturnGetter.h b/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCUnsignedCharReturnGetter.h
index d2bc3ce..7c17ad9 100644
--- a/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCUnsignedCharReturnGetter.h
+++ b/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCUnsignedCharReturnGetter.h
@@ -1,11 +1,5 @@
-//
-// OCHamcrest - HCUnsignedCharReturnGetter.h
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
#import "HCReturnValueGetter.h"
diff --git a/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCUnsignedCharReturnGetter.m b/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCUnsignedCharReturnGetter.m
index cd64487..77ce828 100644
--- a/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCUnsignedCharReturnGetter.m
+++ b/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCUnsignedCharReturnGetter.m
@@ -1,11 +1,5 @@
-//
-// OCHamcrest - HCUnsignedCharReturnGetter.m
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
#import "HCUnsignedCharReturnGetter.h"
diff --git a/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCUnsignedIntReturnGetter.h b/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCUnsignedIntReturnGetter.h
index 1971b3c..cf1950f 100644
--- a/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCUnsignedIntReturnGetter.h
+++ b/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCUnsignedIntReturnGetter.h
@@ -1,11 +1,5 @@
-//
-// OCHamcrest - HCUnsignedIntReturnGetter.h
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
#import "HCReturnValueGetter.h"
diff --git a/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCUnsignedIntReturnGetter.m b/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCUnsignedIntReturnGetter.m
index 87c560b..2ebd637 100644
--- a/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCUnsignedIntReturnGetter.m
+++ b/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCUnsignedIntReturnGetter.m
@@ -1,11 +1,5 @@
-//
-// OCHamcrest - HCUnsignedIntReturnGetter.m
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
#import "HCUnsignedIntReturnGetter.h"
diff --git a/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCUnsignedLongLongReturnGetter.h b/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCUnsignedLongLongReturnGetter.h
index 8675dda..073f74b 100644
--- a/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCUnsignedLongLongReturnGetter.h
+++ b/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCUnsignedLongLongReturnGetter.h
@@ -1,11 +1,5 @@
-//
-// OCHamcrest - HCUnsignedLongLongReturnGetter.h
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
#import "HCReturnValueGetter.h"
diff --git a/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCUnsignedLongLongReturnGetter.m b/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCUnsignedLongLongReturnGetter.m
index d447396..e609322 100644
--- a/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCUnsignedLongLongReturnGetter.m
+++ b/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCUnsignedLongLongReturnGetter.m
@@ -1,11 +1,5 @@
-//
-// OCHamcrest - HCUnsignedLongLongReturnGetter.m
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
#import "HCUnsignedLongLongReturnGetter.h"
diff --git a/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCUnsignedLongReturnGetter.h b/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCUnsignedLongReturnGetter.h
index 09d45e9..55bc65f 100644
--- a/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCUnsignedLongReturnGetter.h
+++ b/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCUnsignedLongReturnGetter.h
@@ -1,11 +1,5 @@
-//
-// OCHamcrest - HCUnsignedLongReturnGetter.h
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
#import "HCReturnValueGetter.h"
diff --git a/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCUnsignedLongReturnGetter.m b/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCUnsignedLongReturnGetter.m
index 0c6abfe..bbd26e6 100644
--- a/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCUnsignedLongReturnGetter.m
+++ b/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCUnsignedLongReturnGetter.m
@@ -1,11 +1,5 @@
-//
-// OCHamcrest - HCUnsignedLongReturnGetter.m
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
#import "HCUnsignedLongReturnGetter.h"
diff --git a/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCUnsignedShortReturnGetter.h b/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCUnsignedShortReturnGetter.h
index cdb8620..4e92381 100644
--- a/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCUnsignedShortReturnGetter.h
+++ b/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCUnsignedShortReturnGetter.h
@@ -1,11 +1,5 @@
-//
-// OCHamcrest - HCUnsignedShortReturnGetter.h
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
#import "HCReturnValueGetter.h"
diff --git a/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCUnsignedShortReturnGetter.m b/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCUnsignedShortReturnGetter.m
index 1d515f9..b262f39 100644
--- a/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCUnsignedShortReturnGetter.m
+++ b/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCUnsignedShortReturnGetter.m
@@ -1,11 +1,5 @@
-//
-// OCHamcrest - HCUnsignedShortReturnGetter.m
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
#import "HCUnsignedShortReturnGetter.h"
diff --git a/Pods/OCHamcrest/Source/Core/Helpers/TestFailureHandlers/HCGenericTestFailureHandler.h b/Pods/OCHamcrest/Source/Core/Helpers/TestFailureHandlers/HCGenericTestFailureHandler.h
index a7d9001..46cbb9a 100644
--- a/Pods/OCHamcrest/Source/Core/Helpers/TestFailureHandlers/HCGenericTestFailureHandler.h
+++ b/Pods/OCHamcrest/Source/Core/Helpers/TestFailureHandlers/HCGenericTestFailureHandler.h
@@ -1,11 +1,5 @@
-//
-// OCHamcrest - HCGenericTestFailureHandler.h
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
#import "HCTestFailureHandler.h"
diff --git a/Pods/OCHamcrest/Source/Core/Helpers/TestFailureHandlers/HCGenericTestFailureHandler.m b/Pods/OCHamcrest/Source/Core/Helpers/TestFailureHandlers/HCGenericTestFailureHandler.m
index 7b9d41d..bb243de 100644
--- a/Pods/OCHamcrest/Source/Core/Helpers/TestFailureHandlers/HCGenericTestFailureHandler.m
+++ b/Pods/OCHamcrest/Source/Core/Helpers/TestFailureHandlers/HCGenericTestFailureHandler.m
@@ -1,11 +1,5 @@
-//
-// OCHamcrest - HCGenericTestFailureHandler.m
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
#import "HCGenericTestFailureHandler.h"
diff --git a/Pods/OCHamcrest/Source/Core/Helpers/TestFailureHandlers/HCSenTestFailureHandler.h b/Pods/OCHamcrest/Source/Core/Helpers/TestFailureHandlers/HCSenTestFailureHandler.h
index ae64e1d..94c3d84 100644
--- a/Pods/OCHamcrest/Source/Core/Helpers/TestFailureHandlers/HCSenTestFailureHandler.h
+++ b/Pods/OCHamcrest/Source/Core/Helpers/TestFailureHandlers/HCSenTestFailureHandler.h
@@ -1,11 +1,5 @@
-//
-// OCHamcrest - HCSenTestFailureHandler.h
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
#import "HCTestFailureHandler.h"
diff --git a/Pods/OCHamcrest/Source/Core/Helpers/TestFailureHandlers/HCSenTestFailureHandler.m b/Pods/OCHamcrest/Source/Core/Helpers/TestFailureHandlers/HCSenTestFailureHandler.m
index 6483a39..318d5d2 100644
--- a/Pods/OCHamcrest/Source/Core/Helpers/TestFailureHandlers/HCSenTestFailureHandler.m
+++ b/Pods/OCHamcrest/Source/Core/Helpers/TestFailureHandlers/HCSenTestFailureHandler.m
@@ -1,11 +1,5 @@
-//
-// OCHamcrest - HCSenTestFailureHandler.m
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
#import "HCSenTestFailureHandler.h"
diff --git a/Pods/OCHamcrest/Source/Core/Helpers/TestFailureHandlers/HCTestFailure.h b/Pods/OCHamcrest/Source/Core/Helpers/TestFailureHandlers/HCTestFailure.h
index d50da72..83f111d 100644
--- a/Pods/OCHamcrest/Source/Core/Helpers/TestFailureHandlers/HCTestFailure.h
+++ b/Pods/OCHamcrest/Source/Core/Helpers/TestFailureHandlers/HCTestFailure.h
@@ -1,26 +1,20 @@
-//
-// OCHamcrest - HCTestFailure.h
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
#import
/**
Test failure location and reason.
-
+
@ingroup integration
*/
@interface HCTestFailure : NSObject
-@property (nonatomic, readonly) id testCase;
-@property (nonatomic, readonly) NSString *fileName;
-@property (nonatomic, readonly) NSUInteger lineNumber;
-@property (nonatomic, readonly) NSString *reason;
+@property (readonly, nonatomic, strong) id testCase;
+@property (readonly, nonatomic, copy) NSString *fileName;
+@property (readonly, nonatomic, assign) NSUInteger lineNumber;
+@property (readonly, nonatomic, strong) NSString *reason;
- (instancetype)initWithTestCase:(id)testCase
fileName:(NSString *)fileName
diff --git a/Pods/OCHamcrest/Source/Core/Helpers/TestFailureHandlers/HCTestFailure.m b/Pods/OCHamcrest/Source/Core/Helpers/TestFailureHandlers/HCTestFailure.m
index ef10a8a..27541b8 100644
--- a/Pods/OCHamcrest/Source/Core/Helpers/TestFailureHandlers/HCTestFailure.m
+++ b/Pods/OCHamcrest/Source/Core/Helpers/TestFailureHandlers/HCTestFailure.m
@@ -1,11 +1,5 @@
-//
-// OCHamcrest - HCTestFailure.m
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
#import "HCTestFailure.h"
@@ -21,9 +15,9 @@ - (instancetype)initWithTestCase:(id)testCase
if (self)
{
_testCase = testCase;
- _fileName = fileName;
+ _fileName = [fileName copy];
_lineNumber = lineNumber;
- _reason = reason;
+ _reason = [reason copy];
}
return self;
}
diff --git a/Pods/OCHamcrest/Source/Core/Helpers/TestFailureHandlers/HCTestFailureHandler.h b/Pods/OCHamcrest/Source/Core/Helpers/TestFailureHandlers/HCTestFailureHandler.h
index 7a1557f..195ef0b 100644
--- a/Pods/OCHamcrest/Source/Core/Helpers/TestFailureHandlers/HCTestFailureHandler.h
+++ b/Pods/OCHamcrest/Source/Core/Helpers/TestFailureHandlers/HCTestFailureHandler.h
@@ -1,11 +1,5 @@
-//
-// OCHamcrest - HCTestFailureHandler.h
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
#import
@@ -14,7 +8,7 @@
/**
Chain-of-responsibility for handling test failures.
-
+
@ingroup integration
*/
@interface HCTestFailureHandler : NSObject
diff --git a/Pods/OCHamcrest/Source/Core/Helpers/TestFailureHandlers/HCTestFailureHandler.m b/Pods/OCHamcrest/Source/Core/Helpers/TestFailureHandlers/HCTestFailureHandler.m
index 7f27b55..b31a28b 100644
--- a/Pods/OCHamcrest/Source/Core/Helpers/TestFailureHandlers/HCTestFailureHandler.m
+++ b/Pods/OCHamcrest/Source/Core/Helpers/TestFailureHandlers/HCTestFailureHandler.m
@@ -1,11 +1,5 @@
-//
-// OCHamcrest - HCTestFailureHandler.m
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
#import "HCTestFailureHandler.h"
@@ -16,7 +10,7 @@ - (void)executeHandlingOfFailure:(HCTestFailure *)failure;
@end
@interface HCTestFailureHandler ()
-@property (nonatomic, readonly) HCTestFailureHandler *successor;
+@property (readonly, nonatomic, strong) HCTestFailureHandler *successor;
@end
diff --git a/Pods/OCHamcrest/Source/Core/Helpers/TestFailureHandlers/HCTestFailureHandlerChain.h b/Pods/OCHamcrest/Source/Core/Helpers/TestFailureHandlers/HCTestFailureHandlerChain.h
index 8bd308c..dbdd112 100644
--- a/Pods/OCHamcrest/Source/Core/Helpers/TestFailureHandlers/HCTestFailureHandlerChain.h
+++ b/Pods/OCHamcrest/Source/Core/Helpers/TestFailureHandlers/HCTestFailureHandlerChain.h
@@ -1,11 +1,5 @@
-//
-// OCHamcrest - HCTestFailureHandlerChain.h
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
#import
@@ -14,7 +8,7 @@
/**
Returns chain of test failure handlers.
-
+
@ingroup integration
*/
FOUNDATION_EXPORT HCTestFailureHandler *HC_testFailureHandlerChain(void);
diff --git a/Pods/OCHamcrest/Source/Core/Helpers/TestFailureHandlers/HCTestFailureHandlerChain.m b/Pods/OCHamcrest/Source/Core/Helpers/TestFailureHandlers/HCTestFailureHandlerChain.m
index 3cd5ade..c3400cb 100644
--- a/Pods/OCHamcrest/Source/Core/Helpers/TestFailureHandlers/HCTestFailureHandlerChain.m
+++ b/Pods/OCHamcrest/Source/Core/Helpers/TestFailureHandlers/HCTestFailureHandlerChain.m
@@ -1,11 +1,5 @@
-//
-// OCHamcrest - HCTestFailureHandlerChain.m
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
#import "HCTestFailureHandlerChain.h"
diff --git a/Pods/OCHamcrest/Source/Core/Helpers/TestFailureHandlers/HCXCTestFailureHandler.h b/Pods/OCHamcrest/Source/Core/Helpers/TestFailureHandlers/HCXCTestFailureHandler.h
index e57a0e6..fe015bf 100644
--- a/Pods/OCHamcrest/Source/Core/Helpers/TestFailureHandlers/HCXCTestFailureHandler.h
+++ b/Pods/OCHamcrest/Source/Core/Helpers/TestFailureHandlers/HCXCTestFailureHandler.h
@@ -1,11 +1,5 @@
-//
-// OCHamcrest - HCXCTestFailureHandler.h
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
#import "HCTestFailureHandler.h"
diff --git a/Pods/OCHamcrest/Source/Core/Helpers/TestFailureHandlers/HCXCTestFailureHandler.m b/Pods/OCHamcrest/Source/Core/Helpers/TestFailureHandlers/HCXCTestFailureHandler.m
index 4468498..2904585 100644
--- a/Pods/OCHamcrest/Source/Core/Helpers/TestFailureHandlers/HCXCTestFailureHandler.m
+++ b/Pods/OCHamcrest/Source/Core/Helpers/TestFailureHandlers/HCXCTestFailureHandler.m
@@ -1,11 +1,5 @@
-//
-// OCHamcrest - HCXCTestFailureHandler.m
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
#import "HCXCTestFailureHandler.h"
diff --git a/Pods/OCHamcrest/Source/Library/Collection/HCHasCount.h b/Pods/OCHamcrest/Source/Library/Collection/HCHasCount.h
index 6fba2f0..044b75c 100644
--- a/Pods/OCHamcrest/Source/Library/Collection/HCHasCount.h
+++ b/Pods/OCHamcrest/Source/Library/Collection/HCHasCount.h
@@ -1,11 +1,5 @@
-//
-// OCHamcrest - HCHasCount.h
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
#import
@@ -23,15 +17,15 @@ FOUNDATION_EXPORT id HC_hasCount(id matcher);
/**
hasCount(aMatcher) -
Matches if object's @c -count satisfies a given matcher.
-
+
@param aMatcher The matcher to satisfy.
-
+
This matcher invokes @c -count on the evaluated object to get the number of elements it
contains, passing the result to @a aMatcher for evaluation.
-
+
(In the event of a name clash, don't \#define @c HC_SHORTHAND and use the synonym
@c HC_hasCount instead.)
-
+
@ingroup collection_matchers
*/
#ifdef HC_SHORTHAND
@@ -46,13 +40,13 @@ FOUNDATION_EXPORT id HC_hasCountOf(NSUInteger count);
Matches if object's @c -count equals a given value.
@param value @c NSUInteger value to compare against as the expected value.
-
+
This matcher invokes @c -count on the evaluated object to get the number of elements it
contains, comparing the result to @a value for equality.
-
+
(In the event of a name clash, don't \#define @c HC_SHORTHAND and use the synonym
@c HC_hasCountOf instead.)
-
+
@ingroup collection_matchers
*/
#ifdef HC_SHORTHAND
diff --git a/Pods/OCHamcrest/Source/Library/Collection/HCHasCount.m b/Pods/OCHamcrest/Source/Library/Collection/HCHasCount.m
index 00133e5..9d41d6e 100644
--- a/Pods/OCHamcrest/Source/Library/Collection/HCHasCount.m
+++ b/Pods/OCHamcrest/Source/Library/Collection/HCHasCount.m
@@ -1,11 +1,5 @@
-//
-// OCHamcrest - HCHasCount.m
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
#import "HCHasCount.h"
@@ -13,7 +7,7 @@
@interface HCHasCount ()
-@property (nonatomic, readonly) id countMatcher;
+@property (readonly, nonatomic, strong) id countMatcher;
@end
@implementation HCHasCount
@@ -35,7 +29,7 @@ - (BOOL)matches:(id)item
{
if (![self itemHasCount:item])
return NO;
-
+
NSNumber *count = @([item count]);
return [self.countMatcher matches:count];
}
diff --git a/Pods/OCHamcrest/Source/Library/Collection/HCIsCollectionContaining.h b/Pods/OCHamcrest/Source/Library/Collection/HCIsCollectionContaining.h
index ea1b9cf..dce97a1 100644
--- a/Pods/OCHamcrest/Source/Library/Collection/HCIsCollectionContaining.h
+++ b/Pods/OCHamcrest/Source/Library/Collection/HCIsCollectionContaining.h
@@ -1,16 +1,10 @@
-//
-// OCHamcrest - HCIsCollectionContaining.h
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
-#import
+#import
-@interface HCIsCollectionContaining : HCBaseMatcher
+@interface HCIsCollectionContaining : HCDiagnosingMatcher
+ (instancetype)isCollectionContaining:(id )elementMatcher;
- (instancetype)initWithMatcher:(id )elementMatcher;
@@ -23,18 +17,18 @@ FOUNDATION_EXPORT id HC_hasItem(id itemMatch);
/**
hasItem(aMatcher) -
Matches if any element of collection satisfies a given matcher.
-
+
@param aMatcher The matcher to satisfy, or an expected value for @ref equalTo matching.
-
+
This matcher iterates the evaluated collection, searching for any element that satisfies a
given matcher. If a matching element is found, @c hasItem is satisfied.
-
+
If the @a aMatcher argument is not a matcher, it is implicitly wrapped in an @ref equalTo
matcher to check for equality.
-
+
(In the event of a name clash, don't \#define @c HC_SHORTHAND and use the synonym
@c HC_hasItem instead.)
-
+
@ingroup collection_matchers
*/
#ifdef HC_SHORTHAND
@@ -47,18 +41,18 @@ FOUNDATION_EXPORT id HC_hasItems(id itemMatch, ...) NS_REQUIRES_NIL_TERMINATION;
/**
hasItems(firstMatcher, ...) -
Matches if all of the given matchers are satisfied by any elements of the collection.
-
+
@param firstMatcher,... A comma-separated list of matchers ending with @c nil.
-
+
This matcher iterates the given matchers, searching for any elements in the evaluated collection
that satisfy them. If each matcher is satisfied, then @c hasItems is satisfied.
-
+
Any argument that is not a matcher is implicitly wrapped in an @ref equalTo matcher to check for
equality.
-
+
(In the event of a name clash, don't \#define @c HC_SHORTHAND and use the synonym
@c hasItems instead.)
-
+
@ingroup collection_matchers
*/
#ifdef HC_SHORTHAND
diff --git a/Pods/OCHamcrest/Source/Library/Collection/HCIsCollectionContaining.m b/Pods/OCHamcrest/Source/Library/Collection/HCIsCollectionContaining.m
index 10c9b19..8de5382 100644
--- a/Pods/OCHamcrest/Source/Library/Collection/HCIsCollectionContaining.m
+++ b/Pods/OCHamcrest/Source/Library/Collection/HCIsCollectionContaining.m
@@ -1,11 +1,5 @@
-//
-// OCHamcrest - HCIsCollectionContaining.m
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
#import "HCIsCollectionContaining.h"
@@ -16,7 +10,7 @@
@interface HCIsCollectionContaining ()
-@property (nonatomic, readonly) id elementMatcher;
+@property (readonly, nonatomic, strong) id elementMatcher;
@end
@implementation HCIsCollectionContaining
@@ -35,14 +29,34 @@ - (instancetype)initWithMatcher:(id )elementMatcher
return self;
}
-- (BOOL)matches:(id)collection
+- (BOOL)matches:(id)collection describingMismatchTo:(id )mismatchDescription
{
if (![collection conformsToProtocol:@protocol(NSFastEnumeration)])
+ {
+ [[mismatchDescription appendText:@"was non-collection "] appendDescriptionOf:collection];
return NO;
-
+ }
+
+ if ([collection count] == 0)
+ {
+ [mismatchDescription appendText:@"was empty"];
+ return NO;
+ }
+
for (id item in collection)
if ([self.elementMatcher matches:item])
return YES;
+
+ [mismatchDescription appendText:@"mismatches were: ["];
+ BOOL isPastFirst = NO;
+ for (id item in collection)
+ {
+ if (isPastFirst)
+ [mismatchDescription appendText:@", "];
+ [self.elementMatcher describeMismatchOf:item to:mismatchDescription];
+ isPastFirst = YES;
+ }
+ [mismatchDescription appendText:@"]"];
return NO;
}
diff --git a/Pods/OCHamcrest/Source/Library/Collection/HCIsCollectionContainingInAnyOrder.h b/Pods/OCHamcrest/Source/Library/Collection/HCIsCollectionContainingInAnyOrder.h
index d1db280..675d41e 100644
--- a/Pods/OCHamcrest/Source/Library/Collection/HCIsCollectionContainingInAnyOrder.h
+++ b/Pods/OCHamcrest/Source/Library/Collection/HCIsCollectionContainingInAnyOrder.h
@@ -1,16 +1,10 @@
-//
-// OCHamcrest - HCIsCollectionContainingInAnyOrder.h
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
-#import
+#import
-@interface HCIsCollectionContainingInAnyOrder : HCBaseMatcher
+@interface HCIsCollectionContainingInAnyOrder : HCDiagnosingMatcher
+ (instancetype)isCollectionContainingInAnyOrder:(NSArray *)itemMatchers;
- (instancetype)initWithMatchers:(NSArray *)itemMatchers;
@@ -23,20 +17,20 @@ FOUNDATION_EXPORT id HC_containsInAnyOrder(id itemMatch, ...) NS_REQUIRES_NIL_TE
/**
containsInAnyOrder(firstMatcher, ...) -
Matches if collection's elements, in any order, satisfy a given list of matchers.
-
+
@param firstMatcher,... A comma-separated list of matchers ending with @c nil.
-
+
This matcher iterates the evaluated collection, seeing if each element satisfies any of the
given matchers. The matchers are tried from left to right, and when a satisfied matcher is
found, it is no longer a candidate for the remaining elements. If a one-to-one correspondence is
established between elements and matchers, @c containsInAnyOrder is satisfied.
-
+
Any argument that is not a matcher is implicitly wrapped in an @ref equalTo matcher to check for
equality.
-
+
(In the event of a name clash, don't \#define @c HC_SHORTHAND and use the synonym
@c HC_containsInAnyOrder instead.)
-
+
@ingroup collection_matchers
*/
#ifdef HC_SHORTHAND
diff --git a/Pods/OCHamcrest/Source/Library/Collection/HCIsCollectionContainingInAnyOrder.m b/Pods/OCHamcrest/Source/Library/Collection/HCIsCollectionContainingInAnyOrder.m
index fef63db..b579d01 100644
--- a/Pods/OCHamcrest/Source/Library/Collection/HCIsCollectionContainingInAnyOrder.m
+++ b/Pods/OCHamcrest/Source/Library/Collection/HCIsCollectionContainingInAnyOrder.m
@@ -1,11 +1,5 @@
-//
-// OCHamcrest - HCIsCollectionContainingInAnyOrder.m
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
#import "HCIsCollectionContainingInAnyOrder.h"
@@ -13,8 +7,8 @@
@interface HCMatchingInAnyOrder : NSObject
-@property (nonatomic, readonly) NSMutableArray *matchers;
-@property (nonatomic, readonly) id mismatchDescription;
+@property (readonly, nonatomic, copy) NSMutableArray *matchers;
+@property (readonly, nonatomic, strong) id mismatchDescription;
@end
@implementation HCMatchingInAnyOrder
@@ -52,7 +46,7 @@ - (BOOL)isFinishedWith:(NSArray *)collection
{
if ([self.matchers count] == 0)
return YES;
-
+
[[[[self.mismatchDescription appendText:@"no item matches: "]
appendList:self.matchers start:@"" separator:@", " end:@""]
appendText:@" in "]
@@ -64,7 +58,7 @@ - (BOOL)isFinishedWith:(NSArray *)collection
@interface HCIsCollectionContainingInAnyOrder ()
-@property (nonatomic, readonly) NSArray *matchers;
+@property (readonly, nonatomic, copy) NSArray *matchers;
@end
@implementation HCIsCollectionContainingInAnyOrder
@@ -82,32 +76,22 @@ - (instancetype)initWithMatchers:(NSArray *)itemMatchers
return self;
}
-- (BOOL)matches:(id)collection
-{
- return [self matches:collection describingMismatchTo:nil];
-}
-
- (BOOL)matches:(id)collection describingMismatchTo:(id)mismatchDescription
{
if (![collection conformsToProtocol:@protocol(NSFastEnumeration)])
{
- [super describeMismatchOf:collection to:mismatchDescription];
+ [[mismatchDescription appendText:@"was non-collection "] appendDescriptionOf:collection];
return NO;
}
-
+
HCMatchingInAnyOrder *matchSequence =
[[HCMatchingInAnyOrder alloc] initWithMatchers:self.matchers
mismatchDescription:mismatchDescription];
for (id item in collection)
if (![matchSequence matches:item])
return NO;
-
- return [matchSequence isFinishedWith:collection];
-}
-- (void)describeMismatchOf:(id)item to:(id)mismatchDescription
-{
- [self matches:item describingMismatchTo:mismatchDescription];
+ return [matchSequence isFinishedWith:collection];
}
- (void)describeTo:(id)description
diff --git a/Pods/OCHamcrest/Source/Library/Collection/HCIsCollectionContainingInOrder.h b/Pods/OCHamcrest/Source/Library/Collection/HCIsCollectionContainingInOrder.h
index 9f2a386..b769a48 100644
--- a/Pods/OCHamcrest/Source/Library/Collection/HCIsCollectionContainingInOrder.h
+++ b/Pods/OCHamcrest/Source/Library/Collection/HCIsCollectionContainingInOrder.h
@@ -1,16 +1,10 @@
-//
-// OCHamcrest - HCIsCollectionContainingInOrder.h
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
-#import
+#import
-@interface HCIsCollectionContainingInOrder : HCBaseMatcher
+@interface HCIsCollectionContainingInOrder : HCDiagnosingMatcher
+ (instancetype)isCollectionContainingInOrder:(NSArray *)itemMatchers;
- (instancetype)initWithMatchers:(NSArray *)itemMatchers;
@@ -23,18 +17,18 @@ FOUNDATION_EXPORT id HC_contains(id itemMatch, ...) NS_REQUIRES_NIL_TERMINATION;
/**
contains(firstMatcher, ...) -
Matches if collection's elements satisfy a given list of matchers, in order.
-
+
@param firstMatcher,... A comma-separated list of matchers ending with @c nil.
-
+
This matcher iterates the evaluated collection and a given list of matchers, seeing if each
element satisfies its corresponding matcher.
-
+
Any argument that is not a matcher is implicitly wrapped in an @ref equalTo matcher to check for
equality.
-
+
(In the event of a name clash, don't \#define @c HC_SHORTHAND and use the synonym
@c HC_contains instead.)
-
+
@ingroup collection_matchers
*/
#ifdef HC_SHORTHAND
diff --git a/Pods/OCHamcrest/Source/Library/Collection/HCIsCollectionContainingInOrder.m b/Pods/OCHamcrest/Source/Library/Collection/HCIsCollectionContainingInOrder.m
index a53b895..e157f9d 100644
--- a/Pods/OCHamcrest/Source/Library/Collection/HCIsCollectionContainingInOrder.m
+++ b/Pods/OCHamcrest/Source/Library/Collection/HCIsCollectionContainingInOrder.m
@@ -1,11 +1,5 @@
-//
-// OCHamcrest - HCIsCollectionContainingInOrder.m
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
#import "HCIsCollectionContainingInOrder.h"
@@ -13,9 +7,9 @@
@interface HCMatchSequence : NSObject
-@property (nonatomic, readonly) NSArray *matchers;
-@property (nonatomic, readonly) id mismatchDescription;
-@property (nonatomic) NSUInteger nextMatchIndex;
+@property (readonly, nonatomic, copy) NSArray *matchers;
+@property (readonly, nonatomic, strong) id mismatchDescription;
+@property (nonatomic, assign) NSUInteger nextMatchIndex;
@end
@implementation HCMatchSequence
@@ -27,7 +21,7 @@ - (instancetype)initWithMatchers:(NSArray *)itemMatchers
if (self)
{
_matchers = [itemMatchers copy];
- _mismatchDescription = description;
+ _mismatchDescription = description;
}
return self;
}
@@ -41,7 +35,7 @@ - (BOOL)isFinished
{
if (self.nextMatchIndex < [self.matchers count])
{
- [[self.mismatchDescription appendText:@"no item matched: "]
+ [[self.mismatchDescription appendText:@"no item was "]
appendDescriptionOf:self.matchers[self.nextMatchIndex]];
return NO;
}
@@ -80,7 +74,7 @@ - (void)describeMismatchOfMatcher:(id )matcher item:(id)item
@interface HCIsCollectionContainingInOrder ()
-@property (nonatomic, readonly) NSArray *matchers;
+@property (readonly, nonatomic, copy) NSArray *matchers;
@end
@implementation HCIsCollectionContainingInOrder
@@ -98,32 +92,22 @@ - (instancetype)initWithMatchers:(NSArray *)itemMatchers
return self;
}
-- (BOOL)matches:(id)collection
-{
- return [self matches:collection describingMismatchTo:nil];
-}
-
- (BOOL)matches:(id)collection describingMismatchTo:(id)mismatchDescription
{
if (![collection conformsToProtocol:@protocol(NSFastEnumeration)])
{
- [super describeMismatchOf:collection to:mismatchDescription];
+ [[mismatchDescription appendText:@"was non-collection "] appendDescriptionOf:collection];
return NO;
}
-
+
HCMatchSequence *matchSequence =
[[HCMatchSequence alloc] initWithMatchers:self.matchers
mismatchDescription:mismatchDescription];
for (id item in collection)
if (![matchSequence matches:item])
return NO;
-
- return [matchSequence isFinished];
-}
-- (void)describeMismatchOf:(id)item to:(id)mismatchDescription
-{
- [self matches:item describingMismatchTo:mismatchDescription];
+ return [matchSequence isFinished];
}
- (void)describeTo:(id)description
diff --git a/Pods/OCHamcrest/Source/Library/Collection/HCIsCollectionOnlyContaining.h b/Pods/OCHamcrest/Source/Library/Collection/HCIsCollectionOnlyContaining.h
index 5b578cc..35b393a 100644
--- a/Pods/OCHamcrest/Source/Library/Collection/HCIsCollectionOnlyContaining.h
+++ b/Pods/OCHamcrest/Source/Library/Collection/HCIsCollectionOnlyContaining.h
@@ -1,19 +1,12 @@
-//
-// OCHamcrest - HCIsCollectionOnlyContaining.h
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
-#import
+#import
-@interface HCIsCollectionOnlyContaining : HCBaseMatcher
+@interface HCIsCollectionOnlyContaining : HCEvery
+ (instancetype)isCollectionOnlyContaining:(id )matcher;
-- (instancetype)initWithMatcher:(id )matcher;
@end
@@ -23,25 +16,25 @@ FOUNDATION_EXPORT id HC_onlyContains(id itemMatch, ...) NS_REQUIRES_NIL_TERMINAT
/**
onlyContains(firstMatcher, ...) -
Matches if each element of collection satisfies any of the given matchers.
-
+
@param firstMatcher,... A comma-separated list of matchers ending with @c nil.
-
+
This matcher iterates the evaluated collection, confirming whether each element satisfies any of
the given matchers.
-
+
Any argument that is not a matcher is implicitly wrapped in an @ref equalTo matcher to check for
equality.
-
+
Example:
-
+
@par
@ref onlyContains(startsWith(@"Jo"), nil)
-
+
will match a collection [@"Jon", @"John", @"Johann"].
-
+
(In the event of a name clash, don't \#define @c HC_SHORTHAND and use the synonym
@c HC_onlyContains instead.)
-
+
@ingroup collection_matchers
*/
#ifdef HC_SHORTHAND
diff --git a/Pods/OCHamcrest/Source/Library/Collection/HCIsCollectionOnlyContaining.m b/Pods/OCHamcrest/Source/Library/Collection/HCIsCollectionOnlyContaining.m
index 7484b49..058e5b8 100644
--- a/Pods/OCHamcrest/Source/Library/Collection/HCIsCollectionOnlyContaining.m
+++ b/Pods/OCHamcrest/Source/Library/Collection/HCIsCollectionOnlyContaining.m
@@ -1,11 +1,5 @@
-//
-// OCHamcrest - HCIsCollectionOnlyContaining.m
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
#import "HCIsCollectionOnlyContaining.h"
@@ -13,10 +7,6 @@
#import "HCCollect.h"
-@interface HCIsCollectionOnlyContaining ()
-@property (nonatomic, readonly) id matcher;
-@end
-
@implementation HCIsCollectionOnlyContaining
+ (instancetype)isCollectionOnlyContaining:(id )matcher
@@ -24,28 +14,6 @@ + (instancetype)isCollectionOnlyContaining:(id )matcher
return [[self alloc] initWithMatcher:matcher];
}
-- (instancetype)initWithMatcher:(id )matcher
-{
- self = [super init];
- if (self)
- _matcher = matcher;
- return self;
-}
-
-- (BOOL)matches:(id)collection
-{
- if (![collection conformsToProtocol:@protocol(NSFastEnumeration)])
- return NO;
-
- if ([collection count] == 0)
- return NO;
-
- for (id item in collection)
- if (![self.matcher matches:item])
- return NO;
- return YES;
-}
-
- (void)describeTo:(id)description
{
[[description appendText:@"a collection containing items matching "]
diff --git a/Pods/OCHamcrest/Source/Library/Collection/HCIsDictionaryContaining.h b/Pods/OCHamcrest/Source/Library/Collection/HCIsDictionaryContaining.h
index b4c6623..b29bd9f 100644
--- a/Pods/OCHamcrest/Source/Library/Collection/HCIsDictionaryContaining.h
+++ b/Pods/OCHamcrest/Source/Library/Collection/HCIsDictionaryContaining.h
@@ -1,11 +1,5 @@
-//
-// OCHamcrest - HCIsDictionaryContaining.h
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
#import
@@ -26,23 +20,23 @@ FOUNDATION_EXPORT id HC_hasEntry(id keyMatch, id valueMatch);
/**
hasEntry(keyMatcher, valueMatcher) -
Matches if dictionary contains key-value entry satisfying a given pair of matchers.
-
+
@param keyMatcher The matcher to satisfy for the key, or an expected value for @ref equalTo matching.
@param valueMatcher The matcher to satisfy for the value, or an expected value for @ref equalTo matching.
-
+
This matcher iterates the evaluated dictionary, searching for any key-value entry that satisfies
@a keyMatcher and @a valueMatcher. If a matching entry is found, @c hasEntry is satisfied.
-
+
Any argument that is not a matcher is implicitly wrapped in an @ref equalTo matcher to check for
equality.
-
+
Examples:
@li @ref hasEntry(@ref equalTo(@"foo"), equalTo(@"bar"))
@li @ref hasEntry(@"foo", @"bar")
-
+
(In the event of a name clash, don't \#define @c HC_SHORTHAND and use the synonym
@c HC_hasEntry instead.)
-
+
@ingroup collection_matchers
*/
#ifdef HC_SHORTHAND
diff --git a/Pods/OCHamcrest/Source/Library/Collection/HCIsDictionaryContaining.m b/Pods/OCHamcrest/Source/Library/Collection/HCIsDictionaryContaining.m
index f2c401f..31f8654 100644
--- a/Pods/OCHamcrest/Source/Library/Collection/HCIsDictionaryContaining.m
+++ b/Pods/OCHamcrest/Source/Library/Collection/HCIsDictionaryContaining.m
@@ -1,11 +1,5 @@
-//
-// OCHamcrest - HCIsDictionaryContaining.m
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
#import "HCIsDictionaryContaining.h"
@@ -14,8 +8,8 @@
@interface HCIsDictionaryContaining ()
-@property (nonatomic, readonly) id keyMatcher;
-@property (nonatomic, readonly) id valueMatcher;
+@property (readonly, nonatomic, strong) id keyMatcher;
+@property (readonly, nonatomic, strong) id valueMatcher;
@end
diff --git a/Pods/OCHamcrest/Source/Library/Collection/HCIsDictionaryContainingEntries.h b/Pods/OCHamcrest/Source/Library/Collection/HCIsDictionaryContainingEntries.h
index 7998f84..2509400 100644
--- a/Pods/OCHamcrest/Source/Library/Collection/HCIsDictionaryContainingEntries.h
+++ b/Pods/OCHamcrest/Source/Library/Collection/HCIsDictionaryContainingEntries.h
@@ -1,16 +1,10 @@
-//
-// OCHamcrest - HCIsDictionaryContainingEntries.h
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
-#import
+#import
-@interface HCIsDictionaryContainingEntries : HCBaseMatcher
+@interface HCIsDictionaryContainingEntries : HCDiagnosingMatcher
+ (instancetype)isDictionaryContainingKeys:(NSArray *)keys
@@ -28,21 +22,21 @@ FOUNDATION_EXPORT id HC_hasEntries(id keysAndValueMatch, ...) NS_REQUIRES_NIL_TE
hasEntries(firstKey, valueMatcher, ...) -
Matches if dictionary contains entries satisfying a list of alternating keys and their value
matchers.
-
+
@param firstKey A key (not a matcher) to look up.
@param valueMatcher,... The matcher to satisfy for the value, or an expected value for @ref equalTo matching.
-
+
Note that the keys must be actual keys, not matchers. Any value argument that is not a matcher
is implicitly wrapped in an @ref equalTo matcher to check for equality. The list must end with
@c nil.
-
+
Examples:
@li @ref hasEntries(@"first", equalTo(@"Jon"), @"last", equalTo(@"Reid"), nil)
@li @ref hasEntries(@"first", @"Jon", @"last", @"Reid", nil)
-
+
(In the event of a name clash, don't \#define @c HC_SHORTHAND and use the synonym
@c HC_hasEntry instead.)
-
+
@ingroup collection_matchers
*/
#ifdef HC_SHORTHAND
diff --git a/Pods/OCHamcrest/Source/Library/Collection/HCIsDictionaryContainingEntries.m b/Pods/OCHamcrest/Source/Library/Collection/HCIsDictionaryContainingEntries.m
index bc803e8..99332e3 100644
--- a/Pods/OCHamcrest/Source/Library/Collection/HCIsDictionaryContainingEntries.m
+++ b/Pods/OCHamcrest/Source/Library/Collection/HCIsDictionaryContainingEntries.m
@@ -1,11 +1,5 @@
-//
-// OCHamcrest - HCIsDictionaryContainingEntries.m
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
#import "HCIsDictionaryContainingEntries.h"
@@ -13,8 +7,8 @@
@interface HCIsDictionaryContainingEntries ()
-@property (nonatomic, readonly) NSArray *keys;
-@property (nonatomic, readonly) NSArray *valueMatchers;
+@property (readonly, nonatomic, copy) NSArray *keys;
+@property (readonly, nonatomic, copy) NSArray *valueMatchers;
@end
@@ -38,19 +32,14 @@ - (instancetype)initWithKeys:(NSArray *)keys
return self;
}
-- (BOOL)matches:(id)item
-{
- return [self matches:item describingMismatchTo:nil];
-}
-
- (BOOL)matches:(id)dict describingMismatchTo:(id)mismatchDescription
{
if (![dict isKindOfClass:[NSDictionary class]])
{
- [super describeMismatchOf:dict to:mismatchDescription];
+ [[mismatchDescription appendText:@"was non-dictionary "] appendDescriptionOf:dict];
return NO;
}
-
+
NSUInteger count = [self.keys count];
for (NSUInteger index = 0; index < count; ++index)
{
@@ -66,7 +55,7 @@ - (BOOL)matches:(id)dict describingMismatchTo:(id)mismatchDescrip
id valueMatcher = self.valueMatchers[index];
id actualValue = dict[key];
-
+
if (![valueMatcher matches:actualValue])
{
[[[[mismatchDescription appendText:@"value for "]
@@ -75,14 +64,9 @@ - (BOOL)matches:(id)dict describingMismatchTo:(id)mismatchDescrip
appendDescriptionOf:actualValue];
return NO;
}
- }
-
- return YES;
-}
+ }
-- (void)describeMismatchOf:(id)item to:(id)mismatchDescription
-{
- [self matches:item describingMismatchTo:mismatchDescription];
+ return YES;
}
- (void)describeKeyValueAtIndex:(NSUInteger)index to:(id)description
@@ -122,7 +106,7 @@ id HC_hasEntries(id keysAndValueMatch, ...)
{
va_list args;
va_start(args, keysAndValueMatch);
-
+
id key = keysAndValueMatch;
id valueMatcher = va_arg(args, id);
requirePairedObject(valueMatcher);
@@ -138,7 +122,7 @@ id HC_hasEntries(id keysAndValueMatch, ...)
[valueMatchers addObject:HCWrapInMatcher(valueMatcher)];
key = va_arg(args, id);
}
-
+
return [HCIsDictionaryContainingEntries isDictionaryContainingKeys:keys
valueMatchers:valueMatchers];
}
diff --git a/Pods/OCHamcrest/Source/Library/Collection/HCIsDictionaryContainingKey.h b/Pods/OCHamcrest/Source/Library/Collection/HCIsDictionaryContainingKey.h
index 9590f3d..6cd0100 100644
--- a/Pods/OCHamcrest/Source/Library/Collection/HCIsDictionaryContainingKey.h
+++ b/Pods/OCHamcrest/Source/Library/Collection/HCIsDictionaryContainingKey.h
@@ -1,11 +1,5 @@
-//
-// OCHamcrest - HCIsDictionaryContainingKey.h
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
#import
@@ -23,22 +17,22 @@ FOUNDATION_EXPORT id HC_hasKey(id keyMatch);
/**
hasKey(keyMatcher) -
Matches if dictionary contains an entry whose key satisfies a given matcher.
-
+
@param keyMatcher The matcher to satisfy for the key, or an expected value for @ref equalTo matching.
-
+
This matcher iterates the evaluated dictionary, searching for any key-value entry whose key
satisfies the given matcher. If a matching entry is found, @c hasKey is satisfied.
-
+
Any argument that is not a matcher is implicitly wrapped in an @ref equalTo matcher to check for
equality.
-
+
(In the event of a name clash, don't \#define @c HC_SHORTHAND and use the synonym
@c HC_hasKey instead.)
-
+
Examples:
@li @ref hasEntry(equalTo(@"foo"))
@li @ref hasEntry(@"foo")
-
+
@ingroup collection_matchers
*/
#ifdef HC_SHORTHAND
diff --git a/Pods/OCHamcrest/Source/Library/Collection/HCIsDictionaryContainingKey.m b/Pods/OCHamcrest/Source/Library/Collection/HCIsDictionaryContainingKey.m
index ab2f9ce..12e8414 100644
--- a/Pods/OCHamcrest/Source/Library/Collection/HCIsDictionaryContainingKey.m
+++ b/Pods/OCHamcrest/Source/Library/Collection/HCIsDictionaryContainingKey.m
@@ -1,11 +1,5 @@
-//
-// OCHamcrest - HCIsDictionaryContainingKey.m
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
#import "HCIsDictionaryContainingKey.h"
@@ -14,7 +8,7 @@
@interface HCIsDictionaryContainingKey ()
-@property (nonatomic, readonly) id keyMatcher;
+@property (readonly, nonatomic, strong) id keyMatcher;
@end
diff --git a/Pods/OCHamcrest/Source/Library/Collection/HCIsDictionaryContainingValue.h b/Pods/OCHamcrest/Source/Library/Collection/HCIsDictionaryContainingValue.h
index c053354..d984edc 100644
--- a/Pods/OCHamcrest/Source/Library/Collection/HCIsDictionaryContainingValue.h
+++ b/Pods/OCHamcrest/Source/Library/Collection/HCIsDictionaryContainingValue.h
@@ -1,11 +1,5 @@
-//
-// OCHamcrest - HCIsDictionaryContainingValue.h
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
#import
@@ -23,22 +17,22 @@ FOUNDATION_EXPORT id HC_hasValue(id valueMatch);
/**
hasValue(valueMatcher) -
Matches if dictionary contains an entry whose value satisfies a given matcher.
-
+
@param valueMatcher The matcher to satisfy for the value, or an expected value for @ref equalTo matching.
-
+
This matcher iterates the evaluated dictionary, searching for any key-value entry whose value
satisfies the given matcher. If a matching entry is found, @c hasValue is satisfied.
-
+
Any argument that is not a matcher is implicitly wrapped in an @ref equalTo matcher to check for
equality.
-
+
Examples:
@li @ref hasValue(equalTo(@"bar"))
@li @ref hasValue(@"bar")
-
+
(In the event of a name clash, don't \#define @c HC_SHORTHAND and use the synonym
@c HC_hasValue instead.)
-
+
@ingroup collection_matchers
*/
#ifdef HC_SHORTHAND
diff --git a/Pods/OCHamcrest/Source/Library/Collection/HCIsDictionaryContainingValue.m b/Pods/OCHamcrest/Source/Library/Collection/HCIsDictionaryContainingValue.m
index 70fb4a3..4e7d98f 100644
--- a/Pods/OCHamcrest/Source/Library/Collection/HCIsDictionaryContainingValue.m
+++ b/Pods/OCHamcrest/Source/Library/Collection/HCIsDictionaryContainingValue.m
@@ -1,11 +1,5 @@
-//
-// OCHamcrest - HCIsDictionaryContainingValue.m
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
#import "HCIsDictionaryContainingValue.h"
@@ -14,7 +8,7 @@
@interface HCIsDictionaryContainingValue ()
-@property (nonatomic, readonly) id valueMatcher;
+@property (readonly, nonatomic, strong) id valueMatcher;
@end
diff --git a/Pods/OCHamcrest/Source/Library/Collection/HCIsEmptyCollection.h b/Pods/OCHamcrest/Source/Library/Collection/HCIsEmptyCollection.h
index c7fbfc6..012550a 100644
--- a/Pods/OCHamcrest/Source/Library/Collection/HCIsEmptyCollection.h
+++ b/Pods/OCHamcrest/Source/Library/Collection/HCIsEmptyCollection.h
@@ -1,11 +1,5 @@
-//
-// OCHamcrest - HCIsEmptyCollection.h
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
#import
@@ -22,13 +16,13 @@ FOUNDATION_EXPORT id HC_isEmpty(void);
/**
Matches empty collection.
-
+
This matcher invokes @c -count on the evaluated object to determine if the number of elements it
contains is zero.
-
+
(In the event of a name clash, don't \#define @c HC_SHORTHAND and use the synonym
@c HC_isEmpty instead.)
-
+
@ingroup collection_matchers
*/
#ifdef HC_SHORTHAND
diff --git a/Pods/OCHamcrest/Source/Library/Collection/HCIsEmptyCollection.m b/Pods/OCHamcrest/Source/Library/Collection/HCIsEmptyCollection.m
index 1c4cb07..6141c79 100644
--- a/Pods/OCHamcrest/Source/Library/Collection/HCIsEmptyCollection.m
+++ b/Pods/OCHamcrest/Source/Library/Collection/HCIsEmptyCollection.m
@@ -1,11 +1,5 @@
-//
-// OCHamcrest - HCIsEmptyCollection.m
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
#import "HCIsEmptyCollection.h"
diff --git a/Pods/OCHamcrest/Source/Library/Collection/HCIsIn.h b/Pods/OCHamcrest/Source/Library/Collection/HCIsIn.h
index de2e986..662f80e 100644
--- a/Pods/OCHamcrest/Source/Library/Collection/HCIsIn.h
+++ b/Pods/OCHamcrest/Source/Library/Collection/HCIsIn.h
@@ -1,11 +1,5 @@
-//
-// OCHamcrest - HCIsIn.h
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
#import
@@ -23,15 +17,15 @@ FOUNDATION_EXPORT id HC_isIn(id aCollection);
/**
isIn(aCollection) -
Matches if evaluated object is present in a given collection.
-
+
@param aCollection The collection to search.
-
+
This matcher invokes @c -containsObject: on @a aCollection to determine if the evaluated object
is an element of the collection.
-
+
(In the event of a name clash, don't \#define @c HC_SHORTHAND and use the synonym
@c HC_isIn instead.)
-
+
@ingroup collection_matchers
*/
#ifdef HC_SHORTHAND
diff --git a/Pods/OCHamcrest/Source/Library/Collection/HCIsIn.m b/Pods/OCHamcrest/Source/Library/Collection/HCIsIn.m
index 5b9bcd0..82aee0c 100644
--- a/Pods/OCHamcrest/Source/Library/Collection/HCIsIn.m
+++ b/Pods/OCHamcrest/Source/Library/Collection/HCIsIn.m
@@ -1,17 +1,11 @@
-//
-// OCHamcrest - HCIsIn.m
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
#import "HCIsIn.h"
@interface HCIsIn ()
-@property (nonatomic, readonly) id collection;
+@property (readonly, nonatomic, strong) id collection;
@end
@implementation HCIsIn
@@ -29,7 +23,7 @@ - (instancetype)initWithCollection:(id)collection
reason:@"Object must respond to -containsObject:"
userInfo:nil];
}
-
+
self = [super init];
if (self)
_collection = collection;
diff --git a/Pods/OCHamcrest/Source/Library/Decorator/HCDescribedAs.h b/Pods/OCHamcrest/Source/Library/Decorator/HCDescribedAs.h
index e444870..9ca25a5 100644
--- a/Pods/OCHamcrest/Source/Library/Decorator/HCDescribedAs.h
+++ b/Pods/OCHamcrest/Source/Library/Decorator/HCDescribedAs.h
@@ -1,11 +1,5 @@
-//
-// OCHamcrest - HCDescribedAs.h
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
#import
@@ -28,16 +22,16 @@ FOUNDATION_EXPORT id HC_describedAs(NSString *description, id matche
/**
describedAs(description, matcher, ...) -
Adds custom failure description to a given matcher.
-
+
@param description Overrides the matcher's description.
@param matcher,... The matcher to satisfy, followed by a comma-separated list of substitution values ending with @c nil.
-
+
The description may contain substitution placeholders \%0, \%1, etc. These will be replaced by
any values that follow the matcher.
-
+
(In the event of a name clash, don't \#define @c HC_SHORTHAND and use the synonym
@c HC_describedAs instead.)
-
+
@ingroup decorator_matchers
*/
#ifdef HC_SHORTHAND
diff --git a/Pods/OCHamcrest/Source/Library/Decorator/HCDescribedAs.m b/Pods/OCHamcrest/Source/Library/Decorator/HCDescribedAs.m
index 1efb478..42b1d95 100644
--- a/Pods/OCHamcrest/Source/Library/Decorator/HCDescribedAs.m
+++ b/Pods/OCHamcrest/Source/Library/Decorator/HCDescribedAs.m
@@ -1,11 +1,5 @@
-//
-// OCHamcrest - HCDescribedAs.m
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
#import "HCDescribedAs.h"
@@ -32,25 +26,22 @@ - (NSString *)och_getDecimalNumber:(int *)number
readDigit = YES;
}
- if (readDigit)
- {
- *number = decimal;
- return [self substringFromIndex:index];
- }
- else
+ if (!readDigit)
{
*number = -1;
return self;
}
+ *number = decimal;
+ return [self substringFromIndex:index];
}
@end
@interface HCDescribedAs ()
-@property (nonatomic, readonly) NSString *descriptionTemplate;
-@property (nonatomic, readonly) id matcher;
-@property (nonatomic, readonly) NSArray *values;
+@property (readonly, nonatomic, copy) NSString *descriptionTemplate;
+@property (readonly, nonatomic, strong) id matcher;
+@property (readonly, nonatomic, copy) NSArray *values;
@end
@@ -123,7 +114,7 @@ - (void)appendTemplateForComponent:(NSString *)component toDescription:(id matcher, ...)
{
NSMutableArray *valueList = [NSMutableArray array];
-
+
va_list args;
va_start(args, matcher);
id value = va_arg(args, id);
@@ -133,6 +124,6 @@ id HC_describedAs(NSString *description, id matcher, ...)
value = va_arg(args, id);
}
va_end(args);
-
+
return [HCDescribedAs describedAs:description forMatcher:matcher overValues:valueList];
}
diff --git a/Pods/OCHamcrest/Source/Library/Decorator/HCIs.h b/Pods/OCHamcrest/Source/Library/Decorator/HCIs.h
index bba1169..3c4bfa7 100644
--- a/Pods/OCHamcrest/Source/Library/Decorator/HCIs.h
+++ b/Pods/OCHamcrest/Source/Library/Decorator/HCIs.h
@@ -1,11 +1,5 @@
-//
-// OCHamcrest - HCIs.h
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
#import
@@ -23,27 +17,27 @@ FOUNDATION_EXPORT id HC_is(id match);
/**
is(aMatcher) -
Decorates another matcher, or provides a shortcut to the frequently used @ref is(equalTo(x)).
-
+
@param aMatcher The matcher to satisfy, or an expected value for @ref equalTo matching.
-
+
This matcher compares the evaluated object to the given matcher.
-
+
If the @a aMatcher argument is a matcher, its behavior is retained, but the test may be more
expressive. For example:
@li @ref assertThat(@(value), equalTo(@5))
@li @ref assertThat(@(value), is(equalTo(@5)))
-
+
If the @a aMatcher argument is not a matcher, it is wrapped in an @ref equalTo matcher. This
makes the following statements equivalent:
@li @ref assertThat(cheese, equalTo(smelly))
@li @ref assertThat(cheese, is(equalTo(smelly)))
@li @ref assertThat(cheese, is(smelly))
-
+
Choose the style that makes your expression most readable. This will vary depending on context.
-
+
(In the event of a name clash, don't \#define @c HC_SHORTHAND and use the synonym
@c HC_is instead.)
-
+
@ingroup decorator_matchers
*/
#ifdef HC_SHORTHAND
diff --git a/Pods/OCHamcrest/Source/Library/Decorator/HCIs.m b/Pods/OCHamcrest/Source/Library/Decorator/HCIs.m
index 33c8bc1..bccbab2 100644
--- a/Pods/OCHamcrest/Source/Library/Decorator/HCIs.m
+++ b/Pods/OCHamcrest/Source/Library/Decorator/HCIs.m
@@ -1,11 +1,5 @@
-//
-// OCHamcrest - HCIs.m
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
#import "HCIs.h"
@@ -13,7 +7,7 @@
@interface HCIs ()
-@property (nonatomic, readonly) id matcher;
+@property (readonly, nonatomic, strong) id matcher;
@end
@implementation HCIs
diff --git a/Pods/OCHamcrest/Source/Library/Logical/HCAllOf.h b/Pods/OCHamcrest/Source/Library/Logical/HCAllOf.h
index e1dea72..109afa1 100644
--- a/Pods/OCHamcrest/Source/Library/Logical/HCAllOf.h
+++ b/Pods/OCHamcrest/Source/Library/Logical/HCAllOf.h
@@ -1,16 +1,10 @@
-//
-// OCHamcrest - HCAllOf.h
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
-#import
+#import
-@interface HCAllOf : HCBaseMatcher
+@interface HCAllOf : HCDiagnosingMatcher
+ (instancetype)allOf:(NSArray *)matchers;
- (instancetype)initWithMatchers:(NSArray *)matchers;
@@ -23,18 +17,18 @@ FOUNDATION_EXPORT id HC_allOf(id match, ...) NS_REQUIRES_NIL_TERMINATION;
/**
allOf(firstMatcher, ...) -
Matches if all of the given matchers evaluate to @c YES.
-
+
@param firstMatcher,... A comma-separated list of matchers ending with @c nil.
-
+
The matchers are evaluated from left to right using short-circuit evaluation, so evaluation
stops as soon as a matcher returns @c NO.
-
+
Any argument that is not a matcher is implicitly wrapped in an @ref equalTo matcher to check for
equality.
-
+
(In the event of a name clash, don't \#define @c HC_SHORTHAND and use the synonym
@c HC_allOf instead.)
-
+
@ingroup logical_matchers
*/
#ifdef HC_SHORTHAND
diff --git a/Pods/OCHamcrest/Source/Library/Logical/HCAllOf.m b/Pods/OCHamcrest/Source/Library/Logical/HCAllOf.m
index e32ec53..7d66719 100644
--- a/Pods/OCHamcrest/Source/Library/Logical/HCAllOf.m
+++ b/Pods/OCHamcrest/Source/Library/Logical/HCAllOf.m
@@ -1,11 +1,5 @@
-//
-// OCHamcrest - HCAllOf.m
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
#import "HCAllOf.h"
@@ -13,7 +7,7 @@
@interface HCAllOf ()
-@property (nonatomic, readonly) NSArray *matchers;
+@property (readonly, nonatomic, copy) NSArray *matchers;
@end
@implementation HCAllOf
@@ -31,11 +25,6 @@ - (instancetype)initWithMatchers:(NSArray *)matchers
return self;
}
-- (BOOL)matches:(id)item
-{
- return [self matches:item describingMismatchTo:nil];
-}
-
- (BOOL)matches:(id)item describingMismatchTo:(id)mismatchDescription
{
for (id oneMatcher in self.matchers)
@@ -50,11 +39,6 @@ - (BOOL)matches:(id)item describingMismatchTo:(id)mismatchDescrip
return YES;
}
-- (void)describeMismatchOf:(id)item to:(id)mismatchDescription
-{
- [self matches:item describingMismatchTo:mismatchDescription];
-}
-
- (void)describeTo:(id)description
{
[description appendList:self.matchers start:@"(" separator:@" and " end:@")"];
@@ -69,6 +53,6 @@ id HC_allOf(id match, ...)
va_start(args, match);
NSArray *matcherList = HCCollectMatchers(match, args);
va_end(args);
-
+
return [HCAllOf allOf:matcherList];
}
diff --git a/Pods/OCHamcrest/Source/Library/Logical/HCAnyOf.h b/Pods/OCHamcrest/Source/Library/Logical/HCAnyOf.h
index d526a2c..2e75d13 100644
--- a/Pods/OCHamcrest/Source/Library/Logical/HCAnyOf.h
+++ b/Pods/OCHamcrest/Source/Library/Logical/HCAnyOf.h
@@ -1,11 +1,5 @@
-//
-// OCHamcrest - HCAnyOf.h
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
#import
@@ -23,18 +17,18 @@ FOUNDATION_EXPORT id HC_anyOf(id match, ...) NS_REQUIRES_NIL_TERMINATION;
/**
anyOf(firstMatcher, ...) -
Matches if any of the given matchers evaluate to @c YES.
-
+
@param firstMatcher,... A comma-separated list of matchers ending with @c nil.
-
+
The matchers are evaluated from left to right using short-circuit evaluation, so evaluation
stops as soon as a matcher returns @c YES.
-
+
Any argument that is not a matcher is implicitly wrapped in an @ref equalTo matcher to check for
equality.
-
+
(In the event of a name clash, don't \#define @c HC_SHORTHAND and use the synonym
@c HC_anyOf instead.)
-
+
@ingroup logical_matchers
*/
#ifdef HC_SHORTHAND
diff --git a/Pods/OCHamcrest/Source/Library/Logical/HCAnyOf.m b/Pods/OCHamcrest/Source/Library/Logical/HCAnyOf.m
index 4a09f5a..7ba3cdb 100644
--- a/Pods/OCHamcrest/Source/Library/Logical/HCAnyOf.m
+++ b/Pods/OCHamcrest/Source/Library/Logical/HCAnyOf.m
@@ -1,11 +1,5 @@
-//
-// OCHamcrest - HCAnyOf.m
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
#import "HCAnyOf.h"
@@ -13,7 +7,7 @@
@interface HCAnyOf ()
-@property (nonatomic, readonly) NSArray *matchers;
+@property (readonly, nonatomic, copy) NSArray *matchers;
@end
@implementation HCAnyOf
@@ -53,6 +47,6 @@ id HC_anyOf(id match, ...)
va_start(args, match);
NSArray *matcherList = HCCollectMatchers(match, args);
va_end(args);
-
+
return [HCAnyOf anyOf:matcherList];
}
diff --git a/Pods/OCHamcrest/Source/Library/Logical/HCIsAnything.h b/Pods/OCHamcrest/Source/Library/Logical/HCIsAnything.h
index df13432..2452382 100644
--- a/Pods/OCHamcrest/Source/Library/Logical/HCIsAnything.h
+++ b/Pods/OCHamcrest/Source/Library/Logical/HCIsAnything.h
@@ -1,11 +1,5 @@
-//
-// OCHamcrest - HCIsAnything.h
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
#import
@@ -28,13 +22,13 @@ FOUNDATION_EXPORT id HC_anything(void);
/**
Matches anything.
-
+
This matcher always evaluates to @c YES. Specify this in composite matchers when the value of a
particular element is unimportant.
-
+
(In the event of a name clash, don't \#define @c HC_SHORTHAND and use the synonym
@c HC_anything instead.)
-
+
@ingroup logical_matchers
*/
#ifdef HC_SHORTHAND
@@ -47,15 +41,15 @@ FOUNDATION_EXPORT id HC_anythingWithDescription(NSString *aDescription);
/**
anythingWithDescription(description) -
Matches anything.
-
+
@param description A string used to describe this matcher.
-
+
This matcher always evaluates to @c YES. Specify this in collection matchers when the value of a
particular element in a collection is unimportant.
-
+
(In the event of a name clash, don't \#define @c HC_SHORTHAND and use the synonym
@c HC_anything instead.)
-
+
@ingroup logical_matchers
*/
#ifdef HC_SHORTHAND
diff --git a/Pods/OCHamcrest/Source/Library/Logical/HCIsAnything.m b/Pods/OCHamcrest/Source/Library/Logical/HCIsAnything.m
index 9b140a6..2873443 100644
--- a/Pods/OCHamcrest/Source/Library/Logical/HCIsAnything.m
+++ b/Pods/OCHamcrest/Source/Library/Logical/HCIsAnything.m
@@ -1,11 +1,5 @@
-//
-// OCHamcrest - HCIsAnything.m
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
#import "HCIsAnything.h"
diff --git a/Pods/OCHamcrest/Source/Library/Logical/HCIsNot.h b/Pods/OCHamcrest/Source/Library/Logical/HCIsNot.h
index 707644f..9d91555 100644
--- a/Pods/OCHamcrest/Source/Library/Logical/HCIsNot.h
+++ b/Pods/OCHamcrest/Source/Library/Logical/HCIsNot.h
@@ -1,11 +1,5 @@
-//
-// OCHamcrest - HCIsNot.h
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
#import
@@ -23,20 +17,20 @@ FOUNDATION_EXPORT id HC_isNot(id aMatcher);
/**
isNot(aMatcher) -
Inverts the given matcher to its logical negation.
-
+
@param aMatcher The matcher to negate.
-
+
This matcher compares the evaluated object to the negation of the given matcher. If the
@a aMatcher argument is not a matcher, it is implicitly wrapped in an @ref equalTo matcher to
check for equality, and thus matches for inequality.
-
+
Examples:
@li @ref assertThat(cheese, isNot(equalTo(smelly)))
@li @ref assertThat(cheese, isNot(smelly))
-
+
(In the event of a name clash, don't \#define @c HC_SHORTHAND and use the synonym
@c HC_isNot instead.)
-
+
@ingroup logical_matchers
*/
#ifdef HC_SHORTHAND
diff --git a/Pods/OCHamcrest/Source/Library/Logical/HCIsNot.m b/Pods/OCHamcrest/Source/Library/Logical/HCIsNot.m
index 2dae786..cae4588 100644
--- a/Pods/OCHamcrest/Source/Library/Logical/HCIsNot.m
+++ b/Pods/OCHamcrest/Source/Library/Logical/HCIsNot.m
@@ -1,11 +1,5 @@
-//
-// OCHamcrest - HCIsNot.m
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
#import "HCIsNot.h"
@@ -13,7 +7,7 @@
@interface HCIsNot ()
-@property (nonatomic, readonly) id matcher;
+@property (readonly, nonatomic, strong) id matcher;
@end
@implementation HCIsNot
diff --git a/Pods/OCHamcrest/Source/Library/Number/HCIsCloseTo.h b/Pods/OCHamcrest/Source/Library/Number/HCIsCloseTo.h
index 19ecf62..561371c 100644
--- a/Pods/OCHamcrest/Source/Library/Number/HCIsCloseTo.h
+++ b/Pods/OCHamcrest/Source/Library/Number/HCIsCloseTo.h
@@ -1,11 +1,5 @@
-//
-// OCHamcrest - HCIsCloseTo.h
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
#import
@@ -23,19 +17,19 @@ FOUNDATION_EXPORT id HC_closeTo(double aValue, double aDelta);
/**
closeTo(aValue, aDelta) -
Matches if object is a number close to a given value, within a given delta.
-
+
@param aValue The @c double value to compare against as the expected value.
@param aDelta The @c double maximum delta between the values for which the numbers are considered close.
-
+
This matcher invokes @c -doubleValue on the evaluated object to get its value as a @c double.
The result is compared against @a aValue to see if the difference is within a positive @a aDelta.
-
+
Example:
@li @ref closeTo(3.0, 0.25)
-
+
(In the event of a name clash, don't \#define @c HC_SHORTHAND and use the synonym
@c HC_closeTo instead.)
-
+
@ingroup number_matchers
*/
#ifdef HC_SHORTHAND
diff --git a/Pods/OCHamcrest/Source/Library/Number/HCIsCloseTo.m b/Pods/OCHamcrest/Source/Library/Number/HCIsCloseTo.m
index 3eb6f8d..dc9bad8 100644
--- a/Pods/OCHamcrest/Source/Library/Number/HCIsCloseTo.m
+++ b/Pods/OCHamcrest/Source/Library/Number/HCIsCloseTo.m
@@ -1,19 +1,13 @@
-//
-// OCHamcrest - HCIsCloseTo.m
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
#import "HCIsCloseTo.h"
@interface HCIsCloseTo ()
-@property (nonatomic, readonly) double value;
-@property (nonatomic, readonly) double delta;
+@property (readonly, nonatomic, assign) double value;
+@property (readonly, nonatomic, assign) double delta;
@end
@@ -39,7 +33,7 @@ - (BOOL)matches:(id)item
{
if ([self itemIsNotNumber:item])
return NO;
-
+
return fabs([item doubleValue] - self.value) <= self.delta;
}
diff --git a/Pods/OCHamcrest/Source/Library/Number/HCIsEqualToNumber.h b/Pods/OCHamcrest/Source/Library/Number/HCIsEqualToNumber.h
index 4218a05..03e75a9 100644
--- a/Pods/OCHamcrest/Source/Library/Number/HCIsEqualToNumber.h
+++ b/Pods/OCHamcrest/Source/Library/Number/HCIsEqualToNumber.h
@@ -1,29 +1,25 @@
-//
-// OCHamcrest - HCIsEqualToNumber.h
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
#import
-FOUNDATION_EXPORT id HC_equalToBool(BOOL value);
+FOUNDATION_EXPORT id HC_equalToBool(BOOL value) __attribute__((deprecated));
/**
equalToBool(value) -
Matches if object is equal to @c NSNumber created from a @c BOOL.
-
+
@param value The @c BOOL value from which to create an @c NSNumber.
-
+
+ @b Deprecated: Use @ref isTrue() or @ref isFalse() instead.
+
This matcher creates an @c NSNumber object from a @c BOOL @a value and compares the evaluated
object to it for equality.
-
+
(In the event of a name clash, don't \#define @c HC_SHORTHAND and use the synonym
@c HC_equalToBool instead.)
-
+
@ingroup primitive_number_matchers
*/
#ifdef HC_SHORTHAND
@@ -32,6 +28,8 @@ FOUNDATION_EXPORT id HC_equalToBool(BOOL value);
@interface HCIsEqualToBool : HCBaseMatcher
+@property (readonly, nonatomic, assign) BOOL value;
+
- (instancetype)initWithValue:(BOOL)value;
@end
@@ -42,15 +40,15 @@ FOUNDATION_EXPORT id HC_equalToChar(char value);
/**
equalToChar(value) -
Matches if object is equal to @c NSNumber created from a @c char.
-
+
@param value The @c char value from which to create an @c NSNumber.
-
+
This matcher creates an @c NSNumber object from a @c char @a value and compares the evaluated
object to it for equality.
-
+
(In the event of a name clash, don't \#define @c HC_SHORTHAND and use the synonym
@c HC_equalToChar instead.)
-
+
@ingroup primitive_number_matchers
*/
#ifdef HC_SHORTHAND
@@ -63,15 +61,15 @@ FOUNDATION_EXPORT id HC_equalToDouble(double value);
/**
equalToDouble(value) -
Matches if object is equal to @c NSNumber created from a @c double.
-
+
@param value The @c double value from which to create an @c NSNumber.
-
+
This matcher creates an @c NSNumber object from a @c double @a value and compares the evaluated
object to it for equality.
-
+
(In the event of a name clash, don't \#define @c HC_SHORTHAND and use the synonym
@c HC_equalToDouble instead.)
-
+
@ingroup primitive_number_matchers
*/
#ifdef HC_SHORTHAND
@@ -84,15 +82,15 @@ FOUNDATION_EXPORT id HC_equalToFloat(float value);
/**
equalToFloat(value) -
Matches if object is equal to @c NSNumber created from a @c float.
-
+
@param value The @c float value from which to create an @c NSNumber.
-
+
This matcher creates an @c NSNumber object from a @c float @a value and compares the evaluated
object to it for equality.
-
+
(In the event of a name clash, don't \#define @c HC_SHORTHAND and use the synonym
@c HC_equalToFloat instead.)
-
+
@ingroup primitive_number_matchers
*/
#ifdef HC_SHORTHAND
@@ -105,15 +103,15 @@ FOUNDATION_EXPORT id HC_equalToInt(int value);
/**
equalToInt(value) -
Matches if object is equal to @c NSNumber created from an @c int.
-
+
@param value The @c int value from which to create an @c NSNumber.
-
+
This matcher creates an @c NSNumber object from a @c int @a value and compares the evaluated
object to it for equality.
-
+
(In the event of a name clash, don't \#define @c HC_SHORTHAND and use the synonym
@c HC_equalToInt instead.)
-
+
@ingroup primitive_number_matchers
*/
#ifdef HC_SHORTHAND
@@ -126,15 +124,15 @@ FOUNDATION_EXPORT id HC_equalToLong(long value);
/**
equalToLong(value) -
Matches if object is equal to @c NSNumber created from a @c long.
-
+
@param value The @c long value from which to create an @c NSNumber.
-
+
This matcher creates an @c NSNumber object from a @c long @a value and compares the evaluated
object to it for equality.
-
+
(In the event of a name clash, don't \#define @c HC_SHORTHAND and use the synonym
@c HC_equalToLong instead.)
-
+
@ingroup primitive_number_matchers
*/
#ifdef HC_SHORTHAND
@@ -147,15 +145,15 @@ FOUNDATION_EXPORT id HC_equalToLongLong(long long value);
/**
equalToLongLong(value) -
Matches if object is equal to @c NSNumber created from a long long
.
-
+
@param value The long long
value from which to create an @c NSNumber.
-
+
This matcher creates an @c NSNumber object from a long long
@a value and compares
the evaluated object to it for equality.
-
+
(In the event of a name clash, don't \#define @c HC_SHORTHAND and use the synonym
@c HC_equalToLongLong instead.)
-
+
@ingroup primitive_number_matchers
*/
#ifdef HC_SHORTHAND
@@ -168,15 +166,15 @@ FOUNDATION_EXPORT id HC_equalToShort(short value);
/**
equalToShort(value) -
Matches if object is equal to @c NSNumber created from a @c short.
-
+
@param value The @c short value from which to create an @c NSNumber.
-
+
This matcher creates an @c NSNumber object from a @c short @a value and compares the evaluated
object to it for equality.
-
+
(In the event of a name clash, don't \#define @c HC_SHORTHAND and use the synonym
@c HC_equalToShort instead.)
-
+
@ingroup primitive_number_matchers
*/
#ifdef HC_SHORTHAND
@@ -189,15 +187,15 @@ FOUNDATION_EXPORT id HC_equalToUnsignedChar(unsigned char value);
/**
equalToUnsignedChar(value) -
Matches if object is equal to @c NSNumber created from an unsigned char
.
-
+
@param value The unsigned char
value from which to create an @c NSNumber.
-
+
This matcher creates an @c NSNumber object from an unsigned char
@a value and
compares the evaluated object to it for equality.
-
+
(In the event of a name clash, don't \#define @c HC_SHORTHAND and use the synonym
@c HC_equalToUnsignedChar instead.)
-
+
@ingroup primitive_number_matchers
*/
#ifdef HC_SHORTHAND
@@ -210,15 +208,15 @@ FOUNDATION_EXPORT id HC_equalToUnsignedInt(unsigned int value);
/**
equalToUnsignedInt(value) -
Matches if object is equal to @c NSNumber created from an unsigned int
.
-
+
@param value The unsigned int
value from which to create an @c NSNumber.
-
+
This matcher creates an @c NSNumber object from an unsigned int
@a value and
compares the evaluated object to it for equality.
-
+
(In the event of a name clash, don't \#define @c HC_SHORTHAND and use the synonym
@c HC_equalToUnsignedInt instead.)
-
+
@ingroup primitive_number_matchers
*/
#ifdef HC_SHORTHAND
@@ -231,15 +229,15 @@ FOUNDATION_EXPORT id HC_equalToUnsignedLong(unsigned long value);
/**
equalToUnsignedLong(value) -
Matches if object is equal to @c NSNumber created from an unsigned long
.
-
+
@param value The unsigned long
value from which to create an @c NSNumber.
-
+
This matcher creates an @c NSNumber object from an unsigned long
@a value and
compares the evaluated object to it for equality.
-
+
(In the event of a name clash, don't \#define @c HC_SHORTHAND and use the synonym
@c HC_equalToUnsignedLong instead.)
-
+
@ingroup primitive_number_matchers
*/
#ifdef HC_SHORTHAND
@@ -252,15 +250,15 @@ FOUNDATION_EXPORT id HC_equalToUnsignedLongLong(unsigned long long value);
/**
equalToUnsignedLongLong(value) -
Matches if object is equal to @c NSNumber created from an unsigned long long
.
-
+
@param value The unsigned long long
value from which to create an @c NSNumber.
-
+
This matcher creates an @c NSNumber object from an unsigned long long
@a value and
compares the evaluated object to it for equality.
-
+
(In the event of a name clash, don't \#define @c HC_SHORTHAND and use the synonym
@c HC_equalToUnsignedLongLong instead.)
-
+
@ingroup primitive_number_matchers
*/
#ifdef HC_SHORTHAND
@@ -273,15 +271,15 @@ FOUNDATION_EXPORT id HC_equalToUnsignedShort(unsigned short value);
/**
equalToUnsignedShort(value) -
Matches if object is equal to @c NSNumber created from an unsigned short
.
-
+
@param value The unsigned short
value from which to create an @c NSNumber.
-
+
This matcher creates an @c NSNumber object from an unsigned short
@a value and
compares the evaluated object to it for equality.
-
+
(In the event of a name clash, don't \#define @c HC_SHORTHAND and use the synonym
@c HC_equalToUnsignedShort instead.)
-
+
@ingroup primitive_number_matchers
*/
#ifdef HC_SHORTHAND
@@ -294,15 +292,15 @@ FOUNDATION_EXPORT id HC_equalToInteger(NSInteger value);
/**
equalToInteger(value) -
Matches if object is equal to @c NSNumber created from an @c NSInteger.
-
+
@param value The @c NSInteger value from which to create an @c NSNumber.
-
+
This matcher creates an @c NSNumber object from an @c NSInteger @a value and compares the
evaluated object to it for equality.
-
+
(In the event of a name clash, don't \#define @c HC_SHORTHAND and use the synonym
@c HC_equalToInteger instead.)
-
+
@ingroup primitive_number_matchers
*/
#ifdef HC_SHORTHAND
@@ -315,15 +313,15 @@ FOUNDATION_EXPORT id HC_equalToUnsignedInteger(NSUInteger value);
/**
equalToUnsignedInteger(value) -
Matches if object is equal to @c NSNumber created from an @c NSUInteger.
-
+
@param value The @c NSUInteger value from which to create an @c NSNumber.
-
+
This matcher creates an @c NSNumber object from an @c NSUInteger @a value and compares the
evaluated object to it for equality.
-
+
(In the event of a name clash, don't \#define @c HC_SHORTHAND and use the synonym
@c HC_equalToUnsignedInteger instead.)
-
+
@ingroup primitive_number_matchers
*/
#ifdef HC_SHORTHAND
diff --git a/Pods/OCHamcrest/Source/Library/Number/HCIsEqualToNumber.m b/Pods/OCHamcrest/Source/Library/Number/HCIsEqualToNumber.m
index 695fd2c..9792cb2 100644
--- a/Pods/OCHamcrest/Source/Library/Number/HCIsEqualToNumber.m
+++ b/Pods/OCHamcrest/Source/Library/Number/HCIsEqualToNumber.m
@@ -1,11 +1,5 @@
-//
-// OCHamcrest - HCIsEqualToNumber.m
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
#import "HCIsEqualToNumber.h"
@@ -84,23 +78,32 @@ FOUNDATION_EXPORT id HC_equalToUnsignedInteger(NSUInteger value)
#pragma mark -
+static NSString *stringForBool(BOOL value)
+{
+ return value ? @"" : @"";
+}
+
FOUNDATION_EXPORT id HC_equalToBool(BOOL value)
{
return [[HCIsEqualToBool alloc] initWithValue:value];
}
@implementation HCIsEqualToBool
-{
- BOOL _value;
-}
-+ (NSString*) stringForBool:(BOOL)value
+static void HCRequireYesOrNo(BOOL value)
{
- return value ? @"" : @"";
+ if (value != YES && value != NO)
+ {
+ @throw [NSException exceptionWithName:@"BoolValue"
+ reason:@"Must be YES or NO"
+ userInfo:nil];
+ }
}
- (instancetype)initWithValue:(BOOL)value
{
+ HCRequireYesOrNo(value);
+
self = [super init];
if (self)
_value = value;
@@ -112,19 +115,22 @@ - (BOOL)matches:(id)item
if (![item isKindOfClass:[NSNumber class]])
return NO;
- return [item boolValue] == _value;
+ return [item boolValue] == self.value;
}
- (void)describeTo:(id)description
{
- [description appendText:@"a BOOL with value "];
- [description appendText:[HCIsEqualToBool stringForBool:_value]];
+ [[description appendText:@"a BOOL with value "]
+ appendText:stringForBool(self.value)];
}
- (void)describeMismatchOf:(id)item to:(id)mismatchDescription
{
[mismatchDescription appendText:@"was "];
- [mismatchDescription appendText:[HCIsEqualToBool stringForBool:[item boolValue]]];
+ if ([item isKindOfClass:[NSNumber class]])
+ [mismatchDescription appendText:stringForBool([item boolValue])];
+ else
+ [mismatchDescription appendDescriptionOf:item];
}
@end
diff --git a/Pods/OCHamcrest/Source/Library/Number/HCNumberAssert.h b/Pods/OCHamcrest/Source/Library/Number/HCNumberAssert.h
index 5743ce5..968fd9f 100644
--- a/Pods/OCHamcrest/Source/Library/Number/HCNumberAssert.h
+++ b/Pods/OCHamcrest/Source/Library/Number/HCNumberAssert.h
@@ -1,11 +1,5 @@
-//
-// OCHamcrest - HCNumberAssert.h
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
#import
@@ -21,13 +15,13 @@ FOUNDATION_EXPORT void HC_assertThatBoolWithLocation(id testCase, BOOL actual,
/**
assertThatBool(actual, matcher) -
Asserts that @c BOOL actual value, converted to an @c NSNumber, satisfies matcher.
-
+
@param actual The @c BOOL value to convert to an @c NSNumber for evaluation.
@param matcher The matcher to satisfy as the expected condition.
-
+
(In the event of a name clash, don't \#define @c HC_SHORTHAND and use the synonym
@c HC_assertThatBool instead.)
-
+
@ingroup integration_numeric
*/
#ifdef HC_SHORTHAND
@@ -44,13 +38,13 @@ FOUNDATION_EXPORT void HC_assertThatCharWithLocation(id testCase, char actual,
/**
assertThatChar(actual, matcher) -
Asserts that @c char actual value, converted to an @c NSNumber, satisfies matcher.
-
+
@param actual The @c char value to convert to an @c NSNumber for evaluation.
@param matcher The matcher to satisfy as the expected condition.
-
+
(In the event of a name clash, don't \#define @c HC_SHORTHAND and use the synonym
@c HC_assertThatChar instead.)
-
+
@ingroup integration_numeric
*/
#ifdef HC_SHORTHAND
@@ -67,13 +61,13 @@ FOUNDATION_EXPORT void HC_assertThatDoubleWithLocation(id testCase, double actua
/**
HC_assertThatDouble(actual, matcher) -
Asserts that @c double actual value, converted to an @c NSNumber, satisfies matcher.
-
+
@param actual The @c double value to convert to an @c NSNumber for evaluation.
@param matcher The matcher to satisfy as the expected condition.
-
+
(In the event of a name clash, don't \#define @c HC_SHORTHAND and use the synonym
@c HC_assertThatDouble instead.)
-
+
@ingroup integration_numeric
*/
#ifdef HC_SHORTHAND
@@ -90,13 +84,13 @@ FOUNDATION_EXPORT void HC_assertThatFloatWithLocation(id testCase, float actual,
/**
assertThatFloat(actual, matcher) -
Asserts that @c float actual value, converted to an @c NSNumber, satisfies matcher.
-
+
@param actual The @c float value to convert to an @c NSNumber for evaluation.
@param matcher The matcher to satisfy as the expected condition.
-
+
(In the event of a name clash, don't \#define @c HC_SHORTHAND and use the synonym
@c HC_assertThatFloat instead.)
-
+
@ingroup integration_numeric
*/
#ifdef HC_SHORTHAND
@@ -113,13 +107,13 @@ FOUNDATION_EXPORT void HC_assertThatIntWithLocation(id testCase, int actual,
/**
assertThatInt(actual, matcher) -
Asserts that @c int actual value, converted to an @c NSNumber, satisfies matcher.
-
+
@param actual The @c int value to convert to an @c NSNumber for evaluation.
@param matcher The matcher to satisfy as the expected condition.
-
+
(In the event of a name clash, don't \#define @c HC_SHORTHAND and use the synonym
@c HC_assertThatInt instead.)
-
+
@ingroup integration_numeric
*/
#ifdef HC_SHORTHAND
@@ -136,13 +130,13 @@ FOUNDATION_EXPORT void HC_assertThatLongWithLocation(id testCase, long actual,
/**
assertThatLong(actual, matcher) -
Asserts that @c long actual value, converted to an @c NSNumber, satisfies matcher.
-
+
@param actual The @c long value to convert to an @c NSNumber for evaluation.
@param matcher The matcher to satisfy as the expected condition.
-
+
(In the event of a name clash, don't \#define @c HC_SHORTHAND and use the synonym
@c HC_assertThatLong instead.)
-
+
@ingroup integration_numeric
*/
#ifdef HC_SHORTHAND
@@ -160,13 +154,13 @@ FOUNDATION_EXPORT void HC_assertThatLongLongWithLocation(id testCase, long long
assertThatLongLong(actual, matcher) -
Asserts that long long
actual value, converted to an @c NSNumber, satisfies
matcher.
-
+
@param actual The long long
value to convert to an @c NSNumber for evaluation.
@param matcher The matcher to satisfy as the expected condition.
-
+
(In the event of a name clash, don't \#define @c HC_SHORTHAND and use the synonym
@c HC_assertThatLongLong instead.)
-
+
@ingroup integration_numeric
*/
#ifdef HC_SHORTHAND
@@ -183,13 +177,13 @@ FOUNDATION_EXPORT void HC_assertThatShortWithLocation(id testCase, short actual,
/**
assertThatShort(actual, matcher) -
Asserts that @c short actual value, converted to an @c NSNumber, satisfies matcher.
-
+
@param actual The @c short value to convert to an @c NSNumber for evaluation.
@param matcher The matcher to satisfy as the expected condition.
-
+
(In the event of a name clash, don't \#define @c HC_SHORTHAND and use the synonym
@c HC_assertThatShort instead.)
-
+
@ingroup integration_numeric
*/
#ifdef HC_SHORTHAND
@@ -207,13 +201,13 @@ FOUNDATION_EXPORT void HC_assertThatUnsignedCharWithLocation(id testCase, unsign
assertThatUnsignedChar(actual, matcher) -
Asserts that unsigned char
actual value, converted to an @c NSNumber, satisfies
matcher.
-
+
@param actual The unsigned char
value to convert to an @c NSNumber for evaluation.
@param matcher The matcher to satisfy as the expected condition.
-
+
(In the event of a name clash, don't \#define @c HC_SHORTHAND and use the synonym
@c HC_assertThatUnsignedChar instead.)
-
+
@ingroup integration_numeric
*/
#ifdef HC_SHORTHAND
@@ -231,12 +225,12 @@ FOUNDATION_EXPORT void HC_assertThatUnsignedIntWithLocation(id testCase, unsigne
assertThatUnsignedInt(actual, matcher) -
Asserts that unsigned int
actual value, converted to an @c NSNumber, satisfies
matcher.
-
+
@param actual The unsigned int
value to convert to an @c NSNumber for evaluation @param matcher The matcher to satisfy as the expected condition.
-
+
(In the event of a name clash, don't \#define @c HC_SHORTHAND and use the synonym
@c HC_assertThatUnsignedInt instead.)
-
+
@ingroup integration_numeric
*/
#ifdef HC_SHORTHAND
@@ -254,12 +248,12 @@ FOUNDATION_EXPORT void HC_assertThatUnsignedLongWithLocation(id testCase, unsign
assertThatUnsignedLong(actual, matcher) -
Asserts that unsigned long
actual value, converted to an @c NSNumber, satisfies
matcher.
-
+
@param actual The unsigned long
value to convert to an @c NSNumber for evaluation @param matcher The matcher to satisfy as the expected condition.
-
+
(In the event of a name clash, don't \#define @c HC_SHORTHAND and use the synonym
@c HC_assertThatUnsignedLong instead.)
-
+
@ingroup integration_numeric
*/
#ifdef HC_SHORTHAND
@@ -277,12 +271,12 @@ FOUNDATION_EXPORT void HC_assertThatUnsignedLongLongWithLocation(id testCase, un
assertThatUnsignedLongLong(actual, matcher) -
Asserts that unsigned long long
actual value, converted to an @c NSNumber,
satisfies matcher.
-
+
@param actual The unsigned long long
value to convert to an @c NSNumber for evaluation @param matcher The matcher to satisfy as the expected condition.
-
+
(In the event of a name clash, don't \#define @c HC_SHORTHAND and use the synonym
@c HC_assertThatUnsignedLongLong instead.)
-
+
@ingroup integration_numeric
*/
#ifdef HC_SHORTHAND
@@ -300,12 +294,12 @@ FOUNDATION_EXPORT void HC_assertThatUnsignedShortWithLocation(id testCase, unsig
assertThatUnsignedShort(actual, matcher) -
Asserts that unsigned short
actual value, converted to an @c NSNumber, satisfies
matcher.
-
+
@param actual The unsigned short
value to convert to an @c NSNumber for evaluation @param matcher The matcher to satisfy as the expected condition.
-
+
(In the event of a name clash, don't \#define @c HC_SHORTHAND and use the synonym
@c HC_assertThatUnsignedShort instead.)
-
+
@ingroup integration_numeric
*/
#ifdef HC_SHORTHAND
@@ -322,13 +316,13 @@ FOUNDATION_EXPORT void HC_assertThatIntegerWithLocation(id testCase, NSInteger a
/**
assertThatInteger(actual, matcher) -
Asserts that @c NSInteger actual value, converted to an @c NSNumber, satisfies matcher.
-
+
@param actual The @c NSInteger value to convert to an @c NSNumber for evaluation.
@param matcher The matcher to satisfy as the expected condition.
-
+
(In the event of a name clash, don't \#define @c HC_SHORTHAND and use the synonym
@c HC_assertThatInteger instead.)
-
+
@ingroup integration_numeric
*/
#ifdef HC_SHORTHAND
@@ -345,13 +339,13 @@ FOUNDATION_EXPORT void HC_assertThatUnsignedIntegerWithLocation(id testCase, NSU
/**
assertThatUnsignedInteger(actual, matcher) -
Asserts that @c NSUInteger actual value, converted to an @c NSNumber, satisfies matcher.
-
+
@param actual The @c NSUInteger value to convert to an @c NSNumber for evaluation.
@param matcher The matcher to satisfy as the expected condition.
-
+
(In the event of a name clash, don't \#define @c HC_SHORTHAND and use the synonym
@c HC_assertThatUnsignedInteger instead.)
-
+
@ingroup integration_numeric
*/
#ifdef HC_SHORTHAND
diff --git a/Pods/OCHamcrest/Source/Library/Number/HCNumberAssert.m b/Pods/OCHamcrest/Source/Library/Number/HCNumberAssert.m
index 1491b54..8e292b1 100644
--- a/Pods/OCHamcrest/Source/Library/Number/HCNumberAssert.m
+++ b/Pods/OCHamcrest/Source/Library/Number/HCNumberAssert.m
@@ -1,11 +1,5 @@
-//
-// OCHamcrest - HCNumberAssert.m
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
#import "HCNumberAssert.h"
diff --git a/Pods/OCHamcrest/Source/Library/Number/HCOrderingComparison.h b/Pods/OCHamcrest/Source/Library/Number/HCOrderingComparison.h
index 755c481..0e1dba9 100644
--- a/Pods/OCHamcrest/Source/Library/Number/HCOrderingComparison.h
+++ b/Pods/OCHamcrest/Source/Library/Number/HCOrderingComparison.h
@@ -1,11 +1,5 @@
-//
-// OCHamcrest - HCOrderingComparison.h
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
#import
@@ -30,15 +24,15 @@ FOUNDATION_EXPORT id HC_greaterThan(id expected);
/**
greaterThan(aNumber) -
Matches if object is greater than a given number.
-
+
@param aNumber The @c NSNumber to compare against.
-
+
Example:
@li @ref greaterThan(\@5)
-
+
(In the event of a name clash, don't \#define @c HC_SHORTHAND and use the synonym
@c HC_greaterThan instead.)
-
+
@ingroup number_matchers
*/
#ifdef HC_SHORTHAND
@@ -51,15 +45,15 @@ FOUNDATION_EXPORT id HC_greaterThanOrEqualTo(id expected);
/**
greaterThanOrEqualTo(aNumber) -
Matches if object is greater than or equal to a given number.
-
+
@param aNumber The @c NSNumber to compare against.
-
+
Example:
@li @ref greaterThanOrEqualTo(\@5)
-
+
(In the event of a name clash, don't \#define @c HC_SHORTHAND and use the synonym
@c HC_greaterThanOrEqualTo instead.)
-
+
@ingroup number_matchers
*/
#ifdef HC_SHORTHAND
@@ -72,15 +66,15 @@ FOUNDATION_EXPORT id HC_lessThan(id expected);
/**
lessThan(aNumber) -
Matches if object is less than a given number.
-
+
@param aNumber The @c NSNumber to compare against.
-
+
Example:
@li @ref lessThan(\@5)
-
+
(In the event of a name clash, don't \#define @c HC_SHORTHAND and use the synonym
@c HC_lessThan instead.)
-
+
@ingroup number_matchers
*/
#ifdef HC_SHORTHAND
@@ -93,15 +87,15 @@ FOUNDATION_EXPORT id HC_lessThanOrEqualTo(id expected);
/**
lessThanOrEqualTo(aNumber) -
Matches if object is less than or equal to a given number.
-
+
@param aNumber The @c NSNumber to compare against.
-
+
Example:
@li @ref lessThanOrEqualTo(\@5)
-
+
(In the event of a name clash, don't \#define @c HC_SHORTHAND and use the synonym
@c HC_lessThanOrEqualTo instead.)
-
+
@ingroup number_matchers
*/
#ifdef HC_SHORTHAND
diff --git a/Pods/OCHamcrest/Source/Library/Number/HCOrderingComparison.m b/Pods/OCHamcrest/Source/Library/Number/HCOrderingComparison.m
index 8b75337..13f5ec5 100644
--- a/Pods/OCHamcrest/Source/Library/Number/HCOrderingComparison.m
+++ b/Pods/OCHamcrest/Source/Library/Number/HCOrderingComparison.m
@@ -1,20 +1,14 @@
-//
-// OCHamcrest - HCOrderingComparison.m
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
#import "HCOrderingComparison.h"
@interface HCOrderingComparison ()
-@property (nonatomic, readonly) id expected;
-@property (nonatomic, readonly) NSComparisonResult minCompare;
-@property (nonatomic, readonly) NSComparisonResult maxCompare;
-@property (nonatomic, readonly) NSString *comparisonDescription;
+@property (readonly, nonatomic, strong) id expected;
+@property (readonly, nonatomic, assign) NSComparisonResult minCompare;
+@property (readonly, nonatomic, assign) NSComparisonResult maxCompare;
+@property (readonly, nonatomic, copy) NSString *comparisonDescription;
@end
@implementation HCOrderingComparison
@@ -41,7 +35,7 @@ - (instancetype)initComparing:(id)expectedValue
reason: @"Object must respond to compare:"
userInfo: nil];
}
-
+
self = [super init];
if (self)
{
@@ -57,8 +51,16 @@ - (BOOL)matches:(id)item
{
if (item == nil)
return NO;
-
- NSComparisonResult compare = [self.expected compare:item];
+
+ NSComparisonResult compare;
+ @try
+ {
+ compare = [self.expected compare:item];
+ }
+ @catch (NSException *e)
+ {
+ return NO;
+ }
return self.minCompare <= compare && compare <= self.maxCompare;
}
diff --git a/Pods/OCHamcrest/Source/Library/Object/HCClassMatcher.h b/Pods/OCHamcrest/Source/Library/Object/HCClassMatcher.h
index 1984468..d6f0e07 100644
--- a/Pods/OCHamcrest/Source/Library/Object/HCClassMatcher.h
+++ b/Pods/OCHamcrest/Source/Library/Object/HCClassMatcher.h
@@ -1,18 +1,12 @@
-//
-// OCHamcrest - HCClassMatcher.h
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
#import
@interface HCClassMatcher : HCBaseMatcher
-@property (nonatomic, readonly) Class theClass;
+@property (readonly, nonatomic, strong) Class theClass;
- (instancetype)initWithType:(Class)type;
diff --git a/Pods/OCHamcrest/Source/Library/Object/HCClassMatcher.m b/Pods/OCHamcrest/Source/Library/Object/HCClassMatcher.m
index 6ba4530..6b1669e 100644
--- a/Pods/OCHamcrest/Source/Library/Object/HCClassMatcher.m
+++ b/Pods/OCHamcrest/Source/Library/Object/HCClassMatcher.m
@@ -1,11 +1,5 @@
-//
-// OCHamcrest - HCClassMatcher.m
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
#import "HCClassMatcher.h"
@@ -22,7 +16,7 @@ @implementation HCClassMatcher
- (instancetype)initWithType:(Class)aClass
{
HCRequireNonNilObject(aClass);
-
+
self = [super init];
if (self)
_theClass = aClass;
diff --git a/Pods/OCHamcrest/Source/Library/Object/HCConformsToProtocol.h b/Pods/OCHamcrest/Source/Library/Object/HCConformsToProtocol.h
index 06fd790..e0e21d5 100644
--- a/Pods/OCHamcrest/Source/Library/Object/HCConformsToProtocol.h
+++ b/Pods/OCHamcrest/Source/Library/Object/HCConformsToProtocol.h
@@ -1,9 +1,6 @@
-//
-// OCHamcrest - HCConformsToProtocol.h
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Todd Farrell
-//
+// Contribution by Todd Farrell
#import
@@ -21,17 +18,17 @@ FOUNDATION_EXPORT id HC_conformsTo(Protocol *aProtocol);
/**
conformsTo(aProtocol) -
Matches if object conforms to a given protocol.
-
+
@param aProtocol The protocol to compare against as the expected protocol.
-
+
This matcher checks whether the evaluated object conforms to @a aProtocol.
-
+
Example:
@li @ref conformsTo(\@protocol(NSObject))
-
+
(In the event of a name clash, don't \#define @c HC_SHORTHAND and use the synonym
@c HC_conformsTo instead.)
-
+
@ingroup object_matchers
*/
#ifdef HC_SHORTHAND
diff --git a/Pods/OCHamcrest/Source/Library/Object/HCConformsToProtocol.m b/Pods/OCHamcrest/Source/Library/Object/HCConformsToProtocol.m
index 01aa2b9..faa6d08 100644
--- a/Pods/OCHamcrest/Source/Library/Object/HCConformsToProtocol.m
+++ b/Pods/OCHamcrest/Source/Library/Object/HCConformsToProtocol.m
@@ -1,8 +1,6 @@
-//
-// OCHamcrest - HCConformsToProtocol.m
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Todd Farrell
+// Contribution by Todd Farrell
//
#import "HCConformsToProtocol.h"
@@ -11,7 +9,7 @@
@interface HCConformsToProtocol ()
-@property (nonatomic, readonly) Protocol *protocol;
+@property (readonly, nonatomic, strong) Protocol *protocol;
@end
@implementation HCConformsToProtocol
@@ -24,7 +22,7 @@ + (instancetype)conformsTo:(Protocol *)protocol
- (instancetype)initWithProtocol:(Protocol *)protocol
{
HCRequireNonNilObject(protocol);
-
+
self = [super init];
if (self)
_protocol = protocol;
diff --git a/Pods/OCHamcrest/Source/Library/Object/HCHasDescription.h b/Pods/OCHamcrest/Source/Library/Object/HCHasDescription.h
index 53db342..4542a9c 100644
--- a/Pods/OCHamcrest/Source/Library/Object/HCHasDescription.h
+++ b/Pods/OCHamcrest/Source/Library/Object/HCHasDescription.h
@@ -1,11 +1,5 @@
-//
-// OCHamcrest - HCHasDescription.h
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
#import
@@ -23,20 +17,20 @@ FOUNDATION_EXPORT id HC_hasDescription(id match);
/**
hasDescription(aMatcher) -
Matches if object's @c -description satisfies a given matcher.
-
+
@param aMatcher The matcher to satisfy, or an expected value for @ref equalTo matching.
-
+
This matcher invokes @c -description on the evaluated object to get its description, passing the
result to a given matcher for evaluation. If the @a aMatcher argument is not a matcher, it is
implicitly wrapped in an @ref equalTo matcher to check for equality.
-
+
Examples:
@li @ref hasDescription(@ref startsWith(\@"foo"))
@li @ref hasDescription(\@"bar")
-
+
(In the event of a name clash, don't \#define @c HC_SHORTHAND and use the synonym
@c HC_hasDescription instead.)
-
+
@ingroup object_matchers
*/
#ifdef HC_SHORTHAND
diff --git a/Pods/OCHamcrest/Source/Library/Object/HCHasDescription.m b/Pods/OCHamcrest/Source/Library/Object/HCHasDescription.m
index 7d72478..b333715 100644
--- a/Pods/OCHamcrest/Source/Library/Object/HCHasDescription.m
+++ b/Pods/OCHamcrest/Source/Library/Object/HCHasDescription.m
@@ -1,11 +1,5 @@
-//
-// OCHamcrest - HCHasDescription.m
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
#import "HCHasDescription.h"
diff --git a/Pods/OCHamcrest/Source/Library/Object/HCHasProperty.h b/Pods/OCHamcrest/Source/Library/Object/HCHasProperty.h
index 4d03b76..2294698 100644
--- a/Pods/OCHamcrest/Source/Library/Object/HCHasProperty.h
+++ b/Pods/OCHamcrest/Source/Library/Object/HCHasProperty.h
@@ -1,14 +1,11 @@
-//
-// OCHamcrest - HCHasProperty.h
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Justin Shacklette
-//
+// Contribution by Justin Shacklette
-#import
+#import
-@interface HCHasProperty : HCBaseMatcher
+@interface HCHasProperty : HCDiagnosingMatcher
+ (instancetype)hasProperty:(NSString *)property value:(id )valueMatcher;
- (instancetype)initWithProperty:(NSString *)property value:(id )valueMatcher;
@@ -21,23 +18,23 @@ FOUNDATION_EXPORT id HC_hasProperty(NSString *name, id valueMatch);
/**
hasProperty(name, valueMatcher) -
Matches if object has a method of a given name whose return value satisfies a given matcher.
-
+
@param name The name of a method without arguments that returns an object.
@param valueMatcher The matcher to satisfy for the return value, or an expected value for @ref equalTo matching.
-
+
This matcher first checks if the evaluated object has a method with a name matching the given
@c name. If so, it invokes the method and sees if the returned value satisfies @c valueMatcher.
-
+
While this matcher is called "hasProperty", it's useful for checking the results of any simple
methods, not just properties.
-
+
Examples:
@li @ref hasProperty(\@"firstName", \@"Joe")
@li @ref hasProperty(\@"firstName", startsWith(\@"J"))
-
+
(In the event of a name clash, don't \#define @c HC_SHORTHAND and use the synonym
@c HC_hasProperty instead.)
-
+
@ingroup object_matchers
*/
#ifdef HC_SHORTHAND
diff --git a/Pods/OCHamcrest/Source/Library/Object/HCHasProperty.m b/Pods/OCHamcrest/Source/Library/Object/HCHasProperty.m
index 1527047..a8bbf56 100644
--- a/Pods/OCHamcrest/Source/Library/Object/HCHasProperty.m
+++ b/Pods/OCHamcrest/Source/Library/Object/HCHasProperty.m
@@ -1,9 +1,6 @@
-//
-// OCHamcrest - HCHasProperty.m
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Justin Shacklette
-//
+// Contribution by Justin Shacklette
#import "HCHasProperty.h"
@@ -13,8 +10,8 @@
@interface HCHasProperty ()
-@property (nonatomic, readonly) NSString *propertyName;
-@property (nonatomic, readonly) id valueMatcher;
+@property (readonly, nonatomic, copy) NSString *propertyName;
+@property (readonly, nonatomic, strong) id valueMatcher;
@end
@implementation HCHasProperty
@@ -27,7 +24,7 @@ + (instancetype)hasProperty:(NSString *)property value:(id )valueMatc
- (instancetype)initWithProperty:(NSString *)property value:(id )valueMatcher
{
HCRequireNonNilObject(property);
-
+
self = [super init];
if (self != nil)
{
@@ -37,15 +34,30 @@ - (instancetype)initWithProperty:(NSString *)property value:(id )valu
return self;
}
-- (BOOL)matches:(id)item
+- (BOOL)matches:(id)item describingMismatchTo:(id )mismatchDescription
{
SEL propertyGetter = NSSelectorFromString(self.propertyName);
if (![item respondsToSelector:propertyGetter])
+ {
+ [[[[mismatchDescription appendText:@"no "]
+ appendText:self.propertyName]
+ appendText:@" on "]
+ appendDescriptionOf:item];
return NO;
+ }
NSInvocation *getterInvocation = [NSInvocation och_invocationWithTarget:item selector:propertyGetter];
id propertyValue = [getterInvocation och_invoke];
- return [self.valueMatcher matches:propertyValue];
+ BOOL match = [self.valueMatcher matches:propertyValue];
+ if (!match)
+ {
+ [[[[[mismatchDescription appendText:self.propertyName]
+ appendText:@" was "]
+ appendDescriptionOf:propertyValue]
+ appendText:@" on "]
+ appendDescriptionOf:item];
+ }
+ return match;
}
- (void)describeTo:(id)description
diff --git a/Pods/OCHamcrest/Source/Library/Object/HCIsEqual.h b/Pods/OCHamcrest/Source/Library/Object/HCIsEqual.h
index 92bec20..0a115a4 100644
--- a/Pods/OCHamcrest/Source/Library/Object/HCIsEqual.h
+++ b/Pods/OCHamcrest/Source/Library/Object/HCIsEqual.h
@@ -1,11 +1,5 @@
-//
-// OCHamcrest - HCIsEqual.h
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
#import
@@ -23,17 +17,17 @@ FOUNDATION_EXPORT id HC_equalTo(id object);
/**
equalTo(anObject) -
Matches if object is equal to a given object.
-
+
@param anObject The object to compare against as the expected value.
-
+
This matcher compares the evaluated object to @a anObject for equality, as determined by the
@c -isEqual: method.
-
+
If @a anObject is @c nil, the matcher will successfully match @c nil.
-
+
(In the event of a name clash, don't \#define @c HC_SHORTHAND and use the synonym
@c HC_equalTo instead.)
-
+
@ingroup object_matchers
*/
#ifdef HC_SHORTHAND
diff --git a/Pods/OCHamcrest/Source/Library/Object/HCIsEqual.m b/Pods/OCHamcrest/Source/Library/Object/HCIsEqual.m
index 3177e87..71c3515 100644
--- a/Pods/OCHamcrest/Source/Library/Object/HCIsEqual.m
+++ b/Pods/OCHamcrest/Source/Library/Object/HCIsEqual.m
@@ -1,18 +1,12 @@
-//
-// OCHamcrest - HCIsEqual.m
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
#import "HCIsEqual.h"
@interface HCIsEqual ()
-@property (nonatomic, readonly) id object;
+@property (readonly, nonatomic, strong) id object;
@end
diff --git a/Pods/OCHamcrest/Source/Library/Object/HCIsInstanceOf.h b/Pods/OCHamcrest/Source/Library/Object/HCIsInstanceOf.h
index 3038a4f..18d6c17 100644
--- a/Pods/OCHamcrest/Source/Library/Object/HCIsInstanceOf.h
+++ b/Pods/OCHamcrest/Source/Library/Object/HCIsInstanceOf.h
@@ -1,11 +1,5 @@
-//
-// OCHamcrest - HCIsInstanceOf.h
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
#import
@@ -22,18 +16,18 @@ FOUNDATION_EXPORT id HC_instanceOf(Class aClass);
/**
instanceOf(aClass) -
Matches if object is an instance of, or inherits from, a given class.
-
+
@param aClass The class to compare against as the expected class.
-
+
This matcher checks whether the evaluated object is an instance of @a aClass or an instance of
any class that inherits from @a aClass.
-
+
Example:
@li @ref instanceOf([NSString class])
-
+
(In the event of a name clash, don't \#define @c HC_SHORTHAND and use the synonym
@c HC_instanceOf instead.)
-
+
@ingroup object_matchers
*/
#ifdef HC_SHORTHAND
diff --git a/Pods/OCHamcrest/Source/Library/Object/HCIsInstanceOf.m b/Pods/OCHamcrest/Source/Library/Object/HCIsInstanceOf.m
index ec86415..0e41b68 100644
--- a/Pods/OCHamcrest/Source/Library/Object/HCIsInstanceOf.m
+++ b/Pods/OCHamcrest/Source/Library/Object/HCIsInstanceOf.m
@@ -1,11 +1,5 @@
-//
-// OCHamcrest - HCIsInstanceOf.m
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
#import "HCIsInstanceOf.h"
diff --git a/Pods/OCHamcrest/Source/Library/Object/HCIsNil.h b/Pods/OCHamcrest/Source/Library/Object/HCIsNil.h
index 60999a1..d1df215 100644
--- a/Pods/OCHamcrest/Source/Library/Object/HCIsNil.h
+++ b/Pods/OCHamcrest/Source/Library/Object/HCIsNil.h
@@ -1,11 +1,5 @@
-//
-// OCHamcrest - HCIsNil.h
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
#import
@@ -21,10 +15,10 @@ FOUNDATION_EXPORT id HC_nilValue(void);
/**
Matches if object is @c nil.
-
+
(In the event of a name clash, don't \#define @c HC_SHORTHAND and use the synonym
@c HC_nilValue instead.)
-
+
@ingroup object_matchers
*/
#ifdef HC_SHORTHAND
@@ -36,10 +30,10 @@ FOUNDATION_EXPORT id HC_notNilValue(void);
/**
Matches if object is not @c nil.
-
+
(In the event of a name clash, don't \#define @c HC_SHORTHAND and use the synonym
@c HC_notNilValue instead.)
-
+
@ingroup object_matchers
*/
#ifdef HC_SHORTHAND
diff --git a/Pods/OCHamcrest/Source/Library/Object/HCIsNil.m b/Pods/OCHamcrest/Source/Library/Object/HCIsNil.m
index 488cf70..93cde6a 100644
--- a/Pods/OCHamcrest/Source/Library/Object/HCIsNil.m
+++ b/Pods/OCHamcrest/Source/Library/Object/HCIsNil.m
@@ -1,11 +1,5 @@
-//
-// OCHamcrest - HCIsNil.m
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
#import "HCIsNil.h"
diff --git a/Pods/OCHamcrest/Source/Library/Object/HCIsSame.h b/Pods/OCHamcrest/Source/Library/Object/HCIsSame.h
index 95d98bb..eda7264 100644
--- a/Pods/OCHamcrest/Source/Library/Object/HCIsSame.h
+++ b/Pods/OCHamcrest/Source/Library/Object/HCIsSame.h
@@ -1,11 +1,5 @@
-//
-// OCHamcrest - HCIsSame.h
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
#import
@@ -23,15 +17,15 @@ FOUNDATION_EXPORT id HC_sameInstance(id object);
/**
sameInstance(anObject) -
Matches if evaluated object is the same instance as a given object.
-
+
@param anObject The object to compare against as the expected value.
-
+
This matcher compares the address of the evaluated object to determine if it is the same object
as @a anObject.
-
+
(In the event of a name clash, don't \#define @c HC_SHORTHAND and use the synonym
@c HC_sameInstance instead.)
-
+
@ingroup object_matchers
*/
#ifdef HC_SHORTHAND
diff --git a/Pods/OCHamcrest/Source/Library/Object/HCIsSame.m b/Pods/OCHamcrest/Source/Library/Object/HCIsSame.m
index 7e790c8..f37d645 100644
--- a/Pods/OCHamcrest/Source/Library/Object/HCIsSame.m
+++ b/Pods/OCHamcrest/Source/Library/Object/HCIsSame.m
@@ -1,17 +1,11 @@
-//
-// OCHamcrest - HCIsSame.m
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
#import "HCIsSame.h"
@interface HCIsSame ()
-@property (nonatomic, readonly) id object;
+@property (readonly, nonatomic, strong) id object;
@end
@implementation HCIsSame
diff --git a/Pods/OCHamcrest/Source/Library/Object/HCIsTypeOf.h b/Pods/OCHamcrest/Source/Library/Object/HCIsTypeOf.h
index e696d0c..deb9584 100644
--- a/Pods/OCHamcrest/Source/Library/Object/HCIsTypeOf.h
+++ b/Pods/OCHamcrest/Source/Library/Object/HCIsTypeOf.h
@@ -1,11 +1,5 @@
-//
-// OCHamcrest - HCIsTypeOf.h
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
#import
@@ -22,17 +16,17 @@ FOUNDATION_EXPORT id HC_isA(Class aClass);
/**
isA(aClass) -
Matches if object is an instance of a given class (but not of a subclass).
-
+
@param aClass The class to compare against as the expected class.
-
+
This matcher checks whether the evaluated object is an instance of @a aClass.
-
+
Example:
@li @ref isA([Foo class])
-
+
(In the event of a name clash, don't \#define @c HC_SHORTHAND and use the synonym
@c HC_isA instead.)
-
+
@ingroup object_matchers
*/
#ifdef HC_SHORTHAND
diff --git a/Pods/OCHamcrest/Source/Library/Object/HCIsTypeOf.m b/Pods/OCHamcrest/Source/Library/Object/HCIsTypeOf.m
index b58a7b5..e415475 100644
--- a/Pods/OCHamcrest/Source/Library/Object/HCIsTypeOf.m
+++ b/Pods/OCHamcrest/Source/Library/Object/HCIsTypeOf.m
@@ -1,11 +1,5 @@
-//
-// OCHamcrest - HCIsTypeOf.m
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
#import "HCIsTypeOf.h"
diff --git a/Pods/OCHamcrest/Source/Library/Text/HCIsEqualIgnoringCase.h b/Pods/OCHamcrest/Source/Library/Text/HCIsEqualIgnoringCase.h
index 8e2ed76..dabb82a 100644
--- a/Pods/OCHamcrest/Source/Library/Text/HCIsEqualIgnoringCase.h
+++ b/Pods/OCHamcrest/Source/Library/Text/HCIsEqualIgnoringCase.h
@@ -1,11 +1,5 @@
-//
-// OCHamcrest - HCIsEqualIgnoringCase.h
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
#import
@@ -23,22 +17,22 @@ FOUNDATION_EXPORT id HC_equalToIgnoringCase(NSString *aString);
/**
equalToIgnoringCase(string) -
Matches if object is a string equal to a given string, ignoring case differences.
-
+
@param aString The string to compare against as the expected value. This value must not be @c nil.
-
+
This matcher first checks whether the evaluated object is a string. If so, it compares it with
@a aString, ignoring differences of case.
-
+
Example:
-
+
@par
@ref equalToIgnoringCase(@"hello world")
-
+
will match "heLLo WorlD".
-
+
(In the event of a name clash, don't \#define @c HC_SHORTHAND and use the synonym
@c HC_equalToIgnoringCase instead.)
-
+
@ingroup text_matchers
*/
#ifdef HC_SHORTHAND
diff --git a/Pods/OCHamcrest/Source/Library/Text/HCIsEqualIgnoringCase.m b/Pods/OCHamcrest/Source/Library/Text/HCIsEqualIgnoringCase.m
index e8ce337..682ff9c 100644
--- a/Pods/OCHamcrest/Source/Library/Text/HCIsEqualIgnoringCase.m
+++ b/Pods/OCHamcrest/Source/Library/Text/HCIsEqualIgnoringCase.m
@@ -1,11 +1,5 @@
-//
-// OCHamcrest - HCIsEqualIgnoringCase.m
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
#import "HCIsEqualIgnoringCase.h"
@@ -13,7 +7,7 @@
@interface HCIsEqualIgnoringCase ()
-@property (nonatomic, readonly) NSString *string;
+@property (readonly, nonatomic, copy) NSString *string;
@end
@implementation HCIsEqualIgnoringCase
@@ -26,7 +20,7 @@ + (instancetype)isEqualIgnoringCase:(NSString *)string
- (instancetype)initWithString:(NSString *)string
{
HCRequireNonNilObject(string);
-
+
self = [super init];
if (self)
_string = [string copy];
@@ -37,7 +31,7 @@ - (BOOL)matches:(id)item
{
if (![item isKindOfClass:[NSString class]])
return NO;
-
+
return [self.string caseInsensitiveCompare:item] == NSOrderedSame;
}
diff --git a/Pods/OCHamcrest/Source/Library/Text/HCIsEqualIgnoringWhiteSpace.h b/Pods/OCHamcrest/Source/Library/Text/HCIsEqualIgnoringWhiteSpace.h
index 950b802..ebc8aa1 100644
--- a/Pods/OCHamcrest/Source/Library/Text/HCIsEqualIgnoringWhiteSpace.h
+++ b/Pods/OCHamcrest/Source/Library/Text/HCIsEqualIgnoringWhiteSpace.h
@@ -1,11 +1,5 @@
-//
-// OCHamcrest - HCIsEqualIgnoringWhiteSpace.h
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
#import
@@ -23,22 +17,22 @@ FOUNDATION_EXPORT id HC_equalToIgnoringWhiteSpace(NSString *aString);
/**
equalToIgnoringWhiteSpace(aString) -
Matches if object is a string equal to a given string, ignoring differences in whitespace.
-
+
@param aString The string to compare against as the expected value. This value must not be @c nil.
-
+
This matcher first checks whether the evaluated object is a string. If so, it compares it with
@a aString, ignoring differences in runs of whitespace.
-
+
Example:
-
+
@par
@ref equalToIgnoringWhiteSpace(@"hello world")
-
+
will match @verbatim "hello world" @endverbatim
-
+
(In the event of a name clash, don't \#define @c HC_SHORTHAND and use the synonym
@c HC_equalToIgnoringWhiteSpace instead.)
-
+
@ingroup text_matchers
*/
#ifdef HC_SHORTHAND
diff --git a/Pods/OCHamcrest/Source/Library/Text/HCIsEqualIgnoringWhiteSpace.m b/Pods/OCHamcrest/Source/Library/Text/HCIsEqualIgnoringWhiteSpace.m
index 1745397..8d89af5 100644
--- a/Pods/OCHamcrest/Source/Library/Text/HCIsEqualIgnoringWhiteSpace.m
+++ b/Pods/OCHamcrest/Source/Library/Text/HCIsEqualIgnoringWhiteSpace.m
@@ -1,11 +1,5 @@
-//
-// OCHamcrest - HCIsEqualIgnoringWhiteSpace.m
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
#import "HCIsEqualIgnoringWhiteSpace.h"
@@ -43,15 +37,15 @@ static void removeTrailingSpace(NSMutableString *string)
lastWasSpace = false;
}
}
-
+
removeTrailingSpace(result);
return result;
}
@interface HCIsEqualIgnoringWhiteSpace ()
-@property (nonatomic, readonly) NSString *originalString;
-@property (nonatomic, readonly) NSString *strippedString;
+@property (readonly, nonatomic, copy) NSString *originalString;
+@property (readonly, nonatomic, copy) NSString *strippedString;
@end
@implementation HCIsEqualIgnoringWhiteSpace
@@ -64,12 +58,12 @@ + (instancetype)isEqualIgnoringWhiteSpace:(NSString *)string
- (instancetype)initWithString:(NSString *)string
{
HCRequireNonNilObject(string);
-
+
self = [super init];
if (self)
{
_originalString = [string copy];
- _strippedString = stripSpace(string);
+ _strippedString = [stripSpace(string) copy];
}
return self;
}
@@ -78,7 +72,7 @@ - (BOOL)matches:(id)item
{
if (![item isKindOfClass:[NSString class]])
return NO;
-
+
return [self.strippedString isEqualToString:stripSpace(item)];
}
diff --git a/Pods/OCHamcrest/Source/Library/Text/HCStringContains.h b/Pods/OCHamcrest/Source/Library/Text/HCStringContains.h
index 5db35d6..4416da1 100644
--- a/Pods/OCHamcrest/Source/Library/Text/HCStringContains.h
+++ b/Pods/OCHamcrest/Source/Library/Text/HCStringContains.h
@@ -1,11 +1,5 @@
-//
-// OCHamcrest - HCStringContains.h
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
#import
@@ -22,22 +16,22 @@ FOUNDATION_EXPORT id HC_containsString(NSString *aSubstring);
/**
containsString(aString) -
Matches if object is a string containing a given string.
-
+
@param aString The string to search for. This value must not be @c nil.
-
+
This matcher first checks whether the evaluated object is a string. If so, it checks whether it
contains @a aString.
-
+
Example:
-
+
@par
@ref containsString(@"def")
-
+
will match "abcdefg".
-
+
(In the event of a name clash, don't \#define @c HC_SHORTHAND and use the synonym
@c HC_containsString instead.)
-
+
@ingroup text_matchers
*/
#ifdef HC_SHORTHAND
diff --git a/Pods/OCHamcrest/Source/Library/Text/HCStringContains.m b/Pods/OCHamcrest/Source/Library/Text/HCStringContains.m
index 0547dda..57b4a5c 100644
--- a/Pods/OCHamcrest/Source/Library/Text/HCStringContains.m
+++ b/Pods/OCHamcrest/Source/Library/Text/HCStringContains.m
@@ -1,11 +1,5 @@
-//
-// OCHamcrest - HCStringContains.m
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
#import "HCStringContains.h"
@@ -21,7 +15,7 @@ - (BOOL)matches:(id)item
{
if (![item respondsToSelector:@selector(rangeOfString:)])
return NO;
-
+
return [item rangeOfString:self.substring].location != NSNotFound;
}
diff --git a/Pods/OCHamcrest/Source/Library/Text/HCStringContainsInOrder.h b/Pods/OCHamcrest/Source/Library/Text/HCStringContainsInOrder.h
index 2768e7f..2d9411e 100644
--- a/Pods/OCHamcrest/Source/Library/Text/HCStringContainsInOrder.h
+++ b/Pods/OCHamcrest/Source/Library/Text/HCStringContainsInOrder.h
@@ -1,11 +1,5 @@
-//
-// OCHamcrest - HCStringContainsInOrder.h
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
#import
@@ -26,23 +20,23 @@ FOUNDATION_EXPORT id HC_stringContainsInOrder(NSString *substring, ...) NS_REQUI
/**
stringContainsInOrder(firstString, ...) -
Matches if object is a string containing a given list of substrings in relative order.
-
+
@param firstString,... A comma-separated list of strings ending with @c nil.
-
+
This matcher first checks whether the evaluated object is a string. If so, it checks whether it
contains a given list of strings, in relative order to each other. The searches are performed
starting from the beginning of the evaluated string.
-
+
Example:
-
+
@par
@ref stringContainsInOrder(@"bc", @"fg", @"jkl", nil)
-
+
will match "abcdefghijklm".
-
+
(In the event of a name clash, don't \#define @c HC_SHORTHAND and use the synonym
@c HC_stringContainsInOrder instead.)
-
+
@ingroup text_matchers
*/
#ifdef HC_SHORTHAND
diff --git a/Pods/OCHamcrest/Source/Library/Text/HCStringContainsInOrder.m b/Pods/OCHamcrest/Source/Library/Text/HCStringContainsInOrder.m
index 8a3d45c..a000058 100644
--- a/Pods/OCHamcrest/Source/Library/Text/HCStringContainsInOrder.m
+++ b/Pods/OCHamcrest/Source/Library/Text/HCStringContainsInOrder.m
@@ -1,11 +1,5 @@
-//
-// OCHamcrest - HCStringContainsInOrder.m
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
#import "HCStringContainsInOrder.h"
@@ -33,7 +27,7 @@ - (instancetype)initWithSubstrings:(NSArray *)substringList
userInfo:nil];
}
}
-
+
substrings = substringList;
}
return self;
@@ -43,7 +37,7 @@ - (BOOL)matches:(id)item
{
if (![item isKindOfClass:[NSString class]])
return NO;
-
+
NSRange searchRange = NSMakeRange(0, [item length]);
for (NSString *substring in substrings)
{
diff --git a/Pods/OCHamcrest/Source/Library/Text/HCStringEndsWith.h b/Pods/OCHamcrest/Source/Library/Text/HCStringEndsWith.h
index 6ac5712..af3dfd8 100644
--- a/Pods/OCHamcrest/Source/Library/Text/HCStringEndsWith.h
+++ b/Pods/OCHamcrest/Source/Library/Text/HCStringEndsWith.h
@@ -1,11 +1,5 @@
-//
-// OCHamcrest - HCStringEndsWith.h
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
#import
@@ -22,22 +16,22 @@ FOUNDATION_EXPORT id HC_endsWith(NSString *aSubstring);
/**
endsWith(aString) -
Matches if object is a string ending with a given string.
-
+
@param aString The string to search for. This value must not be @c nil.
-
+
This matcher first checks whether the evaluated object is a string. If so, it checks if
@a aString matches the ending characters of the evaluated object.
-
+
Example:
-
+
@par
@ref endsWith(@"bar")
-
+
will match "foobar".
-
+
(In the event of a name clash, don't \#define @c HC_SHORTHAND and use the synonym
@c HC_endsWith instead.)
-
+
@ingroup text_matchers
*/
#ifdef HC_SHORTHAND
diff --git a/Pods/OCHamcrest/Source/Library/Text/HCStringEndsWith.m b/Pods/OCHamcrest/Source/Library/Text/HCStringEndsWith.m
index 1bf3468..663b1fd 100644
--- a/Pods/OCHamcrest/Source/Library/Text/HCStringEndsWith.m
+++ b/Pods/OCHamcrest/Source/Library/Text/HCStringEndsWith.m
@@ -1,11 +1,5 @@
-//
-// OCHamcrest - HCStringEndsWith.m
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
#import "HCStringEndsWith.h"
@@ -21,7 +15,7 @@ - (BOOL)matches:(id)item
{
if (![item respondsToSelector:@selector(hasSuffix:)])
return NO;
-
+
return [item hasSuffix:self.substring];
}
diff --git a/Pods/OCHamcrest/Source/Library/Text/HCStringStartsWith.h b/Pods/OCHamcrest/Source/Library/Text/HCStringStartsWith.h
index 53c4134..1a580dd 100644
--- a/Pods/OCHamcrest/Source/Library/Text/HCStringStartsWith.h
+++ b/Pods/OCHamcrest/Source/Library/Text/HCStringStartsWith.h
@@ -1,11 +1,5 @@
-//
-// OCHamcrest - HCStringStartsWith.h
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
#import
@@ -22,22 +16,22 @@ FOUNDATION_EXPORT id HC_startsWith(NSString *aSubstring);
/**
startsWith(aString) -
Matches if object is a string starting with a given string.
-
+
@param aString The string to search for. This value must not be @c nil.
-
+
This matcher first checks whether the evaluated object is a string. If so, it checks if
@a aString matches the beginning characters of the evaluated object.
-
+
Example:
-
+
@par
@ref endsWith(@"foo")
-
+
will match "foobar".
-
+
(In the event of a name clash, don't \#define @c HC_SHORTHAND and use the synonym
@c HC_startsWith instead.)
-
+
@ingroup text_matchers
*/
#ifdef HC_SHORTHAND
diff --git a/Pods/OCHamcrest/Source/Library/Text/HCStringStartsWith.m b/Pods/OCHamcrest/Source/Library/Text/HCStringStartsWith.m
index bf30f3f..4228e1f 100644
--- a/Pods/OCHamcrest/Source/Library/Text/HCStringStartsWith.m
+++ b/Pods/OCHamcrest/Source/Library/Text/HCStringStartsWith.m
@@ -1,11 +1,5 @@
-//
-// OCHamcrest - HCStringStartsWith.m
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
#import "HCStringStartsWith.h"
@@ -21,7 +15,7 @@ - (BOOL)matches:(id)item
{
if (![item respondsToSelector:@selector(hasPrefix:)])
return NO;
-
+
return [item hasPrefix:self.substring];
}
diff --git a/Pods/OCHamcrest/Source/Library/Text/HCSubstringMatcher.h b/Pods/OCHamcrest/Source/Library/Text/HCSubstringMatcher.h
index e3dcab2..a7613ec 100644
--- a/Pods/OCHamcrest/Source/Library/Text/HCSubstringMatcher.h
+++ b/Pods/OCHamcrest/Source/Library/Text/HCSubstringMatcher.h
@@ -1,18 +1,12 @@
-//
-// OCHamcrest - HCSubstringMatcher.h
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
#import
@interface HCSubstringMatcher : HCBaseMatcher
-@property (nonatomic, readonly) NSString *substring;
+@property (readonly, nonatomic, copy) NSString *substring;
- (instancetype)initWithSubstring:(NSString *)aString;
diff --git a/Pods/OCHamcrest/Source/Library/Text/HCSubstringMatcher.m b/Pods/OCHamcrest/Source/Library/Text/HCSubstringMatcher.m
index fe10115..a4c32a0 100644
--- a/Pods/OCHamcrest/Source/Library/Text/HCSubstringMatcher.m
+++ b/Pods/OCHamcrest/Source/Library/Text/HCSubstringMatcher.m
@@ -1,11 +1,5 @@
-//
-// OCHamcrest - HCSubstringMatcher.m
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
#import "HCSubstringMatcher.h"
@@ -22,7 +16,7 @@ @implementation HCSubstringMatcher
- (instancetype)initWithSubstring:(NSString *)aString
{
HCRequireNonNilObject(aString);
-
+
self = [super init];
if (self)
_substring = [aString copy];
diff --git a/Pods/OCHamcrest/Source/OCHamcrest.h b/Pods/OCHamcrest/Source/OCHamcrest.h
index 4b1e752..bc93b56 100644
--- a/Pods/OCHamcrest/Source/OCHamcrest.h
+++ b/Pods/OCHamcrest/Source/OCHamcrest.h
@@ -1,23 +1,17 @@
-//
-// OCHamcrest - OCHamcrest.h
+// OCHamcrest by Jon Reid, http://qualitycoding.org/about/
// Copyright 2014 hamcrest.org. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Docs: http://hamcrest.github.com/OCHamcrest/
-// Source: https://github.com/hamcrest/OCHamcrest
-//
/**
@defgroup library Matcher Library
-
+
Library of Matcher implementations.
*/
/**
@defgroup object_matchers Object Matchers
-
+
Matchers that inspect objects.
-
+
@ingroup library
*/
#import
@@ -28,14 +22,16 @@
#import
#import
#import
+#import
/**
@defgroup collection_matchers Collection Matchers
-
+
Matchers of collections.
-
+
@ingroup library
*/
+#import
#import
#import
#import
@@ -50,9 +46,9 @@
/**
@defgroup number_matchers Number Matchers
-
+
Matchers that perform numeric comparisons.
-
+
@ingroup library
*/
#import
@@ -60,18 +56,19 @@
/**
@defgroup primitive_number_matchers Primitive Number Matchers
-
+
Matchers for testing equality against primitive numeric types.
-
+
@ingroup number_matchers
*/
#import
+#import
/**
@defgroup text_matchers Text Matchers
-
+
Matchers that perform text comparisons.
-
+
@ingroup library
*/
#import
@@ -83,9 +80,9 @@
/**
@defgroup logical_matchers Logical Matchers
-
+
Boolean logic using other matchers.
-
+
@ingroup library
*/
#import
@@ -95,9 +92,9 @@
/**
@defgroup decorator_matchers Decorator Matchers
-
+
Matchers that decorate other matchers for better expression.
-
+
@ingroup library
*/
#import
@@ -113,17 +110,17 @@
/**
@defgroup integration_numeric Unit Tests of Primitive Numbers
-
+
Unit test integration for primitive numbers.
-
+
The @c assertThat<Type> macros convert the primitive actual value to an @c NSNumber,
passing that to the matcher for evaluation. If the matcher is not satisfied, an exception is
thrown describing the mismatch.
-
+
This family of macros is designed to integrate well with OCUnit and other unit testing
frameworks. Unmet assertions are reported as test failures. In Xcode, they can be clicked to
reveal the line of the assertion.
-
+
@ingroup integration
*/
#import
@@ -134,8 +131,8 @@
/**
@defgroup helpers Helpers
-
+
Utilities for writing Matchers.
-
+
@ingroup core
*/
diff --git a/Pods/OCMockito/LICENSE.txt b/Pods/OCMockito/LICENSE.txt
index 2b18c6c..f7a967b 100644
--- a/Pods/OCMockito/LICENSE.txt
+++ b/Pods/OCMockito/LICENSE.txt
@@ -1,7 +1,5 @@
-OCMockito:
-
+OCMockito by Jon Reid, http://qualitycoding.org/about/
Copyright 2014 Jonathan M. Reid
-All rights reserved.
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
diff --git a/Pods/OCMockito/README.md b/Pods/OCMockito/README.md
index 95c10b4..1bb3196 100644
--- a/Pods/OCMockito/README.md
+++ b/Pods/OCMockito/README.md
@@ -133,6 +133,15 @@ NSArray *mockArray = mock([NSArray class]);
// stubbing
[given([mockArray objectAtIndex:0]) willReturn:@"first"];
+[given([mockArray objectAtIndex:1]) willThrow:[NSException exceptionWithName:@"name"
+ reason:@"reason"
+ userInfo:nil]];
+
+// following prints "first"
+NSLog(@"%@", [mockArray objectAtIndex:0]);
+
+// follows throws exception
+NSLog(@"%@", [mockArray objectAtIndex:1]);
// following prints "(null)" because objectAtIndex:999 was not stubbed
NSLog(@"%@", [mockArray objectAtIndex:999]);
@@ -143,9 +152,12 @@ How do you mock a class object?
-------------------------------
```obj-c
-Class mockStringClass = mockClass([NSString class]);
+__strong Class mockStringClass = mockClass([NSString class]);
```
+(In the iOS 64-bit runtime, Class objects aren't strong by default. Either make
+it explicitly strong as shown above, or use `id` instead.)
+
How do you mock a protocol?
---------------------------
@@ -154,6 +166,12 @@ How do you mock a protocol?
id delegate = mockProtocol(@protocol(MyDelegate));
```
+Or, if you don't want it to contain any optional methods:
+
+```obj-c
+id delegate = mockProtocolWithoutOptionals(@protocol(MyDelegate));
+```
+
How do you mock an object that also implements a protocol?
----------------------------------------------------------
@@ -240,6 +258,9 @@ Use the shortcut `-withMatcher:` to specify a matcher for a single argument:
willReturn:@"foo"];
```
+These methods are also available to specify matchers for verification. Just call
+them after `verify(…)` but before the invocation you want to verify.
+
Verifying exact number of invocations / at least x / never
----------------------------------------------------------
@@ -293,6 +314,45 @@ NSComparator block = [argument value];
assertThat(@(block(@"a", @"z")), is(@(NSOrderedAscending)));
```
+
+Stubbing consecutive calls
+--------------------------
+
+```obj-c
+[[given([mockObject someMethod:@"some arg"])
+ willThrow:[NSException exceptionWithName:@"name" reason:@"reason" userInfo:nil]]
+ willReturn:@"foo"];
+
+// First call: throws exception
+[mockObject someMethod:@"some arg"];
+
+// Second call: prints "foo"
+NSLog(@"%@", [mockObject someMethod:@"some arg"]);
+
+// Any consecutive call: prints "foo" as well. (Last stubbing wins.)
+NSLog(@"%@", [mockObject someMethod:@"some arg"]);
+```
+
+
+Stubbing with blocks
+--------------------
+
+We recommend using simple stubbing with `willReturn:` or `willThrow:` only. But
+`willDo:` using a block can sometimes be helpful. The block can call
+`mkt_arguments` (from NSInvocation+OCMockito.h) on the invocation to get the
+arguments. Whatever the block returns will be used as the stubbed return value.
+
+```obj-c
+[[given([mockObject someMethod:anything()]) willDo:^id (NSInvocation *invocation){
+ NSArray *args = [invocation mkt_arguments];
+ return @([args[0] intValue] * 2);
+}];
+
+// Following prints 4
+NSLog(@"%@", [mockObject someMethod:@2]);
+```
+
+
Fixing retain cycles
--------------------
diff --git a/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTArgumentGetter.h b/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTArgumentGetter.h
index bb659cd..eb2af19 100644
--- a/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTArgumentGetter.h
+++ b/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTArgumentGetter.h
@@ -1,3 +1,6 @@
+// OCMockito by Jon Reid, http://qualitycoding.org/about/
+// Copyright 2015 Jonathan M. Reid. See LICENSE.txt
+
#import
diff --git a/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTArgumentGetter.m b/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTArgumentGetter.m
index 1483e51..a586f54 100644
--- a/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTArgumentGetter.m
+++ b/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTArgumentGetter.m
@@ -1,3 +1,6 @@
+// OCMockito by Jon Reid, http://qualitycoding.org/about/
+// Copyright 2015 Jonathan M. Reid. See LICENSE.txt
+
#import "MKTArgumentGetter.h"
@interface MKTArgumentGetter (SubclassResponsibility)
@@ -5,8 +8,8 @@ - (id)getArgumentAtIndex:(NSInteger)idx ofType:(char const *)type onInvocation:(
@end
@interface MKTArgumentGetter ()
-@property (nonatomic, readonly) char const *handlerType;
-@property (nonatomic, readonly) MKTArgumentGetter *successor;
+@property (readonly, nonatomic, assign) char const *handlerType;
+@property (readonly, nonatomic, strong) MKTArgumentGetter *successor;
@end
diff --git a/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTArgumentGetterChain.h b/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTArgumentGetterChain.h
index e2f01ed..cb42ad4 100644
--- a/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTArgumentGetterChain.h
+++ b/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTArgumentGetterChain.h
@@ -1,10 +1,5 @@
-//
-// OCMockito - MKTArgumentGetterChain.h
-// Copyright 2014 Jonathan M. Reid. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Source: https://github.com/jonreid/OCMockito
-//
+// OCMockito by Jon Reid, http://qualitycoding.org/about/
+// Copyright 2015 Jonathan M. Reid. See LICENSE.txt
#import
diff --git a/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTArgumentGetterChain.m b/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTArgumentGetterChain.m
index 24dc7cb..3a8bcb2 100644
--- a/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTArgumentGetterChain.m
+++ b/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTArgumentGetterChain.m
@@ -1,10 +1,5 @@
-//
-// OCMockito - MKTArgumentGetterChain.m
-// Copyright 2014 Jonathan M. Reid. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Source: https://github.com/jonreid/OCMockito
-//
+// OCMockito by Jon Reid, http://qualitycoding.org/about/
+// Copyright 2015 Jonathan M. Reid. See LICENSE.txt
#import "MKTArgumentGetterChain.h"
diff --git a/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTBlockArgumentGetter.h b/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTBlockArgumentGetter.h
index 1ddf6e2..587661f 100644
--- a/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTBlockArgumentGetter.h
+++ b/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTBlockArgumentGetter.h
@@ -1,10 +1,5 @@
-//
-// OCMockito - MKTBlockArgumentGetter.h
-// Copyright 2014 Jonathan M. Reid. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Source: https://github.com/jonreid/OCMockito
-//
+// OCMockito by Jon Reid, http://qualitycoding.org/about/
+// Copyright 2015 Jonathan M. Reid. See LICENSE.txt
#import "MKTArgumentGetter.h"
diff --git a/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTBlockArgumentGetter.m b/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTBlockArgumentGetter.m
index b55113f..e7b7d57 100644
--- a/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTBlockArgumentGetter.m
+++ b/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTBlockArgumentGetter.m
@@ -1,10 +1,5 @@
-//
-// OCMockito - MKTBlockArgumentGetter.m
-// Copyright 2014 Jonathan M. Reid. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Source: https://github.com/jonreid/OCMockito
-//
+// OCMockito by Jon Reid, http://qualitycoding.org/about/
+// Copyright 2015 Jonathan M. Reid. See LICENSE.txt
#import "MKTBlockArgumentGetter.h"
diff --git a/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTBoolArgumentGetter.h b/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTBoolArgumentGetter.h
index b86ad48..6b4a21b 100644
--- a/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTBoolArgumentGetter.h
+++ b/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTBoolArgumentGetter.h
@@ -1,10 +1,5 @@
-//
-// OCMockito - MKTBoolArgumentGetter.h
-// Copyright 2014 Jonathan M. Reid. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Source: https://github.com/jonreid/OCMockito
-//
+// OCMockito by Jon Reid, http://qualitycoding.org/about/
+// Copyright 2015 Jonathan M. Reid. See LICENSE.txt
#import "MKTArgumentGetter.h"
diff --git a/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTBoolArgumentGetter.m b/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTBoolArgumentGetter.m
index 4d44a89..5d74b09 100644
--- a/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTBoolArgumentGetter.m
+++ b/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTBoolArgumentGetter.m
@@ -1,10 +1,5 @@
-//
-// OCMockito - MKTBoolArgumentGetter.m
-// Copyright 2014 Jonathan M. Reid. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Source: https://github.com/jonreid/OCMockito
-//
+// OCMockito by Jon Reid, http://qualitycoding.org/about/
+// Copyright 2015 Jonathan M. Reid. See LICENSE.txt
#import "MKTBoolArgumentGetter.h"
diff --git a/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTCharArgumentGetter.h b/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTCharArgumentGetter.h
index ec77010..a0df0cd 100644
--- a/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTCharArgumentGetter.h
+++ b/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTCharArgumentGetter.h
@@ -1,10 +1,5 @@
-//
-// OCMockito - MKTCharArgumentGetter.h
-// Copyright 2014 Jonathan M. Reid. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Source: https://github.com/jonreid/OCMockito
-//
+// OCMockito by Jon Reid, http://qualitycoding.org/about/
+// Copyright 2015 Jonathan M. Reid. See LICENSE.txt
#import "MKTArgumentGetter.h"
diff --git a/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTCharArgumentGetter.m b/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTCharArgumentGetter.m
index 47e878b..e85018b 100644
--- a/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTCharArgumentGetter.m
+++ b/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTCharArgumentGetter.m
@@ -1,10 +1,5 @@
-//
-// OCMockito - MKTCharArgumentGetter.m
-// Copyright 2014 Jonathan M. Reid. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Source: https://github.com/jonreid/OCMockito
-//
+// OCMockito by Jon Reid, http://qualitycoding.org/about/
+// Copyright 2015 Jonathan M. Reid. See LICENSE.txt
#import "MKTCharArgumentGetter.h"
diff --git a/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTClassArgumentGetter.h b/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTClassArgumentGetter.h
index 1eb12ad..a4de895 100644
--- a/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTClassArgumentGetter.h
+++ b/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTClassArgumentGetter.h
@@ -1,10 +1,5 @@
-//
-// OCMockito - MKTClassArgumentGetter.h
-// Copyright 2014 Jonathan M. Reid. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Source: https://github.com/jonreid/OCMockito
-//
+// OCMockito by Jon Reid, http://qualitycoding.org/about/
+// Copyright 2015 Jonathan M. Reid. See LICENSE.txt
#import "MKTArgumentGetter.h"
diff --git a/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTClassArgumentGetter.m b/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTClassArgumentGetter.m
index 1363666..26125e4 100644
--- a/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTClassArgumentGetter.m
+++ b/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTClassArgumentGetter.m
@@ -1,10 +1,5 @@
-//
-// OCMockito - MKTClassArgumentGetter.m
-// Copyright 2014 Jonathan M. Reid. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Source: https://github.com/jonreid/OCMockito
-//
+// OCMockito by Jon Reid, http://qualitycoding.org/about/
+// Copyright 2015 Jonathan M. Reid. See LICENSE.txt
#import "MKTClassArgumentGetter.h"
diff --git a/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTDoubleArgumentGetter.h b/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTDoubleArgumentGetter.h
index 2cc2ebb..b765c2b 100644
--- a/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTDoubleArgumentGetter.h
+++ b/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTDoubleArgumentGetter.h
@@ -1,10 +1,5 @@
-//
-// OCMockito - MKTDoubleArgumentGetter.h
-// Copyright 2014 Jonathan M. Reid. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Source: https://github.com/jonreid/OCMockito
-//
+// OCMockito by Jon Reid, http://qualitycoding.org/about/
+// Copyright 2015 Jonathan M. Reid. See LICENSE.txt
#import "MKTArgumentGetter.h"
diff --git a/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTDoubleArgumentGetter.m b/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTDoubleArgumentGetter.m
index bec17fe..6bc6b56 100644
--- a/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTDoubleArgumentGetter.m
+++ b/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTDoubleArgumentGetter.m
@@ -1,10 +1,5 @@
-//
-// OCMockito - MKTDoubleArgumentGetter.m
-// Copyright 2014 Jonathan M. Reid. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Source: https://github.com/jonreid/OCMockito
-//
+// OCMockito by Jon Reid, http://qualitycoding.org/about/
+// Copyright 2015 Jonathan M. Reid. See LICENSE.txt
#import "MKTDoubleArgumentGetter.h"
diff --git a/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTFloatArgumentGetter.h b/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTFloatArgumentGetter.h
index 4f567db..e0827ad 100644
--- a/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTFloatArgumentGetter.h
+++ b/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTFloatArgumentGetter.h
@@ -1,10 +1,5 @@
-//
-// OCMockito - MKTFloatArgumentGetter.h
-// Copyright 2014 Jonathan M. Reid. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Source: https://github.com/jonreid/OCMockito
-//
+// OCMockito by Jon Reid, http://qualitycoding.org/about/
+// Copyright 2015 Jonathan M. Reid. See LICENSE.txt
#import "MKTArgumentGetter.h"
diff --git a/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTFloatArgumentGetter.m b/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTFloatArgumentGetter.m
index 4fc26ad..df93f59 100644
--- a/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTFloatArgumentGetter.m
+++ b/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTFloatArgumentGetter.m
@@ -1,10 +1,5 @@
-//
-// OCMockito - MKTFloatArgumentGetter.m
-// Copyright 2014 Jonathan M. Reid. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Source: https://github.com/jonreid/OCMockito
-//
+// OCMockito by Jon Reid, http://qualitycoding.org/about/
+// Copyright 2015 Jonathan M. Reid. See LICENSE.txt
#import "MKTFloatArgumentGetter.h"
diff --git a/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTIntArgumentGetter.h b/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTIntArgumentGetter.h
index 818d663..4782979 100644
--- a/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTIntArgumentGetter.h
+++ b/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTIntArgumentGetter.h
@@ -1,10 +1,5 @@
-//
-// OCMockito - MKTIntArgumentGetter.h
-// Copyright 2014 Jonathan M. Reid. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Source: https://github.com/jonreid/OCMockito
-//
+// OCMockito by Jon Reid, http://qualitycoding.org/about/
+// Copyright 2015 Jonathan M. Reid. See LICENSE.txt
#import "MKTArgumentGetter.h"
diff --git a/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTIntArgumentGetter.m b/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTIntArgumentGetter.m
index d9a863a..10914c6 100644
--- a/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTIntArgumentGetter.m
+++ b/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTIntArgumentGetter.m
@@ -1,10 +1,5 @@
-//
-// OCMockito - MKTIntArgumentGetter.m
-// Copyright 2014 Jonathan M. Reid. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Source: https://github.com/jonreid/OCMockito
-//
+// OCMockito by Jon Reid, http://qualitycoding.org/about/
+// Copyright 2015 Jonathan M. Reid. See LICENSE.txt
#import "MKTIntArgumentGetter.h"
diff --git a/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTLongArgumentGetter.h b/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTLongArgumentGetter.h
index 4860b0f..376ded0 100644
--- a/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTLongArgumentGetter.h
+++ b/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTLongArgumentGetter.h
@@ -1,10 +1,5 @@
-//
-// OCMockito - MKTLongArgumentGetter.h
-// Copyright 2014 Jonathan M. Reid. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Source: https://github.com/jonreid/OCMockito
-//
+// OCMockito by Jon Reid, http://qualitycoding.org/about/
+// Copyright 2015 Jonathan M. Reid. See LICENSE.txt
#import "MKTArgumentGetter.h"
diff --git a/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTLongArgumentGetter.m b/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTLongArgumentGetter.m
index 24c0d99..03e5452 100644
--- a/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTLongArgumentGetter.m
+++ b/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTLongArgumentGetter.m
@@ -1,10 +1,5 @@
-//
-// OCMockito - MKTLongArgumentGetter.m
-// Copyright 2014 Jonathan M. Reid. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Source: https://github.com/jonreid/OCMockito
-//
+// OCMockito by Jon Reid, http://qualitycoding.org/about/
+// Copyright 2015 Jonathan M. Reid. See LICENSE.txt
#import "MKTLongArgumentGetter.h"
diff --git a/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTLongLongArgumentGetter.h b/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTLongLongArgumentGetter.h
index 2e4197a..4aae885 100644
--- a/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTLongLongArgumentGetter.h
+++ b/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTLongLongArgumentGetter.h
@@ -1,10 +1,5 @@
-//
-// OCMockito - MKTLongLongArgumentGetter.h
-// Copyright 2014 Jonathan M. Reid. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Source: https://github.com/jonreid/OCMockito
-//
+// OCMockito by Jon Reid, http://qualitycoding.org/about/
+// Copyright 2015 Jonathan M. Reid. See LICENSE.txt
#import "MKTArgumentGetter.h"
diff --git a/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTLongLongArgumentGetter.m b/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTLongLongArgumentGetter.m
index 8587608..b5ff534 100644
--- a/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTLongLongArgumentGetter.m
+++ b/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTLongLongArgumentGetter.m
@@ -1,10 +1,5 @@
-//
-// OCMockito - MKTLongLongArgumentGetter.m
-// Copyright 2014 Jonathan M. Reid. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Source: https://github.com/jonreid/OCMockito
-//
+// OCMockito by Jon Reid, http://qualitycoding.org/about/
+// Copyright 2015 Jonathan M. Reid. See LICENSE.txt
#import "MKTLongLongArgumentGetter.h"
diff --git a/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTObjectArgumentGetter.h b/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTObjectArgumentGetter.h
index 9244726..f380c87 100644
--- a/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTObjectArgumentGetter.h
+++ b/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTObjectArgumentGetter.h
@@ -1,10 +1,5 @@
-//
-// OCMockito - MKTObjectArgumentGetter.h
-// Copyright 2014 Jonathan M. Reid. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Source: https://github.com/jonreid/OCMockito
-//
+// OCMockito by Jon Reid, http://qualitycoding.org/about/
+// Copyright 2015 Jonathan M. Reid. See LICENSE.txt
#import "MKTArgumentGetter.h"
diff --git a/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTObjectArgumentGetter.m b/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTObjectArgumentGetter.m
index 2f5a3fc..ecb2359 100644
--- a/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTObjectArgumentGetter.m
+++ b/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTObjectArgumentGetter.m
@@ -1,10 +1,5 @@
-//
-// OCMockito - MKTObjectArgumentGetter.m
-// Copyright 2014 Jonathan M. Reid. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Source: https://github.com/jonreid/OCMockito
-//
+// OCMockito by Jon Reid, http://qualitycoding.org/about/
+// Copyright 2015 Jonathan M. Reid. See LICENSE.txt
#import "MKTObjectArgumentGetter.h"
diff --git a/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTPointerArgumentGetter.h b/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTPointerArgumentGetter.h
index 50d6434..e5e5114 100644
--- a/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTPointerArgumentGetter.h
+++ b/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTPointerArgumentGetter.h
@@ -1,10 +1,5 @@
-//
-// OCMockito - MKTPointerArgumentGetter.h
-// Copyright 2014 Jonathan M. Reid. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Source: https://github.com/jonreid/OCMockito
-//
+// OCMockito by Jon Reid, http://qualitycoding.org/about/
+// Copyright 2015 Jonathan M. Reid. See LICENSE.txt
#import "MKTArgumentGetter.h"
diff --git a/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTPointerArgumentGetter.m b/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTPointerArgumentGetter.m
index 6da6944..d247f9d 100644
--- a/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTPointerArgumentGetter.m
+++ b/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTPointerArgumentGetter.m
@@ -1,10 +1,5 @@
-//
-// OCMockito - MKTPointerArgumentGetter.m
-// Copyright 2014 Jonathan M. Reid. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Source: https://github.com/jonreid/OCMockito
-//
+// OCMockito by Jon Reid, http://qualitycoding.org/about/
+// Copyright 2015 Jonathan M. Reid. See LICENSE.txt
#import "MKTPointerArgumentGetter.h"
diff --git a/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTSelectorArgumentGetter.h b/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTSelectorArgumentGetter.h
index a75085d..d735173 100644
--- a/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTSelectorArgumentGetter.h
+++ b/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTSelectorArgumentGetter.h
@@ -1,10 +1,5 @@
-//
-// OCMockito - MKTSelectorArgumentGetter.h
-// Copyright 2014 Jonathan M. Reid. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Source: https://github.com/jonreid/OCMockito
-//
+// OCMockito by Jon Reid, http://qualitycoding.org/about/
+// Copyright 2015 Jonathan M. Reid. See LICENSE.txt
#import "MKTArgumentGetter.h"
diff --git a/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTSelectorArgumentGetter.m b/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTSelectorArgumentGetter.m
index 477d069..2e09b67 100644
--- a/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTSelectorArgumentGetter.m
+++ b/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTSelectorArgumentGetter.m
@@ -1,10 +1,5 @@
-//
-// OCMockito - MKTSelectorArgumentGetter.m
-// Copyright 2014 Jonathan M. Reid. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Source: https://github.com/jonreid/OCMockito
-//
+// OCMockito by Jon Reid, http://qualitycoding.org/about/
+// Copyright 2015 Jonathan M. Reid. See LICENSE.txt
#import "MKTSelectorArgumentGetter.h"
diff --git a/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTShortArgumentGetter.h b/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTShortArgumentGetter.h
index 85a30eb..abb2d35 100644
--- a/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTShortArgumentGetter.h
+++ b/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTShortArgumentGetter.h
@@ -1,10 +1,5 @@
-//
-// OCMockito - MKTShortArgumentGetter.h
-// Copyright 2014 Jonathan M. Reid. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Source: https://github.com/jonreid/OCMockito
-//
+// OCMockito by Jon Reid, http://qualitycoding.org/about/
+// Copyright 2015 Jonathan M. Reid. See LICENSE.txt
#import "MKTArgumentGetter.h"
diff --git a/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTShortArgumentGetter.m b/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTShortArgumentGetter.m
index f7af4b1..8612410 100644
--- a/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTShortArgumentGetter.m
+++ b/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTShortArgumentGetter.m
@@ -1,10 +1,5 @@
-//
-// OCMockito - MKTShortArgumentGetter.m
-// Copyright 2014 Jonathan M. Reid. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Source: https://github.com/jonreid/OCMockito
-//
+// OCMockito by Jon Reid, http://qualitycoding.org/about/
+// Copyright 2015 Jonathan M. Reid. See LICENSE.txt
#import "MKTShortArgumentGetter.h"
diff --git a/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTStructArgumentGetter.h b/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTStructArgumentGetter.h
index e21e2c4..e998d52 100644
--- a/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTStructArgumentGetter.h
+++ b/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTStructArgumentGetter.h
@@ -1,10 +1,5 @@
-//
-// OCMockito - MKTStructArgumentGetter.h
-// Copyright 2014 Jonathan M. Reid. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Source: https://github.com/jonreid/OCMockito
-//
+// OCMockito by Jon Reid, http://qualitycoding.org/about/
+// Copyright 2015 Jonathan M. Reid. See LICENSE.txt
#import "MKTArgumentGetter.h"
diff --git a/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTStructArgumentGetter.m b/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTStructArgumentGetter.m
index 2c668e5..ca46e78 100644
--- a/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTStructArgumentGetter.m
+++ b/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTStructArgumentGetter.m
@@ -1,10 +1,5 @@
-//
-// OCMockito - MKTStructArgumentGetter.m
-// Copyright 2014 Jonathan M. Reid. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Source: https://github.com/jonreid/OCMockito
-//
+// OCMockito by Jon Reid, http://qualitycoding.org/about/
+// Copyright 2015 Jonathan M. Reid. See LICENSE.txt
#import "MKTStructArgumentGetter.h"
diff --git a/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTUnsignedCharArgumentGetter.h b/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTUnsignedCharArgumentGetter.h
index 9fe29e1..cea1f4c 100644
--- a/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTUnsignedCharArgumentGetter.h
+++ b/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTUnsignedCharArgumentGetter.h
@@ -1,10 +1,5 @@
-//
-// OCMockito - MKTUnsignedCharArgumentGetter.h
-// Copyright 2014 Jonathan M. Reid. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Source: https://github.com/jonreid/OCMockito
-//
+// OCMockito by Jon Reid, http://qualitycoding.org/about/
+// Copyright 2015 Jonathan M. Reid. See LICENSE.txt
#import "MKTArgumentGetter.h"
diff --git a/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTUnsignedCharArgumentGetter.m b/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTUnsignedCharArgumentGetter.m
index 06a7543..0542ff2 100644
--- a/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTUnsignedCharArgumentGetter.m
+++ b/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTUnsignedCharArgumentGetter.m
@@ -1,10 +1,5 @@
-//
-// OCMockito - MKTUnsignedCharArgumentGetter.m
-// Copyright 2014 Jonathan M. Reid. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Source: https://github.com/jonreid/OCMockito
-//
+// OCMockito by Jon Reid, http://qualitycoding.org/about/
+// Copyright 2015 Jonathan M. Reid. See LICENSE.txt
#import "MKTUnsignedCharArgumentGetter.h"
diff --git a/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTUnsignedIntArgumentGetter.h b/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTUnsignedIntArgumentGetter.h
index b85a3ed..1987b39 100644
--- a/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTUnsignedIntArgumentGetter.h
+++ b/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTUnsignedIntArgumentGetter.h
@@ -1,10 +1,5 @@
-//
-// OCMockito - MKTUnsignedIntArgumentGetter.h
-// Copyright 2014 Jonathan M. Reid. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Source: https://github.com/jonreid/OCMockito
-//
+// OCMockito by Jon Reid, http://qualitycoding.org/about/
+// Copyright 2015 Jonathan M. Reid. See LICENSE.txt
#import "MKTArgumentGetter.h"
diff --git a/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTUnsignedIntArgumentGetter.m b/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTUnsignedIntArgumentGetter.m
index a47b234..eb374cc 100644
--- a/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTUnsignedIntArgumentGetter.m
+++ b/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTUnsignedIntArgumentGetter.m
@@ -1,10 +1,5 @@
-//
-// OCMockito - MKTUnsignedIntArgumentGetter.m
-// Copyright 2014 Jonathan M. Reid. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Source: https://github.com/jonreid/OCMockito
-//
+// OCMockito by Jon Reid, http://qualitycoding.org/about/
+// Copyright 2015 Jonathan M. Reid. See LICENSE.txt
#import "MKTUnsignedIntArgumentGetter.h"
diff --git a/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTUnsignedLongArgumentGetter.h b/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTUnsignedLongArgumentGetter.h
index b3ec1e2..51a06e7 100644
--- a/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTUnsignedLongArgumentGetter.h
+++ b/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTUnsignedLongArgumentGetter.h
@@ -1,10 +1,5 @@
-//
-// OCMockito - MKTUnsignedLongArgumentGetter.h
-// Copyright 2014 Jonathan M. Reid. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Source: https://github.com/jonreid/OCMockito
-//
+// OCMockito by Jon Reid, http://qualitycoding.org/about/
+// Copyright 2015 Jonathan M. Reid. See LICENSE.txt
#import "MKTArgumentGetter.h"
diff --git a/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTUnsignedLongArgumentGetter.m b/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTUnsignedLongArgumentGetter.m
index b920873..d36ef77 100644
--- a/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTUnsignedLongArgumentGetter.m
+++ b/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTUnsignedLongArgumentGetter.m
@@ -1,10 +1,5 @@
-//
-// OCMockito - MKTUnsignedLongArgumentGetter.m
-// Copyright 2014 Jonathan M. Reid. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Source: https://github.com/jonreid/OCMockito
-//
+// OCMockito by Jon Reid, http://qualitycoding.org/about/
+// Copyright 2015 Jonathan M. Reid. See LICENSE.txt
#import "MKTUnsignedLongArgumentGetter.h"
diff --git a/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTUnsignedLongLongArgumentGetter.h b/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTUnsignedLongLongArgumentGetter.h
index f3912a9..165570b 100644
--- a/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTUnsignedLongLongArgumentGetter.h
+++ b/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTUnsignedLongLongArgumentGetter.h
@@ -1,10 +1,5 @@
-//
-// OCMockito - MKTUnsignedLongLongArgumentGetter.h
-// Copyright 2014 Jonathan M. Reid. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Source: https://github.com/jonreid/OCMockito
-//
+// OCMockito by Jon Reid, http://qualitycoding.org/about/
+// Copyright 2015 Jonathan M. Reid. See LICENSE.txt
#import "MKTArgumentGetter.h"
diff --git a/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTUnsignedLongLongArgumentGetter.m b/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTUnsignedLongLongArgumentGetter.m
index 6286f76..6314584 100644
--- a/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTUnsignedLongLongArgumentGetter.m
+++ b/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTUnsignedLongLongArgumentGetter.m
@@ -1,10 +1,5 @@
-//
-// OCMockito - MKTUnsignedLongLongArgumentGetter.m
-// Copyright 2014 Jonathan M. Reid. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Source: https://github.com/jonreid/OCMockito
-//
+// OCMockito by Jon Reid, http://qualitycoding.org/about/
+// Copyright 2015 Jonathan M. Reid. See LICENSE.txt
#import "MKTUnsignedLongLongArgumentGetter.h"
diff --git a/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTUnsignedShortArgumentGetter.h b/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTUnsignedShortArgumentGetter.h
index 74b29b2..ce6b8c2 100644
--- a/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTUnsignedShortArgumentGetter.h
+++ b/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTUnsignedShortArgumentGetter.h
@@ -1,10 +1,5 @@
-//
-// OCMockito - MKTUnsignedShortArgumentGetter.h
-// Copyright 2014 Jonathan M. Reid. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Source: https://github.com/jonreid/OCMockito
-//
+// OCMockito by Jon Reid, http://qualitycoding.org/about/
+// Copyright 2015 Jonathan M. Reid. See LICENSE.txt
#import "MKTArgumentGetter.h"
diff --git a/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTUnsignedShortArgumentGetter.m b/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTUnsignedShortArgumentGetter.m
index e4956cd..ae1def1 100644
--- a/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTUnsignedShortArgumentGetter.m
+++ b/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTUnsignedShortArgumentGetter.m
@@ -1,10 +1,5 @@
-//
-// OCMockito - MKTUnsignedShortArgumentGetter.m
-// Copyright 2014 Jonathan M. Reid. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Source: https://github.com/jonreid/OCMockito
-//
+// OCMockito by Jon Reid, http://qualitycoding.org/about/
+// Copyright 2015 Jonathan M. Reid. See LICENSE.txt
#import "MKTUnsignedShortArgumentGetter.h"
diff --git a/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTBoolReturnSetter.h b/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTBoolReturnSetter.h
index c5b3e5c..7283992 100644
--- a/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTBoolReturnSetter.h
+++ b/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTBoolReturnSetter.h
@@ -1,10 +1,5 @@
-//
-// OCMockito - MKTBoolReturnSetter.h
-// Copyright 2014 Jonathan M. Reid. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Source: https://github.com/jonreid/OCMockito
-//
+// OCMockito by Jon Reid, http://qualitycoding.org/about/
+// Copyright 2015 Jonathan M. Reid. See LICENSE.txt
#import "MKTReturnValueSetter.h"
diff --git a/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTBoolReturnSetter.m b/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTBoolReturnSetter.m
index 29c76a9..1b61f92 100644
--- a/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTBoolReturnSetter.m
+++ b/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTBoolReturnSetter.m
@@ -1,10 +1,5 @@
-//
-// OCMockito - MKTBoolReturnSetter.m
-// Copyright 2014 Jonathan M. Reid. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Source: https://github.com/jonreid/OCMockito
-//
+// OCMockito by Jon Reid, http://qualitycoding.org/about/
+// Copyright 2015 Jonathan M. Reid. See LICENSE.txt
#import "MKTBoolReturnSetter.h"
diff --git a/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTCharReturnSetter.h b/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTCharReturnSetter.h
index 821a2dc..204daac 100644
--- a/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTCharReturnSetter.h
+++ b/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTCharReturnSetter.h
@@ -1,10 +1,5 @@
-//
-// OCMockito - MKTCharReturnSetter.h
-// Copyright 2014 Jonathan M. Reid. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Source: https://github.com/jonreid/OCMockito
-//
+// OCMockito by Jon Reid, http://qualitycoding.org/about/
+// Copyright 2015 Jonathan M. Reid. See LICENSE.txt
#import "MKTReturnValueSetter.h"
diff --git a/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTCharReturnSetter.m b/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTCharReturnSetter.m
index 304f459..804fd05 100644
--- a/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTCharReturnSetter.m
+++ b/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTCharReturnSetter.m
@@ -1,10 +1,5 @@
-//
-// OCMockito - MKTCharReturnSetter.m
-// Copyright 2014 Jonathan M. Reid. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Source: https://github.com/jonreid/OCMockito
-//
+// OCMockito by Jon Reid, http://qualitycoding.org/about/
+// Copyright 2015 Jonathan M. Reid. See LICENSE.txt
#import "MKTCharReturnSetter.h"
diff --git a/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTClassReturnSetter.h b/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTClassReturnSetter.h
index 34d5e2c..dd44e13 100644
--- a/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTClassReturnSetter.h
+++ b/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTClassReturnSetter.h
@@ -1,10 +1,5 @@
-//
-// OCMockito - MKTClassReturnSetter.h
-// Copyright 2014 Jonathan M. Reid. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Source: https://github.com/jonreid/OCMockito
-//
+// OCMockito by Jon Reid, http://qualitycoding.org/about/
+// Copyright 2015 Jonathan M. Reid. See LICENSE.txt
#import "MKTReturnValueSetter.h"
diff --git a/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTClassReturnSetter.m b/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTClassReturnSetter.m
index 5b2c36f..2e101e8 100644
--- a/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTClassReturnSetter.m
+++ b/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTClassReturnSetter.m
@@ -1,10 +1,5 @@
-//
-// OCMockito - MKTClassReturnSetter.m
-// Copyright 2014 Jonathan M. Reid. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Source: https://github.com/jonreid/OCMockito
-//
+// OCMockito by Jon Reid, http://qualitycoding.org/about/
+// Copyright 2015 Jonathan M. Reid. See LICENSE.txt
#import "MKTClassReturnSetter.h"
diff --git a/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTDoubleReturnSetter.h b/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTDoubleReturnSetter.h
index 5fc46cf..726ca4b 100644
--- a/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTDoubleReturnSetter.h
+++ b/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTDoubleReturnSetter.h
@@ -1,10 +1,5 @@
-//
-// OCMockito - MKTDoubleReturnSetter.h
-// Copyright 2014 Jonathan M. Reid. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Source: https://github.com/jonreid/OCMockito
-//
+// OCMockito by Jon Reid, http://qualitycoding.org/about/
+// Copyright 2015 Jonathan M. Reid. See LICENSE.txt
#import "MKTReturnValueSetter.h"
diff --git a/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTDoubleReturnSetter.m b/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTDoubleReturnSetter.m
index aeb694f..af912a3 100644
--- a/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTDoubleReturnSetter.m
+++ b/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTDoubleReturnSetter.m
@@ -1,10 +1,5 @@
-//
-// OCMockito - MKTDoubleReturnSetter.m
-// Copyright 2014 Jonathan M. Reid. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Source: https://github.com/jonreid/OCMockito
-//
+// OCMockito by Jon Reid, http://qualitycoding.org/about/
+// Copyright 2015 Jonathan M. Reid. See LICENSE.txt
#import "MKTDoubleReturnSetter.h"
diff --git a/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTFloatReturnSetter.h b/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTFloatReturnSetter.h
index 31e3487..a12b885 100644
--- a/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTFloatReturnSetter.h
+++ b/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTFloatReturnSetter.h
@@ -1,10 +1,5 @@
-//
-// OCMockito - MKTFloatReturnSetter.h
-// Copyright 2014 Jonathan M. Reid. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Source: https://github.com/jonreid/OCMockito
-//
+// OCMockito by Jon Reid, http://qualitycoding.org/about/
+// Copyright 2015 Jonathan M. Reid. See LICENSE.txt
#import "MKTReturnValueSetter.h"
diff --git a/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTFloatReturnSetter.m b/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTFloatReturnSetter.m
index cb1b263..1591532 100644
--- a/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTFloatReturnSetter.m
+++ b/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTFloatReturnSetter.m
@@ -1,10 +1,5 @@
-//
-// OCMockito - MKTFloatReturnSetter.m
-// Copyright 2014 Jonathan M. Reid. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Source: https://github.com/jonreid/OCMockito
-//
+// OCMockito by Jon Reid, http://qualitycoding.org/about/
+// Copyright 2015 Jonathan M. Reid. See LICENSE.txt
#import "MKTFloatReturnSetter.h"
diff --git a/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTIntReturnSetter.h b/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTIntReturnSetter.h
index 4f34e1a..623c0be 100644
--- a/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTIntReturnSetter.h
+++ b/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTIntReturnSetter.h
@@ -1,10 +1,5 @@
-//
-// OCMockito - MKTIntReturnSetter.h
-// Copyright 2014 Jonathan M. Reid. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Source: https://github.com/jonreid/OCMockito
-//
+// OCMockito by Jon Reid, http://qualitycoding.org/about/
+// Copyright 2015 Jonathan M. Reid. See LICENSE.txt
#import "MKTReturnValueSetter.h"
diff --git a/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTIntReturnSetter.m b/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTIntReturnSetter.m
index cf61d46..d032eee 100644
--- a/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTIntReturnSetter.m
+++ b/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTIntReturnSetter.m
@@ -1,10 +1,5 @@
-//
-// OCMockito - MKTIntReturnSetter.m
-// Copyright 2014 Jonathan M. Reid. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Source: https://github.com/jonreid/OCMockito
-//
+// OCMockito by Jon Reid, http://qualitycoding.org/about/
+// Copyright 2015 Jonathan M. Reid. See LICENSE.txt
#import "MKTIntReturnSetter.h"
diff --git a/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTLongLongReturnSetter.h b/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTLongLongReturnSetter.h
index e3d05d2..f89f286 100644
--- a/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTLongLongReturnSetter.h
+++ b/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTLongLongReturnSetter.h
@@ -1,10 +1,5 @@
-//
-// OCMockito - MKTLongLongReturnSetter.h
-// Copyright 2014 Jonathan M. Reid. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Source: https://github.com/jonreid/OCMockito
-//
+// OCMockito by Jon Reid, http://qualitycoding.org/about/
+// Copyright 2015 Jonathan M. Reid. See LICENSE.txt
#import "MKTReturnValueSetter.h"
diff --git a/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTLongLongReturnSetter.m b/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTLongLongReturnSetter.m
index c97e49c..d96c2a4 100644
--- a/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTLongLongReturnSetter.m
+++ b/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTLongLongReturnSetter.m
@@ -1,10 +1,5 @@
-//
-// OCMockito - MKTLongLongReturnSetter.m
-// Copyright 2014 Jonathan M. Reid. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Source: https://github.com/jonreid/OCMockito
-//
+// OCMockito by Jon Reid, http://qualitycoding.org/about/
+// Copyright 2015 Jonathan M. Reid. See LICENSE.txt
#import "MKTLongLongReturnSetter.h"
diff --git a/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTLongReturnSetter.h b/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTLongReturnSetter.h
index 28b70d5..2db61fd 100644
--- a/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTLongReturnSetter.h
+++ b/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTLongReturnSetter.h
@@ -1,10 +1,5 @@
-//
-// OCMockito - MKTLongReturnSetter.h
-// Copyright 2014 Jonathan M. Reid. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Source: https://github.com/jonreid/OCMockito
-//
+// OCMockito by Jon Reid, http://qualitycoding.org/about/
+// Copyright 2015 Jonathan M. Reid. See LICENSE.txt
#import "MKTReturnValueSetter.h"
diff --git a/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTLongReturnSetter.m b/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTLongReturnSetter.m
index df3548c..4f8a7d1 100644
--- a/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTLongReturnSetter.m
+++ b/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTLongReturnSetter.m
@@ -1,10 +1,5 @@
-//
-// OCMockito - MKTLongReturnSetter.m
-// Copyright 2014 Jonathan M. Reid. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Source: https://github.com/jonreid/OCMockito
-//
+// OCMockito by Jon Reid, http://qualitycoding.org/about/
+// Copyright 2015 Jonathan M. Reid. See LICENSE.txt
#import "MKTLongReturnSetter.h"
diff --git a/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTObjectReturnSetter.h b/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTObjectReturnSetter.h
index 81c775d..5d7b244 100644
--- a/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTObjectReturnSetter.h
+++ b/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTObjectReturnSetter.h
@@ -1,10 +1,5 @@
-//
-// OCMockito - MKTObjectReturnSetter.h
-// Copyright 2014 Jonathan M. Reid. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Source: https://github.com/jonreid/OCMockito
-//
+// OCMockito by Jon Reid, http://qualitycoding.org/about/
+// Copyright 2015 Jonathan M. Reid. See LICENSE.txt
#import "MKTReturnValueSetter.h"
diff --git a/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTObjectReturnSetter.m b/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTObjectReturnSetter.m
index a600cf9..b7404f4 100644
--- a/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTObjectReturnSetter.m
+++ b/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTObjectReturnSetter.m
@@ -1,10 +1,5 @@
-//
-// OCMockito - MKTObjectReturnSetter.m
-// Copyright 2014 Jonathan M. Reid. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Source: https://github.com/jonreid/OCMockito
-//
+// OCMockito by Jon Reid, http://qualitycoding.org/about/
+// Copyright 2015 Jonathan M. Reid. See LICENSE.txt
#import "MKTObjectReturnSetter.h"
diff --git a/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTReturnValueSetter.h b/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTReturnValueSetter.h
index d812dbc..30ff89e 100644
--- a/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTReturnValueSetter.h
+++ b/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTReturnValueSetter.h
@@ -1,10 +1,5 @@
-//
-// OCMockito - MKTReturnValueSetter.h
-// Copyright 2014 Jonathan M. Reid. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Source: https://github.com/jonreid/OCMockito
-//
+// OCMockito by Jon Reid, http://qualitycoding.org/about/
+// Copyright 2015 Jonathan M. Reid. See LICENSE.txt
#import
diff --git a/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTReturnValueSetter.m b/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTReturnValueSetter.m
index 24b8c71..c94ac60 100644
--- a/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTReturnValueSetter.m
+++ b/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTReturnValueSetter.m
@@ -1,10 +1,5 @@
-//
-// OCMockito - MKTReturnValueSetter.m
-// Copyright 2014 Jonathan M. Reid. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Source: https://github.com/jonreid/OCMockito
-//
+// OCMockito by Jon Reid, http://qualitycoding.org/about/
+// Copyright 2015 Jonathan M. Reid. See LICENSE.txt
#import "MKTReturnValueSetter.h"
@@ -14,8 +9,8 @@ - (void)setReturnValue:(id)returnValue onInvocation:(NSInvocation *)invocation;
@end
@interface MKTReturnValueSetter ()
-@property (nonatomic, readonly) char const *handlerType;
-@property (nonatomic, readonly) MKTReturnValueSetter *successor;
+@property (readonly, nonatomic, assign) char const *handlerType;
+@property (readonly, nonatomic, strong) MKTReturnValueSetter *successor;
@end
diff --git a/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTReturnValueSetterChain.h b/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTReturnValueSetterChain.h
index 240cc63..c966610 100644
--- a/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTReturnValueSetterChain.h
+++ b/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTReturnValueSetterChain.h
@@ -1,10 +1,5 @@
-//
-// OCMockito - MKTReturnValueSetterChain.h
-// Copyright 2014 Jonathan M. Reid. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Source: https://github.com/jonreid/OCMockito
-//
+// OCMockito by Jon Reid, http://qualitycoding.org/about/
+// Copyright 2015 Jonathan M. Reid. See LICENSE.txt
#import
diff --git a/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTReturnValueSetterChain.m b/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTReturnValueSetterChain.m
index daf9b86..e10b03d 100644
--- a/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTReturnValueSetterChain.m
+++ b/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTReturnValueSetterChain.m
@@ -1,10 +1,5 @@
-//
-// OCMockito - MKTReturnValueSetterChain.m
-// Copyright 2014 Jonathan M. Reid. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Source: https://github.com/jonreid/OCMockito
-//
+// OCMockito by Jon Reid, http://qualitycoding.org/about/
+// Copyright 2015 Jonathan M. Reid. See LICENSE.txt
#import "MKTReturnValueSetterChain.h"
diff --git a/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTShortReturnSetter.h b/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTShortReturnSetter.h
index 042609d..3f4cde8 100644
--- a/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTShortReturnSetter.h
+++ b/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTShortReturnSetter.h
@@ -1,10 +1,5 @@
-//
-// OCMockito - MKTShortReturnSetter.h
-// Copyright 2014 Jonathan M. Reid. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Source: https://github.com/jonreid/OCMockito
-//
+// OCMockito by Jon Reid, http://qualitycoding.org/about/
+// Copyright 2015 Jonathan M. Reid. See LICENSE.txt
#import "MKTReturnValueSetter.h"
diff --git a/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTShortReturnSetter.m b/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTShortReturnSetter.m
index 4578d56..1cc38f2 100644
--- a/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTShortReturnSetter.m
+++ b/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTShortReturnSetter.m
@@ -1,10 +1,5 @@
-//
-// OCMockito - MKTShortReturnSetter.m
-// Copyright 2014 Jonathan M. Reid. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Source: https://github.com/jonreid/OCMockito
-//
+// OCMockito by Jon Reid, http://qualitycoding.org/about/
+// Copyright 2015 Jonathan M. Reid. See LICENSE.txt
#import "MKTShortReturnSetter.h"
diff --git a/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTStructReturnSetter.h b/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTStructReturnSetter.h
index 840c2a3..3c96979 100644
--- a/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTStructReturnSetter.h
+++ b/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTStructReturnSetter.h
@@ -1,10 +1,5 @@
-//
-// OCMockito - MKTStructReturnSetter.h
-// Copyright 2014 Jonathan M. Reid. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Source: https://github.com/jonreid/OCMockito
-//
+// OCMockito by Jon Reid, http://qualitycoding.org/about/
+// Copyright 2015 Jonathan M. Reid. See LICENSE.txt
#import "MKTReturnValueSetter.h"
diff --git a/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTStructReturnSetter.m b/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTStructReturnSetter.m
index 129f2ac..0e74d4f 100644
--- a/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTStructReturnSetter.m
+++ b/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTStructReturnSetter.m
@@ -1,10 +1,5 @@
-//
-// OCMockito - MKTStructReturnSetter.m
-// Copyright 2014 Jonathan M. Reid. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Source: https://github.com/jonreid/OCMockito
-//
+// OCMockito by Jon Reid, http://qualitycoding.org/about/
+// Copyright 2015 Jonathan M. Reid. See LICENSE.txt
#import "MKTStructReturnSetter.h"
diff --git a/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTUnsignedCharReturnSetter.h b/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTUnsignedCharReturnSetter.h
index 0b066c3..a28a442 100644
--- a/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTUnsignedCharReturnSetter.h
+++ b/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTUnsignedCharReturnSetter.h
@@ -1,10 +1,5 @@
-//
-// OCMockito - MKTUnsignedCharReturnSetter.h
-// Copyright 2014 Jonathan M. Reid. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Source: https://github.com/jonreid/OCMockito
-//
+// OCMockito by Jon Reid, http://qualitycoding.org/about/
+// Copyright 2015 Jonathan M. Reid. See LICENSE.txt
#import "MKTReturnValueSetter.h"
diff --git a/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTUnsignedCharReturnSetter.m b/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTUnsignedCharReturnSetter.m
index 2e7f1dc..87d4a41 100644
--- a/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTUnsignedCharReturnSetter.m
+++ b/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTUnsignedCharReturnSetter.m
@@ -1,10 +1,5 @@
-//
-// OCMockito - MKTUnsignedCharReturnSetter.m
-// Copyright 2014 Jonathan M. Reid. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Source: https://github.com/jonreid/OCMockito
-//
+// OCMockito by Jon Reid, http://qualitycoding.org/about/
+// Copyright 2015 Jonathan M. Reid. See LICENSE.txt
#import "MKTUnsignedCharReturnSetter.h"
diff --git a/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTUnsignedIntReturnSetter.h b/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTUnsignedIntReturnSetter.h
index 053f582..90a30fe 100644
--- a/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTUnsignedIntReturnSetter.h
+++ b/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTUnsignedIntReturnSetter.h
@@ -1,10 +1,5 @@
-//
-// OCMockito - MKTUnsignedIntReturnSetter.h
-// Copyright 2014 Jonathan M. Reid. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Source: https://github.com/jonreid/OCMockito
-//
+// OCMockito by Jon Reid, http://qualitycoding.org/about/
+// Copyright 2015 Jonathan M. Reid. See LICENSE.txt
#import "MKTReturnValueSetter.h"
diff --git a/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTUnsignedIntReturnSetter.m b/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTUnsignedIntReturnSetter.m
index 2b7e767..b336102 100644
--- a/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTUnsignedIntReturnSetter.m
+++ b/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTUnsignedIntReturnSetter.m
@@ -1,10 +1,5 @@
-//
-// OCMockito - MKTUnsignedIntReturnSetter.m
-// Copyright 2014 Jonathan M. Reid. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Source: https://github.com/jonreid/OCMockito
-//
+// OCMockito by Jon Reid, http://qualitycoding.org/about/
+// Copyright 2015 Jonathan M. Reid. See LICENSE.txt
#import "MKTUnsignedIntReturnSetter.h"
diff --git a/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTUnsignedLongLongReturnSetter.h b/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTUnsignedLongLongReturnSetter.h
index 2bae0a1..e0f5b91 100644
--- a/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTUnsignedLongLongReturnSetter.h
+++ b/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTUnsignedLongLongReturnSetter.h
@@ -1,10 +1,5 @@
-//
-// OCMockito - MKTUnsignedLongLongReturnSetter.h
-// Copyright 2014 Jonathan M. Reid. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Source: https://github.com/jonreid/OCMockito
-//
+// OCMockito by Jon Reid, http://qualitycoding.org/about/
+// Copyright 2015 Jonathan M. Reid. See LICENSE.txt
#import "MKTReturnValueSetter.h"
diff --git a/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTUnsignedLongLongReturnSetter.m b/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTUnsignedLongLongReturnSetter.m
index 1ef3a0f..34487c4 100644
--- a/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTUnsignedLongLongReturnSetter.m
+++ b/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTUnsignedLongLongReturnSetter.m
@@ -1,10 +1,5 @@
-//
-// OCMockito - MKTUnsignedLongLongReturnSetter.m
-// Copyright 2014 Jonathan M. Reid. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Source: https://github.com/jonreid/OCMockito
-//
+// OCMockito by Jon Reid, http://qualitycoding.org/about/
+// Copyright 2015 Jonathan M. Reid. See LICENSE.txt
#import "MKTUnsignedLongLongReturnSetter.h"
diff --git a/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTUnsignedLongReturnSetter.h b/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTUnsignedLongReturnSetter.h
index 630eec1..9da5698 100644
--- a/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTUnsignedLongReturnSetter.h
+++ b/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTUnsignedLongReturnSetter.h
@@ -1,10 +1,5 @@
-//
-// OCMockito - MKTUnsignedLongReturnSetter.h
-// Copyright 2014 Jonathan M. Reid. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Source: https://github.com/jonreid/OCMockito
-//
+// OCMockito by Jon Reid, http://qualitycoding.org/about/
+// Copyright 2015 Jonathan M. Reid. See LICENSE.txt
#import "MKTReturnValueSetter.h"
diff --git a/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTUnsignedLongReturnSetter.m b/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTUnsignedLongReturnSetter.m
index c5050b0..7f85cd6 100644
--- a/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTUnsignedLongReturnSetter.m
+++ b/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTUnsignedLongReturnSetter.m
@@ -1,10 +1,5 @@
-//
-// OCMockito - MKTUnsignedLongReturnSetter.m
-// Copyright 2014 Jonathan M. Reid. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Source: https://github.com/jonreid/OCMockito
-//
+// OCMockito by Jon Reid, http://qualitycoding.org/about/
+// Copyright 2015 Jonathan M. Reid. See LICENSE.txt
#import "MKTUnsignedLongReturnSetter.h"
diff --git a/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTUnsignedShortReturnSetter.h b/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTUnsignedShortReturnSetter.h
index a66b583..7fd2286 100644
--- a/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTUnsignedShortReturnSetter.h
+++ b/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTUnsignedShortReturnSetter.h
@@ -1,10 +1,5 @@
-//
-// OCMockito - MKTUnsignedShortReturnSetter.h
-// Copyright 2014 Jonathan M. Reid. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Source: https://github.com/jonreid/OCMockito
-//
+// OCMockito by Jon Reid, http://qualitycoding.org/about/
+// Copyright 2015 Jonathan M. Reid. See LICENSE.txt
#import "MKTReturnValueSetter.h"
diff --git a/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTUnsignedShortReturnSetter.m b/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTUnsignedShortReturnSetter.m
index 1fe7f34..6fa08a8 100644
--- a/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTUnsignedShortReturnSetter.m
+++ b/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTUnsignedShortReturnSetter.m
@@ -1,10 +1,5 @@
-//
-// OCMockito - MKTUnsignedShortReturnSetter.m
-// Copyright 2014 Jonathan M. Reid. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Source: https://github.com/jonreid/OCMockito
-//
+// OCMockito by Jon Reid, http://qualitycoding.org/about/
+// Copyright 2015 Jonathan M. Reid. See LICENSE.txt
#import "MKTUnsignedShortReturnSetter.h"
diff --git a/Pods/OCMockito/Source/OCMockito/MKTArgumentCaptor.h b/Pods/OCMockito/Source/OCMockito/MKTArgumentCaptor.h
index 9add256..14761a5 100644
--- a/Pods/OCMockito/Source/OCMockito/MKTArgumentCaptor.h
+++ b/Pods/OCMockito/Source/OCMockito/MKTArgumentCaptor.h
@@ -1,10 +1,5 @@
-//
-// OCMockito - MKTArgumentCaptor.h
-// Copyright 2014 Jonathan M. Reid. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Source: https://github.com/jonreid/OCMockito
-//
+// OCMockito by Jon Reid, http://qualitycoding.org/about/
+// Copyright 2015 Jonathan M. Reid. See LICENSE.txt
#import
diff --git a/Pods/OCMockito/Source/OCMockito/MKTArgumentCaptor.m b/Pods/OCMockito/Source/OCMockito/MKTArgumentCaptor.m
index 4cff256..dae9d0e 100644
--- a/Pods/OCMockito/Source/OCMockito/MKTArgumentCaptor.m
+++ b/Pods/OCMockito/Source/OCMockito/MKTArgumentCaptor.m
@@ -1,10 +1,5 @@
-//
-// OCMockito - MKTArgumentCaptor.m
-// Copyright 2014 Jonathan M. Reid. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Source: https://github.com/jonreid/OCMockito
-//
+// OCMockito by Jon Reid, http://qualitycoding.org/about/
+// Copyright 2015 Jonathan M. Reid. See LICENSE.txt
#import "MKTArgumentCaptor.h"
@@ -12,7 +7,7 @@
@interface MKTArgumentCaptor ()
-@property (nonatomic, readonly) MKTCapturingMatcher *matcher;
+@property (readonly, nonatomic, strong) MKTCapturingMatcher *matcher;
@end
@implementation MKTArgumentCaptor
diff --git a/Pods/OCMockito/Source/OCMockito/MKTAtLeastTimes.h b/Pods/OCMockito/Source/OCMockito/MKTAtLeastTimes.h
index 20bc0cf..5f347e7 100644
--- a/Pods/OCMockito/Source/OCMockito/MKTAtLeastTimes.h
+++ b/Pods/OCMockito/Source/OCMockito/MKTAtLeastTimes.h
@@ -1,10 +1,6 @@
-//
-// OCMockito - MKTAtLeastTimes.h
-// Copyright 2014 Jonathan M. Reid. See LICENSE.txt
-//
-// Created by Markus Gasser on 18.04.12.
-// Source: https://github.com/jonreid/OCMockito
-//
+// OCMockito by Jon Reid, http://qualitycoding.org/about/
+// Copyright 2015 Jonathan M. Reid. See LICENSE.txt
+// Contribution by Markus Gasser
#import
#import "MKTVerificationMode.h"
diff --git a/Pods/OCMockito/Source/OCMockito/MKTAtLeastTimes.m b/Pods/OCMockito/Source/OCMockito/MKTAtLeastTimes.m
index 52a82a6..2b42e21 100644
--- a/Pods/OCMockito/Source/OCMockito/MKTAtLeastTimes.m
+++ b/Pods/OCMockito/Source/OCMockito/MKTAtLeastTimes.m
@@ -1,10 +1,6 @@
-//
-// OCMockito - MKTAtLeastTimes.m
-// Copyright 2014 Jonathan M. Reid. See LICENSE.txt
-//
-// Created by Markus Gasser on 18.04.12.
-// Source: https://github.com/jonreid/OCMockito
-//
+// OCMockito by Jon Reid, http://qualitycoding.org/about/
+// Copyright 2015 Jonathan M. Reid. See LICENSE.txt
+// Contribution by Markus Gasser
#import "MKTAtLeastTimes.h"
@@ -12,7 +8,7 @@
@interface MKTAtLeastTimes ()
-@property (nonatomic, readonly) NSUInteger wantedCount;
+@property (readonly, nonatomic, assign) NSUInteger wantedCount;
@end
@implementation MKTAtLeastTimes
diff --git a/Pods/OCMockito/Source/OCMockito/MKTBaseMockObject.h b/Pods/OCMockito/Source/OCMockito/MKTBaseMockObject.h
index 95811c7..367009b 100644
--- a/Pods/OCMockito/Source/OCMockito/MKTBaseMockObject.h
+++ b/Pods/OCMockito/Source/OCMockito/MKTBaseMockObject.h
@@ -1,10 +1,5 @@
-//
-// OCMockito - MKTBaseMockObject.h
-// Copyright 2014 Jonathan M. Reid. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Source: https://github.com/jonreid/OCMockito
-//
+// OCMockito by Jon Reid, http://qualitycoding.org/about/
+// Copyright 2015 Jonathan M. Reid. See LICENSE.txt
#import
#import "MKTPrimitiveArgumentMatching.h"
diff --git a/Pods/OCMockito/Source/OCMockito/MKTBaseMockObject.m b/Pods/OCMockito/Source/OCMockito/MKTBaseMockObject.m
index ac0b31d..f3af8b5 100644
--- a/Pods/OCMockito/Source/OCMockito/MKTBaseMockObject.m
+++ b/Pods/OCMockito/Source/OCMockito/MKTBaseMockObject.m
@@ -1,10 +1,5 @@
-//
-// OCMockito - MKTBaseMockObject.m
-// Copyright 2014 Jonathan M. Reid. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Source: https://github.com/jonreid/OCMockito
-//
+// OCMockito by Jon Reid, http://qualitycoding.org/about/
+// Copyright 2015 Jonathan M. Reid. See LICENSE.txt
#import "MKTBaseMockObject.h"
@@ -19,7 +14,7 @@
@interface MKTBaseMockObject ()
-@property (nonatomic, readonly) MKTMockingProgress *mockingProgress;
+@property (readonly, nonatomic, strong) MKTMockingProgress *mockingProgress;
@property (nonatomic, strong) MKTInvocationContainer *invocationContainer;
@end
@@ -100,7 +95,7 @@ - (void)answerInvocation:(NSInvocation *)invocation
- (void)useExistingAnswerInStub:(MKTStubbedInvocationMatcher *)stub forInvocation:(NSInvocation *)invocation
{
- [invocation mkt_setReturnValue:stub.answer];
+ [invocation mkt_setReturnValue:[stub answerInvocation:invocation]];
}
diff --git a/Pods/OCMockito/Source/OCMockito/MKTCapturingMatcher.h b/Pods/OCMockito/Source/OCMockito/MKTCapturingMatcher.h
index fe4e91c..d080245 100644
--- a/Pods/OCMockito/Source/OCMockito/MKTCapturingMatcher.h
+++ b/Pods/OCMockito/Source/OCMockito/MKTCapturingMatcher.h
@@ -1,16 +1,7 @@
-//
-// OCMockito - MKTCapturingMatcher.h
-// Copyright 2014 Jonathan M. Reid. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Source: https://github.com/jonreid/OCMockito
-//
+// OCMockito by Jon Reid, http://qualitycoding.org/about/
+// Copyright 2015 Jonathan M. Reid. See LICENSE.txt
-#if TARGET_OS_MAC
- #import
-#else
- #import
-#endif
+#import
@interface MKTCapturingMatcher : HCIsAnything
diff --git a/Pods/OCMockito/Source/OCMockito/MKTCapturingMatcher.m b/Pods/OCMockito/Source/OCMockito/MKTCapturingMatcher.m
index 2acabaa..a0c4ab7 100644
--- a/Pods/OCMockito/Source/OCMockito/MKTCapturingMatcher.m
+++ b/Pods/OCMockito/Source/OCMockito/MKTCapturingMatcher.m
@@ -1,16 +1,11 @@
-//
-// OCMockito - MKTCapturingMatcher.m
-// Copyright 2014 Jonathan M. Reid. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Source: https://github.com/jonreid/OCMockito
-//
+// OCMockito by Jon Reid, http://qualitycoding.org/about/
+// Copyright 2015 Jonathan M. Reid. See LICENSE.txt
#import "MKTCapturingMatcher.h"
@interface MKTCapturingMatcher ()
-@property (nonatomic, readonly) NSMutableArray *arguments;
+@property (readonly, nonatomic, strong) NSMutableArray *arguments;
@end
@implementation MKTCapturingMatcher
diff --git a/Pods/OCMockito/Source/OCMockito/MKTClassObjectMock.h b/Pods/OCMockito/Source/OCMockito/MKTClassObjectMock.h
index 0ab2a2a..9768a73 100644
--- a/Pods/OCMockito/Source/OCMockito/MKTClassObjectMock.h
+++ b/Pods/OCMockito/Source/OCMockito/MKTClassObjectMock.h
@@ -1,12 +1,6 @@
-//
-// OCMockito - MKTClassObjectMock.h
-// Copyright 2014 Jonathan M. Reid. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Source: https://github.com/jonreid/OCMockito
-//
-// Created by: David Hart
-//
+// OCMockito by Jon Reid, http://qualitycoding.org/about/
+// Copyright 2015 Jonathan M. Reid. See LICENSE.txt
+// Contribution by David Hart
#import "MKTBaseMockObject.h"
diff --git a/Pods/OCMockito/Source/OCMockito/MKTClassObjectMock.m b/Pods/OCMockito/Source/OCMockito/MKTClassObjectMock.m
index f05be69..121d234 100644
--- a/Pods/OCMockito/Source/OCMockito/MKTClassObjectMock.m
+++ b/Pods/OCMockito/Source/OCMockito/MKTClassObjectMock.m
@@ -1,16 +1,12 @@
-//
-// OCMockito - MKTClassObjectMock.m
-// Copyright 2014 Jonathan M. Reid. See LICENSE.txt
-//
-// Created by: David Hart
-// Source: https://github.com/jonreid/OCMockito
-//
+// OCMockito by Jon Reid, http://qualitycoding.org/about/
+// Copyright 2015 Jonathan M. Reid. See LICENSE.txt
+// Contribution by David Hart
#import "MKTClassObjectMock.h"
@interface MKTClassObjectMock ()
-@property (nonatomic, strong, readonly) Class mockedClass;
+@property (readonly, nonatomic, strong) Class mockedClass;
@end
@implementation MKTClassObjectMock
diff --git a/Pods/OCMockito/Source/OCMockito/MKTExactTimes.h b/Pods/OCMockito/Source/OCMockito/MKTExactTimes.h
index 1dbac09..45f8a64 100644
--- a/Pods/OCMockito/Source/OCMockito/MKTExactTimes.h
+++ b/Pods/OCMockito/Source/OCMockito/MKTExactTimes.h
@@ -1,10 +1,5 @@
-//
-// OCMockito - MKTExactTimes.h
-// Copyright 2014 Jonathan M. Reid. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Source: https://github.com/jonreid/OCMockito
-//
+// OCMockito by Jon Reid, http://qualitycoding.org/about/
+// Copyright 2015 Jonathan M. Reid. See LICENSE.txt
#import
#import "MKTVerificationMode.h"
diff --git a/Pods/OCMockito/Source/OCMockito/MKTExactTimes.m b/Pods/OCMockito/Source/OCMockito/MKTExactTimes.m
index 59c5bf4..7fd2ce5 100644
--- a/Pods/OCMockito/Source/OCMockito/MKTExactTimes.m
+++ b/Pods/OCMockito/Source/OCMockito/MKTExactTimes.m
@@ -1,10 +1,5 @@
-//
-// OCMockito - MKTExactTimes.m
-// Copyright 2014 Jonathan M. Reid. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Source: https://github.com/jonreid/OCMockito
-//
+// OCMockito by Jon Reid, http://qualitycoding.org/about/
+// Copyright 2015 Jonathan M. Reid. See LICENSE.txt
#import "MKTExactTimes.h"
@@ -13,7 +8,7 @@
@interface MKTExactTimes ()
-@property (nonatomic, readonly) NSUInteger wantedCount;
+@property (readonly, nonatomic, assign) NSUInteger wantedCount;
@end
@implementation MKTExactTimes
diff --git a/Pods/OCMockito/Source/OCMockito/MKTInvocationContainer.h b/Pods/OCMockito/Source/OCMockito/MKTInvocationContainer.h
index 763e747..bdd986f 100644
--- a/Pods/OCMockito/Source/OCMockito/MKTInvocationContainer.h
+++ b/Pods/OCMockito/Source/OCMockito/MKTInvocationContainer.h
@@ -1,25 +1,21 @@
-//
-// OCMockito - MKTInvocationContainer.h
-// Copyright 2014 Jonathan M. Reid. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Source: https://github.com/jonreid/OCMockito
-//
+// OCMockito by Jon Reid, http://qualitycoding.org/about/
+// Copyright 2015 Jonathan M. Reid. See LICENSE.txt
#import
@class MKTInvocationMatcher;
@class MKTStubbedInvocationMatcher;
@protocol HCMatcher;
+@protocol MKTAnswer;
@interface MKTInvocationContainer : NSObject
-@property (nonatomic, strong, readonly) NSMutableArray *registeredInvocations;
+@property (readonly, nonatomic, strong) NSMutableArray *registeredInvocations;
- (instancetype)init;
- (void)setInvocationForPotentialStubbing:(NSInvocation *)invocation;
- (void)setMatcher:(id )matcher atIndex:(NSUInteger)argumentIndex;
-- (void)addAnswer:(id)answer;
+- (void)addAnswer:(id )answer;
- (MKTStubbedInvocationMatcher *)findAnswerFor:(NSInvocation *)invocation;
@end
diff --git a/Pods/OCMockito/Source/OCMockito/MKTInvocationContainer.m b/Pods/OCMockito/Source/OCMockito/MKTInvocationContainer.m
index 00fce5f..b1f2843 100644
--- a/Pods/OCMockito/Source/OCMockito/MKTInvocationContainer.m
+++ b/Pods/OCMockito/Source/OCMockito/MKTInvocationContainer.m
@@ -1,10 +1,5 @@
-//
-// OCMockito - MKTInvocationContainer.m
-// Copyright 2014 Jonathan M. Reid. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Source: https://github.com/jonreid/OCMockito
-//
+// OCMockito by Jon Reid, http://qualitycoding.org/about/
+// Copyright 2015 Jonathan M. Reid. See LICENSE.txt
#import "MKTInvocationContainer.h"
@@ -14,7 +9,7 @@
@interface MKTInvocationContainer ()
@property (nonatomic, strong) MKTStubbedInvocationMatcher *invocationForStubbing;
-@property (nonatomic, readonly) NSMutableArray *stubbed;
+@property (readonly, nonatomic, strong) NSMutableArray *stubbed;
@end
@implementation MKTInvocationContainer
@@ -47,11 +42,11 @@ - (void)setMatcher:(id )matcher atIndex:(NSUInteger)argumentIndex
[self.invocationForStubbing setMatcher:matcher atIndex:argumentIndex];
}
-- (void)addAnswer:(id)answer
+- (void)addAnswer:(id )answer
{
[_registeredInvocations removeLastObject];
- self.invocationForStubbing.answer = answer;
+ [self.invocationForStubbing addAnswer:answer];
[self.stubbed insertObject:self.invocationForStubbing atIndex:0];
}
diff --git a/Pods/OCMockito/Source/OCMockito/MKTInvocationMatcher.h b/Pods/OCMockito/Source/OCMockito/MKTInvocationMatcher.h
index a406757..338fd8c 100644
--- a/Pods/OCMockito/Source/OCMockito/MKTInvocationMatcher.h
+++ b/Pods/OCMockito/Source/OCMockito/MKTInvocationMatcher.h
@@ -1,10 +1,5 @@
-//
-// OCMockito - MKTInvocationMatcher.h
-// Copyright 2014 Jonathan M. Reid. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Source: https://github.com/jonreid/OCMockito
-//
+// OCMockito by Jon Reid, http://qualitycoding.org/about/
+// Copyright 2015 Jonathan M. Reid. See LICENSE.txt
#import
@@ -14,7 +9,7 @@
@interface MKTInvocationMatcher : NSObject
@property (nonatomic, strong) NSInvocation *expected;
-@property (nonatomic) NSUInteger numberOfArguments;
+@property (nonatomic, assign) NSUInteger numberOfArguments;
@property (nonatomic, strong) NSMutableArray *argumentMatchers;
- (instancetype)init;
diff --git a/Pods/OCMockito/Source/OCMockito/MKTInvocationMatcher.m b/Pods/OCMockito/Source/OCMockito/MKTInvocationMatcher.m
index ceb9bc0..b40a6db 100644
--- a/Pods/OCMockito/Source/OCMockito/MKTInvocationMatcher.m
+++ b/Pods/OCMockito/Source/OCMockito/MKTInvocationMatcher.m
@@ -1,10 +1,5 @@
-//
-// OCMockito - MKTInvocationMatcher.m
-// Copyright 2014 Jonathan M. Reid. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Source: https://github.com/jonreid/OCMockito
-//
+// OCMockito by Jon Reid, http://qualitycoding.org/about/
+// Copyright 2015 Jonathan M. Reid. See LICENSE.txt
#import "MKTInvocationMatcher.h"
diff --git a/Pods/OCMockito/Source/OCMockito/MKTMockingProgress.h b/Pods/OCMockito/Source/OCMockito/MKTMockingProgress.h
index 555c37d..0153dd8 100644
--- a/Pods/OCMockito/Source/OCMockito/MKTMockingProgress.h
+++ b/Pods/OCMockito/Source/OCMockito/MKTMockingProgress.h
@@ -1,10 +1,5 @@
-//
-// OCMockito - MKTMockingProgress.h
-// Copyright 2014 Jonathan M. Reid. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Source: https://github.com/jonreid/OCMockito
-//
+// OCMockito by Jon Reid, http://qualitycoding.org/about/
+// Copyright 2015 Jonathan M. Reid. See LICENSE.txt
#import
diff --git a/Pods/OCMockito/Source/OCMockito/MKTMockingProgress.m b/Pods/OCMockito/Source/OCMockito/MKTMockingProgress.m
index f32392e..2aee403 100644
--- a/Pods/OCMockito/Source/OCMockito/MKTMockingProgress.m
+++ b/Pods/OCMockito/Source/OCMockito/MKTMockingProgress.m
@@ -1,10 +1,5 @@
-//
-// OCMockito - MKTMockingProgress.m
-// Copyright 2014 Jonathan M. Reid. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Source: https://github.com/jonreid/OCMockito
-//
+// OCMockito by Jon Reid, http://qualitycoding.org/about/
+// Copyright 2015 Jonathan M. Reid. See LICENSE.txt
#import "MKTMockingProgress.h"
diff --git a/Pods/OCMockito/Source/OCMockito/MKTMockitoCore.h b/Pods/OCMockito/Source/OCMockito/MKTMockitoCore.h
index c68164e..0cfbbc9 100644
--- a/Pods/OCMockito/Source/OCMockito/MKTMockitoCore.h
+++ b/Pods/OCMockito/Source/OCMockito/MKTMockitoCore.h
@@ -1,10 +1,5 @@
-//
-// OCMockito - MKTMockitoCore.h
-// Copyright 2014 Jonathan M. Reid. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Source: https://github.com/jonreid/OCMockito
-//
+// OCMockito by Jon Reid, http://qualitycoding.org/about/
+// Copyright 2015 Jonathan M. Reid. See LICENSE.txt
#import
diff --git a/Pods/OCMockito/Source/OCMockito/MKTMockitoCore.m b/Pods/OCMockito/Source/OCMockito/MKTMockitoCore.m
index c1f99fa..4f3a6b3 100644
--- a/Pods/OCMockito/Source/OCMockito/MKTMockitoCore.m
+++ b/Pods/OCMockito/Source/OCMockito/MKTMockitoCore.m
@@ -1,10 +1,5 @@
-//
-// OCMockito - MKTMockitoCore.m
-// Copyright 2014 Jonathan M. Reid. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Source: https://github.com/jonreid/OCMockito
-//
+// OCMockito by Jon Reid, http://qualitycoding.org/about/
+// Copyright 2015 Jonathan M. Reid. See LICENSE.txt
#import "MKTMockitoCore.h"
@@ -14,7 +9,7 @@
@interface MKTMockitoCore ()
-@property (nonatomic, readonly) MKTMockingProgress *mockingProgress;
+@property (readonly, nonatomic, strong) MKTMockingProgress *mockingProgress;
@end
diff --git a/Pods/OCMockito/Source/OCMockito/MKTObjectAndProtocolMock.h b/Pods/OCMockito/Source/OCMockito/MKTObjectAndProtocolMock.h
index 815ca46..df6be09 100644
--- a/Pods/OCMockito/Source/OCMockito/MKTObjectAndProtocolMock.h
+++ b/Pods/OCMockito/Source/OCMockito/MKTObjectAndProtocolMock.h
@@ -1,10 +1,6 @@
-//
-// OCMockito - MKTObjectAndProtocolMock.h
-// Copyright 2014 Jonathan M. Reid. See LICENSE.txt
-//
-// Created by: Kevin Lundberg
-// Source: https://github.com/jonreid/OCMockito
-//
+// OCMockito by Jon Reid, http://qualitycoding.org/about/
+// Copyright 2015 Jonathan M. Reid. See LICENSE.txt
+// Contribution by Kevin Lundberg
#import "MKTProtocolMock.h"
diff --git a/Pods/OCMockito/Source/OCMockito/MKTObjectAndProtocolMock.m b/Pods/OCMockito/Source/OCMockito/MKTObjectAndProtocolMock.m
index 2793b01..84b5f4d 100644
--- a/Pods/OCMockito/Source/OCMockito/MKTObjectAndProtocolMock.m
+++ b/Pods/OCMockito/Source/OCMockito/MKTObjectAndProtocolMock.m
@@ -1,18 +1,16 @@
-//
-// OCMockito - MKTObjectAndProtocolMock.m
-// Copyright 2014 Jonathan M. Reid. See LICENSE.txt
-//
-// Created by: Kevin Lundberg
-// Source: https://github.com/jonreid/OCMockito
-//
+// OCMockito by Jon Reid, http://qualitycoding.org/about/
+// Copyright 2015 Jonathan M. Reid. See LICENSE.txt
+// Contribution by Kevin Lundberg
#import "MKTObjectAndProtocolMock.h"
+#import "MKTDynamicProperties.h"
#import
@interface MKTObjectAndProtocolMock ()
-@property (nonatomic, strong, readonly) Class mockedClass;
+@property (readonly, nonatomic, strong) Class mockedClass;
+@property (nonatomic, strong) MKTDynamicProperties *dynamicProperties;
@end
@implementation MKTObjectAndProtocolMock
@@ -26,7 +24,10 @@ - (instancetype)initWithClass:(Class)aClass protocol:(Protocol *)protocol
{
self = [super initWithProtocol:protocol];
if (self)
+ {
_mockedClass = aClass;
+ _dynamicProperties = [[MKTDynamicProperties alloc] initWithClass:aClass];
+ }
return self;
}
@@ -38,10 +39,12 @@ - (NSString *)description
- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector
{
+ NSMethodSignature *dynamicPropertySignature = [self.dynamicProperties methodSignatureForSelector:aSelector];
+ if (dynamicPropertySignature)
+ return dynamicPropertySignature;
NSMethodSignature *signature = [self.mockedClass instanceMethodSignatureForSelector:aSelector];
if (signature)
return signature;
-
return [super methodSignatureForSelector:aSelector];
}
@@ -50,7 +53,8 @@ - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector
- (BOOL)respondsToSelector:(SEL)aSelector
{
- return [self.mockedClass instancesRespondToSelector:aSelector] ||
+ return [self.dynamicProperties methodSignatureForSelector:aSelector] ||
+ [self.mockedClass instancesRespondToSelector:aSelector] ||
[super respondsToSelector:aSelector];
}
diff --git a/Pods/OCMockito/Source/OCMockito/MKTObjectMock.h b/Pods/OCMockito/Source/OCMockito/MKTObjectMock.h
index f20d730..da0cf95 100644
--- a/Pods/OCMockito/Source/OCMockito/MKTObjectMock.h
+++ b/Pods/OCMockito/Source/OCMockito/MKTObjectMock.h
@@ -1,10 +1,5 @@
-//
-// OCMockito - MKTObjectMock.h
-// Copyright 2014 Jonathan M. Reid. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Source: https://github.com/jonreid/OCMockito
-//
+// OCMockito by Jon Reid, http://qualitycoding.org/about/
+// Copyright 2015 Jonathan M. Reid. See LICENSE.txt
#import "MKTBaseMockObject.h"
diff --git a/Pods/OCMockito/Source/OCMockito/MKTObjectMock.m b/Pods/OCMockito/Source/OCMockito/MKTObjectMock.m
index fd684bc..fb3ca8b 100644
--- a/Pods/OCMockito/Source/OCMockito/MKTObjectMock.m
+++ b/Pods/OCMockito/Source/OCMockito/MKTObjectMock.m
@@ -1,16 +1,14 @@
-//
-// OCMockito - MKTObjectMock.m
-// Copyright 2014 Jonathan M. Reid. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Source: https://github.com/jonreid/OCMockito
-//
+// OCMockito by Jon Reid, http://qualitycoding.org/about/
+// Copyright 2015 Jonathan M. Reid. See LICENSE.txt
#import "MKTObjectMock.h"
+#import "MKTDynamicProperties.h"
+
@interface MKTObjectMock ()
-@property (nonatomic, strong, readonly) Class mockedClass;
+@property (readonly, nonatomic, strong) Class mockedClass;
+@property (nonatomic, strong) MKTDynamicProperties *dynamicProperties;
@end
@implementation MKTObjectMock
@@ -24,7 +22,10 @@ - (instancetype)initWithClass:(Class)aClass
{
self = [super init];
if (self)
+ {
_mockedClass = aClass;
+ _dynamicProperties = [[MKTDynamicProperties alloc] initWithClass:aClass];
+ }
return self;
}
@@ -35,6 +36,9 @@ - (NSString *)description
- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector
{
+ NSMethodSignature *dynamicPropertySignature = [self.dynamicProperties methodSignatureForSelector:aSelector];
+ if (dynamicPropertySignature)
+ return dynamicPropertySignature;
return [self.mockedClass instanceMethodSignatureForSelector:aSelector];
}
@@ -48,7 +52,8 @@ - (BOOL)isKindOfClass:(Class)aClass
- (BOOL)respondsToSelector:(SEL)aSelector
{
- return [self.mockedClass instancesRespondToSelector:aSelector];
+ return [self.dynamicProperties methodSignatureForSelector:aSelector] ||
+ [self.mockedClass instancesRespondToSelector:aSelector];
}
@end
diff --git a/Pods/OCMockito/Source/OCMockito/MKTOngoingStubbing.h b/Pods/OCMockito/Source/OCMockito/MKTOngoingStubbing.h
index 78c89ad..3f46fa1 100644
--- a/Pods/OCMockito/Source/OCMockito/MKTOngoingStubbing.h
+++ b/Pods/OCMockito/Source/OCMockito/MKTOngoingStubbing.h
@@ -1,10 +1,5 @@
-//
-// OCMockito - MKTOngoingStubbing.h
-// Copyright 2014 Jonathan M. Reid. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Source: https://github.com/jonreid/OCMockito
-//
+// OCMockito by Jon Reid, http://qualitycoding.org/about/
+// Copyright 2015 Jonathan M. Reid. See LICENSE.txt
#import
#import "MKTPrimitiveArgumentMatching.h"
@@ -14,61 +9,76 @@
/**
Methods to invoke on @c given(methodCall) to return stubbed values.
+
+ The methods return the MKTOngoingStubbing object to allow stubbing consecutive calls.
*/
@interface MKTOngoingStubbing : NSObject
- (instancetype)initWithInvocationContainer:(MKTInvocationContainer *)invocationContainer;
-/// Stubs given object as return value.
+/// Sets an object to be returned when the method is called.
- (MKTOngoingStubbing *)willReturn:(id)object;
-/// Stubs given struct as return value. Given @c type should match the Objective-C type of @c value.
-/// Type should be created with the Objective-C \@encode() compiler directive.
+/**
+ Sets a struct to be returned when the method is called.
+
+ The @c type should match the Objective-C type of @c value.
+ Type should be created with the Objective-C \@encode() compiler directive.
+*/
- (MKTOngoingStubbing *)willReturnStruct:(const void *)value objCType:(const char *)type;
-/// Stubs given @c BOOL as return value.
+/// Sets a @c BOOL to be returned when the method is called.
- (MKTOngoingStubbing *)willReturnBool:(BOOL)value;
-/// Stubs given @c char as return value.
+/// Sets a @c char to be returned when the method is called.
- (MKTOngoingStubbing *)willReturnChar:(char)value;
-/// Stubs given @c int as return value.
+/// Sets an @c int to be returned when the method is called.
- (MKTOngoingStubbing *)willReturnInt:(int)value;
-/// Stubs given @c short as return value.
+/// Sets a @c short to be returned when the method is called.
- (MKTOngoingStubbing *)willReturnShort:(short)value;
-/// Stubs given @c long as return value.
+/// Sets a @c long to be returned when the method is called.
- (MKTOngoingStubbing *)willReturnLong:(long)value;
-/// Stubs given long long
as return value.
+/// Sets a long long
to be returned when the method is called.
- (MKTOngoingStubbing *)willReturnLongLong:(long long)value;
-/// Stubs given @c NSInteger as return value.
+/// Sets an @c NSInteger to be returned when the method is called.
- (MKTOngoingStubbing *)willReturnInteger:(NSInteger)value;
-/// Stubs given unsigned char
as return value.
+/// Sets given unsigned char
as return value.
- (MKTOngoingStubbing *)willReturnUnsignedChar:(unsigned char)value;
-/// Stubs given unsigned int
as return value.
+/// Sets given unsigned int
as return value.
- (MKTOngoingStubbing *)willReturnUnsignedInt:(unsigned int)value;
-/// Stubs given unsigned short
as return value.
+/// Sets an unsigned short
to be returned when the method is called.
- (MKTOngoingStubbing *)willReturnUnsignedShort:(unsigned short)value;
-/// Stubs given unsigned long
as return value.
+/// Sets an unsigned long
to be returned when the method is called.
- (MKTOngoingStubbing *)willReturnUnsignedLong:(unsigned long)value;
-/// Stubs given unsigned long long
as return value.
+/// Sets an unsigned long long
to be returned when the method is called.
- (MKTOngoingStubbing *)willReturnUnsignedLongLong:(unsigned long long)value;
-/// Stubs given @c NSUInteger as return value.
+/// Sets an @c NSUInteger to be returned when the method is called.
- (MKTOngoingStubbing *)willReturnUnsignedInteger:(NSUInteger)value;
-/// Stubs given @c float as return value.
+/// Sets a @c float to be returned when the method is called.
- (MKTOngoingStubbing *)willReturnFloat:(float)value;
-/// Stubs given @c double as return value.
+/// Sets a @c double to be returned when the method is called.
- (MKTOngoingStubbing *)willReturnDouble:(double)value;
+/// Sets @c NSException to be thrown when the method is called.
+- (MKTOngoingStubbing *)willThrow:(NSException *)exception;
+
+/** Sets block to be executed when the method is called.
+
+ The return value of block is returned when the method is called.
+ */
+- (MKTOngoingStubbing *)willDo:(id (^)(NSInvocation *))block;
+
@end
diff --git a/Pods/OCMockito/Source/OCMockito/MKTOngoingStubbing.m b/Pods/OCMockito/Source/OCMockito/MKTOngoingStubbing.m
index e6f1920..d9c64d1 100644
--- a/Pods/OCMockito/Source/OCMockito/MKTOngoingStubbing.m
+++ b/Pods/OCMockito/Source/OCMockito/MKTOngoingStubbing.m
@@ -1,25 +1,21 @@
-//
-// OCMockito - MKTOngoingStubbing.m
-// Copyright 2014 Jonathan M. Reid. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Source: https://github.com/jonreid/OCMockito
-//
+// OCMockito by Jon Reid, http://qualitycoding.org/about/
+// Copyright 2015 Jonathan M. Reid. See LICENSE.txt
+#import
#import "MKTOngoingStubbing.h"
#import "MKTInvocationContainer.h"
+#import "MKTReturnsValue.h"
+#import "MKTThrowsException.h"
+#import "MKTExecutesBlock.h"
@interface MKTOngoingStubbing ()
-
-@property (nonatomic, readonly) MKTInvocationContainer *invocationContainer;
+@property (readonly, nonatomic, strong) MKTInvocationContainer *invocationContainer;
@end
-
@implementation MKTOngoingStubbing
-
- (instancetype)initWithInvocationContainer:(MKTInvocationContainer *)invocationContainer
{
self = [super init];
@@ -30,104 +26,135 @@ - (instancetype)initWithInvocationContainer:(MKTInvocationContainer *)invocation
- (MKTOngoingStubbing *)willReturn:(id)object
{
- [self.invocationContainer addAnswer:object];
+ MKTReturnsValue *returnsValue = [[MKTReturnsValue alloc] initWithValue:object];
+ [self.invocationContainer addAnswer:returnsValue];
return self;
}
- (MKTOngoingStubbing *)willReturnStruct:(const void *)value objCType:(const char *)type
{
NSValue *answer = [NSValue valueWithBytes:value objCType:type];
- [self.invocationContainer addAnswer:answer];
+ MKTReturnsValue *returnsValue = [[MKTReturnsValue alloc] initWithValue:answer];
+ [self.invocationContainer addAnswer:returnsValue];
return self;
}
- (MKTOngoingStubbing *)willReturnBool:(BOOL)value
{
- [self.invocationContainer addAnswer:@(value)];
+ MKTReturnsValue *returnsValue = [[MKTReturnsValue alloc] initWithValue:@(value)];
+ [self.invocationContainer addAnswer:returnsValue];
return self;
}
- (MKTOngoingStubbing *)willReturnChar:(char)value
{
- [self.invocationContainer addAnswer:@(value)];
+ MKTReturnsValue *returnsValue = [[MKTReturnsValue alloc] initWithValue:@(value)];
+ [self.invocationContainer addAnswer:returnsValue];
return self;
}
- (MKTOngoingStubbing *)willReturnInt:(int)value
{
- [self.invocationContainer addAnswer:@(value)];
+ MKTReturnsValue *returnsValue = [[MKTReturnsValue alloc] initWithValue:@(value)];
+ [self.invocationContainer addAnswer:returnsValue];
return self;
}
- (MKTOngoingStubbing *)willReturnShort:(short)value
{
- [self.invocationContainer addAnswer:@(value)];
+ MKTReturnsValue *returnsValue = [[MKTReturnsValue alloc] initWithValue:@(value)];
+ [self.invocationContainer addAnswer:returnsValue];
return self;
}
- (MKTOngoingStubbing *)willReturnLong:(long)value
{
- [self.invocationContainer addAnswer:@(value)];
+ MKTReturnsValue *returnsValue = [[MKTReturnsValue alloc] initWithValue:@(value)];
+ [self.invocationContainer addAnswer:returnsValue];
return self;
}
- (MKTOngoingStubbing *)willReturnLongLong:(long long)value
{
- [self.invocationContainer addAnswer:@(value)];
+ MKTReturnsValue *returnsValue = [[MKTReturnsValue alloc] initWithValue:@(value)];
+ [self.invocationContainer addAnswer:returnsValue];
return self;
}
- (MKTOngoingStubbing *)willReturnInteger:(NSInteger)value
{
- [self.invocationContainer addAnswer:@(value)];
+ MKTReturnsValue *returnsValue = [[MKTReturnsValue alloc] initWithValue:@(value)];
+ [self.invocationContainer addAnswer:returnsValue];
return self;
}
- (MKTOngoingStubbing *)willReturnUnsignedChar:(unsigned char)value
{
- [self.invocationContainer addAnswer:@(value)];
+ MKTReturnsValue *returnsValue = [[MKTReturnsValue alloc] initWithValue:@(value)];
+ [self.invocationContainer addAnswer:returnsValue];
return self;
}
- (MKTOngoingStubbing *)willReturnUnsignedInt:(unsigned int)value
{
- [self.invocationContainer addAnswer:@(value)];
+ MKTReturnsValue *returnsValue = [[MKTReturnsValue alloc] initWithValue:@(value)];
+ [self.invocationContainer addAnswer:returnsValue];
return self;
}
- (MKTOngoingStubbing *)willReturnUnsignedShort:(unsigned short)value
{
- [self.invocationContainer addAnswer:@(value)];
+ MKTReturnsValue *returnsValue = [[MKTReturnsValue alloc] initWithValue:@(value)];
+ [self.invocationContainer addAnswer:returnsValue];
return self;
}
- (MKTOngoingStubbing *)willReturnUnsignedLong:(unsigned long)value
{
- [self.invocationContainer addAnswer:@(value)];
+ MKTReturnsValue *returnsValue = [[MKTReturnsValue alloc] initWithValue:@(value)];
+ [self.invocationContainer addAnswer:returnsValue];
return self;
}
- (MKTOngoingStubbing *)willReturnUnsignedLongLong:(unsigned long long)value
{
- [self.invocationContainer addAnswer:@(value)];
+ MKTReturnsValue *returnsValue = [[MKTReturnsValue alloc] initWithValue:@(value)];
+ [self.invocationContainer addAnswer:returnsValue];
return self;
}
- (MKTOngoingStubbing *)willReturnUnsignedInteger:(NSUInteger)value
{
- [self.invocationContainer addAnswer:@(value)];
+ MKTReturnsValue *returnsValue = [[MKTReturnsValue alloc] initWithValue:@(value)];
+ [self.invocationContainer addAnswer:returnsValue];
return self;
}
- (MKTOngoingStubbing *)willReturnFloat:(float)value
{
- [self.invocationContainer addAnswer:@(value)];
+ MKTReturnsValue *returnsValue = [[MKTReturnsValue alloc] initWithValue:@(value)];
+ [self.invocationContainer addAnswer:returnsValue];
return self;
}
- (MKTOngoingStubbing *)willReturnDouble:(double)value
{
- [self.invocationContainer addAnswer:@(value)];
+ MKTReturnsValue *returnsValue = [[MKTReturnsValue alloc] initWithValue:@(value)];
+ [self.invocationContainer addAnswer:returnsValue];
+ return self;
+}
+
+- (MKTOngoingStubbing *)willThrow:(NSException *)exception
+{
+ MKTThrowsException *throwsException = [[MKTThrowsException alloc] initWithException:exception];
+ [self.invocationContainer addAnswer:throwsException];
+ return self;
+}
+
+- (MKTOngoingStubbing *)willDo:(id (^)(NSInvocation *))block
+{
+ MKTExecutesBlock *executesBlock = [[MKTExecutesBlock alloc] initWithBlock:block];
+ [self.invocationContainer addAnswer:executesBlock];
return self;
}
diff --git a/Pods/OCMockito/Source/OCMockito/MKTPrimitiveArgumentMatching.h b/Pods/OCMockito/Source/OCMockito/MKTPrimitiveArgumentMatching.h
index 4a46b48..f8e6957 100644
--- a/Pods/OCMockito/Source/OCMockito/MKTPrimitiveArgumentMatching.h
+++ b/Pods/OCMockito/Source/OCMockito/MKTPrimitiveArgumentMatching.h
@@ -1,10 +1,5 @@
-//
-// OCMockito - MKTPrimitiveArgumentMatching.h
-// Copyright 2014 Jonathan M. Reid. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Source: https://github.com/jonreid/OCMockito
-//
+// OCMockito by Jon Reid, http://qualitycoding.org/about/
+// Copyright 2015 Jonathan M. Reid. See LICENSE.txt
@protocol HCMatcher;
@@ -16,14 +11,14 @@
/**
Specifies OCHamcrest matcher for a specific argument of a method.
-
+
For methods arguments that take objects, just pass the matcher directly as a method call. But
for arguments that take primitive numeric types, call this to specify the matcher before passing
in a dummy value. Upon verification, the actual numeric argument received will be converted to
an NSNumber before being checked by the matcher.
-
+
The argument index is 0-based, so the first argument of a method has index 0.
-
+
Example:
@code
[[verify(mockArray) withMatcher:greaterThan([NSNumber numberWithInt:1]) forArgument:0]
@@ -35,9 +30,9 @@
/**
Specifies OCHamcrest matcher for the first argument of a method.
-
+
Equivalent to withMatcher:matcher forArgument:0
.
-
+
Example:
@code
[[verify(mockArray) withMatcher:greaterThan([NSNumber numberWithInt:1]) forArgument:0]
diff --git a/Pods/OCMockito/Source/OCMockito/MKTProtocolMock.h b/Pods/OCMockito/Source/OCMockito/MKTProtocolMock.h
index efe8548..344ee18 100644
--- a/Pods/OCMockito/Source/OCMockito/MKTProtocolMock.h
+++ b/Pods/OCMockito/Source/OCMockito/MKTProtocolMock.h
@@ -1,10 +1,5 @@
-//
-// OCMockito - MKTProtocolMock.h
-// Copyright 2014 Jonathan M. Reid. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Source: https://github.com/jonreid/OCMockito
-//
+// OCMockito by Jon Reid, http://qualitycoding.org/about/
+// Copyright 2015 Jonathan M. Reid. See LICENSE.txt
#import "MKTBaseMockObject.h"
@@ -14,9 +9,12 @@
*/
@interface MKTProtocolMock : MKTBaseMockObject
-@property (nonatomic, readonly) Protocol *mockedProtocol;
+@property (readonly, nonatomic, strong) Protocol *mockedProtocol;
+ (instancetype)mockForProtocol:(Protocol *)aProtocol;
++ (instancetype)mockForProtocol:(Protocol *)aProtocol includeOptionalMethods:(BOOL)includeOptionalMethods;
+
- (instancetype)initWithProtocol:(Protocol *)aProtocol;
+- (instancetype)initWithProtocol:(Protocol *)aProtocol includeOptionalMethods:(BOOL)includeOptionalMethods;
@end
diff --git a/Pods/OCMockito/Source/OCMockito/MKTProtocolMock.m b/Pods/OCMockito/Source/OCMockito/MKTProtocolMock.m
index fc6e48d..4b18288 100644
--- a/Pods/OCMockito/Source/OCMockito/MKTProtocolMock.m
+++ b/Pods/OCMockito/Source/OCMockito/MKTProtocolMock.m
@@ -1,28 +1,38 @@
-//
-// OCMockito - MKTProtocolMock.m
-// Copyright 2014 Jonathan M. Reid. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Source: https://github.com/jonreid/OCMockito
-//
+// OCMockito by Jon Reid, http://qualitycoding.org/about/
+// Copyright 2015 Jonathan M. Reid. See LICENSE.txt
#import "MKTProtocolMock.h"
#import
+@interface MKTProtocolMock ()
+@property (readonly, nonatomic, assign) BOOL includeOptionalMethods;
+@end
+
@implementation MKTProtocolMock
-+ (instancetype)mockForProtocol:(Protocol *)aProtocol
++ (instancetype)mockForProtocol:(Protocol *)aProtocol {
+ return [self mockForProtocol:aProtocol includeOptionalMethods:YES];
+}
+
++ (instancetype)mockForProtocol:(Protocol *)aProtocol includeOptionalMethods:(BOOL)includeOptionalMethods
{
- return [[self alloc] initWithProtocol:aProtocol];
+ return [[self alloc] initWithProtocol:aProtocol includeOptionalMethods:includeOptionalMethods];
}
-- (instancetype)initWithProtocol:(Protocol *)aProtocol
+- (instancetype)initWithProtocol:(Protocol *)aProtocol {
+ return [self initWithProtocol:aProtocol includeOptionalMethods:YES];
+}
+
+- (instancetype)initWithProtocol:(Protocol *)aProtocol includeOptionalMethods:(BOOL)includeOptionalMethods
{
self = [super init];
if (self)
+ {
_mockedProtocol = aProtocol;
+ _includeOptionalMethods = includeOptionalMethods;
+ }
return self;
}
@@ -36,14 +46,13 @@ - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector
{
struct objc_method_description methodDescription =
protocol_getMethodDescription(self.mockedProtocol, aSelector, YES, YES);
- if (!methodDescription.name)
+ if (!methodDescription.name && self.includeOptionalMethods)
methodDescription = protocol_getMethodDescription(self.mockedProtocol, aSelector, NO, YES);
if (!methodDescription.name)
return nil;
- return [NSMethodSignature signatureWithObjCTypes:methodDescription.types];
+ return [NSMethodSignature signatureWithObjCTypes:methodDescription.types];
}
-
#pragma mark NSObject protocol
- (BOOL)conformsToProtocol:(Protocol *)aProtocol
diff --git a/Pods/OCMockito/Source/OCMockito/MKTStubbedInvocationMatcher.h b/Pods/OCMockito/Source/OCMockito/MKTStubbedInvocationMatcher.h
index e3cc5e9..23cdc95 100644
--- a/Pods/OCMockito/Source/OCMockito/MKTStubbedInvocationMatcher.h
+++ b/Pods/OCMockito/Source/OCMockito/MKTStubbedInvocationMatcher.h
@@ -1,16 +1,12 @@
-//
-// OCMockito - MKTStubbedInvocationMatcher.h
-// Copyright 2014 Jonathan M. Reid. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Source: https://github.com/jonreid/OCMockito
-//
+// OCMockito by Jon Reid, http://qualitycoding.org/about/
+// Copyright 2015 Jonathan M. Reid. See LICENSE.txt
#import "MKTInvocationMatcher.h"
+#import "MKTAnswer.h"
-@interface MKTStubbedInvocationMatcher : MKTInvocationMatcher
+@interface MKTStubbedInvocationMatcher : MKTInvocationMatcher
-@property (nonatomic, strong) id answer;
+- (void)addAnswer:(id )answer;
@end
diff --git a/Pods/OCMockito/Source/OCMockito/MKTStubbedInvocationMatcher.m b/Pods/OCMockito/Source/OCMockito/MKTStubbedInvocationMatcher.m
index 50b3f27..7f361e0 100644
--- a/Pods/OCMockito/Source/OCMockito/MKTStubbedInvocationMatcher.m
+++ b/Pods/OCMockito/Source/OCMockito/MKTStubbedInvocationMatcher.m
@@ -1,13 +1,36 @@
-//
-// OCMockito - MKTStubbedInvocationMatcher.m
-// Copyright 2014 Jonathan M. Reid. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Source: https://github.com/jonreid/OCMockito
-//
+// OCMockito by Jon Reid, http://qualitycoding.org/about/
+// Copyright 2015 Jonathan M. Reid. See LICENSE.txt
#import "MKTStubbedInvocationMatcher.h"
+@interface MKTStubbedInvocationMatcher ()
+@property (readonly, nonatomic, copy) NSMutableArray *answers;
+@property (nonatomic, assign) NSUInteger index;
+@end
+
@implementation MKTStubbedInvocationMatcher
+
+- (instancetype)init
+{
+ self = [super init];
+ if (self)
+ _answers = [[NSMutableArray alloc] init];
+ return self;
+}
+
+- (void)addAnswer:(id )answer
+{
+ [self.answers addObject:answer];
+}
+
+- (id)answerInvocation:(NSInvocation *)invocation
+{
+ id a = self.answers[self.index];
+ NSUInteger bumpedIndex = self.index + 1;
+ if (bumpedIndex < self.answers.count)
+ self.index = bumpedIndex;
+ return [a answerInvocation:invocation];
+}
+
@end
diff --git a/Pods/OCMockito/Source/OCMockito/MKTTestLocation.h b/Pods/OCMockito/Source/OCMockito/MKTTestLocation.h
index 397961f..80a03b4 100644
--- a/Pods/OCMockito/Source/OCMockito/MKTTestLocation.h
+++ b/Pods/OCMockito/Source/OCMockito/MKTTestLocation.h
@@ -1,10 +1,5 @@
-//
-// OCMockito - MKTTestLocation.h
-// Copyright 2014 Jonathan M. Reid. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Source: https://github.com/jonreid/OCMockito
-//
+// OCMockito by Jon Reid, http://qualitycoding.org/about/
+// Copyright 2015 Jonathan M. Reid. See LICENSE.txt
#import
diff --git a/Pods/OCMockito/Source/OCMockito/MKTTestLocation.m b/Pods/OCMockito/Source/OCMockito/MKTTestLocation.m
index f51af4f..d24d00b 100644
--- a/Pods/OCMockito/Source/OCMockito/MKTTestLocation.m
+++ b/Pods/OCMockito/Source/OCMockito/MKTTestLocation.m
@@ -1,10 +1,5 @@
-//
-// OCMockito - MKTTestLocation.m
-// Copyright 2014 Jonathan M. Reid. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Source: https://github.com/jonreid/OCMockito
-//
+// OCMockito by Jon Reid, http://qualitycoding.org/about/
+// Copyright 2015 Jonathan M. Reid. See LICENSE.txt
#import "MKTTestLocation.h"
diff --git a/Pods/OCMockito/Source/OCMockito/MKTVerificationData.h b/Pods/OCMockito/Source/OCMockito/MKTVerificationData.h
index 310f04c..2467ff8 100644
--- a/Pods/OCMockito/Source/OCMockito/MKTVerificationData.h
+++ b/Pods/OCMockito/Source/OCMockito/MKTVerificationData.h
@@ -1,10 +1,5 @@
-//
-// OCMockito - MKTVerificationData.h
-// Copyright 2014 Jonathan M. Reid. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Source: https://github.com/jonreid/OCMockito
-//
+// OCMockito by Jon Reid, http://qualitycoding.org/about/
+// Copyright 2015 Jonathan M. Reid. See LICENSE.txt
#import
diff --git a/Pods/OCMockito/Source/OCMockito/MKTVerificationData.m b/Pods/OCMockito/Source/OCMockito/MKTVerificationData.m
index a96e5e0..be6e303 100644
--- a/Pods/OCMockito/Source/OCMockito/MKTVerificationData.m
+++ b/Pods/OCMockito/Source/OCMockito/MKTVerificationData.m
@@ -1,10 +1,5 @@
-//
-// OCMockito - MKTVerificationData.m
-// Copyright 2014 Jonathan M. Reid. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Source: https://github.com/jonreid/OCMockito
-//
+// OCMockito by Jon Reid, http://qualitycoding.org/about/
+// Copyright 2015 Jonathan M. Reid. See LICENSE.txt
#import "MKTVerificationData.h"
diff --git a/Pods/OCMockito/Source/OCMockito/MKTVerificationMode.h b/Pods/OCMockito/Source/OCMockito/MKTVerificationMode.h
index 0a8c4dd..b96fd52 100644
--- a/Pods/OCMockito/Source/OCMockito/MKTVerificationMode.h
+++ b/Pods/OCMockito/Source/OCMockito/MKTVerificationMode.h
@@ -1,10 +1,5 @@
-//
-// OCMockito - MKTVerificationMode.h
-// Copyright 2014 Jonathan M. Reid. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Source: https://github.com/jonreid/OCMockito
-//
+// OCMockito by Jon Reid, http://qualitycoding.org/about/
+// Copyright 2015 Jonathan M. Reid. See LICENSE.txt
#import
diff --git a/Pods/OCMockito/Source/OCMockito/NSInvocation+OCMockito.h b/Pods/OCMockito/Source/OCMockito/NSInvocation+OCMockito.h
index d3e3524..e50672b 100644
--- a/Pods/OCMockito/Source/OCMockito/NSInvocation+OCMockito.h
+++ b/Pods/OCMockito/Source/OCMockito/NSInvocation+OCMockito.h
@@ -1,10 +1,5 @@
-//
-// OCMockito - NSInvocation+OCMockito.h
-// Copyright 2014 Jonathan M. Reid. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Source: https://github.com/jonreid/OCMockito
-//
+// OCMockito by Jon Reid, http://qualitycoding.org/about/
+// Copyright 2015 Jonathan M. Reid. See LICENSE.txt
#import
diff --git a/Pods/OCMockito/Source/OCMockito/NSInvocation+OCMockito.m b/Pods/OCMockito/Source/OCMockito/NSInvocation+OCMockito.m
index a4ae7c2..89ba46f 100644
--- a/Pods/OCMockito/Source/OCMockito/NSInvocation+OCMockito.m
+++ b/Pods/OCMockito/Source/OCMockito/NSInvocation+OCMockito.m
@@ -1,10 +1,5 @@
-//
-// OCMockito - NSInvocation+OCMockito.m
-// Copyright 2014 Jonathan M. Reid. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Source: https://github.com/jonreid/OCMockito
-//
+// OCMockito by Jon Reid, http://qualitycoding.org/about/
+// Copyright 2015 Jonathan M. Reid. See LICENSE.txt
#import "NSInvocation+OCMockito.h"
diff --git a/Pods/OCMockito/Source/OCMockito/OCMockito.h b/Pods/OCMockito/Source/OCMockito/OCMockito.h
index 35d1b28..5668002 100644
--- a/Pods/OCMockito/Source/OCMockito/OCMockito.h
+++ b/Pods/OCMockito/Source/OCMockito/OCMockito.h
@@ -1,10 +1,5 @@
-//
-// OCMockito - OCMockito.h
-// Copyright 2014 Jonathan M. Reid. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Source: https://github.com/jonreid/OCMockito
-//
+// OCMockito by Jon Reid, http://qualitycoding.org/about/
+// Copyright 2015 Jonathan M. Reid. See LICENSE.txt
#import
@@ -55,6 +50,19 @@
#endif
+#define MKTMockProtocolWithoutOptionals(aProtocol) (id)[MKTProtocolMock mockForProtocol:aProtocol includeOptionalMethods:NO]
+
+/**
+ Returns a mock object implementing a given protocol, but with no optional methods.
+
+ (In the event of a name clash, don't \#define @c MOCKITO_SHORTHAND and use the synonym
+ @c MKTMockProtocolWithoutOptionals instead.)
+*/
+#ifdef MOCKITO_SHORTHAND
+ #define mockProtocolWithoutOptionals(aProtocol) MKTMockProtocolWithoutOptionals(aProtocol)
+#endif
+
+
#define MKTMockObjectAndProtocol(aClass, aProtocol) (id)[MKTObjectAndProtocolMock mockForClass:aClass protocol:aProtocol]
/**
diff --git a/Pods/OCMockito/Source/OCMockito/OCMockito.m b/Pods/OCMockito/Source/OCMockito/OCMockito.m
index 59bda28..2d8108f 100644
--- a/Pods/OCMockito/Source/OCMockito/OCMockito.m
+++ b/Pods/OCMockito/Source/OCMockito/OCMockito.m
@@ -1,10 +1,5 @@
-//
-// OCMockito - OCMockito.m
-// Copyright 2014 Jonathan M. Reid. See LICENSE.txt
-//
-// Created by: Jon Reid, http://qualitycoding.org/
-// Source: https://github.com/jonreid/OCMockito
-//
+// OCMockito by Jon Reid, http://qualitycoding.org/about/
+// Copyright 2015 Jonathan M. Reid. See LICENSE.txt
#import "OCMockito.h"
diff --git a/Pods/OCMockito/Source/ThirdParty/TPDWeakProxy-1.1.0/TPDWeakProxy/MKT_TPDWeakProxy.h b/Pods/OCMockito/Source/ThirdParty/TPDWeakProxy-1.1.0/TPDWeakProxy/MKT_TPDWeakProxy.h
index 9b7d4aa..e8a98d7 100644
--- a/Pods/OCMockito/Source/ThirdParty/TPDWeakProxy-1.1.0/TPDWeakProxy/MKT_TPDWeakProxy.h
+++ b/Pods/OCMockito/Source/ThirdParty/TPDWeakProxy-1.1.0/TPDWeakProxy/MKT_TPDWeakProxy.h
@@ -2,7 +2,7 @@
// TPDWeakProxy.h
// TPDWeakProxy
//
-// Copyright © 2013 Tetherpad.
+// Copyright 2013 Tetherpad.
//
#import
diff --git a/Pods/OCMockito/Source/ThirdParty/TPDWeakProxy-1.1.0/TPDWeakProxy/MKT_TPDWeakProxy.m b/Pods/OCMockito/Source/ThirdParty/TPDWeakProxy-1.1.0/TPDWeakProxy/MKT_TPDWeakProxy.m
index 60c7446..b2f53da 100644
--- a/Pods/OCMockito/Source/ThirdParty/TPDWeakProxy-1.1.0/TPDWeakProxy/MKT_TPDWeakProxy.m
+++ b/Pods/OCMockito/Source/ThirdParty/TPDWeakProxy-1.1.0/TPDWeakProxy/MKT_TPDWeakProxy.m
@@ -2,7 +2,7 @@
// TPDWeakProxy.m
// TPDWeakProxy
//
-// Copyright © 2013 Tetherpad.
+// Copyright 2013 Tetherpad.
//
#import "MKT_TPDWeakProxy.h"
diff --git a/Pods/Pods.xcodeproj/project.pbxproj b/Pods/Pods.xcodeproj/project.pbxproj
index 256fec0..2fe26b9 100644
--- a/Pods/Pods.xcodeproj/project.pbxproj
+++ b/Pods/Pods.xcodeproj/project.pbxproj
@@ -10,26 +10,116 @@
46
objects
- 00204494E69013481CD05D93
+ 0000642DF06CE71D953E6E9A
+
+ buildActionMask
+ 2147483647
+ files
+
+ A4E517561FA070F62DA183CD
+ BA55EFBBF9BBE45101FA654E
+
+ isa
+ PBXSourcesBuildPhase
+ runOnlyForDeploymentPostprocessing
+ 0
+
+ 004D66D3DFBA92C5CB64927E
+
+ buildActionMask
+ 2147483647
+ files
+
+ 761EF2DECAAF5D1E12B5F625
+ CBD41C565F3C196640A343DB
+ 99B7DD72B1736479186ED94B
+ 0569CE48F1C981ACA6B3B9AA
+ 6D3E30D35B3E34AD24988EE7
+ 36A0CD1771271C2FD34F1ABF
+ 718618D56CEB2E1278BF4503
+ 699EEFFCF51F351830D9DB18
+ 55BBC808C4B041EAF7223367
+ 221B629BAF96741561489A9F
+ 85F888269A728F03E8138116
+ 9CB0FA32A06DC6FF975F6758
+ 8E8E18DADAA51F0C55D65C64
+ 178A3F51C26C85F690FD6576
+ E201B93CF37110B45EAAD07B
+ 6611B2001AE6F270C53F3972
+ DEB8A0D19BA2343AAFCF6BB9
+ 262C28BF6C764FB2A9EA9A35
+ BE6ECBD203910CCA1DBAA784
+ 5D2AF461ABFEDACB249F7516
+ 1214D8E2B5A6D40AF4C7C3CA
+ 1BD3ADA421CD5FB55350C614
+ 82104F58703A7852184962B9
+ 8822162F749CC65D8AD4C03A
+ 3983750E757F525E565AE167
+ 03AD06C4FD726845364A8418
+ 068F3BF3E80C6C8A5F6AE24D
+ 9FE6AECF23F1A046986D8102
+ 07102679E47B2FE920D1F4B5
+ A6CCB62673CB51AE48FDF7FD
+ 6C2EF2A246634B3DC213D1DC
+ 0FE1B159E1BDAA114823B8E1
+ 880B64CAD50CDBD316F1ECED
+ F0B89A81B1579B541FEE2AD8
+ AB87E858ADCD4B8068C893A8
+ 393500007D970D776E858E54
+ 3564329B5365A3D16915B04A
+ 703A1E6CD10AB897AFDB7726
+ 1A238094E2B951AE740E9FD8
+ 0BBFEF10CF6BE075FD318CC4
+ 61645B20F655E98B8068A18D
+ 2A618BDD735073650B61E818
+ CC62FF1EF5B7A119486FDC1C
+ 56691868C14A59F5F06A6DA5
+ 90B150834FE5192282838E77
+ 1529F94D529ECCE6CDD091EE
+ D39F4A4A4A3BD1EADE4A5953
+ 96631CC7057B5DEF465DAFD0
+ 75D37343866BEFBDC8CE91AC
+ 7A6A799CD6096F25D1DF3EA6
+ F7395E171F9E3B73756271A2
+ 81BFE4143B043C4B9499E84E
+ 05FC5EAE4684C874ED13460F
+ 49DB0D0AFBC05CC9160456C4
+ F12E652C9E078DA1D5EEF106
+ 2090FAE679715EB32059180C
+ 0C0CF7D66E66263B8CD94BCD
+ 6CA9104F09DE6AEBF39F36CC
+ 84409270DFD04D9F48743AF6
+ A7B4E33323C2435CB0AB927A
+ AB157C3D5EFE5048A562F1F4
+ 97FBDAC6395A65FD42BC3ACC
+ 81B39989B3B3E38E6FBA215A
+ 54B6D95CB7E9A68B02853C44
+
+ isa
+ PBXSourcesBuildPhase
+ runOnlyForDeploymentPostprocessing
+ 0
+
+ 004F504A574ABC082AAE0F3C
fileRef
- 364334745181B861DBD4D513
+ BB2941F55548D2C69DC9AAE9
isa
PBXBuildFile
- 0043D63AE408454EB25AA94A
+ 009C5C70F1B76D1B75CC42E9
fileRef
- 6E95FE3EA33053E4C40FCBC6
+ C1C69D5DF5E9CB14F441F839
isa
PBXBuildFile
settings
COMPILER_FLAGS
- -fobjc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+ -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
- 008A7C3CC2E6684814244B36
+ 00ABDFEC8D07F39140E19C9B
includeInIndex
1
@@ -37,169 +127,121 @@
PBXFileReference
lastKnownFileType
sourcecode.c.h
+ name
+ TyphoonParentReferenceHydratingPostProcessor.h
path
- Pods-PocketForecastTests-Expecta-prefix.pch
+ Source/Factory/Internal/TyphoonParentReferenceHydratingPostProcessor.h
sourceTree
<group>
- 00E3873CE3D13E511718B774
+ 00F6CF9BA5A7A029E567A5D9
- includeInIndex
- 1
+ buildActionMask
+ 2147483647
+ files
+
+ D0A7964A271F0683420B9376
+ 660BF65D4E33BA2649EB6611
+ CAEFC7846AB8166CCCDE6880
+ 34638103E72A4CC892F1857A
+ 6ED0734161F823A684F609B0
+ 7313DBC8F81CCBC266422352
+ CB513D5D48F43EDFB78D51E3
+ AB386614536A54CD029771A4
+
isa
- PBXFileReference
- lastKnownFileType
- sourcecode.c.objc
- name
- TyphoonOptionMatcher.m
- path
- Source/Configuration/DefinitionOptionConfiguration/Matcher/TyphoonOptionMatcher.m
- sourceTree
- <group>
+ PBXHeadersBuildPhase
+ runOnlyForDeploymentPostprocessing
+ 0
- 016D41F9BE75C31F729DC4BA
+ 00F8DB9309B838C6927BE039
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.objc
+ sourcecode.c.h
name
- TyphoonInjectionByType.m
+ MKTClassArgumentGetter.h
path
- Source/Definition/Injections/TyphoonInjectionByType.m
+ Source/OCMockito/Helpers/ArgumentGetters/MKTClassArgumentGetter.h
sourceTree
<group>
- 0192145F7B95F90F541819CE
+ 01298EA2657BE7D6F750BAC1
fileRef
- ACA1979C74D4135136255577
+ 649B86BDB5FEB04C5250577B
isa
PBXBuildFile
- settings
-
- COMPILER_FLAGS
- -fobjc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
-
- 01E6EF797E33FB050EB72EFD
+ 0156F285B21293E0E9C79354
fileRef
- 81A94657D4AF46A9B0D8F55A
+ D0184781AAFBA9934E0FE071
isa
PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
- 01ED7A5FF63AE73B84E11B60
+ 015AACB2C2DB02E9D2222027
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.objc
+ sourcecode.c.h
name
- HCHasProperty.m
+ EXPMatchers+haveCountOf.h
path
- Source/Library/Object/HCHasProperty.m
+ src/matchers/EXPMatchers+haveCountOf.h
sourceTree
<group>
- 01FDFB65374BD49AC9D84BF0
+ 01AFAB4267F90131910EF84D
fileRef
- 4FF373AE52C417BBB6254458
+ F6781E4C53622FDC2167BAAA
isa
PBXBuildFile
- 02284DEC8D22EC88B6C1B070
-
- includeInIndex
- 1
- isa
- PBXFileReference
- lastKnownFileType
- sourcecode.c.h
- name
- TyphoonPropertyStyleConfiguration.h
- path
- Source/Configuration/ConfigPostProcessor/TyphoonConfiguration/TyphoonPropertyStyleConfiguration.h
- sourceTree
- <group>
-
- 024F5AFA7F8DB6749B98B6F5
-
- buildActionMask
- 2147483647
- files
-
- D489FC24A0C46FDED0CDD05D
- 2C1E35353E80C12466A872B6
- 33632CAEF9589AF8309F303B
- 3DC2804B4B65B1E5E61621B4
- 67B8F70BF070150206AF4617
- D37475939FDEF5709BAC9EA7
- 1B188C7AA92FBB8FC1AA9893
- C4051BE437636FB6A39ED6BA
- 3726C66DC4BEBA238E8204F6
- D1EAE14EC496C0EDA8E59850
- 7D7782A89511B50B50AB72BD
- C132DE33585380DB17A36F6B
- A97BB1607B0BE507CA8F4276
- 4D3FF44BCF9465A304C621A0
- A4BAE351D85B3B5714D2A95B
- 565C9868ECD58581DB52DF07
- 85C3512EC2913C70532BFD28
- 25866CD1541498ECA3A06859
- CAE8E96F3014740221FCC1B4
- 74D201DF626E42D69A84DD08
- 02D8637A28DE258541F53879
- E0AC3949EE2913B69553AA11
- DD39F3CC7894B3B5BFB29251
- 714D97A7B62EAADEAE98934C
- EA832600025B6972AAB5329B
- 095EB9046BD26237F2CD34D3
- 42FE858971A3427EC85640B1
- F58FA85C3CFA982017593706
- E80EADC0714162D43EE53735
- DF981644DD47BDBFE3A5A5C9
- 0968AA9E683E941A8F628AC2
- 44142A7872EC0D8771387626
- 8DFD2C13B14E4565B6C48ED8
- AB20E5E1FF8DD264CD0BB7AB
- A10DD4C366FE6B445D634536
-
- isa
- PBXSourcesBuildPhase
- runOnlyForDeploymentPostprocessing
- 0
-
- 025EB7346A7CFA08C718392F
+ 01C5C58AB25082D72A7D1E59
fileRef
- 441EDED44D007DCFE80B38AA
+ 6F40AF037C182802DF244F1D
isa
PBXBuildFile
settings
COMPILER_FLAGS
- -fobjc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+ -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
- 026D965CC07B76967D474E2A
+ 01F2988EB71C03FDFD78551A
+
+ fileRef
+ A7A55E642EA8362A2B3BCA35
+ isa
+ PBXBuildFile
+
+ 020A86FC5030088AFEEEE30A
fileRef
- 25FD08615DEBD977239F8B5D
+ D8471135469DCB7F5009F1DB
isa
PBXBuildFile
settings
COMPILER_FLAGS
- -fobjc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+ -fno-objc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
- 02A096AC414F928F8C3432FE
+ 0230985ECD3DE7FBFF40A9FC
includeInIndex
1
@@ -208,83 +250,62 @@
lastKnownFileType
sourcecode.c.objc
name
- MKTMockitoCore.m
+ HCTestFailureHandler.m
path
- Source/OCMockito/MKTMockitoCore.m
+ Source/Core/Helpers/TestFailureHandlers/HCTestFailureHandler.m
sourceTree
<group>
- 02A240D2937D4DB10DA9C73E
+ 0239511E03855E1F5BE7024D
- includeInIndex
- 1
+ fileRef
+ B3D8D47637465F2C484A21D5
isa
- PBXFileReference
- lastKnownFileType
- sourcecode.c.h
- name
- EXPMatchers+beNil.h
- path
- src/matchers/EXPMatchers+beNil.h
- sourceTree
- <group>
+ PBXBuildFile
- 02A67CAEE2471305CCEF3F1C
+ 0295312B37B93EF7F10650AD
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.h
+ sourcecode.c.objc
+ name
+ TyphoonMethod+InstanceBuilder.m
path
- UIScreen+CKUITools.h
+ Source/Definition/Method/Internal/TyphoonMethod+InstanceBuilder.m
sourceTree
<group>
- 02BF234C8B18E8DB29B5262B
+ 02FA6C0741E23D11449C0B37
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.h
+ sourcecode.c.objc
name
- TyphoonViewControllerNibResolver.h
+ HCIntReturnGetter.m
path
- Source/ios/Configuration/Resolver/TyphoonViewControllerNibResolver.h
+ Source/Core/Helpers/ReturnValueGetters/HCIntReturnGetter.m
sourceTree
<group>
- 02D8637A28DE258541F53879
+ 02FCE677E6C06C68C0D4B894
fileRef
- 53E350BD02AB7DDF5A87218B
+ 48669F7C229E849593FB1F42
isa
PBXBuildFile
settings
COMPILER_FLAGS
- -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+ -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
- 03114AE263EA23529C5B7679
-
- includeInIndex
- 1
- isa
- PBXFileReference
- lastKnownFileType
- sourcecode.c.objc
- name
- MKTMockingProgress.m
- path
- Source/OCMockito/MKTMockingProgress.m
- sourceTree
- <group>
-
- 03C43BA0E078F7D3CA1256BD
+ 0379E19A1150976474CA5F4E
includeInIndex
1
@@ -293,27 +314,20 @@
lastKnownFileType
sourcecode.c.objc
name
- EXPMatchers+notify.m
+ MKTStubbedInvocationMatcher.m
path
- src/matchers/EXPMatchers+notify.m
+ Source/OCMockito/MKTStubbedInvocationMatcher.m
sourceTree
<group>
- 03D8EFF55BAC2AF6D1D8B114
+ 038A9266CE8B5DF24C89A480
- children
-
- A73CD549550A4BA77B070503
- 07B869EE55BE14EE0486CAFC
-
+ fileRef
+ DFF8E7F66E786A7648DEC9C0
isa
- PBXGroup
- name
- no-arc
- sourceTree
- <group>
+ PBXBuildFile
- 0439140F9A659D0829F28C9E
+ 03A9C020468ACE04DF06AFC4
includeInIndex
1
@@ -322,40 +336,47 @@
lastKnownFileType
sourcecode.c.objc
name
- TyphoonDefinitionRegisterer.m
+ MKTBaseMockObject.m
path
- Source/Factory/TyphoonDefinitionRegisterer.m
+ Source/OCMockito/MKTBaseMockObject.m
sourceTree
<group>
- 046CC279AA99874076CE7EE6
+ 03AD06C4FD726845364A8418
fileRef
- E6C06B821967E71CA7C9DFEF
+ 9B13DDD7C1311DD2A0E76F27
isa
PBXBuildFile
settings
COMPILER_FLAGS
- -fobjc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+ -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
- 0480792656D2B6C68B4D43C4
+ 03CAFA9991313A12C3754900
+
+ fileRef
+ 79160473A2DA52ADB311BBD9
+ isa
+ PBXBuildFile
+
+ 043504D4F259A0F6A54B99B0
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.h
+ sourcecode.c.objc
name
- TyphoonComponentsPool.h
+ MKTPointerArgumentGetter.m
path
- Source/Factory/Pool/TyphoonComponentsPool.h
+ Source/OCMockito/Helpers/ArgumentGetters/MKTPointerArgumentGetter.m
sourceTree
<group>
- 05152266727FA4BFE9F51012
+ 047D0E4D919E091B46146EBF
includeInIndex
1
@@ -363,110 +384,106 @@
PBXFileReference
lastKnownFileType
sourcecode.c.objc
- name
- HCIsCollectionOnlyContaining.m
path
- Source/Library/Collection/HCIsCollectionOnlyContaining.m
+ UIView+Position.m
sourceTree
<group>
- 052B8FB715C844F1466B1DF8
+ 04CC8E94CABE44BB535CE9B5
- fileRef
- C54614DBD9830585544D0F23
isa
- PBXBuildFile
+ PBXTargetDependency
+ name
+ Pods-PocketForecast-CKUITools
+ target
+ 3E763831D9EE3703733E7770
+ targetProxy
+ 8626FB981029797D680DFF14
- 055977124E726C96958F4680
+ 04D145DFEF56E4D428C15BFB
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- text.script.sh
+ sourcecode.c.h
+ name
+ MKTAnswer.h
path
- Pods-PocketForecast-resources.sh
+ Source/OCMockito/MKTAnswer.h
sourceTree
<group>
- 055BE18E50BC2A6AF73148B7
+ 054B6A50EB3842CDD704E585
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.objc
+ sourcecode.c.h
name
- HCReturnTypeHandlerChain.m
+ PaperFoldView.h
path
- Source/Core/Helpers/ReturnValueGetters/HCReturnTypeHandlerChain.m
+ PaperFold/PaperFold/PaperFold/PaperFoldView.h
sourceTree
<group>
- 056CADFBBF0F2420D638326C
+ 055A5984E0F074BC863B8BA9
fileRef
- CF086F580D11EFD74E0C054A
+ ECFB905EFA574B333A328BF3
isa
PBXBuildFile
- settings
-
- COMPILER_FLAGS
- -fobjc-arc -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
-
-
- 05967509E61FB14DF441C484
-
- includeInIndex
- 1
- isa
- PBXFileReference
- lastKnownFileType
- sourcecode.c.objc
- name
- TyphoonAssemblyPropertyInjectionPostProcessor.m
- path
- Source/Factory/Block/TyphoonAssemblyPropertyInjectionPostProcessor.m
- sourceTree
- <group>
- 05CB028A5A1007FB28B9C0F0
+ 056129FFF1769264814D68C7
fileRef
- 75C90320FFD5E0886237B4C0
+ 354746B950B20439E8992FC8
isa
PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
- 05E7CE1A6230EE2739FEEC11
+ 0569CE48F1C981ACA6B3B9AA
fileRef
- 805971D8EB3C14C8D54EE883
+ 794E8EF3964AD20B9BF29BB4
isa
PBXBuildFile
settings
COMPILER_FLAGS
- -fobjc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+ -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
- 06369952B5A0CE6A7A45D67A
+ 05718A8FD327B0ABEFBF3CC7
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.objc
+ sourcecode.c.h
name
- NSInvocation+TCFUnwrapValues.m
+ EXPMatchers+beInTheRangeOf.h
path
- Source/Factory/Internal/NSInvocation+TCFUnwrapValues.m
+ src/matchers/EXPMatchers+beInTheRangeOf.h
sourceTree
<group>
- 064744FD5A78C86AF17EE5B6
+ 0591D444E40A964337722F1F
+
+ fileRef
+ F65FAE9CB07B5D85A5F240F1
+ isa
+ PBXBuildFile
+
+ 059B3564A432EFE5660823F8
includeInIndex
1
@@ -475,13 +492,13 @@
lastKnownFileType
sourcecode.c.h
name
- MKTBlockArgumentGetter.h
+ TyphoonFactoryDefinition.h
path
- Source/OCMockito/Helpers/ArgumentGetters/MKTBlockArgumentGetter.h
+ Source/Definition/Internal/TyphoonFactoryDefinition.h
sourceTree
<group>
- 0661A8CD49660D17A9D23642
+ 05ABA63880A62017C4A1A8EC
includeInIndex
1
@@ -490,13 +507,13 @@
lastKnownFileType
sourcecode.c.objc
name
- EXPMatchers+beLessThanOrEqualTo.m
+ TyphoonAssemblyAdviser.m
path
- src/matchers/EXPMatchers+beLessThanOrEqualTo.m
+ Source/Factory/Block/TyphoonAssemblyAdviser.m
sourceTree
<group>
- 066D45E402FD9F4620D8A317
+ 05DCB349D0F42A7AFDFD58EF
includeInIndex
1
@@ -504,14 +521,12 @@
PBXFileReference
lastKnownFileType
sourcecode.c.h
- name
- MKTFloatReturnSetter.h
path
- Source/OCMockito/Helpers/ReturnValueSetters/MKTFloatReturnSetter.h
+ UIView+Position.h
sourceTree
<group>
- 067E823597507BA4379690B4
+ 05E2D6F2376A1DE7BB09A7D4
includeInIndex
1
@@ -520,127 +535,88 @@
lastKnownFileType
sourcecode.c.objc
name
- TyphoonAssemblyDefinitionBuilder.m
+ NSDictionary+CustomInjection.m
path
- Source/Factory/Block/TyphoonAssemblyDefinitionBuilder.m
+ Source/Definition/Internal/NSDictionary+CustomInjection.m
sourceTree
<group>
- 0697C360C7637FA8CE695A11
+ 05FC5EAE4684C874ED13460F
+
+ fileRef
+ 291F4B952A1CFFFD1021775F
+ isa
+ PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
+
+ 068F3BF3E80C6C8A5F6AE24D
fileRef
- 03114AE263EA23529C5B7679
+ C5FEDC89B366FCBCD9FDF0C8
isa
PBXBuildFile
settings
COMPILER_FLAGS
- -fobjc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+ -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
- 06CC2BE604ED59B3CE26ACA5
+ 06C175668D6482182E7B993E
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.h
- name
- TyphoonOptionMatcher.h
- path
- Source/Configuration/DefinitionOptionConfiguration/Matcher/TyphoonOptionMatcher.h
- sourceTree
- <group>
-
- 06D9C10A9BABE580C5128C47
-
- includeInIndex
- 1
- isa
- PBXFileReference
- lastKnownFileType
- sourcecode.c.objc
- name
- NSValue+TCFUnwrapValues.m
- path
- Source/Factory/Internal/NSValue+TCFUnwrapValues.m
- sourceTree
- <group>
-
- 070493FF9CFEEDB837BCA6D3
-
- includeInIndex
- 1
- isa
- PBXFileReference
- lastKnownFileType
- sourcecode.c.h
- name
- MKTStubbedInvocationMatcher.h
+ text.xcconfig
path
- Source/OCMockito/MKTStubbedInvocationMatcher.h
+ Pods-PocketForecast-PaperFold-Private.xcconfig
sourceTree
<group>
- 072712CCF7ADB23624093BA8
+ 06CBDFC54EFC2A38177C23C5
fileRef
- 1E51CF6BB795090FF12A581A
+ FB849AD7B3E47DC26E89D461
isa
PBXBuildFile
settings
COMPILER_FLAGS
- -fobjc-arc -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+ -fno-objc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
- 076ADF5459468D43798FF135
+ 07102679E47B2FE920D1F4B5
- includeInIndex
- 1
+ fileRef
+ ABA459D283DF6D9A19A6138E
isa
- PBXFileReference
- lastKnownFileType
- sourcecode.c.h
- name
- HCIsInstanceOf.h
- path
- Source/Library/Object/HCIsInstanceOf.h
- sourceTree
- <group>
+ PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
- 077DC96EAE130E5B44C124AB
+ 07A39B4231B5FFB410A58A7C
children
- 39E7534835E6CE8A4E4C33EC
- 0AA946E93309A43DF2F3474A
- 1371B7AECDF05F428C11A7B3
- 9E882DFDADC0F59722AB97F2
- 654C74C6D789867E0990530E
- BA7EEF024786D7059B4A775C
- 2DA253962C782B260832F37A
- 02A67CAEE2471305CCEF3F1C
- 258F6D8BBD6EB8E36A4855E4
- 27323D5D76F10955193670F3
- 8C59AACA68267104622E7A95
- 9AFE0091F8FBC7DCD1845DE9
- BCF9773DC7EB95D7642B8CB3
- A8B6D1F4CD94EB2C12B607EC
- 197B974F55E4B5A6CB54F72E
- 1FA4F4E228DD6EE7DA9F9699
+ 4511F6C7FEA60CC5B579FE24
+ E539C46D2007BCBE4869B97E
isa
PBXGroup
name
- CKUITools
- path
- CKUITools
+ Targets Support Files
sourceTree
<group>
- 07A14C28B9AAE8D5A2D7D1E8
+ 07FC81C41C3AD46E5416FB93
includeInIndex
1
@@ -648,59 +624,43 @@
PBXFileReference
lastKnownFileType
sourcecode.c.h
- name
- TyphoonConfigPostProcessor.h
path
- Source/Configuration/ConfigPostProcessor/TyphoonConfigPostProcessor.h
+ ICLoader.h
sourceTree
<group>
- 07B869EE55BE14EE0486CAFC
+ 0853C9781E195A783CF1CA48
- includeInIndex
- 1
+ fileRef
+ B56A671F1DAA307C47E3D147
isa
- PBXFileReference
- lastKnownFileType
- sourcecode.c.objc
- name
- NSInvocation+TCFInstanceBuilder.m
- path
- Source/Factory/Internal/NSInvocation+TCFInstanceBuilder.m
- sourceTree
- <group>
+ PBXBuildFile
- 07DCB38EC8FFF8DF6529A357
+ 089D22E7729E667ABF00FFC1
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.objc
+ text
name
- MKTInvocationContainer.m
+ Podfile
path
- Source/OCMockito/MKTInvocationContainer.m
+ ../Podfile
sourceTree
- <group>
+ SOURCE_ROOT
+ xcLanguageSpecificationIdentifier
+ xcode.lang.ruby
- 0815E5742B6AF6C32596FACB
+ 08B3F5A1002660D4B3006969
- includeInIndex
- 1
+ fileRef
+ 8A3276CDB2A2670EA4E2908B
isa
- PBXFileReference
- lastKnownFileType
- sourcecode.c.h
- name
- EXPMatchers+beLessThan.h
- path
- src/matchers/EXPMatchers+beLessThan.h
- sourceTree
- <group>
+ PBXBuildFile
- 082F2B644DD82F872E20BF1D
+ 092797605D78B365FE24F614
includeInIndex
1
@@ -709,28 +669,59 @@
lastKnownFileType
sourcecode.c.objc
name
- TyphoonSwizzler.m
+ TyphoonInjectionContext.m
path
- Source/Utils/Swizzle/TyphoonSwizzler.m
+ Source/Definition/Injections/TyphoonInjectionContext.m
sourceTree
<group>
- 0854E4C976D504425ADA9F1A
+ 094326FAFD576AAFDCE8B8E6
+
+ fileRef
+ 65C7B399536EB4AE18B34E8B
+ isa
+ PBXBuildFile
+
+ 094357DF292197150F92EA6A
+
+ fileRef
+ 34306B68C66D8FEC3760180A
+ isa
+ PBXBuildFile
+
+ 09E6A73A74420C6CF1AEDA98
+
+ fileRef
+ 212E450E48D539EECBF74498
+ isa
+ PBXBuildFile
+
+ 09F1A18F08F8B507B17C2282
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.objc
- name
- MKTIntArgumentGetter.m
+ text.xcconfig
path
- Source/OCMockito/Helpers/ArgumentGetters/MKTIntArgumentGetter.m
+ Pods-PocketForecast-NGAParallaxMotion.xcconfig
sourceTree
<group>
- 08AB8F55BD07C68A246B5C77
+ 0A3117A8BF94FD998A6148B3
+
+ fileRef
+ 784F6DD6044561272E022D22
+ isa
+ PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
+
+ 0A3E5B6D32501DECF6EFC23E
includeInIndex
1
@@ -739,77 +730,76 @@
lastKnownFileType
sourcecode.c.h
name
- HCIsNot.h
+ HCDescribedAs.h
path
- Source/Library/Logical/HCIsNot.h
+ Source/Library/Decorator/HCDescribedAs.h
sourceTree
<group>
- 08C6B699734D2C03C49818B8
+ 0A3F61249200307DC62F6C80
+
+ fileRef
+ 4FD311B391E1266CC6B9E3E5
+ isa
+ PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
+
+ 0AD46997A7CF6BF4A850C2BC
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.objc
+ sourcecode.c.h
name
- MKTLongArgumentGetter.m
+ TyphoonInjectedObject.h
path
- Source/OCMockito/Helpers/ArgumentGetters/MKTLongArgumentGetter.m
+ Source/Definition/AutoInjection/TyphoonInjectedObject.h
sourceTree
<group>
- 08DC2C5453B05946BC10013C
-
- containerPortal
- 66C2EBDD522B033360138729
- isa
- PBXContainerItemProxy
- proxyType
- 1
- remoteGlobalIDString
- 27CAA3B59D184B739958E85E
- remoteInfo
- Pods-PocketForecastTests-OCMockito
-
- 09232301800F111331FEB008
+ 0AD8B83C86C8474334E8696E
fileRef
- C2189F828E34765D52520505
+ 6EC768565DC0114A9D802A68
isa
PBXBuildFile
settings
COMPILER_FLAGS
- -fobjc-arc -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+ -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
- 095EB9046BD26237F2CD34D3
+ 0AFFA05D4F30A1864ED14C12
fileRef
- 36FE9723E34F26B3E11B55CF
+ C872D50FDBF73929EC2EF809
isa
PBXBuildFile
settings
COMPILER_FLAGS
- -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+ -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
- 0968AA9E683E941A8F628AC2
+ 0B550DB43C24C0A9B054F6FC
fileRef
- 2C75687E3CD72AA3F8D784FC
+ E5E12DE2A9A62B122430B968
isa
PBXBuildFile
settings
COMPILER_FLAGS
- -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+ -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
- 09D61011F563A3185025D7CC
+ 0B9481EDF4709AA6EF24A8E1
includeInIndex
1
@@ -818,77 +808,57 @@
lastKnownFileType
sourcecode.c.h
name
- MKTFloatArgumentGetter.h
+ MKTExecutesBlock.h
path
- Source/OCMockito/Helpers/ArgumentGetters/MKTFloatArgumentGetter.h
+ Source/OCMockito/MKTExecutesBlock.h
sourceTree
<group>
- 0A1BAEE50D26A14B637F4EBB
+ 0BBFEF10CF6BE075FD318CC4
fileRef
- 22C9671A123756B4C3493077
+ 5076C99B3FE3CBDDA4B970AF
isa
PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
- 0A39DC45A3D685AE9B2FD314
-
- buildConfigurationList
- 3CD8B4480D5C37E665F600A8
- buildPhases
-
- 240335F82368EC977F428499
- DA90323C57AA8B6B61FA34B6
-
- buildRules
-
- dependencies
-
- 1B55E2F1258972A06AEC950A
- 7E97716916B027419FCBED6E
- 8AC00BDFAE63841750106549
- 8BBD0DA6726174D54E0D91E3
- 8C6F7EEBD138DD23ADE826A5
- F32C6594A8FAD904E816F44A
- 7F1324F52D9F5843C7273D09
-
- isa
- PBXNativeTarget
- name
- Pods-PocketForecast
- productName
- Pods-PocketForecast
- productReference
- ED9A36E13AA31F231AD6C37B
- productType
- com.apple.product-type.library.static
-
- 0AA946E93309A43DF2F3474A
+ 0C020CA7A4AA622F05CB59E4
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.objc
+ text.script.sh
path
- CALayer+Image.m
+ Pods-PocketForecast-resources.sh
sourceTree
<group>
- 0ACF2A22ED83793FE307436F
+ 0C0CF7D66E66263B8CD94BCD
fileRef
- 687EE57C06F92C6A6C957CB6
+ E390C2BEA70FB9D07E977433
isa
PBXBuildFile
settings
COMPILER_FLAGS
- -fobjc-arc -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+ -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
- 0AE9E6C7C75C971FCED5EDB1
+ 0C3D846B8F33AC59E04C8B68
+
+ fileRef
+ 25081C6D63B640FFC3D889C9
+ isa
+ PBXBuildFile
+
+ 0C7C2103EF761103D3FE3D99
includeInIndex
1
@@ -897,185 +867,121 @@
lastKnownFileType
sourcecode.c.objc
name
- MKTUnsignedLongArgumentGetter.m
+ EXPMatchers+equal.m
path
- Source/OCMockito/Helpers/ArgumentGetters/MKTUnsignedLongArgumentGetter.m
+ src/matchers/EXPMatchers+equal.m
sourceTree
<group>
- 0B05431C8B3BB7F2B1AA395F
+ 0CCBC143A0E8457C77DE0A60
+
+ fileRef
+ 6DA56E2C3D39FF9D4896F4CE
+ isa
+ PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
+
+ 0CDBF8245E0D716870F1A3C3
fileRef
- 1C66835F4D84BB1920FFEAAB
+ F16FC51ACEB508F495FAAD9E
isa
PBXBuildFile
settings
COMPILER_FLAGS
- -fobjc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+ -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
- 0B06DE6621919A97059807A0
+ 0D5DE34379288561FF956418
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.objc
+ sourcecode.c.h
+ name
+ HCStringContains.h
path
- Pods-PocketForecast-CKUITools-dummy.m
+ Source/Library/Text/HCStringContains.h
sourceTree
<group>
- 0B65A4D6AAB62C2B676D2B27
-
- buildActionMask
- 2147483647
- files
-
- 72CCC89305343043D7C96E26
-
- isa
- PBXSourcesBuildPhase
- runOnlyForDeploymentPostprocessing
- 0
-
- 0B743D2222BF987F83FEB968
+ 0D972C1C591577461C97F17F
fileRef
- 73051BF45DC397AB0DD460E2
+ 6721F1BA22BB2CD27F68B6FD
isa
PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
- 0B825B9753CFBA01195E9F42
+ 0D975F2FED845CBD8FD47786
- buildActionMask
- 2147483647
- files
-
- 5BAD96021AEBA1725E84CB5D
- AA85D7CA9CF8679E4C2E33A3
- 76175E0A291C5B641128C4C5
- 37234012CAD4186C87E440D9
- 5C9823E838C4A203F7B9E872
- FF3CA988B5B1BA86FB5419CF
- 5DD67D7D0E0A44D8D135A239
- 9FF775C16817AD9CE2996451
- 9F600815320D37BC0C21012A
- 27C23D87CD08BA288667AE5D
- E07C707DECEDFE9A1E16B51B
- 7D96E0227608694A1659F3E9
- ACBC6C20CF9502D56519DBAB
- 7B688CCECDE068D7C303B2C5
- 9AF585D2DC3C876EC0067479
- A72924F34DBAACCF6D1FA1E8
- D0DAF051702FD6E42EBC92B2
- 35F16287C35DD1A143CE0261
- 55637B4FF5B8A3E3B2FAC5BB
- B8BF3D8D3E6179DD713B14D2
- 473C866AF93804A09E4F0046
- 108F5EDB7EF9B0B48E9E9B06
- CF0F7C05C9403D8C543F9F16
- 5FF64970E0C7BC5DB2D68869
- 4613FC232C80102BF80F48AD
- 459AB0F2F046AEA7CCB2C4EB
- 5A6E9BB34DDEFBAE26FA3D3E
- 4E6EBDAF69415D4A98C5CA57
- F600F29FA33539AE823988B4
- EDE498992A61B3041F19E363
- D9BBAB00C4D743A19E265E75
- 2391D85AC354E9777E5A3E3C
- 8C3715D8E515DFEC7B184F3D
- EDFE1D06F55183C1072CB40B
- D7F8012954E7BB72AACC0FED
- F5F550A0D92006959E7DCF86
- C77B6544CF0C6C44D21E248C
- 3208EB7C5D920305AB991EF2
- 758BA99E3E9E98EB93849648
- BFA237BC74E18D0CE1B10777
- 2F641272C2B15CEEB5BD4C3C
- CE6BC93F5030A10B87E5C25A
- 7196E2088051BA1BABC3BE47
- B67E131E147131B734CE7778
- 77AC8B95C0EB7FE0D720E949
- BEBF99191F90229BCE513116
- C87C0942CD078C26D2356A67
- 87675DE10FE5AC1172A761CF
- F1322611AD15F038605EDC8E
- 36D8301E18FFFE3A36AF5159
- AD9D3A4B889E287D2BF79655
- 93B9B5A69AE7C760178A504C
- B84FAB252E9D3BADF28C92D8
- 18A9F7FF68D913F9E39C00AB
- 849535F53908DB8E5A258395
- C9E7578895713D8592F4EF1D
- C6BE253DEB0F251A754BA776
- C2DA5A4524C82066B8A7BB2C
- 2A0CA147C015BA64B62715F4
- F32A4DCDA77997A4C4D6D40B
- EB4006B04090DD73362D03D2
-
+ fileRef
+ CDCFB898275F2B233DAF6F13
isa
- PBXHeadersBuildPhase
- runOnlyForDeploymentPostprocessing
- 0
+ PBXBuildFile
- 0BA826B689E5D2BADD0674B7
+ 0DA2BD7AE36E623A87ED4287
- buildActionMask
- 2147483647
- files
-
- 67CA967F6554846C0A0A2E99
- 6775A48246E18B52124DD335
-
+ fileRef
+ B3A202A14C18239A98009983
isa
- PBXSourcesBuildPhase
- runOnlyForDeploymentPostprocessing
- 0
+ PBXBuildFile
- 0BAD89EAC488FCA407BF7071
+ 0DA80A45E02A2836CAD31F5D
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.objc
- name
- HCCollect.m
+ text
path
- Source/Core/Helpers/HCCollect.m
+ Pods-PocketForecastTests-acknowledgements.markdown
sourceTree
<group>
- 0CD72BF7CF545D337E8D0069
+ 0DAE51CFD1D7B73A27BC4A19
- fileRef
- 5D9FAA4EFAB1BB1B0400D668
+ includeInIndex
+ 1
isa
- PBXBuildFile
+ PBXFileReference
+ lastKnownFileType
+ sourcecode.c.objc
+ name
+ HCStringStartsWith.m
+ path
+ Source/Library/Text/HCStringStartsWith.m
+ sourceTree
+ <group>
- 0CEC62574D9EEB6452371076
+ 0DBB9CE06B3A9F93B66178AF
- children
-
- B50FE5DCC240FFF53B04EFA1
- 7E4011DD6EBADA2954F525DF
- D5DDDCBD64E2D386F964294A
- 4008A81E7AF9554ACA22074E
-
+ includeInIndex
+ 1
isa
- PBXGroup
+ PBXFileReference
+ lastKnownFileType
+ sourcecode.c.objc
name
- Support Files
+ EXPBackwardCompatibility.m
path
- ../Target Support Files/Pods-PocketForecast-Typhoon
+ src/EXPBackwardCompatibility.m
sourceTree
<group>
- 0D256D74CB518A5B2C7F285A
+ 0DD17658B34D1D8866FB09D3
includeInIndex
1
@@ -1084,13 +990,28 @@
lastKnownFileType
sourcecode.c.h
name
- HCAnyOf.h
+ MKTIntArgumentGetter.h
path
- Source/Library/Logical/HCAnyOf.h
+ Source/OCMockito/Helpers/ArgumentGetters/MKTIntArgumentGetter.h
+ sourceTree
+ <group>
+
+ 0E03FAB272FF3B1F4F32B789
+
+ includeInIndex
+ 1
+ isa
+ PBXFileReference
+ lastKnownFileType
+ sourcecode.c.objc
+ name
+ HCIsEmptyCollection.m
+ path
+ Source/Library/Collection/HCIsEmptyCollection.m
sourceTree
<group>
- 0D2FAD37C77F448121F7DA2B
+ 0E4CEBB953FFA15569EB4336
includeInIndex
1
@@ -1099,39 +1020,72 @@
lastKnownFileType
sourcecode.c.h
name
- MKTPointerArgumentGetter.h
+ NSNullTypeConverter.h
path
- Source/OCMockito/Helpers/ArgumentGetters/MKTPointerArgumentGetter.h
+ Source/TypeConversion/Converters/NSNullTypeConverter.h
sourceTree
<group>
- 0D778D2CAB50D32ADCECBFF0
+ 0E63819B2E6B2DC8D517500D
fileRef
- B9BF4005A6D2F2B1B5733B3E
+ AC164DBA5F03BB3EDAF39D41
isa
PBXBuildFile
settings
COMPILER_FLAGS
- -fobjc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+ -fno-objc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
- 0DF36A18DA24AAC2E4A8BE12
+ 0E8703CA92FF5F4B5F506228
+
+ includeInIndex
+ 1
+ isa
+ PBXFileReference
+ lastKnownFileType
+ sourcecode.c.objc
+ name
+ MKTDoubleArgumentGetter.m
+ path
+ Source/OCMockito/Helpers/ArgumentGetters/MKTDoubleArgumentGetter.m
+ sourceTree
+ <group>
+
+ 0EDED61A688615B607E2C2C9
+
+ containerPortal
+ 94AF5A4F363AA9649B0CD69F
+ isa
+ PBXContainerItemProxy
+ proxyType
+ 1
+ remoteGlobalIDString
+ 8421D127EBCD885E2968409F
+ remoteInfo
+ Pods-PocketForecastTests-OCMockito
+
+ 0F57A173B0D16EC1CC4B8DB4
fileRef
- 98AE3248317BA42D04F24A01
+ E580A3A42E40E6168B354485
isa
PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -fno-objc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
- 0E0C452CEC278791523A0154
+ 0FBBFEE0DB948E326DFFFC0E
fileRef
- 7F8FE144EF3E051077997C03
+ 9D3CE6DF146D5BF79F3B7A60
isa
PBXBuildFile
- 0E2350AFB3C1D5AF09EF5294
+ 0FC8956BA38FAD31A4E69D8F
includeInIndex
1
@@ -1140,26 +1094,40 @@
lastKnownFileType
sourcecode.c.objc
name
- MKTUnsignedLongReturnSetter.m
+ TyphoonDefinition+Option.m
path
- Source/OCMockito/Helpers/ReturnValueSetters/MKTUnsignedLongReturnSetter.m
+ Source/Configuration/DefinitionOptionConfiguration/TyphoonDefinition+Option.m
sourceTree
<group>
- 0EA207DDB03AD50F49168010
+ 0FE1B159E1BDAA114823B8E1
+
+ fileRef
+ 3188A298D83BC914EEA0D5CA
+ isa
+ PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
+
+ 0FF21AB33CC0568E5970807F
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- text.xcconfig
+ sourcecode.c.h
+ name
+ MKTArgumentCaptor.h
path
- Pods-PocketForecast-NGAParallaxMotion-Private.xcconfig
+ Source/OCMockito/MKTArgumentCaptor.h
sourceTree
<group>
- 0EAE3520D7A46854DA0043C1
+ 106725C3E92FE820374F7593
includeInIndex
1
@@ -1168,13 +1136,13 @@
lastKnownFileType
sourcecode.c.h
name
- EXPMatcher.h
+ NSArray+TyphoonManualEnumeration.h
path
- src/EXPMatcher.h
+ Source/Utils/NSArray+TyphoonManualEnumeration.h
sourceTree
<group>
- 0EBE04C0EC1DD2D8657BA377
+ 10A042DABC1D7F4118BF97F8
includeInIndex
1
@@ -1183,13 +1151,13 @@
lastKnownFileType
sourcecode.c.h
name
- MKTShortArgumentGetter.h
+ HCLongReturnGetter.h
path
- Source/OCMockito/Helpers/ArgumentGetters/MKTShortArgumentGetter.h
+ Source/Core/Helpers/ReturnValueGetters/HCLongReturnGetter.h
sourceTree
<group>
- 0F47D1747139DA41C6062493
+ 10A17C3FBB2B55F9F5E895DA
includeInIndex
1
@@ -1198,110 +1166,136 @@
lastKnownFileType
sourcecode.c.objc
name
- TyphoonPassThroughTypeConverter.m
+ MKTProtocolMock.m
path
- Source/TypeConversion/Converters/TyphoonPassThroughTypeConverter.m
+ Source/OCMockito/MKTProtocolMock.m
sourceTree
<group>
- 0F62C237E6934303608FE5EC
+ 10AF86AB215E5B84C37F0093
+
+ fileRef
+ 5B27D309110DF24FA0FEF7A0
+ isa
+ PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
+
+ 10DC0F3E3DEEB195B50C8305
+
+ fileRef
+ A21CE3C5DA435C7E9873F2F1
+ isa
+ PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -fno-objc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
+
+ 1143FE609B5DA42CC0FE545F
+
+ fileRef
+ 346131CC7F90C8F1D7F9B1FC
+ isa
+ PBXBuildFile
+
+ 1148DC701BC9C5833DCC3EDC
+
+ fileRef
+ E403ED8286A634DABD4D73E7
+ isa
+ PBXBuildFile
+
+ 114DAF9FFA6487DAF4AE11AA
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- text.xcconfig
+ text
path
- Pods-PocketForecast-OCLogTemplate.xcconfig
+ Pods-PocketForecast-acknowledgements.markdown
sourceTree
<group>
- 0F65D3C4C58B71C06CB53270
+ 11663CED373423A7B71BD2A2
- containerPortal
- 66C2EBDD522B033360138729
+ fileRef
+ C77F13014D3DB5649A9512A8
isa
- PBXContainerItemProxy
- proxyType
- 1
- remoteGlobalIDString
- 90174F22889E06FC9A35F810
- remoteInfo
- Pods-PocketForecast-CKUITools
+ PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
- 0FCB1C767DC4D995829B4629
+ 11CA1B01F14DFE874E3E2415
- includeInIndex
- 1
+ children
+
+ 764928930D8122024140104E
+ A11F731071D615EE80315C8A
+ 4644D09C0C2BDEFF70F79626
+ 1DC0D61E3B63DB78D38579B5
+ E7461CD5B1465654C1F6C728
+ 384CB0E667B682938155A387
+ 7699EB099160408585E56A5F
+ AEC87368E3E02940B641A542
+ FB6B4E2037C4D5DF17178D99
+ 7F00F06F73312F109E18335D
+
isa
- PBXFileReference
- lastKnownFileType
- sourcecode.c.h
+ PBXGroup
name
- TyphoonMethod.h
- path
- Source/Definition/Method/TyphoonMethod.h
+ Pods
sourceTree
<group>
- 0FE8171F2BBF4F40418B0C8F
+ 1214D8E2B5A6D40AF4C7C3CA
fileRef
- 8C300BB88EC1C828FEB3D20A
+ 2296F3F66674BE9327803727
isa
PBXBuildFile
settings
COMPILER_FLAGS
- -fobjc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+ -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
- 100AB61DD31DA7CEC64A9222
+ 122E05927114E4BE64AB3396
includeInIndex
1
isa
PBXFileReference
- lastKnownFileType
- sourcecode.c.h
name
- HCStringContains.h
+ swipe_guide_left@2x.png
path
- Source/Library/Text/HCStringContains.h
+ PaperFold/PaperFold/PaperFold/PaperFoldResources.bundle/swipe_guide_left@2x.png
sourceTree
<group>
- 100B76C09DAB42B2F96668CC
+ 12301405A0573E317933D8E9
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.objc
- name
- TyphoonTypeConverterRegistry.m
+ text.xcconfig
path
- Source/TypeConversion/TyphoonTypeConverterRegistry.m
+ Pods-PocketForecastTests-OCHamcrest-Private.xcconfig
sourceTree
<group>
- 1038956DE1A6023687C67BE9
-
- fileRef
- A39DD9FFF316AE942523AC21
- isa
- PBXBuildFile
-
- 1077DBFEEFB8D0574C5D616A
-
- fileRef
- BF48FD1A1FE8C32F48525EB7
- isa
- PBXBuildFile
-
- 1089FD861E66FCAFC04B7345
+ 12726689F72FDF8E237E6154
includeInIndex
1
@@ -1310,55 +1304,45 @@
lastKnownFileType
sourcecode.c.h
name
- EXPMatchers.h
+ MKTObjectReturnSetter.h
path
- src/matchers/EXPMatchers.h
+ Source/OCMockito/Helpers/ReturnValueSetters/MKTObjectReturnSetter.h
sourceTree
<group>
- 108F5EDB7EF9B0B48E9E9B06
+ 1279346EFFFCEA7E48404974
fileRef
- B88B44F3E47CDDD1AABE7DB9
+ C6DDA6FD1BF4FC9453561D1D
isa
PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
- 109B39831E295EB03F7E19A8
-
- includeInIndex
- 1
- isa
- PBXFileReference
- lastKnownFileType
- text.plist.xml
- path
- Pods-PocketForecast-acknowledgements.plist
- sourceTree
- <group>
-
- 10A4D3C357F3F71815059EA9
+ 127B78B2ED615485AB197F15
fileRef
- 1371B7AECDF05F428C11A7B3
+ DFF8E7F66E786A7648DEC9C0
isa
PBXBuildFile
- 10FDFE09CAC966C73296867A
+ 12E07ABFFD7E1238559A3C45
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.objc
- name
- MKTAtLeastTimes.m
+ text.plist.xml
path
- Source/OCMockito/MKTAtLeastTimes.m
+ Pods-PocketForecast-acknowledgements.plist
sourceTree
<group>
- 112261CBEED0CB5449BF5932
+ 12FFF084180C49535499161E
includeInIndex
1
@@ -1367,13 +1351,13 @@
lastKnownFileType
sourcecode.c.h
name
- TyphoonTypeDescriptor.h
+ MKT_TPDWeakProxy.h
path
- Source/TypeConversion/TyphoonTypeDescriptor.h
+ Source/ThirdParty/TPDWeakProxy-1.1.0/TPDWeakProxy/MKT_TPDWeakProxy.h
sourceTree
<group>
- 11405FFCA050C51449EF46B1
+ 139A7223A16BFDA373871224
includeInIndex
1
@@ -1382,13 +1366,13 @@
lastKnownFileType
sourcecode.c.h
name
- NSObject+Expecta.h
+ NSInvocation+TCFInstanceBuilder.h
path
- src/NSObject+Expecta.h
+ Source/Factory/Internal/NSInvocation+TCFInstanceBuilder.h
sourceTree
<group>
- 116FD4E2D84BA1956EB0F99B
+ 1404C10174837CC74A4F406A
includeInIndex
1
@@ -1397,13 +1381,13 @@
lastKnownFileType
sourcecode.c.objc
name
- MKTProtocolMock.m
+ NSURL+QueryDictionary.m
path
- Source/OCMockito/MKTProtocolMock.m
+ NSURL+QueryDictionary/NSURL+QueryDictionary.m
sourceTree
<group>
- 11D2060CC820502450A84726
+ 14C03EBD3FC4A3AA148B9636
includeInIndex
1
@@ -1412,88 +1396,66 @@
lastKnownFileType
sourcecode.c.objc
name
- HCIsEqualIgnoringWhiteSpace.m
+ EXPMatchers+beNil.m
path
- Source/Library/Text/HCIsEqualIgnoringWhiteSpace.m
+ src/matchers/EXPMatchers+beNil.m
sourceTree
<group>
- 1201075091882EF7A552237B
+ 14C50AD87E1BD884AED485FF
- includeInIndex
- 1
+ fileRef
+ DFF8E7F66E786A7648DEC9C0
isa
- PBXFileReference
- lastKnownFileType
- text.xcconfig
- path
- Pods-PocketForecastTests-OCMockito.xcconfig
- sourceTree
- <group>
+ PBXBuildFile
- 122C34A48F8F056048E86A06
+ 1529F94D529ECCE6CDD091EE
fileRef
- 112261CBEED0CB5449BF5932
+ 6426AAF03C8059150F445047
isa
PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
- 1230E0170E0CD497214CF1F7
+ 15347842681CC0AFD6E100B2
fileRef
- 9BBD6F1FA2AC80A083157E7F
+ 1404C10174837CC74A4F406A
isa
PBXBuildFile
settings
COMPILER_FLAGS
- -fobjc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+ -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
- 124A4EE0AA403A20FEBD1980
+ 1556606BBA9BD5B0D74990D6
- includeInIndex
- 1
+ fileRef
+ 5CA15DE718414805441A2842
isa
- PBXFileReference
- lastKnownFileType
- sourcecode.c.objc
- name
- Collections+CustomInjection.m
- path
- Source/Definition/Internal/Collections+CustomInjection.m
- sourceTree
- <group>
-
- 1272D25265C49C7493E0BF1E
-
- containerPortal
- 66C2EBDD522B033360138729
- isa
- PBXContainerItemProxy
- proxyType
- 1
- remoteGlobalIDString
- 588DD2A7E5D597C657926E83
- remoteInfo
- Pods-PocketForecast-OCLogTemplate
+ PBXBuildFile
- 1278815722298C801F226544
+ 15F285883E525C7BA8B359EA
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.h
+ sourcecode.c.objc
name
- HCIsDictionaryContainingValue.h
+ HCIsEqual.m
path
- Source/Library/Collection/HCIsDictionaryContainingValue.h
+ Source/Library/Object/HCIsEqual.m
sourceTree
<group>
- 127A585EAE7E5F75D645F001
+ 1609EC09DE70CD1BF77431FC
includeInIndex
1
@@ -1502,87 +1464,121 @@
lastKnownFileType
sourcecode.c.objc
name
- TyphoonDefinition+Option.m
+ TyphoonPassThroughTypeConverter.m
path
- Source/Configuration/DefinitionOptionConfiguration/TyphoonDefinition+Option.m
+ Source/TypeConversion/Converters/TyphoonPassThroughTypeConverter.m
+ sourceTree
+ <group>
+
+ 1650260F5C9910622AF8E54A
+
+ children
+
+ 089D22E7729E667ABF00FFC1
+ A189AD3A42E5C7BCBD000D2C
+ 11CA1B01F14DFE874E3E2415
+ 22189BBABE17FF1386FFC866
+ 07A39B4231B5FFB410A58A7C
+
+ isa
+ PBXGroup
sourceTree
<group>
- 12947A08F3A313F70E6AA361
+ 16610DAF0E2A55F29797BF4E
+
+ fileRef
+ 31DB322E70A3E2FF7FF417A3
+ isa
+ PBXBuildFile
+
+ 1669396AA05D1985F406511E
fileRef
- AE710A9529A10DAFAE53C566
+ F0B7135D20F4EADB7E2A99C1
isa
PBXBuildFile
settings
COMPILER_FLAGS
- -fobjc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+ -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
- 12BF774FD1AEC31FB828AF8E
+ 169D1C33E6ECDABF5A3C8A6D
+
+ fileRef
+ 0D5DE34379288561FF956418
+ isa
+ PBXBuildFile
+
+ 16D407F8DE1EA1AC0D9C842B
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.h
+ sourcecode.c.objc
name
- TyphoonInjectionByCurrentRuntimeArguments.h
+ HCUnsignedIntReturnGetter.m
path
- Source/Definition/Injections/TyphoonInjectionByCurrentRuntimeArguments.h
+ Source/Core/Helpers/ReturnValueGetters/HCUnsignedIntReturnGetter.m
+ sourceTree
+ <group>
+
+ 1708A1C0F17AFF178A22022A
+
+ includeInIndex
+ 1
+ isa
+ PBXFileReference
+ lastKnownFileType
+ sourcecode.c.objc
+ name
+ HCHasProperty.m
+ path
+ Source/Library/Object/HCHasProperty.m
sourceTree
<group>
- 12F8A9A163F09A77E334C6EA
+ 1739650EEFBC4D8BDDABA413
fileRef
- 076ADF5459468D43798FF135
+ 90E0953E838F212DFBABCCEE
isa
PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
- 132C5A4F6375AD09ADB02E07
+ 178A3F51C26C85F690FD6576
- buildConfigurationList
- 42B586287668999EF237B44B
- buildPhases
-
- 0BA826B689E5D2BADD0674B7
- B8716BD4FCEB4879C7B16B42
- 4C314A5F5A3AE3854C5FEA00
-
- buildRules
-
- dependencies
-
- 1CA0004659108BE6AE29A02F
-
+ fileRef
+ 3F3853F476E94BA7BAD77C04
isa
- PBXNativeTarget
- name
- Pods-PocketForecast-ICLoader
- productName
- Pods-PocketForecast-ICLoader
- productReference
- 6A5D83B29099C80D4C5A521E
- productType
- com.apple.product-type.library.static
+ PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
- 1371B7AECDF05F428C11A7B3
+ 17C8CEDD5CD81F92A4A17B88
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.h
+ text.xcconfig
path
- CKUITools.h
+ Pods-PocketForecast-CKUITools-Private.xcconfig
sourceTree
<group>
- 138030DACAEEEDE0E984DA9B
+ 17DE9150E15B2E4426ACD256
includeInIndex
1
@@ -1591,13 +1587,13 @@
lastKnownFileType
sourcecode.c.h
name
- TyphoonNSURLTypeConverter.h
+ HCReturnTypeHandlerChain.h
path
- Source/TypeConversion/Converters/TyphoonNSURLTypeConverter.h
+ Source/Core/Helpers/ReturnValueGetters/HCReturnTypeHandlerChain.h
sourceTree
<group>
- 13CACD65F3ED5434AFF3E5B0
+ 17FFCF5565E8E33C13964C53
includeInIndex
1
@@ -1606,179 +1602,256 @@
lastKnownFileType
sourcecode.c.objc
name
- MKTBaseMockObject.m
+ TyphoonStoryboard.m
path
- Source/OCMockito/MKTBaseMockObject.m
+ Source/ios/Storyboard/TyphoonStoryboard.m
sourceTree
<group>
- 13DD25621A7CF13FA27F8E81
+ 18171E91389C6974D5AFEFDE
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.h
+ sourcecode.c.objc
name
- EXPMatchers+beSubclassOf.h
+ HCShortReturnGetter.m
path
- src/matchers/EXPMatchers+beSubclassOf.h
+ Source/Core/Helpers/ReturnValueGetters/HCShortReturnGetter.m
sourceTree
<group>
- 1411E9EB86FFAEEEEA318AD9
+ 185D8CF25C16E71BD005D735
- includeInIndex
- 1
+ baseConfigurationReference
+ 78EE0A4E105DCD26DDDC7065
+ buildSettings
+
+ ALWAYS_SEARCH_USER_PATHS
+ NO
+ COPY_PHASE_STRIP
+ NO
+ DSTROOT
+ /tmp/xcodeproj.dst
+ GCC_DYNAMIC_NO_PIC
+ NO
+ GCC_OPTIMIZATION_LEVEL
+ 0
+ GCC_PRECOMPILE_PREFIX_HEADER
+ YES
+ GCC_PREFIX_HEADER
+ Target Support Files/Pods-PocketForecastTests-Expecta/Pods-PocketForecastTests-Expecta-prefix.pch
+ GCC_PREPROCESSOR_DEFINITIONS
+
+ DEBUG=1
+ $(inherited)
+
+ GCC_SYMBOLS_PRIVATE_EXTERN
+ NO
+ INSTALL_PATH
+ $(BUILT_PRODUCTS_DIR)
+ IPHONEOS_DEPLOYMENT_TARGET
+ 7.0
+ OTHER_LDFLAGS
+
+ OTHER_LIBTOOLFLAGS
+
+ PRODUCT_NAME
+ $(TARGET_NAME)
+ PUBLIC_HEADERS_FOLDER_PATH
+ $(TARGET_NAME)
+ SDKROOT
+ iphoneos
+ SKIP_INSTALL
+ YES
+
isa
- PBXFileReference
- lastKnownFileType
- sourcecode.c.h
+ XCBuildConfiguration
name
- MKTUnsignedLongLongArgumentGetter.h
- path
- Source/OCMockito/Helpers/ArgumentGetters/MKTUnsignedLongLongArgumentGetter.h
- sourceTree
- <group>
+ Debug
+
+ 18AB275318A45AB7799760CA
+
+ containerPortal
+ 94AF5A4F363AA9649B0CD69F
+ isa
+ PBXContainerItemProxy
+ proxyType
+ 1
+ remoteGlobalIDString
+ A09B79B881F22C425D60CA34
+ remoteInfo
+ Pods-PocketForecast-NSURL+QueryDictionary
- 142C3E56E2164E42A72A9416
+ 18C8CB46EEDB34BDCF065107
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.objc
+ sourcecode.c.h
name
- MKTFloatArgumentGetter.m
+ TyphoonComponentFactory+InstanceBuilder.h
path
- Source/OCMockito/Helpers/ArgumentGetters/MKTFloatArgumentGetter.m
+ Source/Factory/Internal/TyphoonComponentFactory+InstanceBuilder.h
sourceTree
<group>
- 14790DE90115D07A6F2A15C9
+ 1950236695CAE834365F9E2F
fileRef
- FE9FFB8BAE08BCFDCBF66310
+ 8265740D7404F67AE3C28C45
isa
PBXBuildFile
- 153DD79F6CBA865C41A7C6B0
+ 1961663B9A278F007494BBF4
- explicitFileType
- archive.ar
- includeInIndex
- 0
+ baseConfigurationReference
+ 17C8CEDD5CD81F92A4A17B88
+ buildSettings
+
+ ALWAYS_SEARCH_USER_PATHS
+ NO
+ COPY_PHASE_STRIP
+ NO
+ DSTROOT
+ /tmp/xcodeproj.dst
+ GCC_DYNAMIC_NO_PIC
+ NO
+ GCC_OPTIMIZATION_LEVEL
+ 0
+ GCC_PRECOMPILE_PREFIX_HEADER
+ YES
+ GCC_PREFIX_HEADER
+ Target Support Files/Pods-PocketForecast-CKUITools/Pods-PocketForecast-CKUITools-prefix.pch
+ GCC_PREPROCESSOR_DEFINITIONS
+
+ DEBUG=1
+ $(inherited)
+
+ GCC_SYMBOLS_PRIVATE_EXTERN
+ NO
+ INSTALL_PATH
+ $(BUILT_PRODUCTS_DIR)
+ IPHONEOS_DEPLOYMENT_TARGET
+ 7.0
+ OTHER_LDFLAGS
+
+ OTHER_LIBTOOLFLAGS
+
+ PRODUCT_NAME
+ $(TARGET_NAME)
+ PUBLIC_HEADERS_FOLDER_PATH
+ $(TARGET_NAME)
+ SDKROOT
+ iphoneos
+ SKIP_INSTALL
+ YES
+
isa
- PBXFileReference
- path
- libPods-PocketForecastTests-OCHamcrest.a
- sourceTree
- BUILT_PRODUCTS_DIR
+ XCBuildConfiguration
+ name
+ Debug
- 153F864DE9859ABD41ABA154
+ 1991EC6377AEC4D3E5FCB07A
fileRef
- 6E44F34C0756F848DBA6CA51
+ 4552E3CE521587223197C20A
+ isa
+ PBXBuildFile
+
+ 19A192D107DD5C0EED73A033
+
+ fileRef
+ 17DE9150E15B2E4426ACD256
isa
PBXBuildFile
- settings
-
- COMPILER_FLAGS
- -fobjc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
-
- 1581B991662F13FA4FC282F4
+ 19A6074E7FCE23417D893DCB
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.objc
- name
- EXPFloatTuple.m
+ sourcecode.c.h
path
- src/EXPFloatTuple.m
+ CALayer+Image.h
sourceTree
<group>
- 15A3F8CED40A710805366567
+ 19C3D371E43D1B34C679002E
fileRef
- CE4B2CE9F33E2978042BEA30
+ BB6D5A5597542CC8262F9839
isa
PBXBuildFile
- 15B4193D7C70D5D43384BE68
+ 1A0CF8CA688AD34B88CA3ADA
- fileRef
- E612883A3BACD4FC14202F71
+ includeInIndex
+ 1
isa
- PBXBuildFile
- settings
-
- COMPILER_FLAGS
- -fobjc-arc -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
-
+ PBXFileReference
+ lastKnownFileType
+ sourcecode.c.objc
+ name
+ MKTBoolReturnSetter.m
+ path
+ Source/OCMockito/Helpers/ReturnValueSetters/MKTBoolReturnSetter.m
+ sourceTree
+ <group>
- 161CB2AECC913A83D63C64D7
+ 1A238094E2B951AE740E9FD8
fileRef
- E26BC5E6768CA269FCE0E4B5
+ 539F21DFB444A50A66819BC9
isa
PBXBuildFile
settings
COMPILER_FLAGS
- -fobjc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+ -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
- 163953B609CC763051039334
-
- fileRef
- 42B47C9D70123FE59871C038
- isa
- PBXBuildFile
-
- 168F0E87186E1CC30FFD7B60
-
- fileRef
- A0B66FA14196E9757A1D79E2
- isa
- PBXBuildFile
-
- 16B46BC0CE20F68EA4F9604A
+ 1A317A79C844C2A9916D19D9
fileRef
- FF153D68EFF9400EB1101A5C
- isa
- PBXBuildFile
-
- 16C2634F551ABFD17D0C0253
-
- fileRef
- D47FE25C1722AFCCAEDA0ACB
+ F945A234D2146936D52B77EA
isa
PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
- 16DB9C2391B4C9FD0A879A78
+ 1AB10823C118B15B7D22E5FB
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.h
+ sourcecode.c.objc
name
- EXPMatchers+respondTo.h
+ MKTObjectReturnSetter.m
path
- src/matchers/EXPMatchers+respondTo.h
+ Source/OCMockito/Helpers/ReturnValueSetters/MKTObjectReturnSetter.m
sourceTree
<group>
- 171FAD71337179F83E396D4C
+ 1B358878A22F1F95FF16A31A
+
+ fileRef
+ 755114FE91AD00D7B3911FF0
+ isa
+ PBXBuildFile
+
+ 1B7E7CADAC18E130281F58C2
includeInIndex
1
@@ -1787,28 +1860,44 @@
lastKnownFileType
sourcecode.c.h
name
- MKTDoubleArgumentGetter.h
+ MKTMockingProgress.h
path
- Source/OCMockito/Helpers/ArgumentGetters/MKTDoubleArgumentGetter.h
+ Source/OCMockito/MKTMockingProgress.h
sourceTree
<group>
- 17A63E94C914EFFAF850FF60
+ 1B92DD449354C108D420DE02
- includeInIndex
- 1
+ fileRef
+ 892F198EE3041AEB5B816EE7
isa
- PBXFileReference
- lastKnownFileType
- sourcecode.c.objc
- name
- MKTObjectAndProtocolMock.m
- path
- Source/OCMockito/MKTObjectAndProtocolMock.m
- sourceTree
- <group>
+ PBXBuildFile
+
+ 1BD3ADA421CD5FB55350C614
+
+ fileRef
+ 35C93D5091D5ED8AF3EB5F72
+ isa
+ PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
+
+ 1BDC06249338A4E101A707DE
+
+ fileRef
+ 6F7E1EF85EE6A8419014F145
+ isa
+ PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
- 17E4A8C41BB959CCF9421128
+ 1BE29746F1970645FBF61F80
includeInIndex
1
@@ -1817,13 +1906,13 @@
lastKnownFileType
sourcecode.c.h
name
- HCIsNil.h
+ TyphoonSwizzler.h
path
- Source/Library/Object/HCIsNil.h
+ Source/Utils/Swizzle/TyphoonSwizzler.h
sourceTree
<group>
- 180A81A26D4DA831C4908706
+ 1C249762195CA723E55AAF47
includeInIndex
1
@@ -1832,20 +1921,27 @@
lastKnownFileType
sourcecode.c.objc
name
- HCIsNot.m
+ TyphoonTypeConverterRegistry.m
path
- Source/Library/Logical/HCIsNot.m
+ Source/TypeConversion/TyphoonTypeConverterRegistry.m
sourceTree
<group>
- 18224CAC9BCB0B32327F23F9
+ 1C5395451B334D35EF5680CC
+
+ fileRef
+ BCA96D021A200BB60C8AB3D8
+ isa
+ PBXBuildFile
+
+ 1C8D64B93B106F4E4141904A
fileRef
- C644A04FDD2216B6EAB208D2
+ EF5A20BCF37707E870707162
isa
PBXBuildFile
- 186863908CDBA6BEF2F9F3B2
+ 1CDDFF0CB92AC04956533164
includeInIndex
1
@@ -1854,57 +1950,56 @@
lastKnownFileType
sourcecode.c.h
name
- HCShortReturnGetter.h
+ HCStringStartsWith.h
path
- Source/Core/Helpers/ReturnValueGetters/HCShortReturnGetter.h
+ Source/Library/Text/HCStringStartsWith.h
sourceTree
<group>
- 18A9E9A7874864962A454C4B
+ 1D15607B4D79CD948E71DD32
- includeInIndex
- 1
+ fileRef
+ C06D60E88F731FF86ECA55DD
isa
- PBXFileReference
- lastKnownFileType
- sourcecode.c.objc
- name
- HCUnsignedLongLongReturnGetter.m
- path
- Source/Core/Helpers/ReturnValueGetters/HCUnsignedLongLongReturnGetter.m
- sourceTree
- <group>
+ PBXBuildFile
- 18A9F7FF68D913F9E39C00AB
+ 1D87C05E40CFF67AF6FE7181
fileRef
- AABD0AB907CDF2FA5A655E85
+ 24F75D8CEB430699C6B904F0
isa
PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
- 18BC02DE04CC05ECCB6547F7
+ 1DB7AA5DF0086DEEC3855076
fileRef
- 2BF1B9B219A6FBBDBFE48E7E
+ 9F60BF29703CD68CD66ADCBB
isa
PBXBuildFile
- 190BC3DAB334E76B5FA16D00
+ 1DC0D61E3B63DB78D38579B5
- includeInIndex
- 1
+ children
+
+ 8DC0C9B69D894D4FB99244EC
+ 9222B43166414D4B8398D965
+ 6D135593D0568EA4F6845133
+
isa
- PBXFileReference
- lastKnownFileType
- sourcecode.c.objc
+ PBXGroup
name
- UIView+Screenshot.m
+ NGAParallaxMotion
path
- PaperFold/PaperFold/PaperFold/UIView+Screenshot.m
+ NGAParallaxMotion
sourceTree
<group>
- 197B974F55E4B5A6CB54F72E
+ 1DFDBF4B58FB6EFCB7A15D47
includeInIndex
1
@@ -1912,12 +2007,21 @@
PBXFileReference
lastKnownFileType
sourcecode.c.h
+ name
+ HCInvocationMatcher.h
path
- randomDouble.h
+ Source/Core/Helpers/HCInvocationMatcher.h
sourceTree
<group>
- 1AA14EE0D4B9DF0ECF0FE604
+ 1E6AC018F1ECDB8A4A8F38E5
+
+ fileRef
+ 356EBFC47D7A23708188C71A
+ isa
+ PBXBuildFile
+
+ 1E920AACBFDBA5758779D851
includeInIndex
1
@@ -1926,86 +2030,64 @@
lastKnownFileType
sourcecode.c.objc
name
- MKTShortArgumentGetter.m
+ EXPMatchers+beFalsy.m
path
- Source/OCMockito/Helpers/ArgumentGetters/MKTShortArgumentGetter.m
+ src/matchers/EXPMatchers+beFalsy.m
sourceTree
<group>
- 1AD5F9F461F54DC7D622C3A4
+ 1EA6C56D318497711D50BBB8
fileRef
- CE799A2C49F6F6B0ABC5896B
+ 28D44094526C5904543EFDF9
isa
PBXBuildFile
settings
COMPILER_FLAGS
- -fobjc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+ -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
- 1B188C7AA92FBB8FC1AA9893
+ 1EB0D3050CA70371FD096D3E
fileRef
- 6FDA3192E48CC80A8D0D86C3
+ C7DC08044239153ADDD3AC88
isa
PBXBuildFile
settings
COMPILER_FLAGS
- -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+ -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
- 1B55E2F1258972A06AEC950A
-
- isa
- PBXTargetDependency
- target
- 90174F22889E06FC9A35F810
- targetProxy
- 0F65D3C4C58B71C06CB53270
-
- 1B6690FA9D23A0E26DD50717
-
- includeInIndex
- 1
- isa
- PBXFileReference
- lastKnownFileType
- text.xcconfig
- path
- Pods-PocketForecast-NSURL+QueryDictionary-Private.xcconfig
- sourceTree
- <group>
-
- 1B75FC941791FEAE05E9F2B9
+ 1EB4E6F9B98F8A68B1B5474C
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.h
+ sourcecode.c.objc
name
- MKTStructReturnSetter.h
+ HCLongLongReturnGetter.m
path
- Source/OCMockito/Helpers/ReturnValueSetters/MKTStructReturnSetter.h
+ Source/Core/Helpers/ReturnValueGetters/HCLongLongReturnGetter.m
sourceTree
<group>
- 1B7E3A93A78538CCA417F428
+ 1F139BD4FD0CB4FDB5E58043
fileRef
- C3EC23C7AB476B1FF6D52147
+ 83EC10461130185E89D14E58
isa
PBXBuildFile
settings
COMPILER_FLAGS
- -fobjc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+ -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
- 1BEB62B801A829E7CF670C3D
+ 1F5BFB560D4697A5F77FF1E0
includeInIndex
1
@@ -2014,108 +2096,100 @@
lastKnownFileType
sourcecode.c.objc
name
- MKTStructReturnSetter.m
+ MKTUnsignedShortReturnSetter.m
path
- Source/OCMockito/Helpers/ReturnValueSetters/MKTStructReturnSetter.m
+ Source/OCMockito/Helpers/ReturnValueSetters/MKTUnsignedShortReturnSetter.m
sourceTree
<group>
- 1C1428417F352C1AE60BB2CA
-
- fileRef
- 69A53441DD2A9C8BA5B47F5C
- isa
- PBXBuildFile
-
- 1C66835F4D84BB1920FFEAAB
+ 1F78C45CE4CE134DC692B63E
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.objc
+ sourcecode.c.h
name
- HCStringContains.m
+ MKTIntReturnSetter.h
path
- Source/Library/Text/HCStringContains.m
+ Source/OCMockito/Helpers/ReturnValueSetters/MKTIntReturnSetter.h
sourceTree
<group>
- 1C8A8C13B994C6A517BC5508
+ 1F92BA73F2138740CF2FCB22
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.h
+ sourcecode.c.objc
name
- TyphoonInjectionContext.h
+ EXPBlockDefinedMatcher.m
path
- Source/Definition/Injections/TyphoonInjectionContext.h
+ src/EXPBlockDefinedMatcher.m
sourceTree
<group>
- 1CA0004659108BE6AE29A02F
+ 201A8514D4F47AE25AE6E328
+ buildActionMask
+ 2147483647
+ files
+
+ E6FC3E2B22BD6B2127644A48
+ ADFF378F3C9821BBB046C313
+
isa
- PBXTargetDependency
- target
- 90174F22889E06FC9A35F810
- targetProxy
- 6C1F13F638136C5A66788639
+ PBXFrameworksBuildPhase
+ runOnlyForDeploymentPostprocessing
+ 0
- 1CB599D3C9A895C4156E97EC
+ 203381A742C2429C64F39CFB
fileRef
- B640209236D7DC9D94C5082D
+ 50E9DC92D7233EE7D4B73A33
isa
PBXBuildFile
- 1CC5A099AD4997FAF89A55A5
+ 204C476AE2291BCBBEC78123
fileRef
- DDC2679323269F2DF9A89915
+ 1F92BA73F2138740CF2FCB22
isa
PBXBuildFile
settings
COMPILER_FLAGS
- -fobjc-arc -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+ -fno-objc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
- 1CF242C214296CD5B835297F
+ 2090FAE679715EB32059180C
- includeInIndex
- 1
+ fileRef
+ E2B17A9E84593780E638655C
isa
- PBXFileReference
- lastKnownFileType
- sourcecode.c.h
- name
- NSObject+DeallocNotification.h
- path
- Source/Utils/NSObject+DeallocNotification.h
- sourceTree
- <group>
+ PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
- 1D01C0E7001F1384920B7C8F
+ 20D0B33207CB851972412A9A
- includeInIndex
- 1
+ fileRef
+ F4C35E745C19E5AA5AF5CB2D
isa
- PBXFileReference
- lastKnownFileType
- sourcecode.c.objc
- name
- HCIsDictionaryContaining.m
- path
- Source/Library/Collection/HCIsDictionaryContaining.m
- sourceTree
- <group>
+ PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -fno-objc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
- 1D67B0E9901A3681DE62AF7E
+ 212E450E48D539EECBF74498
includeInIndex
1
@@ -2124,62 +2198,100 @@
lastKnownFileType
sourcecode.c.h
name
- TyphoonInjectionByDictionary.h
+ EXPBackwardCompatibility.h
path
- Source/Definition/Injections/TyphoonInjectionByDictionary.h
+ src/EXPBackwardCompatibility.h
sourceTree
<group>
- 1D7705BFE7EB465778D4FC19
+ 216D656D2121AE15F4F27D7E
fileRef
- 142C3E56E2164E42A72A9416
+ C6A6C6ACA54619886DB6260E
isa
PBXBuildFile
- settings
-
- COMPILER_FLAGS
- -fobjc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
-
- 1DDA8E71C2F5250AE4196CCF
+ 21D61DF1E26D2023AAE80739
- fileRef
- 7F8FE144EF3E051077997C03
+ buildActionMask
+ 2147483647
+ files
+
+ B2F96681032A6C59153375B5
+
isa
- PBXBuildFile
+ PBXHeadersBuildPhase
+ runOnlyForDeploymentPostprocessing
+ 0
- 1E51CF6BB795090FF12A581A
+ 21D75679CA765E0E6CE9D96C
- includeInIndex
- 1
+ fileRef
+ CA2ACCE6F27BA878DB30A154
isa
- PBXFileReference
- lastKnownFileType
- sourcecode.c.objc
- name
- FacingView.m
- path
- PaperFold/PaperFold/PaperFold/FacingView.m
- sourceTree
- <group>
+ PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
- 1E8F85197AF0696CDD3CA530
+ 22189BBABE17FF1386FFC866
- includeInIndex
- 1
+ children
+
+ 468DD6394E435583E26C0027
+ CED84F039EF578F84A4579CA
+ 5120F9626D81EBBBC2526FF5
+ DBF25C71D73F84F4B5051C5C
+ 51BF1169535EF30F36481AF1
+ 2870579DAD95EA8EC3472521
+ 6B4D00C9D0629B4A4FF4A0F0
+ 2C47524403C90654EFA5D1D6
+ 4345D1EE47EDF85E37422BB7
+ 94572AB8BC1410FFEFF6FA8D
+ 7340E154EC3A788B6F07B02D
+ 6F001FDD18E182D9A8EAC57E
+
isa
- PBXFileReference
- lastKnownFileType
- sourcecode.c.h
+ PBXGroup
name
- TyphoonComponentFactory.h
- path
- Source/Factory/TyphoonComponentFactory.h
+ Products
sourceTree
<group>
- 1EC1E0DC825B3D5978B41B14
+ 221B629BAF96741561489A9F
+
+ fileRef
+ 39624CA83B40CA7064B9416E
+ isa
+ PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
+
+ 22234A2EC3F87EE3224B0A43
+
+ fileRef
+ 3873E8A306F6D08AAC97B37F
+ isa
+ PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
+
+ 22425DD4E3AD083BA2D61A4B
+
+ fileRef
+ 40E0CC927095D18ABC3D0DAF
+ isa
+ PBXBuildFile
+
+ 2296F3F66674BE9327803727
includeInIndex
1
@@ -2188,172 +2300,144 @@
lastKnownFileType
sourcecode.c.objc
name
- TyphoonFactoryDefinition.m
+ MKTFloatReturnSetter.m
path
- Source/Definition/Internal/TyphoonFactoryDefinition.m
+ Source/OCMockito/Helpers/ReturnValueSetters/MKTFloatReturnSetter.m
sourceTree
<group>
- 1F36343E8FC064A5695AD1AE
+ 229F8F6130C17F3BCBC0B1E8
fileRef
- D4578CA99CB2858433B4B397
+ B61C80B6CD5A2F07E446CFEE
isa
PBXBuildFile
- 1F9EDD44011DFB597EB77364
+ 22B894B8336531FBD348412E
- fileRef
- 39237FBFAD0C242D07AF6831
+ buildActionMask
+ 2147483647
+ files
+
+ 2B2F5886F6269BE36A961374
+
isa
- PBXBuildFile
+ PBXSourcesBuildPhase
+ runOnlyForDeploymentPostprocessing
+ 0
- 1FA4F4E228DD6EE7DA9F9699
+ 22B9031D60DDCD5CB6B7DE34
- children
-
- 21C4290B551971DA085BD0AD
- 2319C460EE01E5E74FC2B309
- 0B06DE6621919A97059807A0
- D2D4704BF88868F39D889E7B
-
+ includeInIndex
+ 1
isa
- PBXGroup
+ PBXFileReference
+ lastKnownFileType
+ sourcecode.c.h
name
- Support Files
+ MKTExactTimes.h
path
- ../Target Support Files/Pods-PocketForecast-CKUITools
+ Source/OCMockito/MKTExactTimes.h
sourceTree
<group>
- 206D588EBC0739ADEAA5A04C
+ 238EF8877A5BA4575D58508C
- children
-
- 6C71A67016D6C90A55CE5061
- 0EA207DDB03AD50F49168010
- 852C67027088DEB7C97C0D3B
- B23E8A70DB9A81907C50A392
-
+ fileRef
+ 732DED3FD2C3B93790738E57
isa
- PBXGroup
- name
- Support Files
- path
- ../Target Support Files/Pods-PocketForecast-NGAParallaxMotion
- sourceTree
- <group>
+ PBXBuildFile
+
+ 239958B096C85B67F6BC446B
+
+ fileRef
+ B4CE1E2CA9997D9556A853C1
+ isa
+ PBXBuildFile
- 20A326CE0FC0A14B286C1BE8
+ 23AAAE74C608E61BD5C8C97E
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.objc
+ sourcecode.c.h
name
- HCUnsignedCharReturnGetter.m
+ TyphoonBlockComponentFactory.h
path
- Source/Core/Helpers/ReturnValueGetters/HCUnsignedCharReturnGetter.m
+ Source/Factory/Block/TyphoonBlockComponentFactory.h
sourceTree
<group>
- 20E8F85BB5F3CFB66FFB017F
+ 23AED3248C9A787DD57836EA
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.objc
+ sourcecode.c.h
name
- EXPMatchers+respondTo.m
+ HCIsEqualIgnoringWhiteSpace.h
path
- src/matchers/EXPMatchers+respondTo.m
+ Source/Library/Text/HCIsEqualIgnoringWhiteSpace.h
sourceTree
<group>
- 2143440273EA51176D3E8BA3
-
- fileRef
- F2E9641ED0A6D7FC9E801BC8
- isa
- PBXBuildFile
- settings
-
- COMPILER_FLAGS
- -fobjc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
-
-
- 2162F4C9BD143BAC0A6AFD57
+ 23E7475EAB51C458C8443FCB
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.objc
+ sourcecode.c.h
name
- TyphoonFactoryAutoInjectionPostProcessor.m
+ TyphoonPropertyStyleConfiguration.h
path
- Source/Definition/AutoInjection/TyphoonFactoryAutoInjectionPostProcessor.m
+ Source/Configuration/ConfigPostProcessor/TyphoonConfiguration/TyphoonPropertyStyleConfiguration.h
sourceTree
<group>
- 21C4290B551971DA085BD0AD
+ 23FF67D9AF98407A17C1C1C9
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- text.xcconfig
+ sourcecode.c.h
+ name
+ MKTPointerArgumentGetter.h
path
- Pods-PocketForecast-CKUITools.xcconfig
+ Source/OCMockito/Helpers/ArgumentGetters/MKTPointerArgumentGetter.h
sourceTree
<group>
- 21DD19043C2AC098065C4E49
+ 240EC3FB8142DF5791FF8E22
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.h
+ sourcecode.c.objc
name
- MKTCharArgumentGetter.h
+ MKTObjectMock.m
path
- Source/OCMockito/Helpers/ArgumentGetters/MKTCharArgumentGetter.h
+ Source/OCMockito/MKTObjectMock.m
sourceTree
<group>
- 21E6813D9B331877237B649C
-
- fileRef
- 082F2B644DD82F872E20BF1D
- isa
- PBXBuildFile
- settings
-
- COMPILER_FLAGS
- -fobjc-arc -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
-
-
- 21F0F64A8F41D2302F6CAF47
+ 24842CFF3326759654C7DEE8
fileRef
- B49E84FED52129263CD07F82
+ 5AD8DDD290CCCE16590BDBED
isa
PBXBuildFile
- settings
-
- COMPILER_FLAGS
- -fobjc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
-
- 2202EC8BE08FAB6B2B66FDD4
+ 24B5CB2060C6D24949E7769B
includeInIndex
1
@@ -2362,47 +2446,28 @@
lastKnownFileType
sourcecode.c.objc
name
- TyphoonInjectionByObjectFromString.m
+ TyphoonNSNumberTypeConverter.m
path
- Source/Definition/Injections/TyphoonInjectionByObjectFromString.m
+ Source/TypeConversion/Converters/TyphoonNSNumberTypeConverter.m
sourceTree
<group>
- 22073A6242EA971526A6544D
-
- fileRef
- A42B4135171DB8B049F61545
- isa
- PBXBuildFile
-
- 222B1E3E461A08C4552747BE
-
- fileRef
- 6011FFC29E8C0B7A31C84A8E
- isa
- PBXBuildFile
- settings
-
- COMPILER_FLAGS
- -fobjc-arc -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
-
-
- 22C4E86D7FC88FFF45F7B49C
+ 24F75D8CEB430699C6B904F0
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.h
+ sourcecode.c.objc
name
- TyphoonInjectionByObjectInstance.h
+ HCDoubleReturnGetter.m
path
- Source/Definition/Injections/TyphoonInjectionByObjectInstance.h
+ Source/Core/Helpers/ReturnValueGetters/HCDoubleReturnGetter.m
sourceTree
<group>
- 22C7777944575366CBCD54BB
+ 25081C6D63B640FFC3D889C9
includeInIndex
1
@@ -2411,13 +2476,13 @@
lastKnownFileType
sourcecode.c.h
name
- HCDescription.h
+ OCHamcrest.h
path
- Source/Core/HCDescription.h
+ Source/OCHamcrest.h
sourceTree
<group>
- 22C9671A123756B4C3493077
+ 25ADDFBD08C010C1A01611C6
includeInIndex
1
@@ -2426,33 +2491,28 @@
lastKnownFileType
sourcecode.c.h
name
- TyphoonTypeConverter.h
+ EXPDefines.h
path
- Source/TypeConversion/TyphoonTypeConverter.h
+ src/EXPDefines.h
sourceTree
<group>
- 2319C460EE01E5E74FC2B309
+ 25BD75A2B7ADEDA00AE557BC
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- text.xcconfig
+ sourcecode.c.objc
+ name
+ MKTSelectorArgumentGetter.m
path
- Pods-PocketForecast-CKUITools-Private.xcconfig
+ Source/OCMockito/Helpers/ArgumentGetters/MKTSelectorArgumentGetter.m
sourceTree
<group>
- 2391D85AC354E9777E5A3E3C
-
- fileRef
- 3AA9285675B95287900B6F58
- isa
- PBXBuildFile
-
- 23D721D5FAA15FF8AFF82B14
+ 25D96DCB415BA66AC00F73E4
includeInIndex
1
@@ -2460,32 +2520,26 @@
PBXFileReference
lastKnownFileType
sourcecode.c.h
+ name
+ TyphoonPlistStyleConfiguration.h
path
- Pods-PocketForecastTests-OCMockito-prefix.pch
+ Source/Configuration/ConfigPostProcessor/TyphoonConfiguration/TyphoonPlistStyleConfiguration.h
sourceTree
<group>
- 240335F82368EC977F428499
-
- buildActionMask
- 2147483647
- files
-
- D17A8D6BF36BA228F2114051
-
- isa
- PBXSourcesBuildPhase
- runOnlyForDeploymentPostprocessing
- 0
-
- 248BBF535FB27D0D9E32F906
+ 25E16CA41203FED62F139126
fileRef
- 8EB809FE338947EE4BCF59F4
+ B04A719A5632B987F1E0F014
isa
PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
- 2495607FAC01C4AC2673DE40
+ 25F334970C78EDAED5971CA7
includeInIndex
1
@@ -2493,67 +2547,78 @@
PBXFileReference
lastKnownFileType
sourcecode.c.h
- name
- TyphoonNSNumberTypeConverter.h
path
- Source/TypeConversion/Converters/TyphoonNSNumberTypeConverter.h
+ OCLogTemplate.h
sourceTree
<group>
- 24A673165D9D38AF0D7F0668
-
- fileRef
- 5D6B4396BE1A709750818646
- isa
- PBXBuildFile
-
- 24E1505676DB6FA1C2DE8FDA
+ 2620E4207645AAB4D5C5A21E
- fileRef
- F1B2D2FEAE9B61A137F30869
+ includeInIndex
+ 1
isa
- PBXBuildFile
+ PBXFileReference
+ lastKnownFileType
+ sourcecode.c.objc
+ name
+ HCUnsignedLongLongReturnGetter.m
+ path
+ Source/Core/Helpers/ReturnValueGetters/HCUnsignedLongLongReturnGetter.m
+ sourceTree
+ <group>
- 250666FA9A2C1E62EBE82324
+ 262C28BF6C764FB2A9EA9A35
fileRef
- DC3CFDE502F596CC086ED2D7
+ 51416928FAB1B6632C1EBF72
isa
PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
- 2512119ABA6DF8782F6998E2
+ 263D6A3B31FAE24C8C21BE22
fileRef
- 138030DACAEEEDE0E984DA9B
+ 9649E75800A864A5D92E5622
isa
PBXBuildFile
- 25268F90C85770CB4C8A7CC9
+ 26689FED941FE5DA7ECF301B
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.objc
+ sourcecode.c.h
name
- EXPMatchers+beGreaterThanOrEqualTo.m
+ EXPDoubleTuple.h
path
- src/matchers/EXPMatchers+beGreaterThanOrEqualTo.m
+ src/EXPDoubleTuple.h
sourceTree
<group>
- 2535C8CFDB6BABE7D377D7F7
+ 26706CFE51AEC6D8AF5D074A
+
+ fileRef
+ 5B329A9E99B2C8C126205076
+ isa
+ PBXBuildFile
+
+ 26A48C64EBD8251BD73F8471
fileRef
- 50AD6F117F608A9F6624B688
+ F5FC63291CD70A337689FF55
isa
PBXBuildFile
- 25866CD1541498ECA3A06859
+ 271983162A34F5FD0C6CBD63
fileRef
- F23A49EC398208FDA8F3A4FC
+ 61D74EEA353123FB746AFA79
isa
PBXBuildFile
settings
@@ -2562,42 +2627,43 @@
-w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
- 258F6D8BBD6EB8E36A4855E4
+ 276FB8F3E10CF44F42043747
- includeInIndex
- 1
+ fileRef
+ 792634F439D11BF201F05F4D
isa
- PBXFileReference
- lastKnownFileType
- sourcecode.c.objc
- path
- UIScreen+CKUITools.m
- sourceTree
- <group>
+ PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
- 25986B0664A4BD0D8807F5D1
+ 277C4E59A81286D53EDFFB4B
- includeInIndex
- 1
+ fileRef
+ E59612A0E5DD02946478E1E2
isa
- PBXFileReference
- lastKnownFileType
- sourcecode.c.objc
- name
- NSObject+DeallocNotification.m
- path
- Source/Utils/NSObject+DeallocNotification.m
- sourceTree
- <group>
+ PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
- 25DAAD184F245688887E9B42
+ 2784804083CED1D16AF88186
fileRef
- FD2A6C64C8356D0EAB346B8E
+ 458701F4D48746F45BF400E0
isa
PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -fno-objc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
- 25FD08615DEBD977239F8B5D
+ 279A11C97F0EC334E0B31097
includeInIndex
1
@@ -2605,233 +2671,53 @@
PBXFileReference
lastKnownFileType
sourcecode.c.objc
- name
- HCReturnValueGetter.m
path
- Source/Core/Helpers/ReturnValueGetters/HCReturnValueGetter.m
+ Pods-PocketForecast-NGAParallaxMotion-dummy.m
sourceTree
<group>
- 2602201178E22E04FFE313BE
+ 27ACA08F93FBA7FE2C26B58C
- children
-
- F1DF01E4D707D0A114F155F6
- 124A4EE0AA403A20FEBD1980
- 994F8BF6210D40A9E5152881
- CA959B703FF3FE0D8891AACE
- D100DE518E02133C4CCB43AD
- F3D995537EABB20681812916
- A201C4AC15FB19A99DC22F13
- 06369952B5A0CE6A7A45D67A
- 4EC5C8455AC9BA4F95F71DF5
- 3F39FA607A1F8DD3FD5AC97F
- D809618B0D968619AF233DE1
- E86F1A29E2D4A0936B60048A
- 1CF242C214296CD5B835297F
- 25986B0664A4BD0D8807F5D1
- 39FE0D9E20590DEE011C8A84
- 9B3BFA1242B65AEC2B9ABE3C
- F24548C7A2D000854CCA47BD
- E37584DF6407C4E6C3E1531A
- 6AAA69DAAD241DECEB2AA035
- D3ABE593F5044BCBFC314CA1
- 06D9C10A9BABE580C5128C47
- DBBA4930C536F522F2D5BE13
- 98AE3248317BA42D04F24A01
- A56DFE8FF4E4B0DEF8E47B3C
- 675E15ABE7944B438F78BC0F
- F06ED8D5984AD707113D8872
- CB2906129E607812A6E9D4D2
- FB87F09D372E8323A261837C
- AA0B325A507B07A3CA6A01B4
- 9E44CFEEE5DC22BE0BC26214
- C87CBD6B449B085CC2FB11DE
- 265DAE71F6DD38CF8950273B
- 927F2E2DDF860A1196F2AB8F
- 067E823597507BA4379690B4
- D9CD022798E45F303793F6EF
- 05967509E61FB14DF441C484
- 952342C8F74EE0E2CFE5059D
- F8EE4AEDB0524AF74BA512E5
- 301F603958961FDB424FEA21
- 2EC423B6136A5F401870F8C2
- 687EE57C06F92C6A6C957CB6
- B0C61D043CC1D311D13D98A2
- 6011FFC29E8C0B7A31C84A8E
- 552D63B460397F81D7DE7FD8
- 7CB3223C2108BBE127CF0E8B
- 29358717CE2FAC1C8011ADAF
- B30F8F417E7480B7A492ACB1
- F5D8DD66A27F38A912EA4E5C
- 2E2C2CF8E2CA66346C1D0F1E
- E0A3C3F953BB4993044B5E03
- FF4BC052D37CF479F5D1FBC4
- D4578CA99CB2858433B4B397
- 9D4A93AEB397E5C7E100D25C
- 1E8F85197AF0696CDD3CA530
- DA46753BD09AD6E16B0DF955
- EE8E3905E05837FAC6B226A8
- C364246CA9711D2F413F376D
- C7ADFC102C61FC96FEBE2830
- F2797CB6DF8F80475FD9E98E
- 7A0281981BA11CC9DFE161C8
- 0480792656D2B6C68B4D43C4
- 07A14C28B9AAE8D5A2D7D1E8
- 4EEDE92B742933B3FC2E6CCF
- 66316EACD4891B207B6A0D44
- D3DE641B7BD52F05C9D88007
- 5EA183353B0769D9D47F1B50
- D8891B6F3FDCC31C1BE45A74
- B11DB39CAB7174C516E399A3
- A42B4135171DB8B049F61545
- 32C417CA47F37F86B5CD5D23
- 94470E0E520EDD8D4D91DAEB
- 127A585EAE7E5F75D645F001
- 6F8404E0221D73BA8E330B84
- 0439140F9A659D0829F28C9E
- 368842BE936A5D5ABAF0A122
- 2162F4C9BD143BAC0A6AFD57
- E8AC236042E221F9EB67ED15
- 1EC1E0DC825B3D5978B41B14
- C826EFF6FA273B8511270D27
- 5CE0EB073C06E400E92A77CF
- 4FF373AE52C417BBB6254458
- 984A8DCC35CAE69C9CCB62DE
- D694F36F707976BEFA93D77B
- E612883A3BACD4FC14202F71
- 3C271667AEF8F6BD9B75FB32
- A39DD9FFF316AE942523AC21
- 570A7B07E73929419D751DAC
- 50588EC793843F7FCF4496A7
- 32C72F1B74A7428CF3E81C19
- 6083C9E6789BEF15ABB1F240
- 8E107FF83AA99860004C8E09
- 12BF774FD1AEC31FB828AF8E
- BAE48792D6C4FE1B0A926238
- 1D67B0E9901A3681DE62AF7E
- 45F49565EB9A2E7EDD26D45E
- 74618DE3D5A0C1AB289B3426
- 972FD2F0D1885FEA0DC4F6E3
- 39237FBFAD0C242D07AF6831
- 2202EC8BE08FAB6B2B66FDD4
- 22C4E86D7FC88FFF45F7B49C
- DDC2679323269F2DF9A89915
- 524C3FC0D25F8DD0CF207A68
- CF086F580D11EFD74E0C054A
- E0AA4BE538BB4BCDB9DDBFD2
- E2FD0E43B32E0BA882752C0E
- 81A94657D4AF46A9B0D8F55A
- 016D41F9BE75C31F729DC4BA
- 1C8A8C13B994C6A517BC5508
- CA2CABD1017958D6B0039B1C
- 889DD9B5394E0DB08D5C3B2A
- 3DCF02AE6552261CDC241AAE
- 2BF1B9B219A6FBBDBFE48E7E
- A43679B587807744C367F3EE
- 8D861C49CA8914B50DE11740
- 608F8A07E63A5620D717B14E
- DE55DC7BEFDECFB12AD605AA
- 0FCB1C767DC4D995829B4629
- B9C31D190D7C5B5A7E63D6FE
- D47FE25C1722AFCCAEDA0ACB
- 2CF763A0E68326C6C80A8D78
- C830076124FD07FF74958408
- 2495607FAC01C4AC2673DE40
- 787AE091BA5F3B9001038FB9
- 138030DACAEEEDE0E984DA9B
- C2189F828E34765D52520505
- D7706C4E629F1830F79EE9C3
- 06CC2BE604ED59B3CE26ACA5
- 00E3873CE3D13E511718B774
- DE09BCD8815012A677B7E271
- 84793CCDC5C0345D8F55F795
- 5AFE8D83DB0B29C743586467
- 5E5C4674C26D2BC05D9B70CA
- F994A026196B0EC88180787C
- A6C90643AE3E42FFBA744124
- 0F47D1747139DA41C6062493
- C5992F7AB45240C4EB907B78
- 29EA67B0045E42086062141C
- C4F0C10696A3905B4A89E0E7
- C64363C52BBDFC5B312B00C5
- B50B871359C48784F15C96D0
- 9039021B63EBCF27258B6282
- 6E32C3F1D7195CE4E23DCFC3
- EC0D9E11290B4F8853A03DB2
- 44E7AF55F7D8B65FA19C18F3
- 02284DEC8D22EC88B6C1B070
- E95C984C8694FED5CE9B7CF6
- E12C4F6DF3568B9807D39870
- BA6E0D74542CD625954402E0
- 845B3B38D51FF640C7F3D0A6
- C54614DBD9830585544D0F23
- 661FB0C2E2D087856309377B
- A0C52350B47B15A2C17C1F36
- BA41F76E3A24CFF958957660
- E7D6D6E7E3CB754DDFA07AF7
- DDE2E1FDEBF6FF5C15126A07
- 97916AE08C74EE3BCD92B173
- 42EDCDDB40ED9B65C0F3524B
- D58649D539B80372D35771E2
- 6DA6D09022E67FA6FCB588B7
- B4E14B480463B9786C8ACF39
- 082F2B644DD82F872E20BF1D
- 5E47301E6E7CAD0312A99322
- 38D9FF0AAD2B148E9D6AB393
- 22C9671A123756B4C3493077
- 351A658A6F07B5C338B2F11D
- 100B76C09DAB42B2F96668CC
- 112261CBEED0CB5449BF5932
- 962D305B278FAC54326BAFF2
- FF153D68EFF9400EB1101A5C
- 57604C01A9AA4C110A636563
- 6E65AFBDFCA4525232DEA8EA
- 02BF234C8B18E8DB29B5262B
- 36C500260A2883F9DAC110BE
- 69A53441DD2A9C8BA5B47F5C
- 33575795595FEDA4EDF717C1
- D724E75E502F7D54B8B99BE1
- 0CEC62574D9EEB6452371076
- 03D8EFF55BAC2AF6D1D8B114
-
+ fileRef
+ 26689FED941FE5DA7ECF301B
isa
- PBXGroup
- name
- Typhoon
- path
- Typhoon
- sourceTree
- <group>
+ PBXBuildFile
+
+ 27D663FAE87E14DC1265C011
+
+ fileRef
+ DFF8E7F66E786A7648DEC9C0
+ isa
+ PBXBuildFile
- 265DAE71F6DD38CF8950273B
+ 27F56194E49435F303A5C11B
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.objc
+ sourcecode.c.h
name
- TyphoonAssemblyAdviser.m
+ HCBaseDescription.h
path
- Source/Factory/Block/TyphoonAssemblyAdviser.m
+ Source/Core/HCBaseDescription.h
sourceTree
<group>
- 2690F06DFDC26401312B60DC
+ 27FB559BD5735B99AB53B9E8
fileRef
- 5DF850D5B7A4F8644914B401
+ 69C77328E58528F7E73100E6
isa
PBXBuildFile
settings
COMPILER_FLAGS
- -fobjc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+ -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
- 2700AD2EFDC0E3E04420CC92
+ 28066E6570EC4EEC6FF506F5
includeInIndex
1
@@ -2839,117 +2725,119 @@
PBXFileReference
lastKnownFileType
sourcecode.c.h
+ name
+ EXPMatchers+contain.h
path
- OCLogTemplate.h
+ src/matchers/EXPMatchers+contain.h
sourceTree
<group>
- 270705B80B1C3D19936C0743
+ 2816AFCFE26FE2EFE95D49D3
fileRef
- 067E823597507BA4379690B4
+ 5926E461F94F7CFC63DD1696
isa
PBXBuildFile
- settings
-
- COMPILER_FLAGS
- -fobjc-arc -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
-
- 271C1D47E29BBC36B5641B74
+ 284F06ECA2B9023D615B3280
+
+ fileRef
+ CE24D2B3018BAB49A62A5AFA
+ isa
+ PBXBuildFile
+
+ 285EC3F1F192572CCF89114C
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.objc
+ sourcecode.c.h
name
- EXPMatchers+beIdenticalTo.m
+ MKTInvocationMatcher.h
path
- src/matchers/EXPMatchers+beIdenticalTo.m
+ Source/OCMockito/MKTInvocationMatcher.h
sourceTree
<group>
- 273047803CE76EC56EE4BC13
+ 2870579DAD95EA8EC3472521
- fileRef
- 9B3525C50ABC6816A6D6D2CB
+ explicitFileType
+ archive.ar
+ includeInIndex
+ 0
isa
- PBXBuildFile
+ PBXFileReference
+ path
+ libPods-PocketForecast-OCLogTemplate.a
+ sourceTree
+ BUILT_PRODUCTS_DIR
- 27323D5D76F10955193670F3
+ 287D676715016C6A5B32EB3A
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.h
+ sourcecode.c.objc
+ name
+ EXPDoubleTuple.m
path
- UIView+Position.h
+ src/EXPDoubleTuple.m
sourceTree
<group>
- 2749AC223CDD0C14F4B164AF
+ 289FE25F7FEFB6347E511E08
fileRef
- 608F8A07E63A5620D717B14E
+ 8972713CE6587FF26F1C54B5
isa
PBXBuildFile
- settings
-
- COMPILER_FLAGS
- -fobjc-arc -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
-
- 27BB2D24C827DEBA4186D600
+ 28B25EFCC95490EE9EC98E2E
fileRef
- 20A326CE0FC0A14B286C1BE8
+ 047D0E4D919E091B46146EBF
isa
PBXBuildFile
settings
COMPILER_FLAGS
- -fobjc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+ -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
- 27C23D87CD08BA288667AE5D
+ 28CB6884FEEF85E7E0458EE1
fileRef
- 21DD19043C2AC098065C4E49
+ 55778F5E0D2B085CCB997331
isa
PBXBuildFile
- 27CAA3B59D184B739958E85E
+ 28D44094526C5904543EFDF9
- buildConfigurationList
- 8ABECB3DDA8F79994FC1EEFA
- buildPhases
-
- 3F9FC94AE3AB941B4DAC0304
- 62D2E7731FA5951D030FBB92
- 0B825B9753CFBA01195E9F42
-
- buildRules
-
- dependencies
-
- 97AAE3424EAE48A204353A19
-
+ includeInIndex
+ 1
isa
- PBXNativeTarget
+ PBXFileReference
+ lastKnownFileType
+ sourcecode.c.objc
name
- Pods-PocketForecastTests-OCMockito
- productName
- Pods-PocketForecastTests-OCMockito
- productReference
- 30F3C7AD203A1C8442573BE8
- productType
- com.apple.product-type.library.static
+ HCIsTypeOf.m
+ path
+ Source/Library/Object/HCIsTypeOf.m
+ sourceTree
+ <group>
+
+ 2912867413A2A111C2AE0FA6
+
+ fileRef
+ 8622D79BAEEAE9B017F78F0C
+ isa
+ PBXBuildFile
- 280EAD2E2904FCD8E249041B
+ 291501F45D90BE8C355F8579
includeInIndex
1
@@ -2958,13 +2846,13 @@
lastKnownFileType
sourcecode.c.objc
name
- PaperFoldView.m
+ MKTLongLongReturnSetter.m
path
- PaperFold/PaperFold/PaperFold/PaperFoldView.m
+ Source/OCMockito/Helpers/ReturnValueSetters/MKTLongLongReturnSetter.m
sourceTree
<group>
- 285C6EAE32B22A2D4E5E22E3
+ 291F4B952A1CFFFD1021775F
includeInIndex
1
@@ -2973,13 +2861,13 @@
lastKnownFileType
sourcecode.c.objc
name
- MKTBlockArgumentGetter.m
+ MKTUnsignedIntReturnSetter.m
path
- Source/OCMockito/Helpers/ArgumentGetters/MKTBlockArgumentGetter.m
+ Source/OCMockito/Helpers/ReturnValueSetters/MKTUnsignedIntReturnSetter.m
sourceTree
<group>
- 28897A4277450AA9F240641A
+ 293FAEB0E9E80E85D72FCB34
includeInIndex
1
@@ -2988,54 +2876,35 @@
lastKnownFileType
sourcecode.c.objc
name
- FoldView.m
+ MKTIntReturnSetter.m
path
- PaperFold/PaperFold/PaperFold/FoldView.m
+ Source/OCMockito/Helpers/ReturnValueSetters/MKTIntReturnSetter.m
sourceTree
<group>
- 289FBDBC4F93A809FC461E78
-
- fileRef
- 2DA253962C782B260832F37A
- isa
- PBXBuildFile
- settings
-
- COMPILER_FLAGS
- -fobjc-arc -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
-
-
- 28DDA15F8541D6D1D88DC3D3
+ 2968BCB1B8FF1D009448B97A
fileRef
- C9C70FCB1D4A5C0882B0F822
+ 22B9031D60DDCD5CB6B7DE34
isa
PBXBuildFile
- 29358717CE2FAC1C8011ADAF
+ 2972514166C06AC87A8E39E9
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.h
+ sourcecode.c.objc
name
- TyphoonCallStack.h
+ EXPMatcherHelpers.m
path
- Source/Factory/Internal/TyphoonCallStack.h
+ src/matchers/EXPMatcherHelpers.m
sourceTree
<group>
- 299EE92A4E1226D4ABAEF698
-
- fileRef
- 56A8713A62E016451ABAB68E
- isa
- PBXBuildFile
-
- 29EA67B0045E42086062141C
+ 297F287050BADC61800B21E2
includeInIndex
1
@@ -3044,39 +2913,50 @@
lastKnownFileType
sourcecode.c.objc
name
- TyphoonPatcher.m
+ TyphoonAssemblySelectorAdviser.m
path
- Source/Test/Patcher/TyphoonPatcher.m
+ Source/Factory/Block/TyphoonAssemblySelectorAdviser.m
sourceTree
<group>
- 29EB2678E0F27B76FFE2C192
-
- fileRef
- 29358717CE2FAC1C8011ADAF
- isa
- PBXBuildFile
-
- 2A051743565E059EB8933BAE
+ 299F1F1E44CAE8F936623D76
fileRef
- 29EA67B0045E42086062141C
+ 4CEA816958C28CD51CA08B1D
isa
PBXBuildFile
settings
COMPILER_FLAGS
- -fobjc-arc -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+ -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
- 2A0CA147C015BA64B62715F4
+ 29E9B473D14BCA06FBBA3F26
fileRef
- EC39C0F831B28CE0A358FC7D
+ 6603D50C0C477DFF71AB1ACC
isa
PBXBuildFile
- 2A996CD0C90954B031ACC11A
+ 29EE6613D0F2CDAF0FF4AC8C
+
+ children
+
+ 4C034454DC5687A403530C9A
+ D4CBB02D22D2F4F5C29F3205
+ E543500769C63C6CF458F118
+ 72B9E3A5FEF66E726A571F55
+
+ isa
+ PBXGroup
+ name
+ Support Files
+ path
+ ../Target Support Files/Pods-PocketForecast-ICLoader
+ sourceTree
+ <group>
+
+ 29F2F5DC3EE667230E447137
includeInIndex
1
@@ -3085,44 +2965,13 @@
lastKnownFileType
sourcecode.c.h
name
- HCLongLongReturnGetter.h
+ TyphoonCallStack.h
path
- Source/Core/Helpers/ReturnValueGetters/HCLongLongReturnGetter.h
+ Source/Factory/Internal/TyphoonCallStack.h
sourceTree
<group>
- 2B7B94694B7811305EDF9192
-
- fileRef
- F4F15A1B95F9AD52156B3CAE
- isa
- PBXBuildFile
-
- 2BBBE47907C564C05150790A
-
- fileRef
- 1EC1E0DC825B3D5978B41B14
- isa
- PBXBuildFile
- settings
-
- COMPILER_FLAGS
- -fobjc-arc -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
-
-
- 2BEF5E735ED309EEF65F5E1D
-
- fileRef
- F3D995537EABB20681812916
- isa
- PBXBuildFile
- settings
-
- COMPILER_FLAGS
- -fobjc-arc -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
-
-
- 2BF1B9B219A6FBBDBFE48E7E
+ 2A2DE097B9199751CB71A28D
includeInIndex
1
@@ -3131,195 +2980,211 @@
lastKnownFileType
sourcecode.c.h
name
- TyphoonIntrospectionUtils.h
+ HCIsEqual.h
path
- Source/Utils/TyphoonIntrospectionUtils.h
+ Source/Library/Object/HCIsEqual.h
sourceTree
<group>
- 2BFBABBFEA8CF03F968AAB0B
-
- fileRef
- D66171838B6295D5B413436C
- isa
- PBXBuildFile
-
- 2C1D994C842E605E4B1FBF73
+ 2A618BDD735073650B61E818
fileRef
- 6DE33C7384C4C2A30066FCB9
+ 25BD75A2B7ADEDA00AE557BC
isa
PBXBuildFile
settings
COMPILER_FLAGS
- -fobjc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+ -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
- 2C1E35353E80C12466A872B6
+ 2A83F550D2C728CCBFFB5C79
- fileRef
- 50D81E300F14474C39FDF7C7
+ includeInIndex
+ 1
isa
- PBXBuildFile
- settings
-
- COMPILER_FLAGS
- -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
-
+ PBXFileReference
+ lastKnownFileType
+ sourcecode.c.h
+ name
+ TyphoonInjection.h
+ path
+ Source/Definition/Injections/TyphoonInjection.h
+ sourceTree
+ <group>
- 2C57FD5DBD506E11EE872BAE
+ 2A965F3B28CB279D864666E7
fileRef
- 9FFAA0A0891AA7B721F16D33
+ 0A3E5B6D32501DECF6EFC23E
isa
PBXBuildFile
- settings
-
- COMPILER_FLAGS
- -fobjc-arc -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
-
- 2C75687E3CD72AA3F8D784FC
+ 2AD6FE2F4E21F6CC6A5F6478
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.objc
+ sourcecode.c.h
name
- EXPUnsupportedObject.m
+ MKTFloatArgumentGetter.h
path
- src/EXPUnsupportedObject.m
+ Source/OCMockito/Helpers/ArgumentGetters/MKTFloatArgumentGetter.h
sourceTree
<group>
- 2C83966193931F84EFBDE064
+ 2AE3E95AD8D57A38A0D662C1
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.objc
+ sourcecode.c.h
name
- MKTCharReturnSetter.m
+ TyphoonViewControllerNibResolver.h
path
- Source/OCMockito/Helpers/ReturnValueSetters/MKTCharReturnSetter.m
+ Source/ios/Configuration/Resolver/TyphoonViewControllerNibResolver.h
sourceTree
<group>
- 2CB9F6D50E7A88F43FA7FF55
+ 2B1C394BC9EC78C18472B057
- includeInIndex
- 1
+ fileRef
+ 1CDDFF0CB92AC04956533164
isa
- PBXFileReference
- lastKnownFileType
- sourcecode.c.objc
- name
- EXPMatchers+beGreaterThan.m
- path
- src/matchers/EXPMatchers+beGreaterThan.m
- sourceTree
- <group>
+ PBXBuildFile
+
+ 2B2F5886F6269BE36A961374
+
+ fileRef
+ BC878B2E39BF88AFBE111450
+ isa
+ PBXBuildFile
+
+ 2B79039415652F30B4C1136D
+
+ fileRef
+ F41D93C20738C7BFA9F0A19D
+ isa
+ PBXBuildFile
+
+ 2B97A5A1558943A948516117
+
+ buildConfigurations
+
+ 1961663B9A278F007494BBF4
+ E43EBD0ADCB2AC104406299B
+
+ defaultConfigurationIsVisible
+ 0
+ defaultConfigurationName
+ Release
+ isa
+ XCConfigurationList
- 2CF763A0E68326C6C80A8D78
+ 2BAE3B92FA36D21D6BB88CB4
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.objc
+ sourcecode.c.h
name
- TyphoonMethod+InstanceBuilder.m
+ MKTShortReturnSetter.h
path
- Source/Definition/Method/Internal/TyphoonMethod+InstanceBuilder.m
+ Source/OCMockito/Helpers/ReturnValueSetters/MKTShortReturnSetter.h
sourceTree
<group>
- 2D0CC72797B7669ECFB15711
+ 2BC84A6FD71C3265543CF2FB
fileRef
- 1AA14EE0D4B9DF0ECF0FE604
+ 0C7C2103EF761103D3FE3D99
isa
PBXBuildFile
settings
COMPILER_FLAGS
- -fobjc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+ -fno-objc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
- 2D4F698B08A03A77B86E5E05
+ 2BEC51F19E0197A5434B16ED
+
+ fileRef
+ 5D3F7DDE70A4E17FE22DCE42
+ isa
+ PBXBuildFile
+
+ 2C3C0ABAB59878826C0EB30E
fileRef
- 055BE18E50BC2A6AF73148B7
+ FA6D3992DAF52A76117A783E
isa
PBXBuildFile
settings
COMPILER_FLAGS
- -fobjc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+ -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
- 2DA253962C782B260832F37A
+ 2C47524403C90654EFA5D1D6
+ explicitFileType
+ archive.ar
includeInIndex
- 1
+ 0
isa
PBXFileReference
- lastKnownFileType
- sourcecode.c.objc
path
- UIImage+CKUITools.m
+ libPods-PocketForecast-Typhoon.a
sourceTree
- <group>
+ BUILT_PRODUCTS_DIR
- 2DA8B598B635A281CA68527C
+ 2C5C8F04E48B98B54147FB26
fileRef
- 318D35AD13F3AFE67E8B7445
+ 1C249762195CA723E55AAF47
isa
PBXBuildFile
settings
COMPILER_FLAGS
- -fobjc-arc -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+ -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
- 2DB102B092A3CC6BD9EEFE08
+ 2C79701BE3DE1891206F5424
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.h
+ sourcecode.c.objc
name
- MKTObjectAndProtocolMock.h
+ TyphoonBundledImageTypeConverter.m
path
- Source/OCMockito/MKTObjectAndProtocolMock.h
+ Source/ios/TypeConversion/Converters/TyphoonBundledImageTypeConverter.m
sourceTree
<group>
- 2E244701842148B4F523BF68
+ 2C8B39F4EF490BDBEF1986A5
- includeInIndex
- 1
+ containerPortal
+ 94AF5A4F363AA9649B0CD69F
isa
- PBXFileReference
- lastKnownFileType
- sourcecode.c.h
- name
- MKTBoolArgumentGetter.h
- path
- Source/OCMockito/Helpers/ArgumentGetters/MKTBoolArgumentGetter.h
- sourceTree
- <group>
+ PBXContainerItemProxy
+ proxyType
+ 1
+ remoteGlobalIDString
+ EA629E091DAA649B68E71FB0
+ remoteInfo
+ Pods-PocketForecast-OCLogTemplate
- 2E2C2CF8E2CA66346C1D0F1E
+ 2CB29E8ED1879B5E5476A9D9
includeInIndex
1
@@ -3328,20 +3193,13 @@
lastKnownFileType
sourcecode.c.objc
name
- TyphoonCircularDependencyTerminator.m
+ HCIsNot.m
path
- Source/Factory/Block/TyphoonCircularDependencyTerminator.m
+ Source/Library/Logical/HCIsNot.m
sourceTree
<group>
- 2E59A26CFA40DC9FB98B198F
-
- fileRef
- F1DF01E4D707D0A114F155F6
- isa
- PBXBuildFile
-
- 2E636BECCCCC6598B6999CCE
+ 2CFAB3EF4230558F5DDDC200
includeInIndex
1
@@ -3350,34 +3208,34 @@
lastKnownFileType
sourcecode.c.h
name
- EXPDoubleTuple.h
+ TyphoonDefinition+InstanceBuilder.h
path
- src/EXPDoubleTuple.h
+ Source/Definition/Internal/TyphoonDefinition+InstanceBuilder.h
sourceTree
<group>
- 2E7833A70CF0A0B96C36B2AA
+ 2D01B7EAFBB44E61B85206FA
fileRef
- 07A14C28B9AAE8D5A2D7D1E8
+ 0FF21AB33CC0568E5970807F
isa
PBXBuildFile
- 2E937F91573DD0C3CEDC51E9
+ 2D47272D4943FB46C65BB06B
- buildConfigurations
-
- C2C76F3CF80801B9040C2781
- F08030C5311CAF5A352CEE72
-
- defaultConfigurationIsVisible
- 0
- defaultConfigurationName
- Release
+ fileRef
+ 2AE3E95AD8D57A38A0D662C1
isa
- XCConfigurationList
+ PBXBuildFile
+
+ 2D56A9B53473894A6C6977DA
+
+ fileRef
+ 1B7E7CADAC18E130281F58C2
+ isa
+ PBXBuildFile
- 2E96A4D07FE32BD620A13BAA
+ 2DE2E26BE7EB4FEBCF392F9C
includeInIndex
1
@@ -3386,63 +3244,28 @@
lastKnownFileType
sourcecode.c.objc
name
- MKTUnsignedShortArgumentGetter.m
+ HCWrapInMatcher.m
path
- Source/OCMockito/Helpers/ArgumentGetters/MKTUnsignedShortArgumentGetter.m
+ Source/Core/Helpers/HCWrapInMatcher.m
sourceTree
<group>
- 2E9A78DB82B874E2AC006B0D
+ 2DEC1CC62F015970ECDAE110
- baseConfigurationReference
- 0EA207DDB03AD50F49168010
- buildSettings
-
- ALWAYS_SEARCH_USER_PATHS
- NO
- COPY_PHASE_STRIP
- YES
- DSTROOT
- /tmp/xcodeproj.dst
- GCC_PRECOMPILE_PREFIX_HEADER
- YES
- GCC_PREFIX_HEADER
- Target Support Files/Pods-PocketForecast-NGAParallaxMotion/Pods-PocketForecast-NGAParallaxMotion-prefix.pch
- INSTALL_PATH
- $(BUILT_PRODUCTS_DIR)
- IPHONEOS_DEPLOYMENT_TARGET
- 7.0
- OTHER_CFLAGS
-
- -DNS_BLOCK_ASSERTIONS=1
- $(inherited)
-
- OTHER_CPLUSPLUSFLAGS
-
- -DNS_BLOCK_ASSERTIONS=1
- $(inherited)
-
- OTHER_LDFLAGS
-
- OTHER_LIBTOOLFLAGS
-
- PRODUCT_NAME
- $(TARGET_NAME)
- PUBLIC_HEADERS_FOLDER_PATH
- $(TARGET_NAME)
- SDKROOT
- iphoneos
- SKIP_INSTALL
- YES
- VALIDATE_PRODUCT
- YES
-
+ includeInIndex
+ 1
isa
- XCBuildConfiguration
+ PBXFileReference
+ lastKnownFileType
+ sourcecode.c.h
name
- Release
+ EXPMatchers+beSupersetOf.h
+ path
+ src/matchers/EXPMatchers+beSupersetOf.h
+ sourceTree
+ <group>
- 2E9ED66A3BE5FAF10DCD6677
+ 2DFBF07A8AAD31F6DE45B430
includeInIndex
1
@@ -3451,103 +3274,89 @@
lastKnownFileType
sourcecode.c.objc
name
- HCStringStartsWith.m
+ TyphoonNSURLTypeConverter.m
path
- Source/Library/Text/HCStringStartsWith.m
+ Source/TypeConversion/Converters/TyphoonNSURLTypeConverter.m
sourceTree
<group>
- 2EA183A080F933DF6814AF91
+ 2E22359C14E729F085C32D2B
fileRef
- BCAF36C3A60783E4FA4EC15B
+ C6E7C64A03598C6E696CEA89
isa
PBXBuildFile
settings
COMPILER_FLAGS
- -fobjc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+ -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
- 2EC3C499C2585B029F13D1FA
+ 2E2A23EDD5A0D8B17AA8F429
- includeInIndex
- 1
+ fileRef
+ DFF8E7F66E786A7648DEC9C0
isa
- PBXFileReference
- lastKnownFileType
- sourcecode.c.h
- name
- MKTLongReturnSetter.h
- path
- Source/OCMockito/Helpers/ReturnValueSetters/MKTLongReturnSetter.h
- sourceTree
- <group>
+ PBXBuildFile
- 2EC423B6136A5F401870F8C2
+ 2E7519D3057EB9EAF0331CFD
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.h
- name
- TyphoonBlockComponentFactory.h
+ text.xcconfig
path
- Source/Factory/Block/TyphoonBlockComponentFactory.h
+ Pods-PocketForecast-NSURL+QueryDictionary.xcconfig
sourceTree
<group>
- 2F195390194E9D9799223B6F
+ 2EA8A4BDC48F3DEEE0E7630B
fileRef
- D7706C4E629F1830F79EE9C3
+ F8EA4D74634221FD814CF13D
isa
PBXBuildFile
- 2F641272C2B15CEEB5BD4C3C
+ 2ED6FF9CDA641E2EE3E67694
- fileRef
- 0EBE04C0EC1DD2D8657BA377
+ includeInIndex
+ 1
isa
- PBXBuildFile
+ PBXFileReference
+ lastKnownFileType
+ sourcecode.c.objc
+ name
+ HCIsDictionaryContainingEntries.m
+ path
+ Source/Library/Collection/HCIsDictionaryContainingEntries.m
+ sourceTree
+ <group>
- 2F889F68481B459E3A27D5A2
+ 2EE1900B6A6F7F3B81E06C32
fileRef
- 3C271667AEF8F6BD9B75FB32
+ 12FFF084180C49535499161E
isa
PBXBuildFile
- 2F8EE48F98D45221B169AB41
+ 2F4DC65A64089276D594A74D
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.objc
+ sourcecode.c.h
name
- Expecta.m
+ OCLogTemplate.h
path
- src/Expecta.m
+ Source/Vendor/OCLogTemplate/OCLogTemplate.h
sourceTree
<group>
- 2FA2C62A251F5EF2F6CE4B68
-
- fileRef
- 661FB0C2E2D087856309377B
- isa
- PBXBuildFile
- settings
-
- COMPILER_FLAGS
- -fobjc-arc -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
-
-
- 301F603958961FDB424FEA21
+ 2F96ACFF0ACB995C367772A9
includeInIndex
1
@@ -3556,84 +3365,536 @@
lastKnownFileType
sourcecode.c.h
name
- TyphoonAutoInjection.h
+ TyphoonConfiguration.h
path
- Source/Definition/AutoInjection/TyphoonAutoInjection.h
+ Source/Configuration/ConfigPostProcessor/TyphoonConfiguration/TyphoonConfiguration.h
sourceTree
<group>
- 307E3EE11A47D088653F7F91
+ 2FB70652686C5B8D9E3C28CB
fileRef
- B4E14B480463B9786C8ACF39
+ 23FF67D9AF98407A17C1C1C9
isa
PBXBuildFile
- 3089C30062F92205F42E0E41
+ 2FBCFF6F69B05B1C62DBAF59
- baseConfigurationReference
- AE1FC0C800EFE991F35FF5D6
- buildSettings
+ buildConfigurationList
+ D032EA2354BAE4BD7A13C2D6
+ buildPhases
+
+ 22B894B8336531FBD348412E
+ A3CCC4DEB2BD45A60A12C439
+
+ buildRules
+
+ dependencies
+
+ 04CC8E94CABE44BB535CE9B5
+ FF2C4D717CBCBDDE993C119E
+ 5833162566942EBE5435D7F3
+ 7F2FB313FDDA3334FC1C0CAB
+ D910DFAC759D7A83A1C2905D
+ 8A2266AACE1C84989124832B
+ 370447DD0D3813E7B7CD3DB3
+
+ isa
+ PBXNativeTarget
+ name
+ Pods-PocketForecast
+ productName
+ Pods-PocketForecast
+ productReference
+ 468DD6394E435583E26C0027
+ productType
+ com.apple.product-type.library.static
+
+ 2FD0CD707F2E64F0292B4E49
+
+ fileRef
+ BBAC57E55C4DDBA203912AF9
+ isa
+ PBXBuildFile
+ settings
- ALWAYS_SEARCH_USER_PATHS
- NO
- COPY_PHASE_STRIP
- YES
- DSTROOT
- /tmp/xcodeproj.dst
- GCC_PRECOMPILE_PREFIX_HEADER
- YES
- GCC_PREFIX_HEADER
- Target Support Files/Pods-PocketForecastTests-Expecta/Pods-PocketForecastTests-Expecta-prefix.pch
- INSTALL_PATH
- $(BUILT_PRODUCTS_DIR)
- IPHONEOS_DEPLOYMENT_TARGET
- 7.0
- OTHER_CFLAGS
-
- -DNS_BLOCK_ASSERTIONS=1
- $(inherited)
-
- OTHER_CPLUSPLUSFLAGS
-
- -DNS_BLOCK_ASSERTIONS=1
- $(inherited)
-
- OTHER_LDFLAGS
-
- OTHER_LIBTOOLFLAGS
-
- PRODUCT_NAME
- $(TARGET_NAME)
- PUBLIC_HEADERS_FOLDER_PATH
- $(TARGET_NAME)
- SDKROOT
- iphoneos
- SKIP_INSTALL
- YES
- VALIDATE_PRODUCT
- YES
+ COMPILER_FLAGS
+ -fno-objc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
+
+ 309DBA81EB404BC63DAED7B6
+
+ buildConfigurationList
+ 8E3BC40357E20E616BBD70D2
+ buildPhases
+
+ BE6110D4EB485847F9CB1D03
+ B758138F89246544CEAFFE1C
+ A79EA3266E36D5C542A3FE88
+
+ buildRules
+
+ dependencies
+
+ isa
+ PBXNativeTarget
+ name
+ Pods-PocketForecast-PaperFold
+ productName
+ Pods-PocketForecast-PaperFold
+ productReference
+ 6B4D00C9D0629B4A4FF4A0F0
+ productType
+ com.apple.product-type.library.static
+
+ 30EBBB50AC0D1EF36FC12EDB
+
+ includeInIndex
+ 1
+ isa
+ PBXFileReference
+ lastKnownFileType
+ sourcecode.c.h
+ name
+ HCUnsignedCharReturnGetter.h
+ path
+ Source/Core/Helpers/ReturnValueGetters/HCUnsignedCharReturnGetter.h
+ sourceTree
+ <group>
+
+ 311DE05DC9C44FF46CB4575C
+
+ includeInIndex
+ 1
+ isa
+ PBXFileReference
+ lastKnownFileType
+ sourcecode.c.h
+ name
+ TyphoonAbstractInjection.h
+ path
+ Source/Definition/Injections/TyphoonAbstractInjection.h
+ sourceTree
+ <group>
+
+ 31446349C693FD4C940D7E04
+
+ buildConfigurationList
+ B263D5471BD59ED79FC0F7A2
+ buildPhases
+
+ 71C2D8ACFF4270856CF250C9
+ 7502294822C6CD8926246B8A
+ 4937FB241CBA8E6B014C9F56
+
+ buildRules
+
+ dependencies
+
+ DF707C4A518FD69D4B1A51EC
+
+ isa
+ PBXNativeTarget
+ name
+ Pods-PocketForecast-ICLoader
+ productName
+ Pods-PocketForecast-ICLoader
+ productReference
+ 5120F9626D81EBBBC2526FF5
+ productType
+ com.apple.product-type.library.static
+
+ 316479C6193B9A5E433E1339
+
+ fileRef
+ 6901C97574AE4F15246DA9C7
+ isa
+ PBXBuildFile
+
+ 3188A298D83BC914EEA0D5CA
+
+ includeInIndex
+ 1
+ isa
+ PBXFileReference
+ lastKnownFileType
+ sourcecode.c.objc
+ name
+ MKTObjectAndProtocolMock.m
+ path
+ Source/OCMockito/MKTObjectAndProtocolMock.m
+ sourceTree
+ <group>
+
+ 31C60DC3F2443CC01A6BE227
+
+ includeInIndex
+ 1
+ isa
+ PBXFileReference
+ lastKnownFileType
+ sourcecode.c.h
+ name
+ Expecta.h
+ path
+ src/Expecta.h
+ sourceTree
+ <group>
+
+ 31DB322E70A3E2FF7FF417A3
+
+ includeInIndex
+ 1
+ isa
+ PBXFileReference
+ lastKnownFileType
+ sourcecode.c.h
+ name
+ TyphoonMethod+InstanceBuilder.h
+ path
+ Source/Definition/Method/Internal/TyphoonMethod+InstanceBuilder.h
+ sourceTree
+ <group>
+
+ 320253BAAAF10AFF2632A096
+
+ fileRef
+ E9FB165DB7442C9DC9A14DAD
+ isa
+ PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
+
+ 320D7866948D88B061BB1C4A
+
+ includeInIndex
+ 1
+ isa
+ PBXFileReference
+ lastKnownFileType
+ sourcecode.c.h
+ name
+ HCBaseMatcher.h
+ path
+ Source/Core/HCBaseMatcher.h
+ sourceTree
+ <group>
+
+ 3214EAD410837ECD5877E952
+
+ buildActionMask
+ 2147483647
+ files
+
+ D37477684393FAAC978398BF
+ 72B1FB0ADB4ADE3EA9473DB9
+ 662D4742A399FA46AD63ABE2
+ FA5DA5FF4AF0B77C5C977BF1
+ A4B7E3F4AEEBE38E917DFE9B
+ 3D82F708B7D3B7F70D207D09
+ BCB4CED9D26541F19B399659
+ A8963C2AF51D0B82D2DBDC65
+ E1236C2C0242EBC0D4EAE38D
+ 77B0486A3DEB28A826A58B24
+ 733AB65B5BFF6848F29903E8
+ 35842D63923F4995596F2C12
+ 678409E2D583E92C8795A1D3
+ E8C9434E46BEBB6682A7E881
+ D9D91C8D2F9D125689542B08
+ 63361AC71E146C30E6C7ABE4
+ 7426762AC3A87779423494C7
+ AB052938D8F883D9937ABC9C
+ 623F2EB33F3B54CBC5B2AE0D
+ 87D578BBA0FD78C93567F0B7
+ 1D15607B4D79CD948E71DD32
+ 284F06ECA2B9023D615B3280
+ FE329AD53CA5D762393F3592
+ C938CD4F8DE4F08EE5343C84
+ 0FBBFEE0DB948E326DFFFC0E
+ 86250ABFB2C67CC55580B476
+ D068FB7B9AAF95CCB6AADCBB
+ 3AFE3C76D0CF75BDFFB06C24
+ 756D976BB04A4F95F9C7B283
+ 3FB1994D2025B2CD81088626
+ F6FEC31680712DDBBB5905C7
+ 3CACC046D22F9C634F35D22F
+ D8DCE1EFBEC1BB937FA73DD2
+ E97EA3E39858BF943BE90FC7
+ A888715600FE0CB43F4534F3
+ E8D701CD9D16BF5786F4825E
+ B2FE8ADE27B6F9565061A1C7
+ 7344387A1C26B81337C2F489
+ 094357DF292197150F92EA6A
+ 7139B75571D0BC12F2E39AD7
+ C31DA6C2B861CF0B9CDBB13E
+ 8686FF9506F3F0CDD8AF9FE5
+ EE8D0BFCFC3D75A9E6916E7F
+ 877594B94AB854AF93D352A5
+ E4D6CDEE69FC7F7B117E6E93
+ 1E6AC018F1ECDB8A4A8F38E5
+ 3C1E255E541DC3FE032A20B2
+ 80E25A2D0697DED1CEB2D702
+ 4A8ED88CB68D510349D537E7
+ 4F7D3BC26F12EF4505B6972B
+ 9C3AF2ACFB17A06748ECA702
+ 8D886B158BDC39CD9887E840
+ 93C1E6C7EE5862DFF3EF045B
+ F0031F96E0700ECCCB2C33D9
+ DD45BC650DD33C2C8628CFC8
+ 7087C74F7E110A1F5668514C
+ B7DEE190C1E815A7219F9A28
+ 6500981A4B8FFFD0E4B6A423
+ 4E78C3C9333B133CE36AF5FC
+ 0239511E03855E1F5BE7024D
+ F9EB834AB55586A9FBB57367
+ 28CB6884FEEF85E7E0458EE1
+ 4D6BF93E092BA10D9EE56B81
+ A3FF522DCD5BB3E3A38FE904
+ 69DF5B3530CB161240155371
+ A6FADE23EDD47E0596780A7F
+ 16610DAF0E2A55F29797BF4E
+ 56FC812FCE116C922F68858C
+ 4BA4AE31BBB41D27FA17AB0D
+ AC811DCDCC2AFDCDF5C496A8
+ 3654B4C70DB9C8A7DB56578A
+ 2912867413A2A111C2AE0FA6
+ E57E3310D26EA33988954EDD
+ 343022CB6566EE10E2406D44
+ 9392DB62A8BF7DF1A36983CB
+ 88495D57C9AC80001ABFBE92
+ E8EC9E58E5A2D42CDD55939A
+ 0591D444E40A964337722F1F
+ 9B24E3B68F543CBE451866DB
+ E39F4B6A41F0A2A3EA6DE260
+ E67ABC2578C6251AF3BC6FB5
+ 5919DB154302174ADFA43CDB
+ A63236DF8EEB76547480FD3C
+ 8EF62947C4E27578576E865F
+ DD3B5538960466C294253F9F
+ AEBE105023F9F42C2ED903A3
+ 08B3F5A1002660D4B3006969
+ 7450EBA232E3DC3BD0900BE1
+ E37FC97429CA1499C272C88B
+ E7667F25D23823F4519D4EB7
+ 59FE6A4C102A7AF9ADCD3D43
+ A3D1ADB49859DB45E43273D8
+ 902381EA58F98DEBEEAE7D72
+ 38B95E18C9B72B4C4CC242CF
+ 50D0BEB89E2C661898359F14
+ 4B3377445C51020D64922633
+ FD4567742E2E60D27B8CB871
+ 68E7ED36A5C7FAD277561D13
+ 2D47272D4943FB46C65BB06B
+ E1F73CDDC111201D1950F60B
+ 3E1DAD41D376D210D83D00BA
+
+ isa
+ PBXHeadersBuildPhase
+ runOnlyForDeploymentPostprocessing
+ 0
+
+ 32625CE45EC31A2B9D19C4AA
+
+ includeInIndex
+ 1
+ isa
+ PBXFileReference
+ lastKnownFileType
+ sourcecode.c.objc
+ name
+ HCStringContains.m
+ path
+ Source/Library/Text/HCStringContains.m
+ sourceTree
+ <group>
+
+ 326EB87DB2CF3F96648AAFA5
+
+ includeInIndex
+ 1
+ isa
+ PBXFileReference
+ lastKnownFileType
+ sourcecode.c.objc
+ name
+ TyphoonInitialStoryboardResolver.m
+ path
+ Source/ios/Storyboard/TyphoonInitialStoryboardResolver.m
+ sourceTree
+ <group>
+
+ 329DCC5DC3FE0B0FAED72928
+
+ includeInIndex
+ 1
+ isa
+ PBXFileReference
+ lastKnownFileType
+ sourcecode.c.h
+ path
+ randomDouble.h
+ sourceTree
+ <group>
+
+ 32ABB8AB5E7F52F7BA554A5C
+
+ includeInIndex
+ 1
+ isa
+ PBXFileReference
+ lastKnownFileType
+ sourcecode.c.h
+ name
+ HCNumberAssert.h
+ path
+ Source/Library/Number/HCNumberAssert.h
+ sourceTree
+ <group>
+
+ 32E6895B5B70A028F3EEC18C
+
+ includeInIndex
+ 1
+ isa
+ PBXFileReference
+ lastKnownFileType
+ sourcecode.c.objc
+ name
+ HCIsDictionaryContainingKey.m
+ path
+ Source/Library/Collection/HCIsDictionaryContainingKey.m
+ sourceTree
+ <group>
+
+ 33353153D622CC70F804C4A6
+
+ includeInIndex
+ 1
+ isa
+ PBXFileReference
+ lastKnownFileType
+ sourcecode.c.h
+ name
+ HCIsEmptyCollection.h
+ path
+ Source/Library/Collection/HCIsEmptyCollection.h
+ sourceTree
+ <group>
+
+ 333CD8D733881EFC307F95E9
+
+ includeInIndex
+ 1
+ isa
+ PBXFileReference
+ lastKnownFileType
+ sourcecode.c.h
+ name
+ NSMethodSignature+TCFUnwrapValues.h
+ path
+ Source/Factory/Internal/NSMethodSignature+TCFUnwrapValues.h
+ sourceTree
+ <group>
+
+ 33C2437CABF67792226EA26E
+
+ fileRef
+ 676610CF3183AFA630BC3123
+ isa
+ PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -fno-objc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
+
+ 33FA837E67131E1FD7D72379
+
+ includeInIndex
+ 1
+ isa
+ PBXFileReference
+ lastKnownFileType
+ sourcecode.c.objc
+ name
+ EXPMatchers+beInTheRangeOf.m
+ path
+ src/matchers/EXPMatchers+beInTheRangeOf.m
+ sourceTree
+ <group>
+
+ 343022CB6566EE10E2406D44
+
+ fileRef
+ 986236FFB9CBD3510D3C0738
+ isa
+ PBXBuildFile
+
+ 34306B68C66D8FEC3760180A
+
+ includeInIndex
+ 1
+ isa
+ PBXFileReference
+ lastKnownFileType
+ sourcecode.c.h
+ name
+ TyphoonDefinition+Option.h
+ path
+ Source/Configuration/DefinitionOptionConfiguration/TyphoonDefinition+Option.h
+ sourceTree
+ <group>
+
+ 344F798C5B8255F9A9E7009F
+
+ fileRef
+ 4977ACD8303C38C8AECC9D01
+ isa
+ PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
+ 346131CC7F90C8F1D7F9B1FC
+
+ includeInIndex
+ 1
isa
- XCBuildConfiguration
+ PBXFileReference
+ lastKnownFileType
+ sourcecode.c.h
name
- Release
+ HCIsAnything.h
+ path
+ Source/Library/Logical/HCIsAnything.h
+ sourceTree
+ <group>
- 30A1F6928A657223ACED2A65
+ 34638103E72A4CC892F1857A
fileRef
- 08AB8F55BD07C68A246B5C77
+ 826899A0E8F85DBC0574F2E8
isa
PBXBuildFile
- 30A8C07854DD5595486BEE7A
+ 34806C231B93725D655DF10A
fileRef
- D58649D539B80372D35771E2
+ 05E2D6F2376A1DE7BB09A7D4
isa
PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
- 30BA3E3F4385D37BDEC60226
+ 34CC5D6534D9CBFE5EBF48E6
includeInIndex
1
@@ -3642,214 +3903,497 @@
lastKnownFileType
sourcecode.c.objc
name
- HCGenericTestFailureHandler.m
+ NSInvocation+TCFUnwrapValues.m
path
- Source/Core/Helpers/TestFailureHandlers/HCGenericTestFailureHandler.m
+ Source/Factory/Internal/NSInvocation+TCFUnwrapValues.m
sourceTree
<group>
- 30E7DBEE20E851898D893A52
+ 3509C96103EC2E54860D8827
- fileRef
- F4C06B09C849F9424DADB433
+ includeInIndex
+ 1
isa
- PBXBuildFile
+ PBXFileReference
+ lastKnownFileType
+ sourcecode.c.h
+ name
+ NSDictionary+CustomInjection.h
+ path
+ Source/Definition/Internal/NSDictionary+CustomInjection.h
+ sourceTree
+ <group>
- 30EC80DF301E81CE7115A859
+ 353CF0F5DE2EEE70D85189E6
fileRef
- 8D861C49CA8914B50DE11740
+ 81ECFD9B0044C2A25C95F014
isa
PBXBuildFile
- 30F3C7AD203A1C8442573BE8
+ 354746B950B20439E8992FC8
- explicitFileType
- archive.ar
includeInIndex
- 0
+ 1
isa
PBXFileReference
+ lastKnownFileType
+ sourcecode.c.objc
+ name
+ HCIsCloseTo.m
path
- libPods-PocketForecastTests-OCMockito.a
+ Source/Library/Number/HCIsCloseTo.m
sourceTree
- BUILT_PRODUCTS_DIR
+ <group>
- 310CD0BD5E263BEA634FD274
+ 3564329B5365A3D16915B04A
- buildSettings
+ fileRef
+ 043504D4F259A0F6A54B99B0
+ isa
+ PBXBuildFile
+ settings
- ALWAYS_SEARCH_USER_PATHS
- NO
- CLANG_CXX_LANGUAGE_STANDARD
- gnu++0x
- CLANG_CXX_LIBRARY
- libc++
- CLANG_ENABLE_MODULES
- YES
- CLANG_ENABLE_OBJC_ARC
- NO
- CLANG_WARN_BOOL_CONVERSION
- YES
- CLANG_WARN_CONSTANT_CONVERSION
- YES
- CLANG_WARN_DIRECT_OBJC_ISA_USAGE
- YES
- CLANG_WARN_EMPTY_BODY
- YES
- CLANG_WARN_ENUM_CONVERSION
- YES
- CLANG_WARN_INT_CONVERSION
- YES
- CLANG_WARN_OBJC_ROOT_CLASS
- YES
- COPY_PHASE_STRIP
- NO
- ENABLE_NS_ASSERTIONS
- NO
- GCC_C_LANGUAGE_STANDARD
- gnu99
- GCC_PREPROCESSOR_DEFINITIONS
-
- RELEASE=1
-
- GCC_WARN_64_TO_32_BIT_CONVERSION
- YES
- GCC_WARN_ABOUT_RETURN_TYPE
- YES
- GCC_WARN_UNDECLARED_SELECTOR
- YES
- GCC_WARN_UNINITIALIZED_AUTOS
- YES
- GCC_WARN_UNUSED_FUNCTION
- YES
- GCC_WARN_UNUSED_VARIABLE
- YES
- IPHONEOS_DEPLOYMENT_TARGET
- 7.0
- STRIP_INSTALLED_PRODUCT
- NO
- VALIDATE_PRODUCT
- YES
+ COMPILER_FLAGS
+ -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
+ 356EBFC47D7A23708188C71A
+
+ includeInIndex
+ 1
isa
- XCBuildConfiguration
+ PBXFileReference
+ lastKnownFileType
+ sourcecode.c.h
name
- Release
+ TyphoonInitialStoryboardResolver.h
+ path
+ Source/ios/Storyboard/TyphoonInitialStoryboardResolver.h
+ sourceTree
+ <group>
+
+ 35842D63923F4995596F2C12
+
+ fileRef
+ 83B8B1E253C28C379C8E6359
+ isa
+ PBXBuildFile
- 3111AC587E565A1F1746C394
+ 35C93D5091D5ED8AF3EB5F72
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.h
+ sourcecode.c.objc
name
- HCHasCount.h
+ MKTIntArgumentGetter.m
path
- Source/Library/Collection/HCHasCount.h
+ Source/OCMockito/Helpers/ArgumentGetters/MKTIntArgumentGetter.m
sourceTree
<group>
- 311405EF987BD24797238843
+ 3654B4C70DB9C8A7DB56578A
+
+ fileRef
+ 388AE2208360BD3885450DC7
+ isa
+ PBXBuildFile
+
+ 36A0CD1771271C2FD34F1ABF
+
+ fileRef
+ BE6FB00CF8AD8FA4BAA5C25A
+ isa
+ PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
+
+ 36AAA365446ED21ACF510EC0
+
+ fileRef
+ F20A126801FB88F5B9AF3066
+ isa
+ PBXBuildFile
+
+ 36CE765EEE7DCAAD3CDC07F2
+
+ buildConfigurations
+
+ 91CF3999BF7B1ACB4FD83842
+ F0B1852E67E8EFD534CB85A9
+
+ defaultConfigurationIsVisible
+ 0
+ defaultConfigurationName
+ Release
+ isa
+ XCConfigurationList
+
+ 370447DD0D3813E7B7CD3DB3
+
+ isa
+ PBXTargetDependency
+ name
+ Pods-PocketForecast-Typhoon
+ target
+ AA40588D1293189E877D8591
+ targetProxy
+ 82AB34153D856B821FDAFFCC
+
+ 370693D83BB212F359C0C993
+
+ fileRef
+ 389DE650606FDFD2B5D45722
+ isa
+ PBXBuildFile
+
+ 37563C09A4A242AE79967377
+
+ fileRef
+ ED94691DE6E9426B6A12AE7B
+ isa
+ PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
+
+ 3790375C6D0035D86D6EDB9A
+
+ fileRef
+ 7AAFF7BCC6935FA624A8E7C5
+ isa
+ PBXBuildFile
+
+ 37AE699FA56E13F46FFF8200
+
+ fileRef
+ ECF7DDB3C2C275E88617BBF9
+ isa
+ PBXBuildFile
+
+ 37E3B45EF57A36A4662DE5C4
+
+ fileRef
+ 2A2DE097B9199751CB71A28D
+ isa
+ PBXBuildFile
+
+ 382412215CE01A52C4F02CEA
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.h
+ sourcecode.c.objc
name
- EXPMatchers+beIdenticalTo.h
+ TyphoonInjectionByObjectInstance.m
path
- src/matchers/EXPMatchers+beIdenticalTo.h
+ Source/Definition/Injections/TyphoonInjectionByObjectInstance.m
sourceTree
<group>
- 3118DA5C7BC3069841D3B437
+ 384CB0E667B682938155A387
- buildActionMask
- 2147483647
- files
+ children
- 2BFBABBFEA8CF03F968AAB0B
+ 98E4D3C39C978C1C82EAA0BD
+ 6721F1BA22BB2CD27F68B6FD
+ 65C7B399536EB4AE18B34E8B
+ F6302222D456A88D8B92AB13
+ BD0855CEA5F2C12883EA4DCB
+ 7715906D177DF5FDB4DF476F
+ 27F56194E49435F303A5C11B
+ 7EC39C15C2AF916B91F5A69F
+ 320D7866948D88B061BB1C4A
+ C6E7C64A03598C6E696CEA89
+ 545DBC43C5FEB64EA7E4921D
+ 9C1C632621A994FBBE41B9DF
+ 5D3F7DDE70A4E17FE22DCE42
+ 90E0953E838F212DFBABCCEE
+ 7362073523FC26326BFAE281
+ B8DC1CBC4682ADCF7CFC1186
+ 3BAA9D55D3C138D5146AF927
+ BAC4506949B9D1CAFA5A0D37
+ D2187AF7EEE21AD6CCE33AA9
+ 7DA415D227180EBC0DEA28E3
+ 0A3E5B6D32501DECF6EFC23E
+ A03621938ABF30851F225A8D
+ 50E9DC92D7233EE7D4B73A33
+ 90D33726263BE6D919903A6A
+ BC821A8561653EE50A7363EF
+ 4E4EA19D68E83D0873B571B9
+ 24F75D8CEB430699C6B904F0
+ EF5A20BCF37707E870707162
+ F16FC51ACEB508F495FAAD9E
+ 9B1D86E1D855155024698F63
+ C6DDA6FD1BF4FC9453561D1D
+ DF960B63D0DDF9B42A782A8F
+ 9C7BD80C3AB23D7B78804471
+ 7AAFF7BCC6935FA624A8E7C5
+ 5B27D309110DF24FA0FEF7A0
+ F3807A03256B8148E31EFDB5
+ EA62F478E9FB9414B17F4F6D
+ E5CB6114CF29D266FEABC5ED
+ 1708A1C0F17AFF178A22022A
+ FCDCB8CBFD72298C8F65D5A3
+ 02FA6C0741E23D11449C0B37
+ 1DFDBF4B58FB6EFCB7A15D47
+ 52DBC481E3B193D50B40EC24
+ 744DB94125D2664AFD6C30AD
+ 5946A06357B09FB03BC55DE5
+ 346131CC7F90C8F1D7F9B1FC
+ C77F13014D3DB5649A9512A8
+ 8A0119C90CD678EAA80797E1
+ 354746B950B20439E8992FC8
+ 759FCAFBD30FC9C617CFE1FE
+ E5C00397CCF5CC99E9B37CC4
+ 791F10773DBD6C7FD8B4086F
+ B27B7407C8CEFCF3BC77B6AA
+ 6C3BA0A2958916D831E11FF0
+ 4CEA816958C28CD51CA08B1D
+ AF989E4F8F5CE4BEA8A66919
+ 4FFC309E249F0AECEE75B5C8
+ 5A436FFA21DB7818AE62EA3D
+ B39245D26DF691DFDEA46B47
+ 40E0CC927095D18ABC3D0DAF
+ 2ED6FF9CDA641E2EE3E67694
+ E91F6EB34529D94F1DD6779A
+ 32E6895B5B70A028F3EEC18C
+ 81ECFD9B0044C2A25C95F014
+ 430CEB6031552C531E0180A2
+ 33353153D622CC70F804C4A6
+ 0E03FAB272FF3B1F4F32B789
+ 2A2DE097B9199751CB71A28D
+ 15F285883E525C7BA8B359EA
+ A9E527AC46EB6F998C82BA65
+ 896CD42AF24F61977DDE050A
+ 23AED3248C9A787DD57836EA
+ 61D74EEA353123FB746AFA79
+ B70561061E9E83FCF9AC9453
+ 92C557794316C7918E59FA84
+ B779DFC384525C3314A5EBD2
+ 7EB40C47FADDAAAE9C0D6330
+ 95C730F5AA3BFCF3FB3B3579
+ 61E86E30ADBF322F0CBA56DC
+ 44CF7A8979027D26A337D1D7
+ 7EA54311FC89A7958772373A
+ 9BCF1C8BD5AD9CC6FD16B6A5
+ 2CB29E8ED1879B5E5476A9D9
+ BCA93382656A0513A01968B0
+ B249D790379229DED9FBB919
+ 4240BF30EFAA2D77E9D3F7AE
+ 96FA23FC8E121AA3AFC8800F
+ B08AC4B84F99F06C74753221
+ 28D44094526C5904543EFDF9
+ DBE641793358F374CFDBEAC7
+ 1EB4E6F9B98F8A68B1B5474C
+ 10A042DABC1D7F4118BF97F8
+ 3CAB0694FFEF1F867C9CB02B
+ ECFB905EFA574B333A328BF3
+ 32ABB8AB5E7F52F7BA554A5C
+ 79BC53E356EE9AB6AFDD957B
+ AF1AF7F4A4C162D0A4239D65
+ B939A9ADE9713D414AE86151
+ 77B0C65AF3DB0793246B0FC7
+ C2CDFC2C35A3009509BC2ADF
+ F3A77ABFD33566283A90E0E2
+ 97C3D0CFAF32323D5ACAE47A
+ 17DE9150E15B2E4426ACD256
+ A097E7CC2543533255DF344D
+ 570E7470FCA365FB7D3A867F
+ F945A234D2146936D52B77EA
+ 9668716E799AB4947FAF6E35
+ 4270B3D3B6EC757E715E2CEC
+ 8BF71082E81897452ABDC942
+ 6ADACBD7E122AABBEB835D67
+ 18171E91389C6974D5AFEFDE
+ 0D5DE34379288561FF956418
+ 32625CE45EC31A2B9D19C4AA
+ F20A126801FB88F5B9AF3066
+ D0184781AAFBA9934E0FE071
+ E236B980FB632D7B83605AD1
+ D0175D953A50F541347C6DC2
+ CAC1704B7895AD0448F0FD8A
+ 5B1AFB92EC81A862023907C3
+ 1CDDFF0CB92AC04956533164
+ 0DAE51CFD1D7B73A27BC4A19
+ 6603D50C0C477DFF71AB1ACC
+ 3873E8A306F6D08AAC97B37F
+ 755114FE91AD00D7B3911FF0
+ AAD2185F5011CB60702C45F7
+ 6901C97574AE4F15246DA9C7
+ 0230985ECD3DE7FBFF40A9FC
+ BB2941F55548D2C69DC9AAE9
+ 42512C8BFB4FA37A33641B4D
+ A7A55E642EA8362A2B3BCA35
+ 5F7E5B7ED73014B6E9838119
+ 30EBBB50AC0D1EF36FC12EDB
+ 7A9C0601A279A0E2A8767317
+ EE818A50BB7E3F718FF1CAF9
+ 16D407F8DE1EA1AC0D9C842B
+ 5B329A9E99B2C8C126205076
+ 2620E4207645AAB4D5C5A21E
+ A9410FBC9F604F417126676F
+ C229DC47DBC0240447E65ECF
+ 5B2F09D9154AC86094D2DB00
+ A8CF5EBA53C3E4F61A9C0B47
+ 9F60BF29703CD68CD66ADCBB
+ 2DE2E26BE7EB4FEBCF392F9C
+ D12E97B5802920FAF5F98491
+ B04A719A5632B987F1E0F014
+ 90EC8DD1431B9BB14A1CE351
+ F46F33C407DD2E8E12F96E22
+ 25081C6D63B640FFC3D889C9
+ 8E2DADFF8A491407394529A5
isa
- PBXHeadersBuildPhase
- runOnlyForDeploymentPostprocessing
- 0
+ PBXGroup
+ name
+ OCHamcrest
+ path
+ OCHamcrest
+ sourceTree
+ <group>
+
+ 3873E8A306F6D08AAC97B37F
+
+ includeInIndex
+ 1
+ isa
+ PBXFileReference
+ lastKnownFileType
+ sourcecode.c.objc
+ name
+ HCSubstringMatcher.m
+ path
+ Source/Library/Text/HCSubstringMatcher.m
+ sourceTree
+ <group>
+
+ 388AE2208360BD3885450DC7
+
+ includeInIndex
+ 1
+ isa
+ PBXFileReference
+ lastKnownFileType
+ sourcecode.c.h
+ name
+ TyphoonNSURLTypeConverter.h
+ path
+ Source/TypeConversion/Converters/TyphoonNSURLTypeConverter.h
+ sourceTree
+ <group>
- 318D35AD13F3AFE67E8B7445
+ 389DE650606FDFD2B5D45722
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.objc
+ sourcecode.c.h
name
- PaperFoldSwipeHintView.m
+ EXPMatcherHelpers.h
path
- PaperFold/PaperFold/PaperFold/PaperFoldSwipeHintView.m
+ src/matchers/EXPMatcherHelpers.h
sourceTree
<group>
- 319803C679389D54A1BD6A1C
+ 38B95E18C9B72B4C4CC242CF
+
+ fileRef
+ 786EE3C30DA45D9DBFB66650
+ isa
+ PBXBuildFile
+
+ 3901605D1CF2ABBD27ABA6C6
+
+ fileRef
+ 90E229F23C0F17C306D47E18
+ isa
+ PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
+
+ 39177EF38E6F4AC3540A7A61
+
+ fileRef
+ 70A59998C2D275A3B454ECED
+ isa
+ PBXBuildFile
+
+ 393500007D970D776E858E54
fileRef
- 5E5C4674C26D2BC05D9B70CA
+ A29D1155F48BCA80977F4ED2
isa
PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
- 31A2F8D63FB80014F8539616
+ 39624CA83B40CA7064B9416E
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.h
+ sourcecode.c.objc
name
- HCInvocationMatcher.h
+ MKTCharArgumentGetter.m
path
- Source/Core/Helpers/HCInvocationMatcher.h
+ Source/OCMockito/Helpers/ArgumentGetters/MKTCharArgumentGetter.m
sourceTree
<group>
- 31D2B2C9E36AE1E1708F38F4
+ 3983750E757F525E565AE167
fileRef
- 32C72F1B74A7428CF3E81C19
+ 5594398E6685111ED1A4507E
isa
PBXBuildFile
settings
COMPILER_FLAGS
- -fobjc-arc -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+ -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
- 31D8F7F3EE003758D97B1D47
+ 3ACB05DAD3E4EAC512D067F2
- buildActionMask
- 2147483647
- files
-
- F6CA403144C6CFFE6A150016
-
+ fileRef
+ 17FFCF5565E8E33C13964C53
isa
- PBXSourcesBuildPhase
- runOnlyForDeploymentPostprocessing
- 0
+ PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
- 3208EB7C5D920305AB991EF2
+ 3AFE3C76D0CF75BDFFB06C24
fileRef
- 87BCA50D7E7AED86F4753B6E
+ 7D2E25E412999023E1902628
isa
PBXBuildFile
- 320EA20DD8DB8FA9A49B443D
+ 3B622E0C3534E67D1B318CC5
includeInIndex
1
@@ -3858,13 +4402,13 @@
lastKnownFileType
sourcecode.c.objc
name
- MKTUnsignedLongLongReturnSetter.m
+ TyphoonParentReferenceHydratingPostProcessor.m
path
- Source/OCMockito/Helpers/ReturnValueSetters/MKTUnsignedLongLongReturnSetter.m
+ Source/Factory/Internal/TyphoonParentReferenceHydratingPostProcessor.m
sourceTree
<group>
- 32131004E857FFEEF9A22110
+ 3BAA9D55D3C138D5146AF927
includeInIndex
1
@@ -3873,222 +4417,69 @@
lastKnownFileType
sourcecode.c.h
name
- HCAssertThat.h
+ HCCollect.h
path
- Source/Core/HCAssertThat.h
+ Source/Core/Helpers/HCCollect.h
sourceTree
<group>
- 3216BC8BB11559A1E5D9E100
+ 3C1E255E541DC3FE032A20B2
- buildActionMask
- 2147483647
- files
-
- 78FC14E61EC590ED60466402
- 7FBAFDE592FC084FF1FB3EFE
- B844CD20337523A4B77CD253
- 35C39D43414C5822AAD2F92E
- 787D556698ED4F5EBEC4ABFF
- 7409DCF8614BD30BBE89421D
- DB985EA81333AF45F39892FB
- B0D83B103948E93FE7C8C20D
- 299EE92A4E1226D4ABAEF698
- A5071ED000718E71AA7821F6
- 48EB812BD1642776F96DDDAC
- 43C917E87EF3D8B938600DA1
- 00204494E69013481CD05D93
- 70FC889AB28E53FB7FDF28AF
- 6D8437365A6AB76487C4C7FC
- 85CC734D2DF7FD596B1846A1
- E4598AE996D1156EECBC05E9
- FA640B7630A48626A6C91B38
- D1B89646A6163C75BAE07D32
- 551E8CB6D0B38656FD413891
- 33598DE828BE0E28EBF2524C
- 24A673165D9D38AF0D7F0668
- 163953B609CC763051039334
- 9BF2236FB159954BF5F03886
- 914A4CA67FDE8C0182ABC1F7
- E5BFD8A30C79EF2076D294DB
- 18224CAC9BCB0B32327F23F9
- 43EE95E12029DCBCC90006F1
- 0B743D2222BF987F83FEB968
- 4C458F446AD85E8314FB98A1
- 9559EB59EA4B344ED43718AC
- 14790DE90115D07A6F2A15C9
- 65AD6F8B91B6BE5B4BC30C17
- F2A11C267915DB4FE58A291B
- 3EF91C64B8318FC577CAF22A
- 25DAAD184F245688887E9B42
- 64FAFE9C45E56DC0FBBC015B
- 12F8A9A163F09A77E334C6EA
- F7F550626161192E1D883DA9
- 30A1F6928A657223ACED2A65
- AB94BDFFF24F09D8D0C8B33B
- 86E1BCDE02BCDF42CB148D66
- E27DFF0000371F16A04C5AF7
- CF80ED07A0D456E99AC66A87
- 250666FA9A2C1E62EBE82324
- DE3975B176753D845144EBBE
- 8B6F1FEE89D1EAF14E14366E
- 7C5E4852D101D9F115F4ABB3
- 15A3F8CED40A710805366567
- 79362DA3D3E5B22F9BCA390A
- E66EDB5854ECAE06192DF949
- 1077DBFEEFB8D0574C5D616A
- E80ACE646BFBF4A4F94ADC0E
- D4DBCE9C926659AE1A8606C7
- 4556AA5B6AEAC5FB1DA5C0A7
- A6F51DEFAD79C9B79A3B0855
- 83C03091310A90F699B54EA9
- C4D38D31D51D5DF30E4109FA
- 8035E7F4004CF83467EC5CFC
- 9EDF171E30294879B574B039
- C3C6D7835D379DA87226FE4A
- F18656CA213873F07F5C9A07
- FED445A7B31D9A4FF97FC12D
- F695453CDE254EC1375F8E39
- 30E7DBEE20E851898D893A52
- 6A0CED389714BE516A7BDC23
- B4113CB24628794A59D045AB
- 6F1890A5F3EBF9BA192148C3
- 644594ABA56847E3CBB4FCE1
- 8A25C15F8866CE85FC8B2732
- 1CB599D3C9A895C4156E97EC
- 509B572D79E1B514A6102B41
-
+ fileRef
+ 0AD46997A7CF6BF4A850C2BC
isa
- PBXHeadersBuildPhase
- runOnlyForDeploymentPostprocessing
- 0
+ PBXBuildFile
- 321A4885741B72A9002A54E7
+ 3C48E4C5CF2B9E562A631981
- buildActionMask
- 2147483647
- files
-
- C65DB4461F2C55DAF4C30AA4
- E7D97850E41538AA5C4A6CA4
-
+ includeInIndex
+ 1
isa
- PBXFrameworksBuildPhase
- runOnlyForDeploymentPostprocessing
- 0
+ PBXFileReference
+ lastKnownFileType
+ sourcecode.c.h
+ name
+ MKTObjectArgumentGetter.h
+ path
+ Source/OCMockito/Helpers/ArgumentGetters/MKTObjectArgumentGetter.h
+ sourceTree
+ <group>
- 32664385078F93C2A666AE55
+ 3C66B921AF4E0357B717A7BA
fileRef
- 40DDE7E0EAEA00FE379D72AD
+ 32E6895B5B70A028F3EEC18C
isa
PBXBuildFile
settings
COMPILER_FLAGS
- -fobjc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+ -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
- 329113BCB55819FC94C24C95
+ 3CA31DB26D4A4D7C85C35E60
- children
-
- 54DC237870D48F7981187DB3
- 70BF6A646BAA0B5A74F36507
- 44FC5667792F3549301783F4
- 50D81E300F14474C39FDF7C7
- A038FEB6F78FDBDB15F2D1CC
- 2E636BECCCCC6598B6999CCE
- 8AF2889C49615B471CDFFCBE
- 44A699A343636DFA1DECC8F2
- E991CEDC631D725520F39AA3
- 8610F04E42582B5FD19FC8BE
- 1581B991662F13FA4FC282F4
- 0EAE3520D7A46854DA0043C1
- F8AA5E1E5D1E05B4E81C371D
- AC034BED1BA0D5BD7FE1CBCC
- 1089FD861E66FCAFC04B7345
- 57EC6BC20BE76B96A6D9C342
- 6FDA3192E48CC80A8D0D86C3
- 9B3525C50ABC6816A6D6D2CB
- 43D5DBE24923EDBE011DB617
- 86F2C20671AB7A6DAFD686DB
- 2CB9F6D50E7A88F43FA7FF55
- 74A7F82C8842A4891DE91800
- 25268F90C85770CB4C8A7CC9
- 311405EF987BD24797238843
- 271C1D47E29BBC36B5641B74
- 8EB809FE338947EE4BCF59F4
- 81B7A87C241CC86D7942B171
- 989324BCAAE23796E22395EE
- B6D1041F63D32D97B513730A
- AE2E7E5B3C75B349DC937A93
- 3C615D5CA30D22007625EDC5
- 0815E5742B6AF6C32596FACB
- 96224BB7CABEEA15D47CC054
- 8C30DB2DD4D9E8A0AAC1F819
- 0661A8CD49660D17A9D23642
- 02A240D2937D4DB10DA9C73E
- 4D646FC2F5F56A601B10F13B
- 13DD25621A7CF13FA27F8E81
- F23A49EC398208FDA8F3A4FC
- 5572523E1D73EAA04A9A221D
- FB293E7DC88E5CF65C965917
- A0B66FA14196E9757A1D79E2
- 670488BB04F3A70DA4763FE1
- 557E3C1F0F32391126F72351
- 53E350BD02AB7DDF5A87218B
- 7E22059758D99D00904349FF
- 933F02B5AA0D0C391240B5CE
- 720EFE45B0C344FE510CDBF1
- B989A76BE2772B72F66B94B8
- CAB5DFF8467310866E4CE5F1
- BA989B6E5BEE1B5231C3DC4F
- F1B2D2FEAE9B61A137F30869
- AEBEE301923316E784909C67
- 6DF52A776541B883C5476113
- 36FE9723E34F26B3E11B55CF
- 8D605DE0037E2EC94967E53B
- 03C43BA0E078F7D3CA1256BD
- DC4657442D97C2223C053CEB
- FAE8C75671510D0893C0CEB7
- BA1DB5F9C608FF00987CA73B
- 802FF5C8069F3A6433E1FDD7
- 16DB9C2391B4C9FD0A879A78
- 20E8F85BB5F3CFB66FFB017F
- AE50B08C331ACA5265B05035
- 2C75687E3CD72AA3F8D784FC
- E9EA9FB533AC6215F8AD91A4
- 2F8EE48F98D45221B169AB41
- 75C90320FFD5E0886237B4C0
- 6CCF3B9DB01DF98E8C827C0D
- 11405FFCA050C51449EF46B1
- C9C70FCB1D4A5C0882B0F822
- E4509060854BF09C168E6B26
- 6F70BEA1C776E849DF6FDAD7
-
+ includeInIndex
+ 1
isa
- PBXGroup
+ PBXFileReference
+ lastKnownFileType
+ sourcecode.c.objc
name
- Expecta
+ UIView+Screenshot.m
path
- Expecta
+ PaperFold/PaperFold/PaperFold/UIView+Screenshot.m
sourceTree
<group>
- 32BFC4C57C97065C0D9D1979
+ 3CA9A85C8932ABE6DD0218B0
fileRef
- 57604C01A9AA4C110A636563
+ 719BC9A8D1379282E74A5E9E
isa
PBXBuildFile
- settings
-
- COMPILER_FLAGS
- -fobjc-arc -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
-
- 32C417CA47F37F86B5CD5D23
+ 3CAB0694FFEF1F867C9CB02B
includeInIndex
1
@@ -4097,13 +4488,20 @@
lastKnownFileType
sourcecode.c.objc
name
- TyphoonDefinition+InstanceBuilder.m
+ HCLongReturnGetter.m
path
- Source/Definition/Internal/TyphoonDefinition+InstanceBuilder.m
+ Source/Core/Helpers/ReturnValueGetters/HCLongReturnGetter.m
sourceTree
<group>
- 32C72F1B74A7428CF3E81C19
+ 3CACC046D22F9C634F35D22F
+
+ fileRef
+ 7816848F0A38DC98AAB9169D
+ isa
+ PBXBuildFile
+
+ 3CED84D8F1A1F1D4A3CFCA26
includeInIndex
1
@@ -4112,25 +4510,20 @@
lastKnownFileType
sourcecode.c.objc
name
- TyphoonInjectionByComponentFactory.m
+ MKTShortArgumentGetter.m
path
- Source/Definition/Injections/TyphoonInjectionByComponentFactory.m
+ Source/OCMockito/Helpers/ArgumentGetters/MKTShortArgumentGetter.m
sourceTree
<group>
- 3334FAF8BBB50A7AD0473BD6
+ 3D32740DA32A838020F3AFB0
fileRef
- BCCE9A54DA601F0D28050DA5
+ 2BAE3B92FA36D21D6BB88CB4
isa
PBXBuildFile
- settings
-
- COMPILER_FLAGS
- -fobjc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
-
- 33575795595FEDA4EDF717C1
+ 3D4ABCA41A1609B07976E774
includeInIndex
1
@@ -4139,270 +4532,147 @@
lastKnownFileType
sourcecode.c.objc
name
- TyphoonWeakComponentsPool.m
+ MKTReturnsValue.m
path
- Source/Factory/Pool/TyphoonWeakComponentsPool.m
+ Source/OCMockito/MKTReturnsValue.m
sourceTree
<group>
- 33598DE828BE0E28EBF2524C
+ 3D82F708B7D3B7F70D207D09
fileRef
- 82B4A1FA770B1479A4F376CE
+ 333CD8D733881EFC307F95E9
isa
PBXBuildFile
- 33632CAEF9589AF8309F303B
+ 3D8505B56024E5C1B7DCCC27
fileRef
- 8AF2889C49615B471CDFFCBE
+ 791F10773DBD6C7FD8B4086F
isa
PBXBuildFile
- settings
-
- COMPILER_FLAGS
- -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
-
- 33884E2202F2E2669425AB7F
+ 3E1DAD41D376D210D83D00BA
fileRef
- 9AFE0091F8FBC7DCD1845DE9
+ F3AFC954F7769D510E9B0A7C
isa
PBXBuildFile
- settings
-
- COMPILER_FLAGS
- -fobjc-arc -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
-
-
- 339183A9E81735D0849E4BD4
-
- baseConfigurationReference
- 97EF099C4B36F40FB84BD8E8
- buildSettings
-
- ALWAYS_SEARCH_USER_PATHS
- NO
- COPY_PHASE_STRIP
- YES
- DSTROOT
- /tmp/xcodeproj.dst
- GCC_PRECOMPILE_PREFIX_HEADER
- YES
- INSTALL_PATH
- $(BUILT_PRODUCTS_DIR)
- IPHONEOS_DEPLOYMENT_TARGET
- 7.0
- OTHER_CFLAGS
-
- -DNS_BLOCK_ASSERTIONS=1
- $(inherited)
-
- OTHER_CPLUSPLUSFLAGS
-
- -DNS_BLOCK_ASSERTIONS=1
- $(inherited)
-
- OTHER_LDFLAGS
-
- OTHER_LIBTOOLFLAGS
-
- PRODUCT_NAME
- $(TARGET_NAME)
- PUBLIC_HEADERS_FOLDER_PATH
- $(TARGET_NAME)
- SDKROOT
- iphoneos
- SKIP_INSTALL
- YES
- VALIDATE_PRODUCT
- YES
-
- isa
- XCBuildConfiguration
- name
- Release
-
- 33C31F45327B944AC75488B0
-
- includeInIndex
- 1
- isa
- PBXFileReference
- lastKnownFileType
- sourcecode.c.objc
- name
- HCFloatReturnGetter.m
- path
- Source/Core/Helpers/ReturnValueGetters/HCFloatReturnGetter.m
- sourceTree
- <group>
-
- 33F325074AA7C1ACA4912057
-
- isa
- PBXTargetDependency
- target
- 27CAA3B59D184B739958E85E
- targetProxy
- 08DC2C5453B05946BC10013C
- 34127087BB94907802F4A0A3
+ 3E763831D9EE3703733E7770
- buildConfigurations
+ buildConfigurationList
+ 2B97A5A1558943A948516117
+ buildPhases
- E430A75F7AC5136481B0A82E
- 88DE36DB47186F0BCD2E90AD
+ CEEEC3651EC23B5B4F026836
+ 201A8514D4F47AE25AE6E328
+ 00F6CF9BA5A7A029E567A5D9
- defaultConfigurationIsVisible
- 0
- defaultConfigurationName
- Release
+ buildRules
+
+ dependencies
+
isa
- XCConfigurationList
+ PBXNativeTarget
+ name
+ Pods-PocketForecast-CKUITools
+ productName
+ Pods-PocketForecast-CKUITools
+ productReference
+ CED84F039EF578F84A4579CA
+ productType
+ com.apple.product-type.library.static
- 346B644013FE9F9F04128EA0
+ 3EB3C6B2FB1C5302EE104371
- buildActionMask
- 2147483647
- files
-
- 85899F7AE4E7FAD658731611
- B7FBD4857D831E251DC4C6D9
- F7935B65919F5C6869C1B934
- 9C0A14FA2FF261FE17CB3782
- 82A471BF3F12DD2292FC7A1C
- 12947A08F3A313F70E6AA361
- AF5D0192FD8BBF5BB393F9FF
- 666D7F10129BB9B3DD482A4B
- 9304D178CF069801CEBE63E0
- EF148740F9A2F5B8D32E9A0E
- E454EB29A62938440A731C71
- 85D75AD9CFBA49A5FFCAE959
- EB80E2145E750344F0C13130
- A4F11A583BDE8576271AA1B5
- EC1793382271E9CB703E263E
- 899D0302E42BFB050E2A537A
- F9AC5614FD3513F2D8FB89AD
- 57C8407EA3DE671DE790B85F
- 54EEB7A984853A1AE746B0FC
- 1230E0170E0CD497214CF1F7
- 97FC981EC79C5CE936E1E663
- D2925EBF1BEBA12B4FC11C46
- 1B7E3A93A78538CCA417F428
- 2690F06DFDC26401312B60DC
- 42936D984830E3A3B5B1401D
- C0D175D3860CD8084E81F0C2
- D3055671CC70FC8C89A55C72
- 9D7D03A7C2BD9250E8F7700A
- ACB5A3A68820F7CFD304013F
- C480CCDE41BB6D06A75E7EF6
- 3B680478218199815D37CF46
- 680DB60D19652A531D0D597C
- D088103AC691B09FCA007E9B
- 5D3ECF2F6E7ED35ECC9C6E9A
- 0D778D2CAB50D32ADCECBFF0
- 3BAA312A9E908A76F30B8E7B
- 89D025FF73BEFA2E1221E3FA
- 6C24AF44E970B3CA530E0997
- 68C1928B675330417C916F2B
- 153F864DE9859ABD41ABA154
- 1AD5F9F461F54DC7D622C3A4
- 35C8984F29CCF0B5A8E35A77
- 7F14FD44F495FE548A2E9F0D
- EC18134D210911194D531906
- D93266433CA7FE72ECC2D9D4
- 05E7CE1A6230EE2739FEEC11
- 3334FAF8BBB50A7AD0473BD6
- 2D4F698B08A03A77B86E5E05
- 026D965CC07B76967D474E2A
- EDB97A0E9143DE7322CD7567
- A31AE3D8C56E5D0FD57CB151
- 0B05431C8B3BB7F2B1AA395F
- 9A59DF3398CF12A376EFB15B
- CD43CB60AB9F322B0FF93300
- FA287D20CCA90007F83A4947
- CE70B7DC329AC1FF5D41AA2D
- F0B40E2C164752FE89FF12C2
- 9C5005A19EB49C10741F95B8
- 21F0F64A8F41D2302F6CAF47
- 2143440273EA51176D3E8BA3
- 27BB2D24C827DEBA4186D600
- 87EB2E637DDEAB37B72B8962
- 39C73DAEADBB0D67D3B3D21C
- 6E5FBEF5EDA9469F32511E2E
- A0854561DDE7397A48555F0B
- 046CC279AA99874076CE7EE6
- 161CB2AECC913A83D63C64D7
- C1EBAF075FC2810B8258F5C9
- B1FC9CB760BBE7E08264DAB8
-
+ fileRef
+ 5A436FFA21DB7818AE62EA3D
isa
- PBXSourcesBuildPhase
- runOnlyForDeploymentPostprocessing
- 0
+ PBXBuildFile
- 3481B039F0BFFA27E39D4063
+ 3EBB276E99A4B236F354E238
- includeInIndex
- 1
+ buildSettings
+
+ ALWAYS_SEARCH_USER_PATHS
+ NO
+ CLANG_CXX_LANGUAGE_STANDARD
+ gnu++0x
+ CLANG_CXX_LIBRARY
+ libc++
+ CLANG_ENABLE_MODULES
+ YES
+ CLANG_ENABLE_OBJC_ARC
+ YES
+ CLANG_WARN_BOOL_CONVERSION
+ YES
+ CLANG_WARN_CONSTANT_CONVERSION
+ YES
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE
+ YES
+ CLANG_WARN_EMPTY_BODY
+ YES
+ CLANG_WARN_ENUM_CONVERSION
+ YES
+ CLANG_WARN_INT_CONVERSION
+ YES
+ CLANG_WARN_OBJC_ROOT_CLASS
+ YES
+ COPY_PHASE_STRIP
+ NO
+ ENABLE_NS_ASSERTIONS
+ NO
+ GCC_C_LANGUAGE_STANDARD
+ gnu99
+ GCC_PREPROCESSOR_DEFINITIONS
+
+ RELEASE=1
+
+ GCC_WARN_64_TO_32_BIT_CONVERSION
+ YES
+ GCC_WARN_ABOUT_RETURN_TYPE
+ YES
+ GCC_WARN_UNDECLARED_SELECTOR
+ YES
+ GCC_WARN_UNINITIALIZED_AUTOS
+ YES
+ GCC_WARN_UNUSED_FUNCTION
+ YES
+ GCC_WARN_UNUSED_VARIABLE
+ YES
+ IPHONEOS_DEPLOYMENT_TARGET
+ 7.0
+ STRIP_INSTALLED_PRODUCT
+ NO
+ VALIDATE_PRODUCT
+ YES
+
isa
- PBXFileReference
- lastKnownFileType
- sourcecode.c.h
+ XCBuildConfiguration
name
- MKTInvocationMatcher.h
- path
- Source/OCMockito/MKTInvocationMatcher.h
- sourceTree
- <group>
+ Release
- 34DC1E33EF648E42A3EAEDAD
+ 3ECDB7B0669FD7D22D9645D9
fileRef
- 881A63EBE73C042BD2DD1FFE
+ B837139887BCEBD1B9E8A7B9
isa
PBXBuildFile
- 34DF7BE24BF6C84AB523E0B2
-
- includeInIndex
- 1
- isa
- PBXFileReference
- lastKnownFileType
- sourcecode.c.h
- name
- HCClassMatcher.h
- path
- Source/Library/Object/HCClassMatcher.h
- sourceTree
- <group>
-
- 3515B274EB0C8320679C0526
+ 3F31082A45C4EB51A377E9B6
fileRef
- 2E636BECCCCC6598B6999CCE
+ B8A653E060BD24A15AB2F2C8
isa
PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
- 351A658A6F07B5C338B2F11D
-
- includeInIndex
- 1
- isa
- PBXFileReference
- lastKnownFileType
- sourcecode.c.h
- name
- TyphoonTypeConverterRegistry.h
- path
- Source/TypeConversion/TyphoonTypeConverterRegistry.h
- sourceTree
- <group>
-
- 35217750E2613BE3FAD62A0D
+ 3F3853F476E94BA7BAD77C04
includeInIndex
1
@@ -4411,45 +4681,32 @@
lastKnownFileType
sourcecode.c.objc
name
- HCCharReturnGetter.m
+ MKTClassReturnSetter.m
path
- Source/Core/Helpers/ReturnValueGetters/HCCharReturnGetter.m
+ Source/OCMockito/Helpers/ReturnValueSetters/MKTClassReturnSetter.m
sourceTree
<group>
- 35C39D43414C5822AAD2F92E
+ 3FB1994D2025B2CD81088626
fileRef
- E52DA258A8CBBF88D27FCA69
+ 5FF016F005CEA2047B80ABD1
isa
PBXBuildFile
- 35C8984F29CCF0B5A8E35A77
+ 40C0F6D9B8DB943D0FD4C766
fileRef
- 4A048EDC4FD2A6D727315ABB
+ E3D22CE3BD0E05350123A62B
isa
PBXBuildFile
settings
COMPILER_FLAGS
- -fobjc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+ -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
- 35CCEBEF9958083293396923
-
- includeInIndex
- 1
- isa
- PBXFileReference
- lastKnownFileType
- sourcecode.c.objc
- path
- Pods-PocketForecastTests-Expecta-dummy.m
- sourceTree
- <group>
-
- 35CDED577270714778EB0E6F
+ 40E0CC927095D18ABC3D0DAF
includeInIndex
1
@@ -4458,41 +4715,38 @@
lastKnownFileType
sourcecode.c.h
name
- HCIsCollectionContaining.h
+ HCIsDictionaryContainingEntries.h
path
- Source/Library/Collection/HCIsCollectionContaining.h
+ Source/Library/Collection/HCIsDictionaryContainingEntries.h
sourceTree
<group>
- 35F16287C35DD1A143CE0261
+ 419B89184071A200386ABFAA
- fileRef
- 09D61011F563A3185025D7CC
+ buildActionMask
+ 2147483647
+ files
+
+ 038A9266CE8B5DF24C89A480
+
isa
- PBXBuildFile
+ PBXFrameworksBuildPhase
+ runOnlyForDeploymentPostprocessing
+ 0
- 3631B94934523CD9334533C6
+ 419C10DC9250C56BFF343942
- children
-
- 61EA980D816B4EA2AFD6631D
- 109B39831E295EB03F7E19A8
- 8114EBDC3E4F4764B14DC8C2
- C98B64C922DA616099F91330
- 055977124E726C96958F4680
- 3D4DE702B0299E029DD8AEAC
- 97EF099C4B36F40FB84BD8E8
-
+ fileRef
+ 466240CE17FAC3CAA744DA72
isa
- PBXGroup
- name
- Pods-PocketForecast
- path
- Target Support Files/Pods-PocketForecast
- sourceTree
- <group>
+ PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
- 364334745181B861DBD4D513
+ 41E45F9F9F711B532ACBB4EF
includeInIndex
1
@@ -4501,50 +4755,50 @@
lastKnownFileType
sourcecode.c.h
name
- HCDoubleReturnGetter.h
+ MKTObjectMock.h
path
- Source/Core/Helpers/ReturnValueGetters/HCDoubleReturnGetter.h
+ Source/OCMockito/MKTObjectMock.h
sourceTree
<group>
- 368842BE936A5D5ABAF0A122
+ 422208A0B96C8D129A96CA3C
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.h
+ sourcecode.c.objc
name
- TyphoonFactoryAutoInjectionPostProcessor.h
+ TyphoonAssembly.m
path
- Source/Definition/AutoInjection/TyphoonFactoryAutoInjectionPostProcessor.h
+ Source/Factory/Block/TyphoonAssembly.m
sourceTree
<group>
- 36C500260A2883F9DAC110BE
+ 4240BF30EFAA2D77E9D3F7AE
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.objc
+ sourcecode.c.h
name
- TyphoonViewControllerNibResolver.m
+ HCIsTrueFalse.h
path
- Source/ios/Configuration/Resolver/TyphoonViewControllerNibResolver.m
+ Source/Library/Number/HCIsTrueFalse.h
sourceTree
<group>
- 36D8301E18FFFE3A36AF5159
+ 42491B74AAC72FC9A6AD35B6
fileRef
- 5CE86BB9761D0CF5C5DD98D0
+ D12E97B5802920FAF5F98491
isa
PBXBuildFile
- 36FE9723E34F26B3E11B55CF
+ 42512C8BFB4FA37A33641B4D
includeInIndex
1
@@ -4553,90 +4807,28 @@
lastKnownFileType
sourcecode.c.objc
name
- EXPMatchers+haveCountOf.m
+ HCTestFailureHandlerChain.m
path
- src/matchers/EXPMatchers+haveCountOf.m
+ Source/Core/Helpers/TestFailureHandlers/HCTestFailureHandlerChain.m
sourceTree
<group>
- 370D05409EC051568A488714
-
- fileRef
- 1C8A8C13B994C6A517BC5508
- isa
- PBXBuildFile
-
- 371A12418776090932885974
+ 4270B3D3B6EC757E715E2CEC
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.objc
+ sourcecode.c.h
name
- HCIsDictionaryContainingEntries.m
+ HCSenTestFailureHandler.h
path
- Source/Library/Collection/HCIsDictionaryContainingEntries.m
+ Source/Core/Helpers/TestFailureHandlers/HCSenTestFailureHandler.h
sourceTree
<group>
- 37234012CAD4186C87E440D9
-
- fileRef
- B2644F77EB592417F4620940
- isa
- PBXBuildFile
-
- 3726C66DC4BEBA238E8204F6
-
- fileRef
- 2CB9F6D50E7A88F43FA7FF55
- isa
- PBXBuildFile
- settings
-
- COMPILER_FLAGS
- -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
-
-
- 373CC861D7EBB1E6CA506E5F
-
- fileRef
- 58CFE8E0A98A48FAE159E3C4
- isa
- PBXBuildFile
- settings
-
- COMPILER_FLAGS
- -fobjc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
-
-
- 373E3041A0CD272C9BA44479
-
- fileRef
- 100B76C09DAB42B2F96668CC
- isa
- PBXBuildFile
- settings
-
- COMPILER_FLAGS
- -fobjc-arc -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
-
-
- 3746536CB7AB6CA1D853D59C
-
- fileRef
- C64363C52BBDFC5B312B00C5
- isa
- PBXBuildFile
- settings
-
- COMPILER_FLAGS
- -fobjc-arc -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
-
-
- 37EE459C234DB4704D300825
+ 429F593E100702E327F23D6A
includeInIndex
1
@@ -4645,13 +4837,13 @@
lastKnownFileType
sourcecode.c.h
name
- MKTDoubleReturnSetter.h
+ MKTAtLeastTimes.h
path
- Source/OCMockito/Helpers/ReturnValueSetters/MKTDoubleReturnSetter.h
+ Source/OCMockito/MKTAtLeastTimes.h
sourceTree
<group>
- 389FAE9DC4FA6A6E90BE645D
+ 42B8C4E76D237C0BF72A5FFF
includeInIndex
1
@@ -4659,14 +4851,12 @@
PBXFileReference
lastKnownFileType
sourcecode.c.h
- name
- HCIsEqualIgnoringCase.h
path
- Source/Library/Text/HCIsEqualIgnoringCase.h
+ Pods-PocketForecast-environment.h
sourceTree
<group>
- 38D9FF0AAD2B148E9D6AB393
+ 430CEB6031552C531E0180A2
includeInIndex
1
@@ -4675,58 +4865,55 @@
lastKnownFileType
sourcecode.c.objc
name
- TyphoonTestUtils.m
+ HCIsDictionaryContainingValue.m
path
- Source/Test/TestUtils/TyphoonTestUtils.m
+ Source/Library/Collection/HCIsDictionaryContainingValue.m
sourceTree
<group>
- 39237FBFAD0C242D07AF6831
+ 4345D1EE47EDF85E37422BB7
+ explicitFileType
+ archive.ar
includeInIndex
- 1
+ 0
isa
PBXFileReference
- lastKnownFileType
- sourcecode.c.h
- name
- TyphoonInjectionByObjectFromString.h
path
- Source/Definition/Injections/TyphoonInjectionByObjectFromString.h
+ libPods-PocketForecastTests.a
sourceTree
- <group>
+ BUILT_PRODUCTS_DIR
- 397F8210E9FB982B5513B421
+ 43620FB1AEC85B21EBC66E89
baseConfigurationReference
- AE1FC0C800EFE991F35FF5D6
+ 75419293C6DB588FFB58278A
buildSettings
ALWAYS_SEARCH_USER_PATHS
NO
COPY_PHASE_STRIP
- NO
+ YES
DSTROOT
/tmp/xcodeproj.dst
- GCC_DYNAMIC_NO_PIC
- NO
- GCC_OPTIMIZATION_LEVEL
- 0
GCC_PRECOMPILE_PREFIX_HEADER
YES
GCC_PREFIX_HEADER
- Target Support Files/Pods-PocketForecastTests-Expecta/Pods-PocketForecastTests-Expecta-prefix.pch
- GCC_PREPROCESSOR_DEFINITIONS
-
- DEBUG=1
- $(inherited)
-
- GCC_SYMBOLS_PRIVATE_EXTERN
- NO
+ Target Support Files/Pods-PocketForecastTests-OCMockito/Pods-PocketForecastTests-OCMockito-prefix.pch
INSTALL_PATH
$(BUILT_PRODUCTS_DIR)
IPHONEOS_DEPLOYMENT_TARGET
7.0
+ OTHER_CFLAGS
+
+ -DNS_BLOCK_ASSERTIONS=1
+ $(inherited)
+
+ OTHER_CPLUSPLUSFLAGS
+
+ -DNS_BLOCK_ASSERTIONS=1
+ $(inherited)
+
OTHER_LDFLAGS
OTHER_LIBTOOLFLAGS
@@ -4738,100 +4925,95 @@
SDKROOT
iphoneos
SKIP_INSTALL
- YES
-
- isa
- XCBuildConfiguration
- name
- Debug
-
- 39B7F180EC7DF159EE1A5CAB
-
- fileRef
- B3075702E9973E7AD142AF65
- isa
- PBXBuildFile
- settings
-
- COMPILER_FLAGS
- -fobjc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+ YES
+ VALIDATE_PRODUCT
+ YES
+ isa
+ XCBuildConfiguration
+ name
+ Release
- 39C73DAEADBB0D67D3B3D21C
+ 43B9C725C8D99507A7FF45B8
fileRef
- 18A9E9A7874864962A454C4B
+ 32ABB8AB5E7F52F7BA554A5C
isa
PBXBuildFile
- settings
-
- COMPILER_FLAGS
- -fobjc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
-
- 39C9A371DDF08535F0028F65
+ 440546376A3F7B23CD6FA03A
fileRef
- 675E15ABE7944B438F78BC0F
+ BAC4506949B9D1CAFA5A0D37
isa
PBXBuildFile
settings
COMPILER_FLAGS
- -fobjc-arc -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+ -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
- 39CC5EA27EA6BA40FC678E8C
+ 4411D27145A3A7B0E4E5CD5F
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.objc
+ sourcecode.c.h
name
- MKTUnsignedIntReturnSetter.m
+ PaperFoldConstants.h
path
- Source/OCMockito/Helpers/ReturnValueSetters/MKTUnsignedIntReturnSetter.m
+ PaperFold/PaperFold/PaperFold/PaperFoldConstants.h
sourceTree
<group>
- 39E7534835E6CE8A4E4C33EC
+ 443009496120E2A57392A3F4
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.h
+ sourcecode.c.objc
+ name
+ MKTStructArgumentGetter.m
path
- CALayer+Image.h
+ Source/OCMockito/Helpers/ArgumentGetters/MKTStructArgumentGetter.m
sourceTree
<group>
- 39FE0D9E20590DEE011C8A84
+ 445E0996B7C5DACDFDFBDF51
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.h
+ sourcecode.c.objc
name
- NSObject+FactoryHooks.h
+ TyphoonComponentFactory.m
path
- Source/Factory/Hooks/NSObject+FactoryHooks.h
+ Source/Factory/TyphoonComponentFactory.m
sourceTree
<group>
- 3A40A732AE989949682C7AD6
+ 44BFAE6CE23A05A8DE1B8B32
- fileRef
- E8AC236042E221F9EB67ED15
+ includeInIndex
+ 1
isa
- PBXBuildFile
+ PBXFileReference
+ lastKnownFileType
+ sourcecode.c.objc
+ name
+ EXPFloatTuple.m
+ path
+ src/EXPFloatTuple.m
+ sourceTree
+ <group>
- 3AA9285675B95287900B6F58
+ 44CF7A8979027D26A337D1D7
includeInIndex
1
@@ -4840,55 +5022,47 @@
lastKnownFileType
sourcecode.c.h
name
- MKTObjectMock.h
+ HCIsNil.h
path
- Source/OCMockito/MKTObjectMock.h
+ Source/Library/Object/HCIsNil.h
sourceTree
<group>
- 3B461AB497D4668CF36F69AA
+ 4511F6C7FEA60CC5B579FE24
children
- C211A013341DC56EE0F84EA4
- BF3A3F41266FD3304ECF06DC
- CCC70FFE6B6E1A3183D7B072
- 3C4D246B903D1F10969F3EB6
+ 114DAF9FFA6487DAF4AE11AA
+ 12E07ABFFD7E1238559A3C45
+ BC878B2E39BF88AFBE111450
+ 42B8C4E76D237C0BF72A5FFF
+ 0C020CA7A4AA622F05CB59E4
+ 455B82790EAE4B3DD102735D
+ 5B95E3A36C48363BE1CF382E
isa
PBXGroup
name
- Support Files
+ Pods-PocketForecast
path
- ../Target Support Files/Pods-PocketForecast-ICLoader
+ Target Support Files/Pods-PocketForecast
sourceTree
<group>
- 3B680478218199815D37CF46
-
- fileRef
- D5625D9411D6CF4BAF8DDFF0
- isa
- PBXBuildFile
- settings
-
- COMPILER_FLAGS
- -fobjc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
-
-
- 3BAA312A9E908A76F30B8E7B
+ 4535481D4770949BD73B3F23
- fileRef
- C402D7BF4115A9DCF1E6B2A1
+ includeInIndex
+ 1
isa
- PBXBuildFile
- settings
-
- COMPILER_FLAGS
- -fobjc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
-
+ PBXFileReference
+ lastKnownFileType
+ sourcecode.c.objc
+ path
+ Pods-PocketForecast-OCLogTemplate-dummy.m
+ sourceTree
+ <group>
- 3BF4F9D847DC803879829E82
+ 4552E3CE521587223197C20A
includeInIndex
1
@@ -4897,55 +5071,60 @@
lastKnownFileType
sourcecode.c.h
name
- MKTIntArgumentGetter.h
+ MKTLongLongReturnSetter.h
path
- Source/OCMockito/Helpers/ArgumentGetters/MKTIntArgumentGetter.h
+ Source/OCMockito/Helpers/ReturnValueSetters/MKTLongLongReturnSetter.h
sourceTree
<group>
- 3BF94B06A28D33CAF7B0BD9A
+ 455B82790EAE4B3DD102735D
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.objc
- name
- HCShortReturnGetter.m
+ text.xcconfig
path
- Source/Core/Helpers/ReturnValueGetters/HCShortReturnGetter.m
+ Pods-PocketForecast.debug.xcconfig
sourceTree
<group>
- 3C26A2CEAAFE885C146D0EEC
+ 4576399C54A5190A3FEC5353
fileRef
- A8B6D1F4CD94EB2C12B607EC
+ 743449BF686092A758E77DFE
isa
PBXBuildFile
settings
COMPILER_FLAGS
- -fobjc-arc -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+ -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
- 3C271667AEF8F6BD9B75FB32
+ 458701F4D48746F45BF400E0
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.h
+ sourcecode.c.objc
name
- TyphoonInjection.h
+ EXPMatchers+beSupersetOf.m
path
- Source/Definition/Injections/TyphoonInjection.h
+ src/matchers/EXPMatchers+beSupersetOf.m
sourceTree
<group>
- 3C4D246B903D1F10969F3EB6
+ 45A6B06E065AA8C654E04964
+
+ fileRef
+ 732EE5E3250175DB03A50EF6
+ isa
+ PBXBuildFile
+
+ 45DA3EABCCBDBB7CCE2175E9
includeInIndex
1
@@ -4953,66 +5132,77 @@
PBXFileReference
lastKnownFileType
sourcecode.c.h
+ name
+ TyphoonStartup.h
path
- Pods-PocketForecast-ICLoader-prefix.pch
+ Source/Configuration/Startup/TyphoonStartup.h
sourceTree
<group>
- 3C615D5CA30D22007625EDC5
+ 4629E0B11A6E6E18C122E921
- includeInIndex
- 1
+ children
+
+ 4E8D161F8A19C60DCEF967A0
+ 06C175668D6482182E7B993E
+ 96CCB8980CE615EA4529CECB
+ 4BF1B45B22046974CA619BCF
+
isa
- PBXFileReference
- lastKnownFileType
- sourcecode.c.objc
+ PBXGroup
name
- EXPMatchers+beKindOf.m
+ Support Files
path
- src/matchers/EXPMatchers+beKindOf.m
+ ../Target Support Files/Pods-PocketForecast-PaperFold
sourceTree
<group>
- 3C8027EA0C5B7A9E3D9B15DB
+ 4644D09C0C2BDEFF70F79626
- fileRef
- D7D516B72D45BF31BE104925
+ children
+
+ 07FC81C41C3AD46E5416FB93
+ 6F40AF037C182802DF244F1D
+ 29EE6613D0F2CDAF0FF4AC8C
+
isa
- PBXBuildFile
- settings
-
- COMPILER_FLAGS
- -fobjc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
-
+ PBXGroup
+ name
+ ICLoader
+ path
+ ICLoader
+ sourceTree
+ <group>
- 3C85CF62F47230526860EF9C
+ 466240CE17FAC3CAA744DA72
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.h
+ sourcecode.c.objc
+ name
+ NSNullTypeConverter.m
path
- Pods-PocketForecast-PaperFold-prefix.pch
+ Source/TypeConversion/Converters/NSNullTypeConverter.m
sourceTree
<group>
- 3C99BEA021C514CFEEC490FD
+ 468DD6394E435583E26C0027
- buildActionMask
- 2147483647
- files
-
- A04F5FCB2CCCCACFC70FB69F
- 8AC8E01759D02D25AB9DACBC
-
- isa
- PBXFrameworksBuildPhase
- runOnlyForDeploymentPostprocessing
+ explicitFileType
+ archive.ar
+ includeInIndex
0
+ isa
+ PBXFileReference
+ path
+ libPods-PocketForecast.a
+ sourceTree
+ BUILT_PRODUCTS_DIR
- 3CBFE0E05F8A077CB74FEE0B
+ 46DC7FB30682C0D6467BCED8
includeInIndex
1
@@ -5021,100 +5211,95 @@
lastKnownFileType
sourcecode.c.objc
name
- MKTClassArgumentGetter.m
+ TyphoonInjectionByType.m
path
- Source/OCMockito/Helpers/ArgumentGetters/MKTClassArgumentGetter.m
+ Source/Definition/Injections/TyphoonInjectionByType.m
sourceTree
<group>
- 3CD8B4480D5C37E665F600A8
+ 4719038F4C88B4D16D108652
- buildConfigurations
-
- 9E67C24DCCD7BE560BBCCBFC
- 339183A9E81735D0849E4BD4
-
- defaultConfigurationIsVisible
- 0
- defaultConfigurationName
- Release
+ fileRef
+ BF63DD9DDE1404E80BCD97CE
isa
- XCConfigurationList
+ PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
- 3D130C0B6C383074135C1AB4
+ 47486EDF03506ACCC8190853
fileRef
- 127A585EAE7E5F75D645F001
+ B27B7407C8CEFCF3BC77B6AA
isa
PBXBuildFile
settings
COMPILER_FLAGS
- -fobjc-arc -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+ -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
- 3D338EA4712E7D7F08FD1D91
+ 47625E5B100D86753610E8A3
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.h
+ sourcecode.c.objc
name
- HCIsCollectionContainingInAnyOrder.h
+ TyphoonStartup.m
path
- Source/Library/Collection/HCIsCollectionContainingInAnyOrder.h
+ Source/Configuration/Startup/TyphoonStartup.m
sourceTree
<group>
- 3D4DE702B0299E029DD8AEAC
+ 47C330892B9BC1F00D36012B
+
+ fileRef
+ 2972514166C06AC87A8E39E9
+ isa
+ PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -fno-objc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
+
+ 47C34AF873AD1D30E16AD87C
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- text.xcconfig
- path
- Pods-PocketForecast.debug.xcconfig
- sourceTree
- <group>
-
- 3D7656857395C9B2CA630B1E
-
- children
-
- 50AD6F117F608A9F6624B688
- 501CFB4EADDFD28FC7318129
- 206D588EBC0739ADEAA5A04C
-
- isa
- PBXGroup
+ sourcecode.c.h
name
- NGAParallaxMotion
+ MKTUnsignedLongLongReturnSetter.h
path
- NGAParallaxMotion
+ Source/OCMockito/Helpers/ReturnValueSetters/MKTUnsignedLongLongReturnSetter.h
sourceTree
<group>
- 3D7AC1DDFEC11BA59ED575ED
+ 47DA9F41D15B28D8F359D710
- explicitFileType
- archive.ar
includeInIndex
- 0
+ 1
isa
PBXFileReference
+ lastKnownFileType
+ sourcecode.c.objc
path
- libPods-PocketForecast-PaperFold.a
+ Pods-PocketForecastTests-OCHamcrest-dummy.m
sourceTree
- BUILT_PRODUCTS_DIR
+ <group>
- 3DC2804B4B65B1E5E61621B4
+ 47F7AADCC52177368731A521
fileRef
- E991CEDC631D725520F39AA3
+ 7715906D177DF5FDB4DF476F
isa
PBXBuildFile
settings
@@ -5123,7 +5308,33 @@
-w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
- 3DCF02AE6552261CDC241AAE
+ 48520822EAF5D2A8B5231A33
+
+ includeInIndex
+ 1
+ isa
+ PBXFileReference
+ lastKnownFileType
+ sourcecode.c.h
+ path
+ CKUITools.h
+ sourceTree
+ <group>
+
+ 4860263DAAF788B88AC102D8
+
+ includeInIndex
+ 1
+ isa
+ PBXFileReference
+ lastKnownFileType
+ sourcecode.c.objc
+ path
+ Pods-PocketForecast-NSURL+QueryDictionary-dummy.m
+ sourceTree
+ <group>
+
+ 48669F7C229E849593FB1F42
includeInIndex
1
@@ -5132,39 +5343,66 @@
lastKnownFileType
sourcecode.c.objc
name
- TyphoonInjections.m
+ TyphoonRuntimeArguments.m
path
- Source/Definition/Injections/TyphoonInjections.m
+ Source/Factory/Block/TyphoonRuntimeArguments.m
+ sourceTree
+ <group>
+
+ 48876D62DF323E361A3FCC48
+
+ includeInIndex
+ 1
+ isa
+ PBXFileReference
+ lastKnownFileType
+ sourcecode.c.h
+ name
+ NSObject+Expecta.h
+ path
+ src/NSObject+Expecta.h
sourceTree
<group>
- 3EF91C64B8318FC577CAF22A
+ 488BD6C892E0B575CCEC65E8
+
+ fileRef
+ 9C1C632621A994FBBE41B9DF
+ isa
+ PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
+
+ 48AE2DF651BD65F6E73155A5
fileRef
- 6C6A423EB933193032CA5257
+ 7A092E94911D107F516DB003
isa
PBXBuildFile
- 3F14D8035D279E11F6ED1566
+ 48CA03D2BC3D7841B832A95B
fileRef
- D809618B0D968619AF233DE1
+ 48876D62DF323E361A3FCC48
isa
PBXBuildFile
- 3F17C456ADEA0C07E1733529
+ 49087FDAEFF9356DE82CF6D0
fileRef
- 320EA20DD8DB8FA9A49B443D
+ 5ECE9C96838C059B18AF734E
isa
PBXBuildFile
settings
COMPILER_FLAGS
- -fobjc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+ -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
- 3F39FA607A1F8DD3FD5AC97F
+ 49215298520885A7820AF7AE
includeInIndex
1
@@ -5173,20 +5411,33 @@
lastKnownFileType
sourcecode.c.objc
name
- NSMethodSignature+TCFUnwrapValues.m
+ MKTTestLocation.m
path
- Source/Factory/Internal/NSMethodSignature+TCFUnwrapValues.m
+ Source/OCMockito/MKTTestLocation.m
sourceTree
<group>
- 3F51DD963FC1F528603D25D3
+ 4937FB241CBA8E6B014C9F56
+
+ buildActionMask
+ 2147483647
+ files
+
+ D31A5BF7F1FEDAA29F134E6B
+
+ isa
+ PBXHeadersBuildPhase
+ runOnlyForDeploymentPostprocessing
+ 0
+
+ 49722D1868C85171719C0E5E
fileRef
- F06ED8D5984AD707113D8872
+ 4270B3D3B6EC757E715E2CEC
isa
PBXBuildFile
- 3F5348593FF1CE6AD78D05FD
+ 4977ACD8303C38C8AECC9D01
includeInIndex
1
@@ -5195,100 +5446,87 @@
lastKnownFileType
sourcecode.c.objc
name
- HCNumberAssert.m
+ TyphoonInjectionByDictionary.m
path
- Source/Library/Number/HCNumberAssert.m
+ Source/Definition/Injections/TyphoonInjectionByDictionary.m
sourceTree
<group>
- 3F9E528DDE63B58002AA8D60
+ 49DB0D0AFBC05CC9160456C4
- includeInIndex
- 1
+ fileRef
+ 55F3CC69502B0790873DF737
isa
- PBXFileReference
- lastKnownFileType
- sourcecode.c.h
+ PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
+
+ 4A3762A1E4E319D4350E623D
+
+ baseConfigurationReference
+ BC13FD69D58C7A7727D473D9
+ buildSettings
+
+ ALWAYS_SEARCH_USER_PATHS
+ NO
+ COPY_PHASE_STRIP
+ YES
+ DSTROOT
+ /tmp/xcodeproj.dst
+ GCC_PRECOMPILE_PREFIX_HEADER
+ YES
+ GCC_PREFIX_HEADER
+ Target Support Files/Pods-PocketForecast-OCLogTemplate/Pods-PocketForecast-OCLogTemplate-prefix.pch
+ INSTALL_PATH
+ $(BUILT_PRODUCTS_DIR)
+ IPHONEOS_DEPLOYMENT_TARGET
+ 7.0
+ OTHER_CFLAGS
+
+ -DNS_BLOCK_ASSERTIONS=1
+ $(inherited)
+
+ OTHER_CPLUSPLUSFLAGS
+
+ -DNS_BLOCK_ASSERTIONS=1
+ $(inherited)
+
+ OTHER_LDFLAGS
+
+ OTHER_LIBTOOLFLAGS
+
+ PRODUCT_NAME
+ $(TARGET_NAME)
+ PUBLIC_HEADERS_FOLDER_PATH
+ $(TARGET_NAME)
+ SDKROOT
+ iphoneos
+ SKIP_INSTALL
+ YES
+ VALIDATE_PRODUCT
+ YES
+
+ isa
+ XCBuildConfiguration
name
- HCGenericTestFailureHandler.h
- path
- Source/Core/Helpers/TestFailureHandlers/HCGenericTestFailureHandler.h
- sourceTree
- <group>
+ Release
- 3F9FC94AE3AB941B4DAC0304
+ 4A3BE6D0E30C8C2CB15F5A75
- buildActionMask
- 2147483647
- files
-
- BE3F7F152DF4C76D77C672FD
- 958894123C876DD3EFED513F
- F9F8597D97017EBD64F78D08
- F9E17C4B230CEFEECE6E4113
- 765160F82962F3E23EA9E303
- A070AC9F1977CD69837AD7AB
- ED6F9049CC081A4E179352EC
- 7D8E5220791334C3FB828A68
- 025EB7346A7CFA08C718392F
- 82AEE487FBAC58A5116CFAB7
- B424E90785A4DB24C51F2983
- 829A29C62B6651D23F1A42A6
- 65180F7883384D336A6C85C1
- 9BC9AE6CB5BF899C624645B6
- 2EA183A080F933DF6814AF91
- 0FE8171F2BBF4F40418B0C8F
- A19AC675071C820E5D823A93
- 1D7705BFE7EB465778D4FC19
- 646B3E1FA5F15D1FEDAC6E64
- ADC527A437B78582D1BBEE54
- EFBE86558A6DDC905A004C6D
- EAEE072C57BDBFE0AC9C4455
- 2C1D994C842E605E4B1FBF73
- DC2CAB68C037ECE988276698
- D9943C63E7EF7849EA5E7DE2
- 32664385078F93C2A666AE55
- D1B5D1EEB3A0D7A037B79273
- 0697C360C7637FA8CE695A11
- 5E8937DE8FDCD5C3D25856DF
- 647D06DCF8EB23F75B1F7EDB
- 71E8275D952478607123A02B
- FB77F5DED231F328FB3A5BC3
- 990D2802EC59FA9CE8E2434C
- 5C1D0CC0324319C491C640F6
- D7C4D1CFBB8462B647AB6DF2
- 8AF429D946E40A71CB606E6A
- DB75E31601064AA8E3EC2738
- 39B7F180EC7DF159EE1A5CAB
- 435BE38250F1E9C71AA6A11A
- 2D0CC72797B7669ECFB15711
- 0192145F7B95F90F541819CE
- 373CC861D7EBB1E6CA506E5F
- F9D4140CB91CD60C6D290EE2
- 0043D63AE408454EB25AA94A
- 9F370E8BE9EA8AC858A3AA34
- 60B99A8293089203CF65661D
- C0E8D30243B94157DC1FBA62
- 43D14FF58DA61BA962168988
- 7D2B93CC03D60D34FBA8CC7D
- 62710BC6D6C42C54C1A36284
- DF08CD4E394FCD7DA30B37E7
- 3F17C456ADEA0C07E1733529
- C53AB38DBE689A77ADD81CAE
- BDCE2F2311B3A40FF8A6D9D8
- 90B16B7372260B49B544CC72
- 5F54D60D0E10A07C1EFE976A
- A2B15715446DAEB125183558
- 7539E2B2EA639C978613C3B5
- 6F91EC8C3880832F23860AE5
- 8E838BBB04D5939F8FD3B50A
-
+ fileRef
+ 896CD42AF24F61977DDE050A
isa
- PBXSourcesBuildPhase
- runOnlyForDeploymentPostprocessing
- 0
+ PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
- 4008A81E7AF9554ACA22074E
+ 4A5583A81FE0D07883765D92
includeInIndex
1
@@ -5296,97 +5534,74 @@
PBXFileReference
lastKnownFileType
sourcecode.c.h
+ name
+ EXPMatchers+beLessThanOrEqualTo.h
path
- Pods-PocketForecast-Typhoon-prefix.pch
+ src/matchers/EXPMatchers+beLessThanOrEqualTo.h
sourceTree
<group>
- 40DDE7E0EAEA00FE379D72AD
+ 4A80BDF113544553DB3BF330
- includeInIndex
- 1
+ fileRef
+ DE31F46DA5E04B40DBE3B1C9
isa
- PBXFileReference
- lastKnownFileType
- sourcecode.c.objc
- name
- MKTLongLongReturnSetter.m
- path
- Source/OCMockito/Helpers/ReturnValueSetters/MKTLongLongReturnSetter.m
- sourceTree
- <group>
+ PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
- 40FAC591078CC1BE2271B24A
+ 4A8ED88CB68D510349D537E7
- buildConfigurationList
- 34127087BB94907802F4A0A3
- buildPhases
-
- 31D8F7F3EE003758D97B1D47
- CD8D93C47B20E0862A8F4903
-
- buildRules
-
- dependencies
-
- 9BDC169C21C8296937C45B1F
- 6B8D8669BDE91597931CC93B
- 33F325074AA7C1ACA4912057
-
+ fileRef
+ E1B4505D4DC4AB09D718DF57
isa
- PBXNativeTarget
- name
- Pods-PocketForecastTests
- productName
- Pods-PocketForecastTests
- productReference
- 4EF5BF9F14C57048F80A2281
- productType
- com.apple.product-type.library.static
+ PBXBuildFile
- 4109632729BCC3E590B4F581
+ 4AB856C39AF6932971315521
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- text.script.sh
+ sourcecode.c.h
+ name
+ TyphoonPatcher.h
path
- Pods-PocketForecastTests-resources.sh
+ Source/Test/Patcher/TyphoonPatcher.h
sourceTree
<group>
- 41418A8058016498F7E55DEB
+ 4B3377445C51020D64922633
fileRef
- 74A7F82C8842A4891DE91800
+ 84B420C000F18F8A16249928
isa
PBXBuildFile
- 41513E955237DF59C3CB7C2C
+ 4BA4AE31BBB41D27FA17AB0D
fileRef
- 0480792656D2B6C68B4D43C4
+ 54CB547DF18CDFAFC57F407D
isa
PBXBuildFile
- 41A3CCFD7E9D808957358EB3
+ 4BDCBA9559A8F85F3FAD6568
- includeInIndex
- 1
+ fileRef
+ 7EB40C47FADDAAAE9C0D6330
isa
- PBXFileReference
- lastKnownFileType
- sourcecode.c.objc
- name
- MKTArgumentGetterChain.m
- path
- Source/OCMockito/Helpers/ArgumentGetters/MKTArgumentGetterChain.m
- sourceTree
- <group>
+ PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
- 41F64960A605B8CB76DF621E
+ 4BF1B45B22046974CA619BCF
includeInIndex
1
@@ -5394,14 +5609,12 @@
PBXFileReference
lastKnownFileType
sourcecode.c.h
- name
- MKTUnsignedLongArgumentGetter.h
path
- Source/OCMockito/Helpers/ArgumentGetters/MKTUnsignedLongArgumentGetter.h
+ Pods-PocketForecast-PaperFold-prefix.pch
sourceTree
<group>
- 4227BDAA51289F9E9F56774F
+ 4C034454DC5687A403530C9A
includeInIndex
1
@@ -5410,52 +5623,101 @@
lastKnownFileType
text.xcconfig
path
- Pods-PocketForecast-PaperFold.xcconfig
+ Pods-PocketForecast-ICLoader.xcconfig
sourceTree
<group>
- 42936D984830E3A3B5B1401D
+ 4C259839A246407B42A8AD34
- fileRef
- 8F67CF7435CCE130D6CE7D9D
+ children
+
+ DFF8E7F66E786A7648DEC9C0
+ E403ED8286A634DABD4D73E7
+ D95D9BA8BB0146783D7BBFE3
+
isa
- PBXBuildFile
- settings
-
- COMPILER_FLAGS
- -fobjc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
-
+ PBXGroup
+ name
+ iOS
+ sourceTree
+ <group>
- 42B47C9D70123FE59871C038
+ 4CA7C037430A73B071B46967
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.h
- name
- HCIsCloseTo.h
+ sourcecode.c.objc
path
- Source/Library/Number/HCIsCloseTo.h
+ UIScreen+CKUITools.m
sourceTree
<group>
- 42B586287668999EF237B44B
+ 4CDD09D8C16ED19C8463D640
- buildConfigurations
-
- 74FB73D794B2E26EEBA7D1A2
- 590F4C238B8A5B31306D740F
-
- defaultConfigurationIsVisible
- 0
- defaultConfigurationName
+ baseConfigurationReference
+ 7075B87A168CA9AF42318340
+ buildSettings
+
+ ALWAYS_SEARCH_USER_PATHS
+ NO
+ COPY_PHASE_STRIP
+ YES
+ DSTROOT
+ /tmp/xcodeproj.dst
+ GCC_PRECOMPILE_PREFIX_HEADER
+ YES
+ GCC_PREFIX_HEADER
+ Target Support Files/Pods-PocketForecast-Typhoon/Pods-PocketForecast-Typhoon-prefix.pch
+ INSTALL_PATH
+ $(BUILT_PRODUCTS_DIR)
+ IPHONEOS_DEPLOYMENT_TARGET
+ 7.0
+ OTHER_CFLAGS
+
+ -DNS_BLOCK_ASSERTIONS=1
+ $(inherited)
+
+ OTHER_CPLUSPLUSFLAGS
+
+ -DNS_BLOCK_ASSERTIONS=1
+ $(inherited)
+
+ OTHER_LDFLAGS
+
+ OTHER_LIBTOOLFLAGS
+
+ PRODUCT_NAME
+ $(TARGET_NAME)
+ PUBLIC_HEADERS_FOLDER_PATH
+ $(TARGET_NAME)
+ SDKROOT
+ iphoneos
+ SKIP_INSTALL
+ YES
+ VALIDATE_PRODUCT
+ YES
+
+ isa
+ XCBuildConfiguration
+ name
Release
+
+ 4CE60355C55B3A9C11F39BA1
+
+ fileRef
+ 85D71F7D113F8445388256A1
isa
- XCConfigurationList
+ PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -fno-objc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
- 42EDCDDB40ED9B65C0F3524B
+ 4CEA816958C28CD51CA08B1D
includeInIndex
1
@@ -5464,16 +5726,16 @@
lastKnownFileType
sourcecode.c.objc
name
- TyphoonStartup.m
+ HCIsCollectionContainingInOrder.m
path
- Source/Configuration/Startup/TyphoonStartup.m
+ Source/Library/Collection/HCIsCollectionContainingInOrder.m
sourceTree
<group>
- 42FE858971A3427EC85640B1
+ 4CF39629A49E2DEDC30655A0
fileRef
- 03C43BA0E078F7D3CA1256BD
+ 430CEB6031552C531E0180A2
isa
PBXBuildFile
settings
@@ -5482,7 +5744,27 @@
-w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
- 431F0C732E9BE455E947B48D
+ 4D03B9FF3F7F465E619A2A80
+
+ containerPortal
+ 94AF5A4F363AA9649B0CD69F
+ isa
+ PBXContainerItemProxy
+ proxyType
+ 1
+ remoteGlobalIDString
+ 5435E2F75D9AF2AFF4987142
+ remoteInfo
+ Pods-PocketForecastTests-OCHamcrest
+
+ 4D6BF93E092BA10D9EE56B81
+
+ fileRef
+ D7C6220CB62ED69CDE96F3D1
+ isa
+ PBXBuildFile
+
+ 4D8C8A341B6C59169E8E7C20
includeInIndex
1
@@ -5491,163 +5773,230 @@
lastKnownFileType
sourcecode.c.h
name
- HCStringDescription.h
+ NSObject+FactoryHooks.h
path
- Source/Core/HCStringDescription.h
+ Source/Factory/Hooks/NSObject+FactoryHooks.h
sourceTree
<group>
- 435BE38250F1E9C71AA6A11A
+ 4E1EF8294018360228465586
- fileRef
- CA8B3A3233DB719E63B8665E
+ includeInIndex
+ 1
isa
- PBXBuildFile
- settings
-
- COMPILER_FLAGS
- -fobjc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
-
+ PBXFileReference
+ lastKnownFileType
+ sourcecode.c.objc
+ name
+ MKTArgumentGetter.m
+ path
+ Source/OCMockito/Helpers/ArgumentGetters/MKTArgumentGetter.m
+ sourceTree
+ <group>
- 43A953738BD36B520943EB69
+ 4E4EA19D68E83D0873B571B9
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.objc
+ sourcecode.c.h
name
- HCClassMatcher.m
+ HCDoubleReturnGetter.h
path
- Source/Library/Object/HCClassMatcher.m
+ Source/Core/Helpers/ReturnValueGetters/HCDoubleReturnGetter.h
sourceTree
<group>
- 43C917E87EF3D8B938600DA1
+ 4E78C3C9333B133CE36AF5FC
fileRef
- 22C7777944575366CBCD54BB
+ 87FF3251ADE4B5AEDEB500BB
isa
PBXBuildFile
- 43D14FF58DA61BA962168988
+ 4E830C8113FE7964570FB802
fileRef
- 925CD2DE998846801C32D1FD
+ 97C3D0CFAF32323D5ACAE47A
isa
PBXBuildFile
settings
COMPILER_FLAGS
- -fobjc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+ -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
- 43D5DBE24923EDBE011DB617
+ 4E8D161F8A19C60DCEF967A0
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.objc
- name
- EXPMatchers+beFalsy.m
+ text.xcconfig
path
- src/matchers/EXPMatchers+beFalsy.m
+ Pods-PocketForecast-PaperFold.xcconfig
sourceTree
<group>
- 43EE95E12029DCBCC90006F1
-
- fileRef
- 498ADCCD200088084A07BAE2
- isa
- PBXBuildFile
-
- 44142A7872EC0D8771387626
+ 4F4524A7465E4B58BEBA3A69
- fileRef
- 2F8EE48F98D45221B169AB41
+ buildActionMask
+ 2147483647
+ files
+
+ C8480717C2FC66DD79C9CE38
+ 094326FAFD576AAFDCE8B8E6
+ C702D5992E8D48AB71E8053B
+ A936A4E5CCCAF6F222340E13
+ 759B5EDDEE60BC5C4CD18BDB
+ E59D92FC49354B23CDEEB051
+ 2BEC51F19E0197A5434B16ED
+ 5E7EB860BF353CDD2D162F40
+ 831728BA176349093853D5E7
+ C45AB3EF4326603C26FB7401
+ 2A965F3B28CB279D864666E7
+ 203381A742C2429C64F39CFB
+ 620CA0C7896CCF0F0292C1D3
+ B66D1582915E63AFC8999ABF
+ 1C8D64B93B106F4E4141904A
+ ACCD933006B566C9B10D70AB
+ 99656E9C0B245A511002AD2B
+ 3790375C6D0035D86D6EDB9A
+ FA7434F33E0C67C5A58BF864
+ E4FD5F209C7F5344E49CA72C
+ 6B64158195A41F9CA0D6EDCA
+ A2C2E3DA752B79FB490E8355
+ 9EE6B52B1FC6B0FE6560BE12
+ 1143FE609B5DA42CC0FE545F
+ 9749B4A2EDDD2F5553C0866E
+ 54CEBB1D8C717F19B75F35AF
+ 3D8505B56024E5C1B7DCCC27
+ B3559B5C915607BC9F45E258
+ BBFB54807CEE74035965FC97
+ 3EB3C6B2FB1C5302EE104371
+ 22425DD4E3AD083BA2D61A4B
+ AF9443FE2A134B09B575CC10
+ 353CF0F5DE2EEE70D85189E6
+ BB8A15DEE7E2F3E82080AF45
+ 37E3B45EF57A36A4662DE5C4
+ FBC655D2438DEC1BAD2FF8D4
+ F106D37FE7FDD28CD4422E3B
+ E9E7926C984B1DB3BD59D101
+ D405F798044A256C040583FB
+ B2E862C3E92D8B23FEA87CF6
+ F8547103DB0E3DC1B25FA844
+ B3DBE1B23580817F2668BB63
+ A028B804E597E927497CF809
+ CC5FE158635D0E73A1620C17
+ 5DE824CA995D26B0E3BB36C0
+ A1ECCE0C42A1B7A4FE6C022E
+ F36EE8E10557AAB5A3849BDA
+ 055A5984E0F074BC863B8BA9
+ 43B9C725C8D99507A7FF45B8
+ 95F00D6A53B9606673B65CF6
+ DFE6DC09C1A640DC3D98FC73
+ ADC67AA4DC98BCED59DA7B99
+ 19A192D107DD5C0EED73A033
+ 52FC4FBB2BC4437FA6A8B7AB
+ F4328B65F8FC77316AD85B9B
+ 49722D1868C85171719C0E5E
+ BD0C08451EE0DE2160E52898
+ 169D1C33E6ECDABF5A3C8A6D
+ 36AAA365446ED21ACF510EC0
+ 52A45757EA461A66FF069334
+ CA735B3370446EFD843D6D0F
+ 2B1C394BC9EC78C18472B057
+ 29E9B473D14BCA06FBBA3F26
+ 1B358878A22F1F95FF16A31A
+ 316479C6193B9A5E433E1339
+ 004F504A574ABC082AAE0F3C
+ 01F2988EB71C03FDFD78551A
+ CE74AC5E0BE543D2040C826F
+ C52A7A095BDE7A0196017A15
+ 26706CFE51AEC6D8AF5D074A
+ 79077F06164F4ADD3D9758E5
+ 671751C3583BC5468AF8BD38
+ 1DB7AA5DF0086DEEC3855076
+ 42491B74AAC72FC9A6AD35B6
+ D80EEA4DF3E3F535303AFA90
+ 0C3D846B8F33AC59E04C8B68
+
isa
- PBXBuildFile
- settings
-
- COMPILER_FLAGS
- -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
-
+ PBXHeadersBuildPhase
+ runOnlyForDeploymentPostprocessing
+ 0
- 441EDED44D007DCFE80B38AA
+ 4F591986BE2787E7C9B6E8EF
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.objc
+ sourcecode.c.h
name
- MKTCapturingMatcher.m
+ EXPMatchers+beTruthy.h
path
- Source/OCMockito/MKTCapturingMatcher.m
+ src/matchers/EXPMatchers+beTruthy.h
sourceTree
<group>
- 4422E0F1A5960EC74392CCD8
+ 4F7D3BC26F12EF4505B6972B
fileRef
- 8C30DB2DD4D9E8A0AAC1F819
+ DE8A44EB9650EA5889119F68
isa
PBXBuildFile
- 448F010F37425D71BA8BAF71
+ 4FD311B391E1266CC6B9E3E5
- children
-
- 8FDD373A393BD09436D42FC2
- A480D1210E9AE0BDB415105E
- 955C5A58817275DA4C9C6239
- EFBDBEDB03D13578EB55123C
-
+ includeInIndex
+ 1
isa
- PBXGroup
+ PBXFileReference
+ lastKnownFileType
+ sourcecode.c.objc
name
- Support Files
+ ShadowView.m
path
- ../Target Support Files/Pods-PocketForecastTests-OCHamcrest
+ PaperFold/PaperFold/PaperFold/ShadowView.m
sourceTree
<group>
- 44A699A343636DFA1DECC8F2
+ 4FFC309E249F0AECEE75B5C8
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.h
+ sourcecode.c.objc
name
- EXPExpect.h
+ HCIsCollectionOnlyContaining.m
path
- src/EXPExpect.h
+ Source/Library/Collection/HCIsCollectionOnlyContaining.m
sourceTree
<group>
- 44E7AF55F7D8B65FA19C18F3
+ 5076C99B3FE3CBDDA4B970AF
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.h
+ sourcecode.c.objc
name
- TyphoonPropertyInjection.h
+ MKTReturnValueSetterChain.m
path
- Source/Definition/Injections/TyphoonPropertyInjection.h
+ Source/OCMockito/Helpers/ReturnValueSetters/MKTReturnValueSetterChain.m
sourceTree
<group>
- 44FC5667792F3549301783F4
+ 50CD55CF984304F96FAF73D4
includeInIndex
1
@@ -5656,61 +6005,64 @@
lastKnownFileType
sourcecode.c.h
name
- EXPBlockDefinedMatcher.h
+ UIView+Screenshot.h
path
- src/EXPBlockDefinedMatcher.h
+ PaperFold/PaperFold/PaperFold/UIView+Screenshot.h
sourceTree
<group>
- 45174D3FA2BF1023F14F76C8
-
- fileRef
- C7ADFC102C61FC96FEBE2830
- isa
- PBXBuildFile
-
- 4556AA5B6AEAC5FB1DA5C0A7
+ 50D0BEB89E2C661898359F14
fileRef
- 100AB61DD31DA7CEC64A9222
+ BBDFDAD7FE7DF50005E6136E
isa
PBXBuildFile
- 459AB0F2F046AEA7CCB2C4EB
+ 50E9DC92D7233EE7D4B73A33
- fileRef
- 942C25DFCFED9288E5E00CB2
+ includeInIndex
+ 1
isa
- PBXBuildFile
+ PBXFileReference
+ lastKnownFileType
+ sourcecode.c.h
+ name
+ HCDescription.h
+ path
+ Source/Core/HCDescription.h
+ sourceTree
+ <group>
- 45EC3CE10369D60125044AB1
+ 5109B9A5F7960EC4EA68747F
- buildConfigurations
+ children
- 4D600DE52EBC167A578B2E1B
- 83870B698A8B8F2710315723
+ DCFA13732A9BF388776F0D2C
+ 122E05927114E4BE64AB3396
+ F428CBF0D1D723DBB899B01A
+ 8AFF964B18442DBBD4575FBE
- defaultConfigurationIsVisible
- 0
- defaultConfigurationName
- Release
isa
- XCConfigurationList
+ PBXGroup
+ name
+ Resources
+ sourceTree
+ <group>
- 45F1E643A57E1B32C8D817CB
+ 5120F9626D81EBBBC2526FF5
+ explicitFileType
+ archive.ar
includeInIndex
- 1
+ 0
isa
PBXFileReference
- lastKnownFileType
- sourcecode.c.h
path
- Pods-PocketForecastTests-environment.h
+ libPods-PocketForecast-ICLoader.a
sourceTree
- <group>
+ BUILT_PRODUCTS_DIR
- 45F49565EB9A2E7EDD26D45E
+ 51416928FAB1B6632C1EBF72
includeInIndex
1
@@ -5719,55 +6071,171 @@
lastKnownFileType
sourcecode.c.objc
name
- TyphoonInjectionByDictionary.m
+ MKTExactTimes.m
path
- Source/Definition/Injections/TyphoonInjectionByDictionary.m
+ Source/OCMockito/MKTExactTimes.m
sourceTree
<group>
- 4613FC232C80102BF80F48AD
+ 51443B24F16BCF4138B6B2A5
fileRef
- D2419A0632CDC3C006032227
+ 7DA415D227180EBC0DEA28E3
isa
PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
- 465242B70BCAB4C2AAD7478B
+ 5166B40474011931659B2DCC
fileRef
- 0FCB1C767DC4D995829B4629
+ 445E0996B7C5DACDFDFBDF51
isa
PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
- 472A6B7143E9F19B683F623F
+ 518C58E040DD2DC2B2421A0F
- fileRef
- 4EC5C8455AC9BA4F95F71DF5
+ children
+
+ 9689EC7FECF588765F21837F
+ 75419293C6DB588FFB58278A
+ C06A7577843D58EF495C7C34
+ C3A0F5C52AE2453F4E5C1D94
+
isa
- PBXBuildFile
+ PBXGroup
+ name
+ Support Files
+ path
+ ../Target Support Files/Pods-PocketForecastTests-OCMockito
+ sourceTree
+ <group>
+
+ 51BF1169535EF30F36481AF1
+
+ explicitFileType
+ archive.ar
+ includeInIndex
+ 0
+ isa
+ PBXFileReference
+ path
+ libPods-PocketForecast-NSURL+QueryDictionary.a
+ sourceTree
+ BUILT_PRODUCTS_DIR
- 473C866AF93804A09E4F0046
+ 51E8718D52926A6748A2F975
fileRef
- 8944F418B15D3EA30409A36E
+ 80880EEB216CE22D8A3D9493
isa
PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
+
+ 5206AF38024E1204D41C2EBD
+
+ includeInIndex
+ 1
+ isa
+ PBXFileReference
+ lastKnownFileType
+ sourcecode.c.objc
+ path
+ Pods-PocketForecast-CKUITools-dummy.m
+ sourceTree
+ <group>
- 473E06EC98A981CAADF84514
+ 5221CD6158CAC5B1102ABBF0
fileRef
- 11405FFCA050C51449EF46B1
+ 0DD17658B34D1D8866FB09D3
isa
PBXBuildFile
- 483787EE1EF51BC1C1682434
+ 527728AE6D4E7AE552F1646C
+
+ baseConfigurationReference
+ 12301405A0573E317933D8E9
+ buildSettings
+
+ ALWAYS_SEARCH_USER_PATHS
+ NO
+ COPY_PHASE_STRIP
+ NO
+ DSTROOT
+ /tmp/xcodeproj.dst
+ GCC_DYNAMIC_NO_PIC
+ NO
+ GCC_OPTIMIZATION_LEVEL
+ 0
+ GCC_PRECOMPILE_PREFIX_HEADER
+ YES
+ GCC_PREFIX_HEADER
+ Target Support Files/Pods-PocketForecastTests-OCHamcrest/Pods-PocketForecastTests-OCHamcrest-prefix.pch
+ GCC_PREPROCESSOR_DEFINITIONS
+
+ DEBUG=1
+ $(inherited)
+
+ GCC_SYMBOLS_PRIVATE_EXTERN
+ NO
+ INSTALL_PATH
+ $(BUILT_PRODUCTS_DIR)
+ IPHONEOS_DEPLOYMENT_TARGET
+ 7.0
+ OTHER_LDFLAGS
+
+ OTHER_LIBTOOLFLAGS
+
+ PRODUCT_NAME
+ $(TARGET_NAME)
+ PUBLIC_HEADERS_FOLDER_PATH
+ $(TARGET_NAME)
+ SDKROOT
+ iphoneos
+ SKIP_INSTALL
+ YES
+
+ isa
+ XCBuildConfiguration
+ name
+ Debug
+
+ 5292AF5F158767E28D77DD9B
+
+ includeInIndex
+ 1
+ isa
+ PBXFileReference
+ lastKnownFileType
+ sourcecode.c.objc
+ name
+ EXPMatchers+beginWith.m
+ path
+ src/matchers/EXPMatchers+beginWith.m
+ sourceTree
+ <group>
+
+ 52A45757EA461A66FF069334
fileRef
- 44A699A343636DFA1DECC8F2
+ E236B980FB632D7B83605AD1
isa
PBXBuildFile
- 48AD0D5987DA890CD6B25F62
+ 52C822302EFB9AFA494E1645
includeInIndex
1
@@ -5776,13 +6244,13 @@
lastKnownFileType
sourcecode.c.h
name
- MKTVerificationData.h
+ MKTDoubleArgumentGetter.h
path
- Source/OCMockito/MKTVerificationData.h
+ Source/OCMockito/Helpers/ArgumentGetters/MKTDoubleArgumentGetter.h
sourceTree
<group>
- 48B36785AFC9214A28B7BE3D
+ 52DBC481E3B193D50B40EC24
includeInIndex
1
@@ -5791,56 +6259,46 @@
lastKnownFileType
sourcecode.c.objc
name
- HCObjectReturnGetter.m
+ HCInvocationMatcher.m
path
- Source/Core/Helpers/ReturnValueGetters/HCObjectReturnGetter.m
+ Source/Core/Helpers/HCInvocationMatcher.m
sourceTree
<group>
- 48EB812BD1642776F96DDDAC
+ 52EC52E062677B6603677C97
fileRef
- 7E4566AFC1E95D6FC1CBFD56
+ CFA4C3CCCB45B502CF0C0E23
isa
PBXBuildFile
- 48FC7C6A7C0813C2C4D042B8
-
- includeInIndex
- 1
- isa
- PBXFileReference
- lastKnownFileType
- sourcecode.c.h
- name
- HCUnsignedLongReturnGetter.h
- path
- Source/Core/Helpers/ReturnValueGetters/HCUnsignedLongReturnGetter.h
- sourceTree
- <group>
-
- 491D024282B0009EF055163B
+ 52F37F289340D8EB4A4A768F
fileRef
- A6C90643AE3E42FFBA744124
+ A08A87259FDDC3C8A28F2526
isa
PBXBuildFile
- 4930CCC755728EED570AD69D
+ 52FC4FBB2BC4437FA6A8B7AB
fileRef
- 7A0281981BA11CC9DFE161C8
+ 570E7470FCA365FB7D3A867F
isa
PBXBuildFile
- 49538E5EC9B14D1D99755B3C
+ 534AF39F32FF34AEFB9C94C3
fileRef
- C826EFF6FA273B8511270D27
+ CB53902A510FD34ABDE949B5
isa
PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
- 498ADCCD200088084A07BAE2
+ 5355E60A32BCDC844044CF7E
includeInIndex
1
@@ -5849,13 +6307,13 @@
lastKnownFileType
sourcecode.c.h
name
- HCIsDictionaryContaining.h
+ MKTBaseMockObject.h
path
- Source/Library/Collection/HCIsDictionaryContaining.h
+ Source/OCMockito/MKTBaseMockObject.h
sourceTree
<group>
- 4A048EDC4FD2A6D727315ABB
+ 539F21DFB444A50A66819BC9
includeInIndex
1
@@ -5864,48 +6322,67 @@
lastKnownFileType
sourcecode.c.objc
name
- HCLongLongReturnGetter.m
+ MKTReturnValueSetter.m
path
- Source/Core/Helpers/ReturnValueGetters/HCLongLongReturnGetter.m
+ Source/OCMockito/Helpers/ReturnValueSetters/MKTReturnValueSetter.m
sourceTree
<group>
- 4A46E84E4FA8C7DA907B7EED
+ 53AF6429DE6F195A5AE78DAA
fileRef
- 2495607FAC01C4AC2673DE40
+ 94D8AE391CA887480448ADBC
isa
PBXBuildFile
- 4A960AC06115B982C0E9C144
+ 53F81F15A70AB367D784767E
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.objc
+ sourcecode.c.h
name
- MKTVerificationData.m
+ NSURL+QueryDictionary.h
path
- Source/OCMockito/MKTVerificationData.m
+ NSURL+QueryDictionary/NSURL+QueryDictionary.h
sourceTree
<group>
- 4ACFF5B854C849C282B6B784
+ 5409D4F2C153384A48C03058
- containerPortal
- 66C2EBDD522B033360138729
+ fileRef
+ 00F8DB9309B838C6927BE039
isa
- PBXContainerItemProxy
- proxyType
- 1
- remoteGlobalIDString
- B9913B95D378F004DD626DF4
- remoteInfo
- Pods-PocketForecast-NSURL+QueryDictionary
+ PBXBuildFile
+
+ 5435E2F75D9AF2AFF4987142
+
+ buildConfigurationList
+ C1396DE7A362AD3A8F863A3B
+ buildPhases
+
+ A5583A807BCDD074F01F07DA
+ 419B89184071A200386ABFAA
+ 4F4524A7465E4B58BEBA3A69
+
+ buildRules
+
+ dependencies
+
+ isa
+ PBXNativeTarget
+ name
+ Pods-PocketForecastTests-OCHamcrest
+ productName
+ Pods-PocketForecastTests-OCHamcrest
+ productReference
+ 7340E154EC3A788B6F07B02D
+ productType
+ com.apple.product-type.library.static
- 4ADB39F42EEF489872B08532
+ 54365D9107CFC793AFAE23FB
includeInIndex
1
@@ -5914,33 +6391,13 @@
lastKnownFileType
sourcecode.c.h
name
- HCUnsignedShortReturnGetter.h
+ EXPMatchers+beFalsy.h
path
- Source/Core/Helpers/ReturnValueGetters/HCUnsignedShortReturnGetter.h
+ src/matchers/EXPMatchers+beFalsy.h
sourceTree
<group>
- 4B7EB1EE307F3A79870E098A
-
- fileRef
- D5DDDCBD64E2D386F964294A
- isa
- PBXBuildFile
-
- 4C314A5F5A3AE3854C5FEA00
-
- buildActionMask
- 2147483647
- files
-
- A730C4513097FF09444EFD95
-
- isa
- PBXHeadersBuildPhase
- runOnlyForDeploymentPostprocessing
- 0
-
- 4C35FAAFE1EED579E7EEF8A4
+ 545DBC43C5FEB64EA7E4921D
includeInIndex
1
@@ -5949,83 +6406,42 @@
lastKnownFileType
sourcecode.c.h
name
- MKTUnsignedCharArgumentGetter.h
+ HCBoolReturnGetter.h
path
- Source/OCMockito/Helpers/ArgumentGetters/MKTUnsignedCharArgumentGetter.h
+ Source/Core/Helpers/ReturnValueGetters/HCBoolReturnGetter.h
sourceTree
<group>
- 4C458F446AD85E8314FB98A1
+ 54687343697BE04AC6BBD0AA
fileRef
- BF2582BFE1D065840D9097A8
+ 429F593E100702E327F23D6A
isa
PBXBuildFile
- 4C60E890F1570AE222F7AD4E
+ 546CDAF4A0AB4C56ED1EA4D4
- explicitFileType
- archive.ar
includeInIndex
- 0
+ 1
isa
PBXFileReference
+ lastKnownFileType
+ sourcecode.c.objc
+ name
+ TyphoonAbstractDetachableComponentFactoryPostProcessor.m
path
- libPods-PocketForecast-NGAParallaxMotion.a
+ Source/Configuration/TyphoonAbstractDetachableComponentFactoryPostProcessor.m
sourceTree
- BUILT_PRODUCTS_DIR
-
- 4C61A99374BC2BC56391BE98
-
- fileRef
- 7F8FE144EF3E051077997C03
- isa
- PBXBuildFile
-
- 4C772D6A3DF8EA347A171497
-
- fileRef
- 0AA946E93309A43DF2F3474A
- isa
- PBXBuildFile
- settings
-
- COMPILER_FLAGS
- -fobjc-arc -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
-
-
- 4C7FA742DD7F8EDDA7F1B40A
-
- fileRef
- 02284DEC8D22EC88B6C1B070
- isa
- PBXBuildFile
-
- 4C97D2AD23C008D2E73E03E5
-
- fileRef
- 7CB3223C2108BBE127CF0E8B
- isa
- PBXBuildFile
- settings
-
- COMPILER_FLAGS
- -fobjc-arc -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
-
+ <group>
- 4CAFC908B472C579E4779098
+ 54B6D95CB7E9A68B02853C44
fileRef
- C364246CA9711D2F413F376D
+ C06A7577843D58EF495C7C34
isa
PBXBuildFile
- settings
-
- COMPILER_FLAGS
- -fobjc-arc -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
-
- 4CAFED005C761795AC1878D5
+ 54CB547DF18CDFAFC57F407D
includeInIndex
1
@@ -6034,23 +6450,23 @@
lastKnownFileType
sourcecode.c.h
name
- HCBaseMatcher.h
+ TyphoonMethodSwizzler.h
path
- Source/Core/HCBaseMatcher.h
+ Source/Utils/Swizzle/TyphoonMethodSwizzler.h
sourceTree
<group>
- 4D2FA3C0331063936849CE6E
+ 54CEBB1D8C717F19B75F35AF
fileRef
- A0C52350B47B15A2C17C1F36
+ 759FCAFBD30FC9C617CFE1FE
isa
PBXBuildFile
- 4D3FF44BCF9465A304C621A0
+ 556A669E081284938DE70396
fileRef
- 3C615D5CA30D22007625EDC5
+ 0DAE51CFD1D7B73A27BC4A19
isa
PBXBuildFile
settings
@@ -6059,71 +6475,22 @@
-w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
- 4D600DE52EBC167A578B2E1B
-
- baseConfigurationReference
- 7E4011DD6EBADA2954F525DF
- buildSettings
-
- ALWAYS_SEARCH_USER_PATHS
- NO
- COPY_PHASE_STRIP
- NO
- DSTROOT
- /tmp/xcodeproj.dst
- GCC_DYNAMIC_NO_PIC
- NO
- GCC_OPTIMIZATION_LEVEL
- 0
- GCC_PRECOMPILE_PREFIX_HEADER
- YES
- GCC_PREFIX_HEADER
- Target Support Files/Pods-PocketForecast-Typhoon/Pods-PocketForecast-Typhoon-prefix.pch
- GCC_PREPROCESSOR_DEFINITIONS
-
- DEBUG=1
- $(inherited)
-
- GCC_SYMBOLS_PRIVATE_EXTERN
- NO
- INSTALL_PATH
- $(BUILT_PRODUCTS_DIR)
- IPHONEOS_DEPLOYMENT_TARGET
- 7.0
- OTHER_LDFLAGS
-
- OTHER_LIBTOOLFLAGS
-
- PRODUCT_NAME
- $(TARGET_NAME)
- PUBLIC_HEADERS_FOLDER_PATH
- $(TARGET_NAME)
- SDKROOT
- iphoneos
- SKIP_INSTALL
- YES
-
- isa
- XCBuildConfiguration
- name
- Debug
-
- 4D646FC2F5F56A601B10F13B
+ 55778F5E0D2B085CCB997331
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.objc
+ sourcecode.c.h
name
- EXPMatchers+beNil.m
+ TyphoonInstancePostProcessor.h
path
- src/matchers/EXPMatchers+beNil.m
+ Source/Configuration/TyphoonInstancePostProcessor.h
sourceTree
<group>
- 4DDCE2DEF2D58EBC7C3467D4
+ 5594398E6685111ED1A4507E
includeInIndex
1
@@ -6132,20 +6499,37 @@
lastKnownFileType
sourcecode.c.objc
name
- HCDoubleReturnGetter.m
+ MKTInvocationMatcher.m
path
- Source/Core/Helpers/ReturnValueGetters/HCDoubleReturnGetter.m
+ Source/OCMockito/MKTInvocationMatcher.m
sourceTree
<group>
- 4E0C651BF45C5FC5463694A9
+ 55BBC808C4B041EAF7223367
+
+ fileRef
+ A9C585440F329CDFE936846A
+ isa
+ PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
+
+ 55E36CFD8D1CEC7BB542CDDD
fileRef
- 94470E0E520EDD8D4D91DAEB
+ 0E03FAB272FF3B1F4F32B789
isa
PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
- 4E50DCD10BCD3104C3943DF1
+ 55F3CC69502B0790873DF737
includeInIndex
1
@@ -6154,35 +6538,25 @@
lastKnownFileType
sourcecode.c.objc
name
- MKTArgumentCaptor.m
+ MKTUnsignedLongArgumentGetter.m
path
- Source/OCMockito/MKTArgumentCaptor.m
+ Source/OCMockito/Helpers/ArgumentGetters/MKTUnsignedLongArgumentGetter.m
sourceTree
<group>
- 4E6EBDAF69415D4A98C5CA57
+ 56691868C14A59F5F06A6DA5
fileRef
- F5549238CB2FCEADBC309B1A
+ 69A13AC913B1774851EBA193
isa
PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
- 4EC5C8455AC9BA4F95F71DF5
-
- includeInIndex
- 1
- isa
- PBXFileReference
- lastKnownFileType
- sourcecode.c.h
- name
- NSMethodSignature+TCFUnwrapValues.h
- path
- Source/Factory/Internal/NSMethodSignature+TCFUnwrapValues.h
- sourceTree
- <group>
-
- 4EEDE92B742933B3FC2E6CCF
+ 56ECA0E076E4679D3CCD7C78
includeInIndex
1
@@ -6191,33 +6565,20 @@
lastKnownFileType
sourcecode.c.objc
name
- TyphoonConfigPostProcessor.m
+ TyphoonInjections.m
path
- Source/Configuration/ConfigPostProcessor/TyphoonConfigPostProcessor.m
+ Source/Definition/Injections/TyphoonInjections.m
sourceTree
<group>
- 4EF5BF9F14C57048F80A2281
-
- explicitFileType
- archive.ar
- includeInIndex
- 0
- isa
- PBXFileReference
- path
- libPods-PocketForecastTests.a
- sourceTree
- BUILT_PRODUCTS_DIR
-
- 4FDECF9E77E0C19ADD80893B
+ 56FC812FCE116C922F68858C
fileRef
- BCF9773DC7EB95D7642B8CB3
+ F21A4F34B3ACC897E911CECB
isa
PBXBuildFile
- 4FF373AE52C417BBB6254458
+ 570E7470FCA365FB7D3A867F
includeInIndex
1
@@ -6226,13 +6587,13 @@
lastKnownFileType
sourcecode.c.h
name
- TyphoonInitialStoryboardResolver.h
+ HCReturnValueGetter.h
path
- Source/ios/Storyboard/TyphoonInitialStoryboardResolver.h
+ Source/Core/Helpers/ReturnValueGetters/HCReturnValueGetter.h
sourceTree
<group>
- 501CFB4EADDFD28FC7318129
+ 574B8F82969F6E7C19D696C3
includeInIndex
1
@@ -6241,31 +6602,32 @@
lastKnownFileType
sourcecode.c.objc
name
- NGAParallaxMotion.m
+ TyphoonStackElement.m
path
- Classes/NGAParallaxMotion.m
+ Source/Factory/Internal/TyphoonStackElement.m
sourceTree
<group>
- 50547DC2618EF255E5B40D8F
+ 57A2D486DFA0376D4DB2D087
- children
-
- 4227BDAA51289F9E9F56774F
- 897C206E689D8067CF69262F
- F4F15A1B95F9AD52156B3CAE
- 3C85CF62F47230526860EF9C
-
+ fileRef
+ 1E920AACBFDBA5758779D851
isa
- PBXGroup
- name
- Support Files
- path
- ../Target Support Files/Pods-PocketForecast-PaperFold
- sourceTree
- <group>
+ PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -fno-objc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
- 50588EC793843F7FCF4496A7
+ 57EE0A822AF0C0EE43EBC79B
+
+ fileRef
+ DFF8E7F66E786A7648DEC9C0
+ isa
+ PBXBuildFile
+
+ 57FFD224C2B2CD01421C4295
includeInIndex
1
@@ -6274,20 +6636,44 @@
lastKnownFileType
sourcecode.c.h
name
- TyphoonInjectionByComponentFactory.h
+ NSObject+PropertyInjection.h
path
- Source/Definition/Injections/TyphoonInjectionByComponentFactory.h
+ Source/Utils/NSObject+PropertyInjection.h
sourceTree
<group>
- 509B572D79E1B514A6102B41
+ 5833162566942EBE5435D7F3
+
+ isa
+ PBXTargetDependency
+ name
+ Pods-PocketForecast-NGAParallaxMotion
+ target
+ D4486042FCDB17AA6B93D575
+ targetProxy
+ F767CD6FCC9C7912109FA3A4
+
+ 58458D599115DCED1F1BA1CA
+
+ containerPortal
+ 94AF5A4F363AA9649B0CD69F
+ isa
+ PBXContainerItemProxy
+ proxyType
+ 1
+ remoteGlobalIDString
+ 5435E2F75D9AF2AFF4987142
+ remoteInfo
+ Pods-PocketForecastTests-OCHamcrest
+
+ 5919DB154302174ADFA43CDB
fileRef
- 5CA0AD973E4508508564A6BC
+ 98E36407875562351B8C5E1F
isa
PBXBuildFile
- 50AD6F117F608A9F6624B688
+ 5926E461F94F7CFC63DD1696
includeInIndex
1
@@ -6296,13 +6682,13 @@
lastKnownFileType
sourcecode.c.h
name
- NGAParallaxMotion.h
+ MKTReturnsValue.h
path
- Classes/NGAParallaxMotion.h
+ Source/OCMockito/MKTReturnsValue.h
sourceTree
<group>
- 50D81E300F14474C39FDF7C7
+ 5946A06357B09FB03BC55DE5
includeInIndex
1
@@ -6311,77 +6697,52 @@
lastKnownFileType
sourcecode.c.objc
name
- EXPBlockDefinedMatcher.m
- path
- src/EXPBlockDefinedMatcher.m
- sourceTree
- <group>
-
- 5156DE7615819E598B1D0FC9
-
- fileRef
- D8891B6F3FDCC31C1BE45A74
- isa
- PBXBuildFile
-
- 522A6BD7773FD0DA4FD6106E
-
- children
-
- 7F79F7D9602E8E7EC363C9BE
- 1E51CF6BB795090FF12A581A
- BB977741808EF814F7A1EAD3
- 28897A4277450AA9F240641A
- 5E8ACBA331BDC78F5131CBB8
- 9FFAA0A0891AA7B721F16D33
- C87424478EB68D27718C9256
- 9639A0B4D5CC8F6EF4529086
- F12E74853FDE195837DB1E2B
- 5D9FAA4EFAB1BB1B0400D668
- 318D35AD13F3AFE67E8B7445
- 5EE961774E0E138B79283CA2
- 280EAD2E2904FCD8E249041B
- 881A63EBE73C042BD2DD1FFE
- D8D4A29431B294596DEB8639
- A953D828E6029A1C1B5F27EC
- B91208C577807582BD8EF5EE
- 52A3AA9171B374EE1DC77A8A
- 190BC3DAB334E76B5FA16D00
- 90BF94336E87A0A49F2E0768
- 50547DC2618EF255E5B40D8F
-
- isa
- PBXGroup
- name
- PaperFold
+ HCIs.m
path
- PaperFold
+ Source/Library/Decorator/HCIs.m
sourceTree
<group>
- 524C3FC0D25F8DD0CF207A68
+ 595C7DC781E5D6F04B9A1BA0
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.h
- name
- TyphoonInjectionByReference.h
+ text.xcconfig
path
- Source/Definition/Injections/TyphoonInjectionByReference.h
+ Pods-PocketForecast-NGAParallaxMotion-Private.xcconfig
sourceTree
<group>
- 52524FE797820AFBF0830963
+ 59FE6A4C102A7AF9ADCD3D43
+
+ fileRef
+ BD0F3BB9938D52BA90E2111E
+ isa
+ PBXBuildFile
+
+ 5A249498AED63CB40F306DB3
+
+ fileRef
+ 25ADDFBD08C010C1A01611C6
+ isa
+ PBXBuildFile
+
+ 5A28D57E530DF63024EB5E3E
fileRef
- 7F8FE144EF3E051077997C03
+ 71410D0A202951B6AB5B9C69
isa
PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -fno-objc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
- 52A3AA9171B374EE1DC77A8A
+ 5A436FFA21DB7818AE62EA3D
includeInIndex
1
@@ -6390,13 +6751,20 @@
lastKnownFileType
sourcecode.c.h
name
- UIView+Screenshot.h
+ HCIsDictionaryContaining.h
path
- PaperFold/PaperFold/PaperFold/UIView+Screenshot.h
+ Source/Library/Collection/HCIsDictionaryContaining.h
sourceTree
<group>
- 5317A30986F4B6C6F20E7292
+ 5ACEC2D89167F015A49CF3A0
+
+ fileRef
+ D701C0DA94CC9F282FEF8217
+ isa
+ PBXBuildFile
+
+ 5AD8DDD290CCCE16590BDBED
includeInIndex
1
@@ -6405,20 +6773,20 @@
lastKnownFileType
sourcecode.c.h
name
- HCConformsToProtocol.h
+ EXPMatchers+beGreaterThan.h
path
- Source/Library/Object/HCConformsToProtocol.h
+ src/matchers/EXPMatchers+beGreaterThan.h
sourceTree
<group>
- 538C3758D80752013828115C
+ 5AEB5E76F9BC1030C5BD2494
fileRef
- 44FC5667792F3549301783F4
+ FBE30BC77C408880AAE4EC6A
isa
PBXBuildFile
- 53E350BD02AB7DDF5A87218B
+ 5B10344B01CED6A1B1C08613
includeInIndex
1
@@ -6427,47 +6795,92 @@
lastKnownFileType
sourcecode.c.objc
name
- EXPMatchers+beginWith.m
+ TyphoonCallStack.m
path
- src/matchers/EXPMatchers+beginWith.m
+ Source/Factory/Internal/TyphoonCallStack.m
sourceTree
<group>
- 54011321C8DC3B735110DBB0
+ 5B1144DD895FB698D0EC9CC1
- fileRef
- 00E3873CE3D13E511718B774
- isa
- PBXBuildFile
- settings
+ baseConfigurationReference
+ 06C175668D6482182E7B993E
+ buildSettings
- COMPILER_FLAGS
- -fobjc-arc -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+ ALWAYS_SEARCH_USER_PATHS
+ NO
+ COPY_PHASE_STRIP
+ NO
+ DSTROOT
+ /tmp/xcodeproj.dst
+ GCC_DYNAMIC_NO_PIC
+ NO
+ GCC_OPTIMIZATION_LEVEL
+ 0
+ GCC_PRECOMPILE_PREFIX_HEADER
+ YES
+ GCC_PREFIX_HEADER
+ Target Support Files/Pods-PocketForecast-PaperFold/Pods-PocketForecast-PaperFold-prefix.pch
+ GCC_PREPROCESSOR_DEFINITIONS
+
+ DEBUG=1
+ $(inherited)
+
+ GCC_SYMBOLS_PRIVATE_EXTERN
+ NO
+ INSTALL_PATH
+ $(BUILT_PRODUCTS_DIR)
+ IPHONEOS_DEPLOYMENT_TARGET
+ 7.0
+ OTHER_LDFLAGS
+
+ OTHER_LIBTOOLFLAGS
+
+ PRODUCT_NAME
+ $(TARGET_NAME)
+ PUBLIC_HEADERS_FOLDER_PATH
+ $(TARGET_NAME)
+ SDKROOT
+ iphoneos
+ SKIP_INSTALL
+ YES
+ isa
+ XCBuildConfiguration
+ name
+ Debug
- 540A4526A5EFE5FA6AAAB1CD
+ 5B1AFB92EC81A862023907C3
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.h
+ sourcecode.c.objc
name
- MKTExactTimes.h
+ HCStringEndsWith.m
path
- Source/OCMockito/MKTExactTimes.h
+ Source/Library/Text/HCStringEndsWith.m
sourceTree
<group>
- 5431C67197219D5D5443EA36
+ 5B27D309110DF24FA0FEF7A0
- fileRef
- 197B974F55E4B5A6CB54F72E
+ includeInIndex
+ 1
isa
- PBXBuildFile
+ PBXFileReference
+ lastKnownFileType
+ sourcecode.c.objc
+ name
+ HCHasCount.m
+ path
+ Source/Library/Collection/HCHasCount.m
+ sourceTree
+ <group>
- 54DC237870D48F7981187DB3
+ 5B2F09D9154AC86094D2DB00
includeInIndex
1
@@ -6476,32 +6889,13 @@
lastKnownFileType
sourcecode.c.h
name
- EXPBackwardCompatibility.h
+ HCUnsignedShortReturnGetter.h
path
- src/EXPBackwardCompatibility.h
+ Source/Core/Helpers/ReturnValueGetters/HCUnsignedShortReturnGetter.h
sourceTree
<group>
- 54EEB7A984853A1AE746B0FC
-
- fileRef
- D54A5465A693DABE1FCC4B29
- isa
- PBXBuildFile
- settings
-
- COMPILER_FLAGS
- -fobjc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
-
-
- 551E8CB6D0B38656FD413891
-
- fileRef
- 31A2F8D63FB80014F8539616
- isa
- PBXBuildFile
-
- 552D63B460397F81D7DE7FD8
+ 5B329A9E99B2C8C126205076
includeInIndex
1
@@ -6510,13 +6904,13 @@
lastKnownFileType
sourcecode.c.h
name
- TyphoonBundledImageTypeConverter.h
+ HCUnsignedLongLongReturnGetter.h
path
- Source/ios/TypeConversion/Converters/TyphoonBundledImageTypeConverter.h
+ Source/Core/Helpers/ReturnValueGetters/HCUnsignedLongLongReturnGetter.h
sourceTree
<group>
- 554DF16FDAF5174B35F85C1A
+ 5B4BE2D468BD84800FD63686
includeInIndex
1
@@ -6525,35 +6919,41 @@
lastKnownFileType
sourcecode.c.objc
name
- MKT_TPDWeakProxy.m
+ NSInvocation+OCMockito.m
path
- Source/ThirdParty/TPDWeakProxy-1.1.0/TPDWeakProxy/MKT_TPDWeakProxy.m
+ Source/OCMockito/NSInvocation+OCMockito.m
sourceTree
<group>
- 55637B4FF5B8A3E3B2FAC5BB
+ 5B95E3A36C48363BE1CF382E
- fileRef
- 066D45E402FD9F4620D8A317
+ includeInIndex
+ 1
isa
- PBXBuildFile
+ PBXFileReference
+ lastKnownFileType
+ text.xcconfig
+ path
+ Pods-PocketForecast.release.xcconfig
+ sourceTree
+ <group>
- 5572523E1D73EAA04A9A221D
+ 5BFF2E670FF4C3A878FA5658
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.h
+ sourcecode.c.objc
name
- EXPMatchers+beSupersetOf.h
+ TyphoonIntrospectionUtils.m
path
- src/matchers/EXPMatchers+beSupersetOf.h
+ Source/Utils/TyphoonIntrospectionUtils.m
sourceTree
<group>
- 557E3C1F0F32391126F72351
+ 5CA15DE718414805441A2842
includeInIndex
1
@@ -6562,30 +6962,36 @@
lastKnownFileType
sourcecode.c.h
name
- EXPMatchers+beginWith.h
+ EXPMatchers+beSubclassOf.h
path
- src/matchers/EXPMatchers+beginWith.h
+ src/matchers/EXPMatchers+beSubclassOf.h
sourceTree
<group>
- 5626E2EE55FA98FE9AFAD439
+ 5CE8012EEAEEAC1505C05A5C
- fileRef
- AE2E7E5B3C75B349DC937A93
+ buildActionMask
+ 2147483647
+ files
+
+ FB5F15783B63BED737DA2D41
+
isa
- PBXBuildFile
+ PBXHeadersBuildPhase
+ runOnlyForDeploymentPostprocessing
+ 0
- 56346FBE5CFF72ACED7D9BE9
+ 5CEE859423CA22D10F0F67D3
fileRef
- DC4657442D97C2223C053CEB
+ 2DEC1CC62F015970ECDAE110
isa
PBXBuildFile
- 565C9868ECD58581DB52DF07
+ 5D2AF461ABFEDACB249F7516
fileRef
- 0661A8CD49660D17A9D23642
+ 80719718A29CCC6F2D28933F
isa
PBXBuildFile
settings
@@ -6594,7 +7000,7 @@
-w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
- 56A8713A62E016451ABAB68E
+ 5D3F7DDE70A4E17FE22DCE42
includeInIndex
1
@@ -6603,33 +7009,47 @@
lastKnownFileType
sourcecode.c.h
name
- HCCollect.h
+ HCCharReturnGetter.h
path
- Source/Core/Helpers/HCCollect.h
+ Source/Core/Helpers/ReturnValueGetters/HCCharReturnGetter.h
sourceTree
<group>
- 56C10E6761FCCEB68D55C6CB
+ 5DD4943063EF14FB1FE2FEB2
- includeInIndex
- 1
+ fileRef
+ 4860263DAAF788B88AC102D8
isa
- PBXFileReference
- lastKnownFileType
- sourcecode.c.h
- path
- Pods-PocketForecast-OCLogTemplate-prefix.pch
- sourceTree
- <group>
+ PBXBuildFile
+
+ 5DE824CA995D26B0E3BB36C0
+
+ fileRef
+ B08AC4B84F99F06C74753221
+ isa
+ PBXBuildFile
- 56C32592B2F400C658304F97
+ 5E46306E8A6BD9EEA70B300F
+
+ containerPortal
+ 94AF5A4F363AA9649B0CD69F
+ isa
+ PBXContainerItemProxy
+ proxyType
+ 1
+ remoteGlobalIDString
+ 682DEE61CEEDEFD605AD9713
+ remoteInfo
+ Pods-PocketForecastTests-Expecta
+
+ 5E7EB860BF353CDD2D162F40
fileRef
- 852C67027088DEB7C97C0D3B
+ 7362073523FC26326BFAE281
isa
PBXBuildFile
- 570A7B07E73929419D751DAC
+ 5ECE9C96838C059B18AF734E
includeInIndex
1
@@ -6638,28 +7058,40 @@
lastKnownFileType
sourcecode.c.objc
name
- TyphoonInjectionByCollection.m
+ Collections+CustomInjection.m
path
- Source/Definition/Injections/TyphoonInjectionByCollection.m
+ Source/Definition/Internal/Collections+CustomInjection.m
sourceTree
<group>
- 5727CF5C562E3CBB7422F7CC
+ 5F305446301D3F1B4EAEE776
+
+ fileRef
+ 5946A06357B09FB03BC55DE5
+ isa
+ PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
+
+ 5F55252A9B9ACF8A282CC882
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.objc
+ sourcecode.c.h
name
- MKTUnsignedShortReturnSetter.m
+ EXPMatchers+beLessThan.h
path
- Source/OCMockito/Helpers/ReturnValueSetters/MKTUnsignedShortReturnSetter.m
+ src/matchers/EXPMatchers+beLessThan.h
sourceTree
<group>
- 57604C01A9AA4C110A636563
+ 5F7E5B7ED73014B6E9838119
includeInIndex
1
@@ -6668,40 +7100,37 @@
lastKnownFileType
sourcecode.c.objc
name
- TyphoonUIColorTypeConverter.m
+ HCThrowsException.m
path
- Source/ios/TypeConversion/Converters/TyphoonUIColorTypeConverter.m
+ Source/Library/Object/HCThrowsException.m
sourceTree
<group>
- 57B9B75CF368D050B052BE49
+ 5FC83F9EB01706919FDECFB7
- children
-
- 87656471FC38ACD342993B0D
- 9AC7437D03FAF63ED3D007EF
- 92B270E0F72E92062C8BF869
- 8701F57C948DD9CA2414829A
- E35B5A556FD86D31D2EFD90A
-
+ fileRef
+ 16D407F8DE1EA1AC0D9C842B
isa
- PBXGroup
- sourceTree
- <group>
+ PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
- 57C8407EA3DE671DE790B85F
+ 5FCCED956926E0F11C010936
fileRef
- F7B5C3C585DECB34F8F544E1
+ C2CDFC2C35A3009509BC2ADF
isa
PBXBuildFile
settings
COMPILER_FLAGS
- -fobjc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+ -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
- 57EC6BC20BE76B96A6D9C342
+ 5FD7814CDF18FBAC5F4AF4A1
includeInIndex
1
@@ -6710,50 +7139,28 @@
lastKnownFileType
sourcecode.c.h
name
- EXPMatchers+beCloseTo.h
+ TyphoonFactoryAutoInjectionPostProcessor.h
path
- src/matchers/EXPMatchers+beCloseTo.h
+ Source/Definition/AutoInjection/TyphoonFactoryAutoInjectionPostProcessor.h
sourceTree
<group>
- 588DD2A7E5D597C657926E83
+ 5FF016F005CEA2047B80ABD1
- buildConfigurationList
- 2E937F91573DD0C3CEDC51E9
- buildPhases
-
- 0B65A4D6AAB62C2B676D2B27
- EF670123F9406896397966D4
- FC062B77B6156F5E3D75DE59
-
- buildRules
-
- dependencies
-
+ includeInIndex
+ 1
isa
- PBXNativeTarget
+ PBXFileReference
+ lastKnownFileType
+ sourcecode.c.h
name
- Pods-PocketForecast-OCLogTemplate
- productName
- Pods-PocketForecast-OCLogTemplate
- productReference
- CB24482BCE49ACDB7E000400
- productType
- com.apple.product-type.library.static
-
- 5892CA69B5E511712DFAA43D
-
- fileRef
- 0439140F9A659D0829F28C9E
- isa
- PBXBuildFile
- settings
-
- COMPILER_FLAGS
- -fobjc-arc -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
-
+ TyphoonCollaboratingAssemblyProxy.h
+ path
+ Source/Factory/Block/TyphoonCollaboratingAssemblyProxy.h
+ sourceTree
+ <group>
- 58CFE8E0A98A48FAE159E3C4
+ 5FF16CB20CD010C6CBA5223F
includeInIndex
1
@@ -6762,16 +7169,16 @@
lastKnownFileType
sourcecode.c.objc
name
- MKTStructArgumentGetter.m
+ MKTMockitoCore.m
path
- Source/OCMockito/Helpers/ArgumentGetters/MKTStructArgumentGetter.m
+ Source/OCMockito/MKTMockitoCore.m
sourceTree
<group>
- 590F4C238B8A5B31306D740F
+ 6016B5D55E1084AE6AE4ED27
baseConfigurationReference
- BF3A3F41266FD3304ECF06DC
+ B03F27A6ACAB1624C0698333
buildSettings
ALWAYS_SEARCH_USER_PATHS
@@ -6783,7 +7190,7 @@
GCC_PRECOMPILE_PREFIX_HEADER
YES
GCC_PREFIX_HEADER
- Target Support Files/Pods-PocketForecast-ICLoader/Pods-PocketForecast-ICLoader-prefix.pch
+ Target Support Files/Pods-PocketForecast-NSURL+QueryDictionary/Pods-PocketForecast-NSURL+QueryDictionary-prefix.pch
INSTALL_PATH
$(BUILT_PRODUCTS_DIR)
IPHONEOS_DEPLOYMENT_TARGET
@@ -6818,56 +7225,7 @@
name
Release
- 5A36A7E6FEF2DA209215E558
-
- fileRef
- 265DAE71F6DD38CF8950273B
- isa
- PBXBuildFile
- settings
-
- COMPILER_FLAGS
- -fobjc-arc -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
-
-
- 5A6E9BB34DDEFBAE26FA3D3E
-
- fileRef
- 2EC3C499C2585B029F13D1FA
- isa
- PBXBuildFile
-
- 5ADBBB18CCC11F6E3C4FBC40
-
- includeInIndex
- 1
- isa
- PBXFileReference
- lastKnownFileType
- sourcecode.c.objc
- name
- HCStringDescription.m
- path
- Source/Core/HCStringDescription.m
- sourceTree
- <group>
-
- 5AFC335D4AC693CF38049A05
-
- includeInIndex
- 1
- isa
- PBXFileReference
- lastKnownFileType
- sourcecode.c.objc
- name
- OCMockito.m
- path
- Source/OCMockito/OCMockito.m
- sourceTree
- <group>
-
- 5AFE8D83DB0B29C743586467
+ 6073557742CA2B24D442FF1F
includeInIndex
1
@@ -6876,76 +7234,59 @@
lastKnownFileType
sourcecode.c.h
name
- TyphoonParameterInjection.h
- path
- Source/Definition/Injections/TyphoonParameterInjection.h
- sourceTree
- <group>
-
- 5AFFB04F25DF37ECB284A6F3
-
- includeInIndex
- 1
- isa
- PBXFileReference
- lastKnownFileType
- sourcecode.c.objc
- name
- NSInvocation+OCHamcrest.m
+ TyphoonAssemblyDefinitionBuilder.h
path
- Source/Core/Helpers/NSInvocation+OCHamcrest.m
+ Source/Factory/Block/TyphoonAssemblyDefinitionBuilder.h
sourceTree
<group>
- 5BAD96021AEBA1725E84CB5D
-
- fileRef
- DA2B8E20CBBB0AD1F50618ED
- isa
- PBXBuildFile
-
- 5BC641E2AD1C522C2DA59EBF
+ 60C0551F94C610F1E4A5094E
fileRef
- E12C4F6DF3568B9807D39870
+ A8CF5EBA53C3E4F61A9C0B47
isa
PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
- 5BFF00E74FB23A4C2136EA9E
+ 612658E39444157C172AFA30
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.objc
+ sourcecode.c.h
name
- MKTUnsignedLongLongArgumentGetter.m
+ TyphoonPathResource.h
path
- Source/OCMockito/Helpers/ArgumentGetters/MKTUnsignedLongLongArgumentGetter.m
+ Source/Configuration/Resource/TyphoonPathResource.h
sourceTree
<group>
- 5C0737DC60B14B7053344A0C
+ 613AFEA2256AD0F7C50391AE
fileRef
- 8610F04E42582B5FD19FC8BE
+ F39F9EC1BA543BAA4C4DCFDD
isa
PBXBuildFile
- 5C1D0CC0324319C491C640F6
+ 61645B20F655E98B8068A18D
fileRef
- FFB61FBE36692251DD62683E
+ 3D4ABCA41A1609B07976E774
isa
PBXBuildFile
settings
COMPILER_FLAGS
- -fobjc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+ -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
- 5C35D17EF10A6762CE8174FF
+ 61D69692A3B97B6EAD1F1708
includeInIndex
1
@@ -6954,42 +7295,28 @@
lastKnownFileType
sourcecode.c.h
name
- HCStringEndsWith.h
+ TyphoonTestUtils.h
path
- Source/Library/Text/HCStringEndsWith.h
+ Source/Test/TestUtils/TyphoonTestUtils.h
sourceTree
<group>
- 5C9823E838C4A203F7B9E872
-
- fileRef
- 8177198F4DAB45927FE225C6
- isa
- PBXBuildFile
-
- 5CA0AD973E4508508564A6BC
+ 61D74EEA353123FB746AFA79
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.h
+ sourcecode.c.objc
name
- OCHamcrest.h
+ HCIsEqualIgnoringWhiteSpace.m
path
- Source/OCHamcrest.h
+ Source/Library/Text/HCIsEqualIgnoringWhiteSpace.m
sourceTree
<group>
- 5CBCC03EAA537D816640EFEC
-
- fileRef
- BB977741808EF814F7A1EAD3
- isa
- PBXBuildFile
-
- 5CC374DD8194E7A5C88A2617
+ 61DB899CF8AEA2D2A474A43E
includeInIndex
1
@@ -6997,12 +7324,14 @@
PBXFileReference
lastKnownFileType
sourcecode.c.objc
+ name
+ NSObject+PropertyInjection.m
path
- Pods-PocketForecastTests-OCMockito-dummy.m
+ Source/Utils/NSObject+PropertyInjection.m
sourceTree
<group>
- 5CE0EB073C06E400E92A77CF
+ 61E179D708484358B364BED8
includeInIndex
1
@@ -7011,53 +7340,28 @@
lastKnownFileType
sourcecode.c.objc
name
- TyphoonFactoryPropertyInjectionPostProcessor.m
+ TyphoonOptionMatcher.m
path
- Source/Factory/Internal/TyphoonFactoryPropertyInjectionPostProcessor.m
+ Source/Configuration/DefinitionOptionConfiguration/Matcher/TyphoonOptionMatcher.m
sourceTree
<group>
- 5CE86BB9761D0CF5C5DD98D0
+ 61E86E30ADBF322F0CBA56DC
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.h
+ sourcecode.c.objc
name
- MKTUnsignedIntReturnSetter.h
+ HCIsInstanceOf.m
path
- Source/OCMockito/Helpers/ReturnValueSetters/MKTUnsignedIntReturnSetter.h
+ Source/Library/Object/HCIsInstanceOf.m
sourceTree
<group>
- 5D1031FAB01BE6A31D911D3C
-
- explicitFileType
- archive.ar
- includeInIndex
- 0
- isa
- PBXFileReference
- path
- libPods-PocketForecastTests-Expecta.a
- sourceTree
- BUILT_PRODUCTS_DIR
-
- 5D3ECF2F6E7ED35ECC9C6E9A
-
- fileRef
- 11D2060CC820502450A84726
- isa
- PBXBuildFile
- settings
-
- COMPILER_FLAGS
- -fobjc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
-
-
- 5D4CE88510DCC9B84846B143
+ 62073F4CE004B12D4524868D
includeInIndex
1
@@ -7066,134 +7370,127 @@
lastKnownFileType
sourcecode.c.h
name
- HCSenTestFailureHandler.h
+ TyphoonFactoryPropertyInjectionPostProcessor.h
path
- Source/Core/Helpers/TestFailureHandlers/HCSenTestFailureHandler.h
+ Source/Factory/Internal/TyphoonFactoryPropertyInjectionPostProcessor.h
sourceTree
<group>
- 5D6B4396BE1A709750818646
+ 620CA0C7896CCF0F0292C1D3
- includeInIndex
- 1
+ fileRef
+ 90D33726263BE6D919903A6A
isa
- PBXFileReference
- lastKnownFileType
- sourcecode.c.h
- name
- HCIsAnything.h
- path
- Source/Library/Logical/HCIsAnything.h
- sourceTree
- <group>
+ PBXBuildFile
- 5D9FAA4EFAB1BB1B0400D668
+ 621A29D74FA75CC110796554
- includeInIndex
- 1
+ fileRef
+ 12726689F72FDF8E237E6154
isa
- PBXFileReference
- lastKnownFileType
- sourcecode.c.h
- name
- PaperFoldSwipeHintView.h
- path
- PaperFold/PaperFold/PaperFold/PaperFoldSwipeHintView.h
- sourceTree
- <group>
+ PBXBuildFile
- 5DB03CCA703779E88B560A08
+ 623F2EB33F3B54CBC5B2AE0D
fileRef
- 8C59AACA68267104622E7A95
+ D7DE75BC1BC33160B29DFC36
isa
PBXBuildFile
- settings
-
- COMPILER_FLAGS
- -fobjc-arc -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
-
- 5DD67D7D0E0A44D8D135A239
+ 63361AC71E146C30E6C7ABE4
fileRef
- 2E244701842148B4F523BF68
+ 311DE05DC9C44FF46CB4575C
isa
PBXBuildFile
- 5DF850D5B7A4F8644914B401
+ 63511BB1296416162CD1C9CB
+
+ children
+
+ 139A7223A16BFDA373871224
+ D8471135469DCB7F5009F1DB
+
+ isa
+ PBXGroup
+ name
+ no-arc
+ sourceTree
+ <group>
+
+ 63B30F9583DED9A1C670E3D5
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.objc
+ sourcecode.c.h
name
- HCIsCollectionContainingInAnyOrder.m
+ TyphoonAutoInjection.h
path
- Source/Library/Collection/HCIsCollectionContainingInAnyOrder.m
+ Source/Definition/AutoInjection/TyphoonAutoInjection.h
sourceTree
<group>
- 5E47301E6E7CAD0312A99322
+ 63F1DDBECF822E19EE068E48
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.h
+ sourcecode.c.objc
name
- TyphoonTestUtils.h
+ MKTThrowsException.m
path
- Source/Test/TestUtils/TyphoonTestUtils.h
+ Source/OCMockito/MKTThrowsException.m
sourceTree
<group>
- 5E5C4674C26D2BC05D9B70CA
+ 6426AAF03C8059150F445047
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.h
+ sourcecode.c.objc
name
- TyphoonParentReferenceHydratingPostProcessor.h
+ MKTStructReturnSetter.m
path
- Source/Factory/Internal/TyphoonParentReferenceHydratingPostProcessor.h
+ Source/OCMockito/Helpers/ReturnValueSetters/MKTStructReturnSetter.m
sourceTree
<group>
- 5E735A76CAA25DB3069B073E
+ 64395DB3478BEE6D68781F71
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.h
+ sourcecode.c.objc
name
- MKTCharReturnSetter.h
+ MKTDynamicProperties.m
path
- Source/OCMockito/Helpers/ReturnValueSetters/MKTCharReturnSetter.h
+ Source/OCMockito/Helpers/MKTDynamicProperties.m
sourceTree
<group>
- 5E8937DE8FDCD5C3D25856DF
+ 646F1F8B03768C8293B15781
fileRef
- 02A096AC414F928F8C3432FE
+ 9CFE238C0CDA763B73F5394E
isa
PBXBuildFile
settings
COMPILER_FLAGS
- -fobjc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+ -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
- 5E8ACBA331BDC78F5131CBB8
+ 649B86BDB5FEB04C5250577B
includeInIndex
1
@@ -7202,13 +7499,13 @@
lastKnownFileType
sourcecode.c.h
name
- MultiFoldView.h
+ MKTBoolReturnSetter.h
path
- PaperFold/PaperFold/PaperFold/MultiFoldView.h
+ Source/OCMockito/Helpers/ReturnValueSetters/MKTBoolReturnSetter.h
sourceTree
<group>
- 5EA183353B0769D9D47F1B50
+ 64A07010204CD19D9B74FD04
includeInIndex
1
@@ -7217,20 +7514,46 @@
lastKnownFileType
sourcecode.c.objc
name
- TyphoonDefinition.m
+ TyphoonTestUtils.m
path
- Source/Definition/TyphoonDefinition.m
+ Source/Test/TestUtils/TyphoonTestUtils.m
sourceTree
<group>
- 5ED705A9B169DE46A35BCDD2
+ 64D7EECA4BC0061177ECF12B
+
+ buildConfigurations
+
+ FA39FA7B903FD549AC7E2EC7
+ 4A3762A1E4E319D4350E623D
+
+ defaultConfigurationIsVisible
+ 0
+ defaultConfigurationName
+ Release
+ isa
+ XCConfigurationList
+
+ 6500981A4B8FFFD0E4B6A423
+
+ fileRef
+ 949953EB1882950CCCB5617F
+ isa
+ PBXBuildFile
+
+ 659903FACD87EB208CA456BE
fileRef
- 845B3B38D51FF640C7F3D0A6
+ 69CFB9846C215F3A326B4646
isa
PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -fno-objc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
- 5EE961774E0E138B79283CA2
+ 65C7B399536EB4AE18B34E8B
includeInIndex
1
@@ -7239,66 +7562,88 @@
lastKnownFileType
sourcecode.c.h
name
- PaperFoldView.h
+ HCAnyOf.h
path
- PaperFold/PaperFold/PaperFold/PaperFoldView.h
+ Source/Library/Logical/HCAnyOf.h
+ sourceTree
+ <group>
+
+ 6603D50C0C477DFF71AB1ACC
+
+ includeInIndex
+ 1
+ isa
+ PBXFileReference
+ lastKnownFileType
+ sourcecode.c.h
+ name
+ HCSubstringMatcher.h
+ path
+ Source/Library/Text/HCSubstringMatcher.h
sourceTree
<group>
- 5EF65DEA3BD71C61B3EBF4CE
+ 660BF65D4E33BA2649EB6611
+
+ fileRef
+ 48520822EAF5D2A8B5231A33
+ isa
+ PBXBuildFile
+
+ 6611B2001AE6F270C53F3972
fileRef
- 38D9FF0AAD2B148E9D6AB393
+ B780C1D81E8BD271C465AE3C
isa
PBXBuildFile
settings
COMPILER_FLAGS
- -fobjc-arc -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+ -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
- 5F4CB3CA449A0CABB4917150
+ 662D4742A399FA46AD63ABE2
fileRef
- 6083C9E6789BEF15ABB1F240
+ 3509C96103EC2E54860D8827
isa
PBXBuildFile
- 5F54D60D0E10A07C1EFE976A
+ 667DABEC5F0F164F79B25858
fileRef
- 4A960AC06115B982C0E9C144
+ 33FA837E67131E1FD7D72379
isa
PBXBuildFile
settings
COMPILER_FLAGS
- -fobjc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+ -fno-objc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
- 5FB9C6DA8FEE48144F707799
+ 66F14B004450C33C52C62E80
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.h
+ sourcecode.c.objc
name
- HCIsIn.h
+ EXPMatchers+beTruthy.m
path
- Source/Library/Collection/HCIsIn.h
+ src/matchers/EXPMatchers+beTruthy.m
sourceTree
<group>
- 5FF64970E0C7BC5DB2D68869
+ 671751C3583BC5468AF8BD38
fileRef
- 671792EBFDA9A847D63833A9
+ 5B2F09D9154AC86094D2DB00
isa
PBXBuildFile
- 6011FFC29E8C0B7A31C84A8E
+ 6721F1BA22BB2CD27F68B6FD
includeInIndex
1
@@ -7307,40 +7652,49 @@
lastKnownFileType
sourcecode.c.objc
name
- TyphoonBundleResource.m
+ HCAllOf.m
path
- Source/Configuration/Resource/TyphoonBundleResource.m
+ Source/Library/Logical/HCAllOf.m
sourceTree
<group>
- 6083C9E6789BEF15ABB1F240
+ 67334919AF7A7E53C7C4BE1F
+
+ fileRef
+ DFF8E7F66E786A7648DEC9C0
+ isa
+ PBXBuildFile
+
+ 6744BB9694A047A57BA02A0F
+
+ fileRef
+ 91698B71A06077A36593413E
+ isa
+ PBXBuildFile
+
+ 676610CF3183AFA630BC3123
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.h
+ sourcecode.c.objc
name
- TyphoonInjectionByConfig.h
+ EXPMatchers+haveCountOf.m
path
- Source/Definition/Injections/TyphoonInjectionByConfig.h
+ src/matchers/EXPMatchers+haveCountOf.m
sourceTree
<group>
- 608CB81E506576F43EE399F1
+ 678409E2D583E92C8795A1D3
fileRef
- 8E107FF83AA99860004C8E09
+ 2F4DC65A64089276D594A74D
isa
PBXBuildFile
- settings
-
- COMPILER_FLAGS
- -fobjc-arc -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
-
- 608F8A07E63A5620D717B14E
+ 67AD1568617B95A7E4E85255
includeInIndex
1
@@ -7349,183 +7703,212 @@
lastKnownFileType
sourcecode.c.objc
name
- TyphoonJsonStyleConfiguration.m
+ FoldView.m
path
- Source/Configuration/ConfigPostProcessor/TyphoonConfiguration/TyphoonJsonStyleConfiguration.m
+ PaperFold/PaperFold/PaperFold/FoldView.m
sourceTree
<group>
- 60B99A8293089203CF65661D
+ 67CB9FF5369DEBCE419636F5
fileRef
- EF73E89D8D8C7BFB18D399D8
+ 05ABA63880A62017C4A1A8EC
isa
PBXBuildFile
settings
COMPILER_FLAGS
- -fobjc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+ -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
- 60DC88DA1BDFE4946CCA9169
+ 682DEE61CEEDEFD605AD9713
+
+ buildConfigurationList
+ 87684E15D00A7277B1F69CEC
+ buildPhases
+
+ 7836C9C30542D18A538A0CBB
+ AB08265878D04CDE0D71508E
+ 6F2BCB39DC963CAAEE9F7C7A
+
+ buildRules
+
+ dependencies
+
+ isa
+ PBXNativeTarget
+ name
+ Pods-PocketForecastTests-Expecta
+ productName
+ Pods-PocketForecastTests-Expecta
+ productReference
+ 94572AB8BC1410FFEFF6FA8D
+ productType
+ com.apple.product-type.library.static
+
+ 68522AEF7C82E35927235E72
+
+ fileRef
+ 771CAE826894210CB9BF5B34
+ isa
+ PBXBuildFile
+
+ 685EBF980B1E1915D5AF1F4A
+
+ includeInIndex
+ 1
+ isa
+ PBXFileReference
+ lastKnownFileType
+ sourcecode.c.objc
+ name
+ NSValue+TCFUnwrapValues.m
+ path
+ Source/Factory/Internal/NSValue+TCFUnwrapValues.m
+ sourceTree
+ <group>
+
+ 68E7ED36A5C7FAD277561D13
+
+ fileRef
+ 6F7500317A87A693D8F8FA5F
+ isa
+ PBXBuildFile
+
+ 68FAC2D9AA8AA41B5D6D9FDB
+
+ buildActionMask
+ 2147483647
+ files
+
+ ABCE916AD1831EDBDB1794F7
+
+ isa
+ PBXFrameworksBuildPhase
+ runOnlyForDeploymentPostprocessing
+ 0
+
+ 6901C97574AE4F15246DA9C7
+
+ includeInIndex
+ 1
+ isa
+ PBXFileReference
+ lastKnownFileType
+ sourcecode.c.h
+ name
+ HCTestFailureHandler.h
+ path
+ Source/Core/Helpers/TestFailureHandlers/HCTestFailureHandler.h
+ sourceTree
+ <group>
+
+ 69182D4A2C8726AFF3CDC4D7
fileRef
- A953D828E6029A1C1B5F27EC
+ BC592C0D31937EBE3FCDBD3C
isa
PBXBuildFile
- 619B6ED5887CC590B8B874E0
+ 699EEFFCF51F351830D9DB18
fileRef
- F994A026196B0EC88180787C
+ 1A0CF8CA688AD34B88CA3ADA
isa
PBXBuildFile
settings
COMPILER_FLAGS
- -fobjc-arc -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+ -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
- 619FE3F57E222F823FFE8A19
+ 69A13AC913B1774851EBA193
- buildSettings
-
- ALWAYS_SEARCH_USER_PATHS
- NO
- CLANG_CXX_LANGUAGE_STANDARD
- gnu++0x
- CLANG_CXX_LIBRARY
- libc++
- CLANG_ENABLE_MODULES
- YES
- CLANG_ENABLE_OBJC_ARC
- NO
- CLANG_WARN_BOOL_CONVERSION
- YES
- CLANG_WARN_CONSTANT_CONVERSION
- YES
- CLANG_WARN_DIRECT_OBJC_ISA_USAGE
- YES
- CLANG_WARN_EMPTY_BODY
- YES
- CLANG_WARN_ENUM_CONVERSION
- YES
- CLANG_WARN_INT_CONVERSION
- YES
- CLANG_WARN_OBJC_ROOT_CLASS
- YES
- COPY_PHASE_STRIP
- YES
- GCC_C_LANGUAGE_STANDARD
- gnu99
- GCC_DYNAMIC_NO_PIC
- NO
- GCC_OPTIMIZATION_LEVEL
- 0
- GCC_PREPROCESSOR_DEFINITIONS
-
- DEBUG=1
- $(inherited)
-
- GCC_SYMBOLS_PRIVATE_EXTERN
- NO
- GCC_WARN_64_TO_32_BIT_CONVERSION
- YES
- GCC_WARN_ABOUT_RETURN_TYPE
- YES
- GCC_WARN_UNDECLARED_SELECTOR
- YES
- GCC_WARN_UNINITIALIZED_AUTOS
- YES
- GCC_WARN_UNUSED_FUNCTION
- YES
- GCC_WARN_UNUSED_VARIABLE
- YES
- IPHONEOS_DEPLOYMENT_TARGET
- 7.0
- ONLY_ACTIVE_ARCH
- YES
- STRIP_INSTALLED_PRODUCT
- NO
-
+ includeInIndex
+ 1
+ isa
+ PBXFileReference
+ lastKnownFileType
+ sourcecode.c.objc
+ name
+ MKTShortReturnSetter.m
+ path
+ Source/OCMockito/Helpers/ReturnValueSetters/MKTShortReturnSetter.m
+ sourceTree
+ <group>
+
+ 69A31D238F3AE89607198DFB
+
+ fileRef
+ ED293689D31EF2E9363BCB83
isa
- XCBuildConfiguration
- name
- Debug
+ PBXBuildFile
- 61EA980D816B4EA2AFD6631D
+ 69C77328E58528F7E73100E6
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- text
+ sourcecode.c.objc
+ name
+ PaperFoldView.m
path
- Pods-PocketForecast-acknowledgements.markdown
+ PaperFold/PaperFold/PaperFold/PaperFoldView.m
sourceTree
<group>
- 623C97683E786CAB9DF78D4C
+ 69CFB9846C215F3A326B4646
- fileRef
- CB2906129E607812A6E9D4D2
+ includeInIndex
+ 1
isa
- PBXBuildFile
- settings
-
- COMPILER_FLAGS
- -fobjc-arc -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
-
+ PBXFileReference
+ lastKnownFileType
+ sourcecode.c.objc
+ name
+ ExpectaSupport.m
+ path
+ src/ExpectaSupport.m
+ sourceTree
+ <group>
- 62710BC6D6C42C54C1A36284
+ 69DF5B3530CB161240155371
fileRef
- 0AE9E6C7C75C971FCED5EDB1
+ B5B13390A7BF045B9349E8A3
isa
PBXBuildFile
- settings
-
- COMPILER_FLAGS
- -fobjc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
-
- 62D2E7731FA5951D030FBB92
+ 69E8E83DD54165005DA87E14
- buildActionMask
- 2147483647
- files
-
- AAFD984F7D4876947EEA3B50
-
+ fileRef
+ B7BEB43CA40A4F12F2BF56C0
isa
- PBXFrameworksBuildPhase
- runOnlyForDeploymentPostprocessing
- 0
+ PBXBuildFile
- 63922EAD57E0F3C0C355A5F8
+ 6A01863B439BB4F3A6DBB165
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.h
- name
- MKTClassReturnSetter.h
+ text.xcconfig
path
- Source/OCMockito/Helpers/ReturnValueSetters/MKTClassReturnSetter.h
+ Pods-PocketForecast-Typhoon.xcconfig
sourceTree
<group>
- 640B9AD0BCB6867F5709655B
+ 6A160819FBFD6673F7AE5336
fileRef
- E9EA9FB533AC6215F8AD91A4
+ 5206AF38024E1204D41C2EBD
isa
PBXBuildFile
- 641AFC37A3F61E493B9661A4
+ 6ADACBD7E122AABBEB835D67
includeInIndex
1
@@ -7534,63 +7917,68 @@
lastKnownFileType
sourcecode.c.h
name
- NSInvocation+OCMockito.h
+ HCShortReturnGetter.h
path
- Source/OCMockito/NSInvocation+OCMockito.h
+ Source/Core/Helpers/ReturnValueGetters/HCShortReturnGetter.h
sourceTree
<group>
- 644594ABA56847E3CBB4FCE1
+ 6B4D00C9D0629B4A4FF4A0F0
- fileRef
- C4AF0EF32B5EAC291E2B666D
+ explicitFileType
+ archive.ar
+ includeInIndex
+ 0
isa
- PBXBuildFile
+ PBXFileReference
+ path
+ libPods-PocketForecast-PaperFold.a
+ sourceTree
+ BUILT_PRODUCTS_DIR
- 646B3E1FA5F15D1FEDAC6E64
+ 6B64158195A41F9CA0D6EDCA
fileRef
- 6579238046607023A2813928
+ FCDCB8CBFD72298C8F65D5A3
isa
PBXBuildFile
- settings
-
- COMPILER_FLAGS
- -fobjc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
-
- 647D06DCF8EB23F75B1F7EDB
+ 6B67518E6329CA33B1E58827
- fileRef
- 17A63E94C914EFFAF850FF60
+ includeInIndex
+ 1
isa
- PBXBuildFile
- settings
-
- COMPILER_FLAGS
- -fobjc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
-
+ PBXFileReference
+ lastKnownFileType
+ sourcecode.c.h
+ name
+ EXPMatchers+respondTo.h
+ path
+ src/matchers/EXPMatchers+respondTo.h
+ sourceTree
+ <group>
- 64FAFE9C45E56DC0FBBC015B
+ 6B746633341D03871D372B9D
- fileRef
- 5FB9C6DA8FEE48144F707799
+ buildActionMask
+ 2147483647
+ files
+
+ 14C50AD87E1BD884AED485FF
+
isa
- PBXBuildFile
+ PBXFrameworksBuildPhase
+ runOnlyForDeploymentPostprocessing
+ 0
- 65180F7883384D336A6C85C1
+ 6BBC2E9175D02DF8E8D61844
fileRef
- A75167FB96ADE160168A634B
+ 7B9E7B8786DB9972190B99FD
isa
PBXBuildFile
- settings
-
- COMPILER_FLAGS
- -fobjc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
-
- 654C74C6D789867E0990530E
+ 6BE5AE1EF8098619C2041DE1
includeInIndex
1
@@ -7598,12 +7986,14 @@
PBXFileReference
lastKnownFileType
sourcecode.c.objc
+ name
+ PaperFoldNavigationController.m
path
- UIColor+CKUITools.m
+ PaperFold/PaperFold/PaperFold/PaperFoldNavigationController.m
sourceTree
<group>
- 6579238046607023A2813928
+ 6BFD38F3F6AA980D1DCCA618
includeInIndex
1
@@ -7612,177 +8002,155 @@
lastKnownFileType
sourcecode.c.objc
name
- MKTFloatReturnSetter.m
+ OCMockito.m
path
- Source/OCMockito/Helpers/ReturnValueSetters/MKTFloatReturnSetter.m
+ Source/OCMockito/OCMockito.m
+ sourceTree
+ <group>
+
+ 6C29038D2ED98C9F3B3FCB08
+
+ includeInIndex
+ 1
+ isa
+ PBXFileReference
+ lastKnownFileType
+ sourcecode.c.objc
+ name
+ MKT_TPDWeakProxy.m
+ path
+ Source/ThirdParty/TPDWeakProxy-1.1.0/TPDWeakProxy/MKT_TPDWeakProxy.m
sourceTree
<group>
- 65AD6F8B91B6BE5B4BC30C17
+ 6C2EF2A246634B3DC213D1DC
fileRef
- DBE88854C122050BB1921602
+ 5FF16CB20CD010C6CBA5223F
isa
PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
- 661FB0C2E2D087856309377B
+ 6C3BA0A2958916D831E11FF0
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.objc
+ sourcecode.c.h
name
- TyphoonRuntimeArguments.m
+ HCIsCollectionContainingInOrder.h
path
- Source/Factory/Block/TyphoonRuntimeArguments.m
+ Source/Library/Collection/HCIsCollectionContainingInOrder.h
sourceTree
<group>
- 66316EACD4891B207B6A0D44
+ 6C3D5C33A00E17183599755E
+
+ fileRef
+ 4535481D4770949BD73B3F23
+ isa
+ PBXBuildFile
+
+ 6C5A290B2FFF8D1309DA9246
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.h
+ sourcecode.c.objc
name
- TyphoonConfiguration.h
+ TyphoonAssemblyPropertyInjectionPostProcessor.m
path
- Source/Configuration/ConfigPostProcessor/TyphoonConfiguration/TyphoonConfiguration.h
+ Source/Factory/Block/TyphoonAssemblyPropertyInjectionPostProcessor.m
sourceTree
<group>
- 666D7F10129BB9B3DD482A4B
+ 6CA9104F09DE6AEBF39F36CC
fileRef
- 43A953738BD36B520943EB69
+ ED18239B5EE8F5D601F99979
isa
PBXBuildFile
settings
COMPILER_FLAGS
- -fobjc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+ -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
- 66A976FF54C364AF05B1C08D
+ 6CC6B01833FDA4C1C2413548
fileRef
- 570A7B07E73929419D751DAC
+ 2AD6FE2F4E21F6CC6A5F6478
isa
PBXBuildFile
- settings
-
- COMPILER_FLAGS
- -fobjc-arc -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
-
- 66AAD91393966DD013C1C690
+ 6CCF3654B02FF9515B076C83
- baseConfigurationReference
- 0EA207DDB03AD50F49168010
- buildSettings
-
- ALWAYS_SEARCH_USER_PATHS
- NO
- COPY_PHASE_STRIP
- NO
- DSTROOT
- /tmp/xcodeproj.dst
- GCC_DYNAMIC_NO_PIC
- NO
- GCC_OPTIMIZATION_LEVEL
- 0
- GCC_PRECOMPILE_PREFIX_HEADER
- YES
- GCC_PREFIX_HEADER
- Target Support Files/Pods-PocketForecast-NGAParallaxMotion/Pods-PocketForecast-NGAParallaxMotion-prefix.pch
- GCC_PREPROCESSOR_DEFINITIONS
-
- DEBUG=1
- $(inherited)
-
- GCC_SYMBOLS_PRIVATE_EXTERN
- NO
- INSTALL_PATH
- $(BUILT_PRODUCTS_DIR)
- IPHONEOS_DEPLOYMENT_TARGET
- 7.0
- OTHER_LDFLAGS
-
- OTHER_LIBTOOLFLAGS
-
- PRODUCT_NAME
- $(TARGET_NAME)
- PUBLIC_HEADERS_FOLDER_PATH
- $(TARGET_NAME)
- SDKROOT
- iphoneos
- SKIP_INSTALL
- YES
-
+ fileRef
+ 50CD55CF984304F96FAF73D4
isa
- XCBuildConfiguration
- name
- Debug
+ PBXBuildFile
- 66C2EBDD522B033360138729
+ 6D135593D0568EA4F6845133
- attributes
-
- LastUpgradeCheck
- 0510
-
- buildConfigurationList
- 910D595203308B1BA0EA0A00
- compatibilityVersion
- Xcode 3.2
- developmentRegion
- English
- hasScannedForEncodings
- 0
- isa
- PBXProject
- knownRegions
-
- en
-
- mainGroup
- 57B9B75CF368D050B052BE49
- productRefGroup
- 8701F57C948DD9CA2414829A
- projectDirPath
-
- projectReferences
-
- projectRoot
-
- targets
+ children
- 0A39DC45A3D685AE9B2FD314
- 90174F22889E06FC9A35F810
- 132C5A4F6375AD09ADB02E07
- FE39F0327F8630A5A83C4D4D
- B9913B95D378F004DD626DF4
- 588DD2A7E5D597C657926E83
- 72B8FFAC4B9F21FBC308992A
- 99F49A6BF566860B1931F55E
- 40FAC591078CC1BE2271B24A
- FCC0C743343AEB4749672241
- 93183C63F70194245E89842F
- 27CAA3B59D184B739958E85E
+ 09F1A18F08F8B507B17C2282
+ 595C7DC781E5D6F04B9A1BA0
+ 279A11C97F0EC334E0B31097
+ 8C28F7FE843A4637F6A55015
+ isa
+ PBXGroup
+ name
+ Support Files
+ path
+ ../Target Support Files/Pods-PocketForecast-NGAParallaxMotion
+ sourceTree
+ <group>
+
+ 6D3408E1DB0242BAF6933D2C
+
+ includeInIndex
+ 1
+ isa
+ PBXFileReference
+ lastKnownFileType
+ sourcecode.c.objc
+ name
+ EXPMatchers+contain.m
+ path
+ src/matchers/EXPMatchers+contain.m
+ sourceTree
+ <group>
+
+ 6D3E30D35B3E34AD24988EE7
+
+ fileRef
+ 03A9C020468ACE04DF06AFC4
+ isa
+ PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
- 66F69EC206D4D1ABFAB2C358
+ 6D6B662732B13055964560C0
fileRef
- 7F8FE144EF3E051077997C03
+ EE9ED931673C9085F7896E5C
isa
PBXBuildFile
- 670488BB04F3A70DA4763FE1
+ 6DA56E2C3D39FF9D4896F4CE
includeInIndex
1
@@ -7791,35 +8159,43 @@
lastKnownFileType
sourcecode.c.objc
name
- EXPMatchers+beTruthy.m
+ TyphoonMethod.m
path
- src/matchers/EXPMatchers+beTruthy.m
+ Source/Definition/Method/TyphoonMethod.m
sourceTree
<group>
- 671792EBFDA9A847D63833A9
+ 6E4A04865B3AA0FA57243704
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.h
+ sourcecode.c.objc
name
- MKTLongArgumentGetter.h
+ TyphoonViewControllerNibResolver.m
path
- Source/OCMockito/Helpers/ArgumentGetters/MKTLongArgumentGetter.h
+ Source/ios/Configuration/Resolver/TyphoonViewControllerNibResolver.m
sourceTree
<group>
- 6723BB7F69575859C4215294
+ 6E4E485474B46C7C8B53BDE5
- fileRef
- C87CBD6B449B085CC2FB11DE
+ includeInIndex
+ 1
isa
- PBXBuildFile
+ PBXFileReference
+ lastKnownFileType
+ sourcecode.c.h
+ name
+ OCMockito.h
+ path
+ Source/OCMockito/OCMockito.h
+ sourceTree
+ <group>
- 675E15ABE7944B438F78BC0F
+ 6EAEB9DF39B88523C31C9CC5
includeInIndex
1
@@ -7828,70 +8204,35 @@
lastKnownFileType
sourcecode.c.objc
name
- TyphoonAbstractDetachableComponentFactoryPostProcessor.m
+ TyphoonPatcher.m
path
- Source/Configuration/TyphoonAbstractDetachableComponentFactoryPostProcessor.m
+ Source/Test/Patcher/TyphoonPatcher.m
sourceTree
<group>
- 6775A48246E18B52124DD335
-
- fileRef
- CCC70FFE6B6E1A3183D7B072
- isa
- PBXBuildFile
-
- 677AB3DF774D58CBC8DECCFD
-
- fileRef
- 7E22059758D99D00904349FF
- isa
- PBXBuildFile
-
- 67B8F70BF070150206AF4617
-
- fileRef
- 1581B991662F13FA4FC282F4
- isa
- PBXBuildFile
- settings
-
- COMPILER_FLAGS
- -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
-
-
- 67CA967F6554846C0A0A2E99
+ 6EC768565DC0114A9D802A68
- fileRef
- CA2FA4906E9A1ADE556EB3EA
- isa
- PBXBuildFile
- settings
-
- COMPILER_FLAGS
- -fobjc-arc -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
-
-
- 680DB60D19652A531D0D597C
-
- fileRef
- DF94911292582E82C60B8BAB
+ includeInIndex
+ 1
isa
- PBXBuildFile
- settings
-
- COMPILER_FLAGS
- -fobjc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
-
+ PBXFileReference
+ lastKnownFileType
+ sourcecode.c.objc
+ name
+ TyphoonInjectionByReference.m
+ path
+ Source/Definition/Injections/TyphoonInjectionByReference.m
+ sourceTree
+ <group>
- 6818C2BB13401E24F6801564
+ 6ED0734161F823A684F609B0
fileRef
- 7F79F7D9602E8E7EC363C9BE
+ F7CDCBB88D4BBF4220BAFC09
isa
PBXBuildFile
- 687EE57C06F92C6A6C957CB6
+ 6ED0BECDB7C9D21EF133AB15
includeInIndex
1
@@ -7900,47 +8241,89 @@
lastKnownFileType
sourcecode.c.objc
name
- TyphoonBlockComponentFactory.m
+ EXPMatchers+conformTo.m
path
- Source/Factory/Block/TyphoonBlockComponentFactory.m
+ src/matchers/EXPMatchers+conformTo.m
sourceTree
<group>
- 6881B85B27F2FC11A3A07A19
+ 6F001FDD18E182D9A8EAC57E
- fileRef
- 44E7AF55F7D8B65FA19C18F3
+ explicitFileType
+ archive.ar
+ includeInIndex
+ 0
isa
- PBXBuildFile
+ PBXFileReference
+ path
+ libPods-PocketForecastTests-OCMockito.a
+ sourceTree
+ BUILT_PRODUCTS_DIR
- 68C1928B675330417C916F2B
+ 6F2BCB39DC963CAAEE9F7C7A
- fileRef
- 180A81A26D4DA831C4908706
+ buildActionMask
+ 2147483647
+ files
+
+ 09E6A73A74420C6CF1AEDA98
+ 918B4DCAD8D1A71AFFCEC791
+ 5A249498AED63CB40F306DB3
+ 27ACA08F93FBA7FE2C26B58C
+ 9C6281C0BEE608CF53CE254A
+ 229F8F6130C17F3BCBC0B1E8
+ 239958B096C85B67F6BC446B
+ 370693D83BB212F359C0C993
+ F50F5530AFA4122B8FE767EE
+ F53DA8CE2E8A7609F9EF18A4
+ 24842CFF3326759654C7DEE8
+ 238EF8877A5BA4575D58508C
+ 6D6B662732B13055964560C0
+ D92DAD6DB92248C81D04EA21
+ EB5D3FEBD8986C63A1437413
+ 263D6A3B31FAE24C8C21BE22
+ D9E3180B80D1D6286CDE7A49
+ 86EEE541AF6246FBA526447D
+ 48AE2DF651BD65F6E73155A5
+ 1556606BBA9BD5B0D74990D6
+ 5CEE859423CA22D10F0F67D3
+ EA2A1DAA6543103BDC08BFB1
+ 6744BB9694A047A57BA02A0F
+ EE74A5D239691B4AE333CE78
+ B46AC0953ECBF5521291008E
+ F17C13B7EEF48D57866912A0
+ DF44FFB44AF936FFAE584A4B
+ 9A47F77DCFAA092BA2A3A79B
+ 68522AEF7C82E35927235E72
+ BCF7536D31BA5ED965B5F19F
+ 90E60065132447246415EA25
+ CBDE321FBFA0E1EE99D9C5CD
+ ADD281A4134AC1B35706E088
+ C281829BAAE1244A3FED1D57
+ C08E87CE73C79C33568484B3
+ 0853C9781E195A783CF1CA48
+ 48CA03D2BC3D7841B832A95B
+ 5ACEC2D89167F015A49CF3A0
+
isa
- PBXBuildFile
- settings
-
- COMPILER_FLAGS
- -fobjc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
-
+ PBXHeadersBuildPhase
+ runOnlyForDeploymentPostprocessing
+ 0
- 690B3F2361483F379FC4BFC7
+ 6F40AF037C182802DF244F1D
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.h
- name
- MKTArgumentGetter.h
+ sourcecode.c.objc
path
- Source/OCMockito/Helpers/ArgumentGetters/MKTArgumentGetter.h
+ ICLoader.m
sourceTree
<group>
- 69A53441DD2A9C8BA5B47F5C
+ 6F7500317A87A693D8F8FA5F
includeInIndex
1
@@ -7949,40 +8332,28 @@
lastKnownFileType
sourcecode.c.h
name
- TyphoonWeakComponentsPool.h
+ TyphoonUtils.h
path
- Source/Factory/Pool/TyphoonWeakComponentsPool.h
+ Source/Utils/TyphoonUtils.h
sourceTree
<group>
- 6A0CED389714BE516A7BDC23
-
- fileRef
- D093D44A2814E44CE0DCF5EB
- isa
- PBXBuildFile
-
- 6A5D83B29099C80D4C5A521E
+ 6F7E1EF85EE6A8419014F145
- explicitFileType
- archive.ar
includeInIndex
- 0
+ 1
isa
PBXFileReference
+ lastKnownFileType
+ sourcecode.c.objc
+ name
+ TyphoonDefinition+Infrastructure.m
path
- libPods-PocketForecast-ICLoader.a
+ Source/Definition/Internal/TyphoonDefinition+Infrastructure.m
sourceTree
- BUILT_PRODUCTS_DIR
-
- 6A7344F304428400A8AB56CB
-
- fileRef
- AE50B08C331ACA5265B05035
- isa
- PBXBuildFile
+ <group>
- 6AAA69DAAD241DECEB2AA035
+ 6FD241EF8AE4044C3F03E9A0
includeInIndex
1
@@ -7991,25 +8362,25 @@
lastKnownFileType
sourcecode.c.objc
name
- NSObject+TyphoonIntrospectionUtils.m
+ MKTClassObjectMock.m
path
- Source/Utils/NSObject+TyphoonIntrospectionUtils.m
+ Source/OCMockito/MKTClassObjectMock.m
sourceTree
<group>
- 6AD2D6DD68754C00D11455F6
+ 703A1E6CD10AB897AFDB7726
fileRef
- 787AE091BA5F3B9001038FB9
+ 10A17C3FBB2B55F9F5E895DA
isa
PBXBuildFile
settings
COMPILER_FLAGS
- -fobjc-arc -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+ -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
- 6B508F6087ABD62A28086EB1
+ 704F0128607CD6F3F343B835
includeInIndex
1
@@ -8018,69 +8389,60 @@
lastKnownFileType
sourcecode.c.objc
name
- HCAllOf.m
+ EXPMatchers+raise.m
path
- Source/Library/Logical/HCAllOf.m
+ src/matchers/EXPMatchers+raise.m
sourceTree
<group>
- 6B70D8364F4CB684A01C864F
+ 7066C30F35CDBAB3312DE97E
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.objc
+ sourcecode.c.h
name
- MKTBoolArgumentGetter.m
+ EXPMatchers+conformTo.h
path
- Source/OCMockito/Helpers/ArgumentGetters/MKTBoolArgumentGetter.m
+ src/matchers/EXPMatchers+conformTo.h
sourceTree
<group>
- 6B8D0196CCE15E1C6E14AC19
-
- fileRef
- C5FD0101002AFAAAF11DF7B9
- isa
- PBXBuildFile
-
- 6B8D8669BDE91597931CC93B
-
- isa
- PBXTargetDependency
- target
- 93183C63F70194245E89842F
- targetProxy
- A9F06D728381FC25A1A0D0BE
-
- 6C1F13F638136C5A66788639
+ 7075B87A168CA9AF42318340
- containerPortal
- 66C2EBDD522B033360138729
- isa
- PBXContainerItemProxy
- proxyType
+ includeInIndex
1
- remoteGlobalIDString
- 90174F22889E06FC9A35F810
- remoteInfo
- Pods-PocketForecast-CKUITools
+ isa
+ PBXFileReference
+ lastKnownFileType
+ text.xcconfig
+ path
+ Pods-PocketForecast-Typhoon-Private.xcconfig
+ sourceTree
+ <group>
- 6C24AF44E970B3CA530E0997
+ 70781FA1493CE59168557105
fileRef
- 8C630356CE6A73DD0E838C57
+ 52DBC481E3B193D50B40EC24
isa
PBXBuildFile
settings
COMPILER_FLAGS
- -fobjc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+ -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
- 6C6A423EB933193032CA5257
+ 7087C74F7E110A1F5668514C
+
+ fileRef
+ C435D94064EFD3B84C1BC97F
+ isa
+ PBXBuildFile
+
+ 709FA9C708BCD8C2B8EE8505
includeInIndex
1
@@ -8089,26 +8451,28 @@
lastKnownFileType
sourcecode.c.h
name
- HCIsEqualIgnoringWhiteSpace.h
+ NSObject+DeallocNotification.h
path
- Source/Library/Text/HCIsEqualIgnoringWhiteSpace.h
+ Source/Utils/NSObject+DeallocNotification.h
sourceTree
<group>
- 6C71A67016D6C90A55CE5061
+ 70A59998C2D275A3B454ECED
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- text.xcconfig
+ sourcecode.c.h
+ name
+ MKTProtocolMock.h
path
- Pods-PocketForecast-NGAParallaxMotion.xcconfig
+ Source/OCMockito/MKTProtocolMock.h
sourceTree
<group>
- 6C79D36727AB2BDCA7C2C827
+ 70FA3172B35B53466D0D3BEA
includeInIndex
1
@@ -8117,168 +8481,222 @@
lastKnownFileType
text.xcconfig
path
- Pods-PocketForecastTests-OCMockito-Private.xcconfig
+ Pods-PocketForecastTests.debug.xcconfig
sourceTree
<group>
- 6C9DC4F724BB6CE7CA143ED5
+ 7139B75571D0BC12F2E39AD7
+
+ fileRef
+ A741FBC9C1D5220BF382E0FF
+ isa
+ PBXBuildFile
+
+ 71410D0A202951B6AB5B9C69
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.h
+ sourcecode.c.objc
name
- MKTMockitoCore.h
+ EXPExpect.m
path
- Source/OCMockito/MKTMockitoCore.h
+ src/EXPExpect.m
+ sourceTree
+ <group>
+
+ 7164601CCDF76A41B0A5E590
+
+ includeInIndex
+ 1
+ isa
+ PBXFileReference
+ lastKnownFileType
+ sourcecode.c.objc
+ name
+ TyphoonSelector.m
+ path
+ Source/Utils/TyphoonSelector.m
sourceTree
<group>
- 6CCF3B9DB01DF98E8C827C0D
+ 718618D56CEB2E1278BF4503
+
+ fileRef
+ 8D630DAF6482225374FFB5BF
+ isa
+ PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
+
+ 719BC9A8D1379282E74A5E9E
includeInIndex
1
isa
- PBXFileReference
- lastKnownFileType
- sourcecode.c.objc
+ PBXFileReference
+ lastKnownFileType
+ sourcecode.c.h
+ name
+ MKTSelectorArgumentGetter.h
+ path
+ Source/OCMockito/Helpers/ArgumentGetters/MKTSelectorArgumentGetter.h
+ sourceTree
+ <group>
+
+ 71C2D8ACFF4270856CF250C9
+
+ buildActionMask
+ 2147483647
+ files
+
+ 01C5C58AB25082D72A7D1E59
+ A4F9291009415001CCEB12A6
+
+ isa
+ PBXSourcesBuildPhase
+ runOnlyForDeploymentPostprocessing
+ 0
+
+ 7239487372FD45BCE55381DE
+
+ children
+
+ C32B1E60AFDE92D67F2791D0
+ 17C8CEDD5CD81F92A4A17B88
+ 5206AF38024E1204D41C2EBD
+ B178BA8C5D6AF4BCDF9DC41E
+
+ isa
+ PBXGroup
name
- ExpectaSupport.m
+ Support Files
path
- src/ExpectaSupport.m
+ ../Target Support Files/Pods-PocketForecast-CKUITools
sourceTree
<group>
- 6CD3DCD6039D8E5D6B440421
+ 72B1FB0ADB4ADE3EA9473DB9
fileRef
- D100DE518E02133C4CCB43AD
+ 106725C3E92FE820374F7593
isa
PBXBuildFile
- 6D3A18593F0DC4FA3D83F3EE
-
- containerPortal
- 66C2EBDD522B033360138729
- isa
- PBXContainerItemProxy
- proxyType
- 1
- remoteGlobalIDString
- FE39F0327F8630A5A83C4D4D
- remoteInfo
- Pods-PocketForecast-NGAParallaxMotion
-
- 6D4477A5B9ED125ED9DA4CB1
+ 72B9E3A5FEF66E726A571F55
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.objc
- name
- MKTObjectMock.m
+ sourcecode.c.h
path
- Source/OCMockito/MKTObjectMock.m
+ Pods-PocketForecast-ICLoader-prefix.pch
sourceTree
<group>
- 6D4DB8882B8FC92B1F4060F7
+ 730944313BFA1E0798B5477D
- children
-
- 9FB6105A8D48E16569D2DB5A
- D33C1D1DB512CA9746007CF5
- CE7CA93CB67A618593DBA2BE
- 45F1E643A57E1B32C8D817CB
- 4109632729BCC3E590B4F581
- 7686454558A1AEC8C1F6487C
- 8025E8561499A91A0BB26149
-
+ fileRef
+ 4411D27145A3A7B0E4E5CD5F
isa
- PBXGroup
- name
- Pods-PocketForecastTests
- path
- Target Support Files/Pods-PocketForecastTests
- sourceTree
- <group>
+ PBXBuildFile
- 6D8437365A6AB76487C4C7FC
+ 7313DBC8F81CCBC266422352
fileRef
- 3F9E528DDE63B58002AA8D60
+ 05DCB349D0F42A7AFDFD58EF
isa
PBXBuildFile
- 6D9B519CB36861A3C365C065
+ 731D03CF1F3C7CBEDEAD97AD
fileRef
- B9C31D190D7C5B5A7E63D6FE
+ 7AD165E94CF5E5B76CCFBD88
isa
PBXBuildFile
settings
COMPILER_FLAGS
- -fobjc-arc -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+ -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
- 6DA6D09022E67FA6FCB588B7
+ 732DED3FD2C3B93790738E57
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.objc
+ sourcecode.c.h
name
- TyphoonStoryboard.m
+ EXPMatchers+beGreaterThanOrEqualTo.h
path
- Source/ios/Storyboard/TyphoonStoryboard.m
+ src/matchers/EXPMatchers+beGreaterThanOrEqualTo.h
sourceTree
<group>
- 6DAD44CEB9CD40EE82266D56
-
- fileRef
- 0B06DE6621919A97059807A0
- isa
- PBXBuildFile
-
- 6DE33C7384C4C2A30066FCB9
+ 732EE5E3250175DB03A50EF6
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.objc
+ sourcecode.c.h
name
- MKTInvocationMatcher.m
+ TouchThroughUIView.h
path
- Source/OCMockito/MKTInvocationMatcher.m
+ PaperFold/PaperFold/PaperFold/TouchThroughUIView.h
sourceTree
<group>
- 6DF52A776541B883C5476113
+ 733AB65B5BFF6848F29903E8
+
+ fileRef
+ 947854F892F6F70153989F9E
+ isa
+ PBXBuildFile
+
+ 7340E154EC3A788B6F07B02D
+ explicitFileType
+ archive.ar
includeInIndex
- 1
+ 0
isa
PBXFileReference
- lastKnownFileType
- sourcecode.c.h
- name
- EXPMatchers+haveCountOf.h
path
- src/matchers/EXPMatchers+haveCountOf.h
+ libPods-PocketForecastTests-OCHamcrest.a
sourceTree
- <group>
+ BUILT_PRODUCTS_DIR
+
+ 7344387A1C26B81337C2F489
+
+ fileRef
+ 2CFAB3EF4230558F5DDDC200
+ isa
+ PBXBuildFile
+
+ 73489BA8026DB0DDBE8A56EA
+
+ fileRef
+ C229DC47DBC0240447E65ECF
+ isa
+ PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
- 6E32C3F1D7195CE4E23DCFC3
+ 7362073523FC26326BFAE281
includeInIndex
1
@@ -8287,13 +8705,33 @@
lastKnownFileType
sourcecode.c.h
name
- TyphoonPrimitiveTypeConverter.h
+ HCClassMatcher.h
path
- Source/TypeConversion/Converters/TyphoonPrimitiveTypeConverter.h
+ Source/Library/Object/HCClassMatcher.h
sourceTree
<group>
- 6E44F34C0756F848DBA6CA51
+ 73764BEF4CEA1A3B289972F3
+
+ containerPortal
+ 94AF5A4F363AA9649B0CD69F
+ isa
+ PBXContainerItemProxy
+ proxyType
+ 1
+ remoteGlobalIDString
+ 3E763831D9EE3703733E7770
+ remoteInfo
+ Pods-PocketForecast-CKUITools
+
+ 7426762AC3A87779423494C7
+
+ fileRef
+ DAF27A4E41AD71D85FBEDCB0
+ isa
+ PBXBuildFile
+
+ 743449BF686092A758E77DFE
includeInIndex
1
@@ -8302,40 +8740,35 @@
lastKnownFileType
sourcecode.c.objc
name
- HCIsSame.m
+ TyphoonDefinition+InstanceBuilder.m
path
- Source/Library/Object/HCIsSame.m
+ Source/Definition/Internal/TyphoonDefinition+InstanceBuilder.m
sourceTree
<group>
- 6E5913CCB23626580C1233D2
+ 744DB94125D2664AFD6C30AD
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.objc
+ sourcecode.c.h
name
- MKTBoolReturnSetter.m
+ HCIs.h
path
- Source/OCMockito/Helpers/ReturnValueSetters/MKTBoolReturnSetter.m
+ Source/Library/Decorator/HCIs.h
sourceTree
<group>
- 6E5FBEF5EDA9469F32511E2E
+ 7450EBA232E3DC3BD0900BE1
fileRef
- 9A00E780EDC833D4E04CE2DC
+ 8EB09231868E2F1B03D44C4D
isa
PBXBuildFile
- settings
-
- COMPILER_FLAGS
- -fobjc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
-
- 6E65AFBDFCA4525232DEA8EA
+ 748307E4D80DBC897287E39E
includeInIndex
1
@@ -8344,28 +8777,13 @@
lastKnownFileType
sourcecode.c.h
name
- TyphoonUtils.h
- path
- Source/Utils/TyphoonUtils.h
- sourceTree
- <group>
-
- 6E95FE3EA33053E4C40FCBC6
-
- includeInIndex
- 1
- isa
- PBXFileReference
- lastKnownFileType
- sourcecode.c.objc
- name
- MKTStubbedInvocationMatcher.m
+ EXPBlockDefinedMatcher.h
path
- Source/OCMockito/MKTStubbedInvocationMatcher.m
+ src/EXPBlockDefinedMatcher.h
sourceTree
<group>
- 6EAA2AE5C5E6B4004CF28A73
+ 74B94E63DC66DCC657B677C5
includeInIndex
1
@@ -8374,59 +8792,46 @@
lastKnownFileType
sourcecode.c.h
name
- MKTObjectReturnSetter.h
+ MKTCapturingMatcher.h
path
- Source/OCMockito/Helpers/ReturnValueSetters/MKTObjectReturnSetter.h
+ Source/OCMockito/MKTCapturingMatcher.h
sourceTree
<group>
- 6EDB0767D831902FD78B64C2
+ 7502294822C6CD8926246B8A
- buildConfigurations
+ buildActionMask
+ 2147483647
+ files
- C12E07399D8069D2CB379489
- 9B97955E3B45634827CC032D
+ 127B78B2ED615485AB197F15
- defaultConfigurationIsVisible
- 0
- defaultConfigurationName
- Release
- isa
- XCConfigurationList
-
- 6F179A2D2E18418F53AE616F
-
- fileRef
- 6E65AFBDFCA4525232DEA8EA
isa
- PBXBuildFile
+ PBXFrameworksBuildPhase
+ runOnlyForDeploymentPostprocessing
+ 0
- 6F1890A5F3EBF9BA192148C3
+ 7532E927E5DB9CEC49DCC7C7
fileRef
- 4ADB39F42EEF489872B08532
+ D95D9BA8BB0146783D7BBFE3
isa
PBXBuildFile
- 6F70BEA1C776E849DF6FDAD7
+ 75419293C6DB588FFB58278A
- children
-
- E21D11327227068FD3D6064B
- AE1FC0C800EFE991F35FF5D6
- 35CCEBEF9958083293396923
- 008A7C3CC2E6684814244B36
-
+ includeInIndex
+ 1
isa
- PBXGroup
- name
- Support Files
+ PBXFileReference
+ lastKnownFileType
+ text.xcconfig
path
- ../Target Support Files/Pods-PocketForecastTests-Expecta
+ Pods-PocketForecastTests-OCMockito-Private.xcconfig
sourceTree
<group>
- 6F8404E0221D73BA8E330B84
+ 755114FE91AD00D7B3911FF0
includeInIndex
1
@@ -8435,53 +8840,66 @@
lastKnownFileType
sourcecode.c.h
name
- TyphoonDefinitionRegisterer.h
+ HCTestFailure.h
path
- Source/Factory/TyphoonDefinitionRegisterer.h
+ Source/Core/Helpers/TestFailureHandlers/HCTestFailure.h
sourceTree
<group>
- 6F91EC8C3880832F23860AE5
+ 75668B1A8457DC0421C73FFA
+
+ fileRef
+ 14C03EBD3FC4A3AA148B9636
+ isa
+ PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -fno-objc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
+
+ 756D976BB04A4F95F9C7B283
+
+ fileRef
+ E2D69493B10A5675F1E814D0
+ isa
+ PBXBuildFile
+
+ 7570EE982FB13D454676710C
fileRef
- 5AFC335D4AC693CF38049A05
+ 5292AF5F158767E28D77DD9B
isa
PBXBuildFile
settings
COMPILER_FLAGS
- -fobjc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+ -fno-objc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
- 6FDA3192E48CC80A8D0D86C3
+ 7575BDCCD376072FB37FE1FC
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.objc
+ sourcecode.c.h
name
- EXPMatchers+beCloseTo.m
+ MKTBlockArgumentGetter.h
path
- src/matchers/EXPMatchers+beCloseTo.m
+ Source/OCMockito/Helpers/ArgumentGetters/MKTBlockArgumentGetter.h
sourceTree
<group>
- 704EDDA3576C4B70E511C26F
+ 759B5EDDEE60BC5C4CD18BDB
- includeInIndex
- 1
+ fileRef
+ 320D7866948D88B061BB1C4A
isa
- PBXFileReference
- lastKnownFileType
- sourcecode.c.objc
- path
- Pods-PocketForecast-OCLogTemplate-dummy.m
- sourceTree
- <group>
+ PBXBuildFile
- 709D4D8AB5A11C8AE78CF226
+ 759FCAFBD30FC9C617CFE1FE
includeInIndex
1
@@ -8490,13 +8908,13 @@
lastKnownFileType
sourcecode.c.h
name
- HCHasDescription.h
+ HCIsCollectionContaining.h
path
- Source/Library/Object/HCHasDescription.h
+ Source/Library/Collection/HCIsCollectionContaining.h
sourceTree
<group>
- 70BF6A646BAA0B5A74F36507
+ 75B009F0052D1DD37AF9337A
includeInIndex
1
@@ -8505,23 +8923,16 @@
lastKnownFileType
sourcecode.c.objc
name
- EXPBackwardCompatibility.m
+ TyphoonInjectionByConfig.m
path
- src/EXPBackwardCompatibility.m
+ Source/Definition/Injections/TyphoonInjectionByConfig.m
sourceTree
<group>
- 70FC889AB28E53FB7FDF28AF
-
- fileRef
- 7A47078C26E253A94F064C44
- isa
- PBXBuildFile
-
- 714D97A7B62EAADEAE98934C
+ 75D37343866BEFBDC8CE91AC
fileRef
- BA989B6E5BEE1B5231C3DC4F
+ 63F1DDBECF822E19EE068E48
isa
PBXBuildFile
settings
@@ -8530,73 +8941,61 @@
-w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
- 7196E2088051BA1BABC3BE47
-
- fileRef
- CD3E50CE3DBF3D9521F087BD
- isa
- PBXBuildFile
-
- 71E8275D952478607123A02B
+ 761EF2DECAAF5D1E12B5F625
fileRef
- 77FF223525E3FD5352595C37
+ D5784838BCFF4F54C01689E6
isa
PBXBuildFile
settings
COMPILER_FLAGS
- -fobjc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+ -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
- 720EFE45B0C344FE510CDBF1
+ 764928930D8122024140104E
- includeInIndex
- 1
- isa
- PBXFileReference
- lastKnownFileType
- sourcecode.c.h
- name
- EXPMatchers+contain.h
- path
- src/matchers/EXPMatchers+contain.h
- sourceTree
- <group>
-
- 72B8FFAC4B9F21FBC308992A
-
- buildConfigurationList
- 730CBBCA2AAC66F54259E69E
- buildPhases
-
- 8EBA4EDC5CFF07ECF9C541B1
- 321A4885741B72A9002A54E7
- 9CFF51B34DAC12E9A77C7F2B
-
- buildRules
-
- dependencies
-
- isa
- PBXNativeTarget
- name
- Pods-PocketForecast-PaperFold
- productName
- Pods-PocketForecast-PaperFold
- productReference
- 3D7AC1DDFEC11BA59ED575ED
- productType
- com.apple.product-type.library.static
+ children
+
+ 19A6074E7FCE23417D893DCB
+ ED7BDEF444CB990DCFC68C31
+ 48520822EAF5D2A8B5231A33
+ F3D14813E70EA6C86EF80B8F
+ BF63DD9DDE1404E80BCD97CE
+ 826899A0E8F85DBC0574F2E8
+ 83EC10461130185E89D14E58
+ F7CDCBB88D4BBF4220BAFC09
+ 4CA7C037430A73B071B46967
+ 05DCB349D0F42A7AFDFD58EF
+ 047D0E4D919E091B46146EBF
+ 90E229F23C0F17C306D47E18
+ DF0333EA0EB27DA55BC0C7AF
+ E8D391852C284C75C882615E
+ 329DCC5DC3FE0B0FAED72928
+ 7239487372FD45BCE55381DE
+
+ isa
+ PBXGroup
+ name
+ CKUITools
+ path
+ CKUITools
+ sourceTree
+ <group>
- 72CCC89305343043D7C96E26
+ 76666FC3B8522196736265D6
fileRef
- 704EDDA3576C4B70E511C26F
+ ED4FE771AD52A9F9F16CEF47
isa
PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
- 73051BF45DC397AB0DD460E2
+ 7687ADC80230C7568FDB67E5
includeInIndex
1
@@ -8605,61 +9004,51 @@
lastKnownFileType
sourcecode.c.h
name
- HCIsDictionaryContainingEntries.h
+ TyphoonNSNumberTypeConverter.h
path
- Source/Library/Collection/HCIsDictionaryContainingEntries.h
+ Source/TypeConversion/Converters/TyphoonNSNumberTypeConverter.h
sourceTree
<group>
- 730CBBCA2AAC66F54259E69E
+ 7699EB099160408585E56A5F
- buildConfigurations
+ children
- 9747C73040D83FB52F7D4B33
- A22F37D046E2CB85A6C3D5FD
+ 25F334970C78EDAED5971CA7
+ 7A98DC73C7FD1CBBF5F817BD
- defaultConfigurationIsVisible
- 0
- defaultConfigurationName
- Release
isa
- XCConfigurationList
-
- 73B1FB0A6BBFD454C98BAEE0
-
- fileRef
- BAE48792D6C4FE1B0A926238
- isa
- PBXBuildFile
- settings
-
- COMPILER_FLAGS
- -fobjc-arc -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
-
+ PBXGroup
+ name
+ OCLogTemplate
+ path
+ OCLogTemplate
+ sourceTree
+ <group>
- 7409DCF8614BD30BBE89421D
+ 77008F9164FB1643B7FC5BD9
fileRef
- CF3E33FD54F61118135DD873
+ DFF8E7F66E786A7648DEC9C0
isa
PBXBuildFile
- 74618DE3D5A0C1AB289B3426
+ 7715906D177DF5FDB4DF476F
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.h
+ sourcecode.c.objc
name
- TyphoonInjectionByFactoryReference.h
+ HCAssertThat.m
path
- Source/Definition/Injections/TyphoonInjectionByFactoryReference.h
+ Source/Core/HCAssertThat.m
sourceTree
<group>
- 74A7F82C8842A4891DE91800
+ 771CAE826894210CB9BF5B34
includeInIndex
1
@@ -8668,107 +9057,59 @@
lastKnownFileType
sourcecode.c.h
name
- EXPMatchers+beGreaterThanOrEqualTo.h
+ EXPMatchers+notify.h
path
- src/matchers/EXPMatchers+beGreaterThanOrEqualTo.h
+ src/matchers/EXPMatchers+notify.h
sourceTree
<group>
- 74D201DF626E42D69A84DD08
+ 778DC9CCC40948AAFFE7651B
fileRef
- 670488BB04F3A70DA4763FE1
+ A42D8EEE1BD84EF236BEF98D
isa
PBXBuildFile
settings
COMPILER_FLAGS
- -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+ -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
- 74F074E5BC03E9C4B39609C9
+ 77B0486A3DEB28A826A58B24
fileRef
- 7F8FE144EF3E051077997C03
+ 57FFD224C2B2CD01421C4295
isa
PBXBuildFile
- 74FB73D794B2E26EEBA7D1A2
+ 77B0C65AF3DB0793246B0FC7
- baseConfigurationReference
- BF3A3F41266FD3304ECF06DC
- buildSettings
-
- ALWAYS_SEARCH_USER_PATHS
- NO
- COPY_PHASE_STRIP
- NO
- DSTROOT
- /tmp/xcodeproj.dst
- GCC_DYNAMIC_NO_PIC
- NO
- GCC_OPTIMIZATION_LEVEL
- 0
- GCC_PRECOMPILE_PREFIX_HEADER
- YES
- GCC_PREFIX_HEADER
- Target Support Files/Pods-PocketForecast-ICLoader/Pods-PocketForecast-ICLoader-prefix.pch
- GCC_PREPROCESSOR_DEFINITIONS
-
- DEBUG=1
- $(inherited)
-
- GCC_SYMBOLS_PRIVATE_EXTERN
- NO
- INSTALL_PATH
- $(BUILT_PRODUCTS_DIR)
- IPHONEOS_DEPLOYMENT_TARGET
- 7.0
- OTHER_LDFLAGS
-
- OTHER_LIBTOOLFLAGS
-
- PRODUCT_NAME
- $(TARGET_NAME)
- PUBLIC_HEADERS_FOLDER_PATH
- $(TARGET_NAME)
- SDKROOT
- iphoneos
- SKIP_INSTALL
- YES
-
+ includeInIndex
+ 1
isa
- XCBuildConfiguration
+ PBXFileReference
+ lastKnownFileType
+ sourcecode.c.h
name
- Debug
-
- 74FC7713781A71261BC08BF8
-
- fileRef
- 50588EC793843F7FCF4496A7
- isa
- PBXBuildFile
+ HCOrderingComparison.h
+ path
+ Source/Library/Number/HCOrderingComparison.h
+ sourceTree
+ <group>
- 7539E2B2EA639C978613C3B5
+ 77DCD4764469EF17C0A55C28
fileRef
- 89E6C2DE7E4E203574B07CE5
+ 3CA31DB26D4A4D7C85C35E60
isa
PBXBuildFile
settings
COMPILER_FLAGS
- -fobjc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+ -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
- 758BA99E3E9E98EB93849648
-
- fileRef
- E3C7AEA70E7753C436493B0C
- isa
- PBXBuildFile
-
- 75B8A5DD9238E9A3BDBEDB98
+ 7816848F0A38DC98AAB9169D
includeInIndex
1
@@ -8777,217 +9118,122 @@
lastKnownFileType
sourcecode.c.h
name
- MKTClassArgumentGetter.h
+ TyphoonComponentFactory+TyphoonDefinitionRegisterer.h
path
- Source/OCMockito/Helpers/ArgumentGetters/MKTClassArgumentGetter.h
+ Source/Factory/Internal/TyphoonComponentFactory+TyphoonDefinitionRegisterer.h
sourceTree
<group>
- 75C90320FFD5E0886237B4C0
+ 7836C9C30542D18A538A0CBB
+
+ buildActionMask
+ 2147483647
+ files
+
+ 99D57DC18FE9C155DAFF7C62
+ 204C476AE2291BCBBEC78123
+ B51ECD46E0212F89C5FCB7EC
+ 5A28D57E530DF63024EB5E3E
+ BDFA3D8892FA77ED7B00F26C
+ 47C330892B9BC1F00D36012B
+ BCDAEECC3676D0ADBF77E810
+ 57A2D486DFA0376D4DB2D087
+ 842B07F1AD0A48682F39DF0E
+ 0E63819B2E6B2DC8D517500D
+ 0F57A173B0D16EC1CC4B8DB4
+ 667DABEC5F0F164F79B25858
+ 20D0B33207CB851972412A9A
+ 10DC0F3E3DEEB195B50C8305
+ 99715900C5624460EFC3207B
+ 8ED566F1109C50A088D0021C
+ 75668B1A8457DC0421C73FFA
+ 4CE60355C55B3A9C11F39BA1
+ 2784804083CED1D16AF88186
+ EF6E6AD5106B61B3BB146A7D
+ 7570EE982FB13D454676710C
+ 81973BA320E99C928FD26BF8
+ AD90FF79B56D5003CD31B9B5
+ 06CBDFC54EFC2A38177C23C5
+ 2BC84A6FD71C3265543CF2FB
+ 33C2437CABF67792226EA26E
+ 2FD0CD707F2E64F0292B4E49
+ FC5AAE47502B8016E5C76DC0
+ CE6A596391837AE2ADF3E681
+ AA96E0CB48DCF9C5B3863EC4
+ C22C93ADA8CBDB379174C97B
+ D9907C13EE0CD3E0DB65E159
+ 659903FACD87EB208CA456BE
+ B0A9E47F4A92EA988CA233AB
+ 37AE699FA56E13F46FFF8200
+
+ isa
+ PBXSourcesBuildPhase
+ runOnlyForDeploymentPostprocessing
+ 0
+
+ 784F6DD6044561272E022D22
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.h
+ sourcecode.c.objc
name
- ExpectaSupport.h
+ TouchThroughUIView.m
path
- src/ExpectaSupport.h
+ PaperFold/PaperFold/PaperFold/TouchThroughUIView.m
sourceTree
<group>
- 75D202EBD44A65A26082911C
+ 786EE3C30DA45D9DBFB66650
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.objc
+ sourcecode.c.h
name
- HCIsAnything.m
+ TyphoonTypeConverter.h
path
- Source/Library/Logical/HCIsAnything.m
+ Source/TypeConversion/TyphoonTypeConverter.h
sourceTree
<group>
- 760216C8A99DB889AC8B3CA1
+ 78EE0A4E105DCD26DDDC7065
- children
-
- 80BB218DBE3E80FE763D2CFE
- 6B508F6087ABD62A28086EB1
- 0D256D74CB518A5B2C7F285A
- CFD56A05B7A434B7D4EC9FC0
- 32131004E857FFEEF9A22110
- A27E3985A84EC14A2A77AFE0
- E52DA258A8CBBF88D27FCA69
- B629CBA628ECF422E78A04DF
- 4CAFED005C761795AC1878D5
- A90B88108E940A98D775DD28
- CF3E33FD54F61118135DD873
- AE710A9529A10DAFAE53C566
- 94AC5DDDB1ADCCCED998F12D
- 35217750E2613BE3FAD62A0D
- 34DF7BE24BF6C84AB523E0B2
- 43A953738BD36B520943EB69
- 56A8713A62E016451ABAB68E
- 0BAD89EAC488FCA407BF7071
- 5317A30986F4B6C6F20E7292
- D1D5CDC9BAD2D123CE618F8B
- 7E4566AFC1E95D6FC1CBFD56
- A1CD728FFB1F9973E19707AB
- 22C7777944575366CBCD54BB
- 364334745181B861DBD4D513
- 4DDCE2DEF2D58EBC7C3467D4
- 7A47078C26E253A94F064C44
- 33C31F45327B944AC75488B0
- 3F9E528DDE63B58002AA8D60
- 30BA3E3F4385D37BDEC60226
- 3111AC587E565A1F1746C394
- C4624651D753064C500AA5B5
- 709D4D8AB5A11C8AE78CF226
- 84BDE6EB229475ECEEBA5B91
- 8D9A20E44C8CA3C57F6453A3
- 01ED7A5FF63AE73B84E11B60
- 780C769C385B7B3AD67A6D0B
- F7B5C3C585DECB34F8F544E1
- 31A2F8D63FB80014F8539616
- D54A5465A693DABE1FCC4B29
- 82B4A1FA770B1479A4F376CE
- 9BBD6F1FA2AC80A083157E7F
- 5D6B4396BE1A709750818646
- 75D202EBD44A65A26082911C
- 42B47C9D70123FE59871C038
- B8092684DA2273FA9A245AF9
- 35CDED577270714778EB0E6F
- C3EC23C7AB476B1FF6D52147
- 3D338EA4712E7D7F08FD1D91
- 5DF850D5B7A4F8644914B401
- 797FC74CF41ABB4B0BEB256B
- 8F67CF7435CCE130D6CE7D9D
- C644A04FDD2216B6EAB208D2
- 05152266727FA4BFE9F51012
- 498ADCCD200088084A07BAE2
- 1D01C0E7001F1384920B7C8F
- 73051BF45DC397AB0DD460E2
- 371A12418776090932885974
- BF2582BFE1D065840D9097A8
- F598DCF778E98B2FE6D419C2
- 1278815722298C801F226544
- F871F5A9A5574AD41FD7EE1C
- FE9FFB8BAE08BCFDCBF66310
- D5625D9411D6CF4BAF8DDFF0
- DBE88854C122050BB1921602
- DF94911292582E82C60B8BAB
- 389FAE9DC4FA6A6E90BE645D
- ADEC4D6F4358D5ADE3780B00
- 6C6A423EB933193032CA5257
- 11D2060CC820502450A84726
- FD2A6C64C8356D0EAB346B8E
- B9BF4005A6D2F2B1B5733B3E
- 5FB9C6DA8FEE48144F707799
- C402D7BF4115A9DCF1E6B2A1
- 076ADF5459468D43798FF135
- A25A09E49BF65E0ECCE52C2F
- 17E4A8C41BB959CCF9421128
- 8C630356CE6A73DD0E838C57
- 08AB8F55BD07C68A246B5C77
- 180A81A26D4DA831C4908706
- CFF4E64B2E64BA92447976D6
- 6E44F34C0756F848DBA6CA51
- F04AA1384ACC2AA7073CBB53
- CE799A2C49F6F6B0ABC5896B
- 2A996CD0C90954B031ACC11A
- 4A048EDC4FD2A6D727315ABB
- B88FDDCCDAEEA94D44042431
- 7F3144746AF94485C4C4F788
- DC3CFDE502F596CC086ED2D7
- CAFEA57640B4FAD13C2A68BA
- 3F5348593FF1CE6AD78D05FD
- 8693BEFD996C08E5151744FE
- 48B36785AFC9214A28B7BE3D
- C4DD0452C05EA8F534A674C0
- 805971D8EB3C14C8D54EE883
- CE4B2CE9F33E2978042BEA30
- BCCE9A54DA601F0D28050DA5
- C719205B9CDC2EE72B31D349
- 055BE18E50BC2A6AF73148B7
- 976233DD1ACE7A37EFA3DD4B
- 25FD08615DEBD977239F8B5D
- BF48FD1A1FE8C32F48525EB7
- 5D4CE88510DCC9B84846B143
- D058DB1BC6E51F9FAB785CB9
- 186863908CDBA6BEF2F9F3B2
- 3BF94B06A28D33CAF7B0BD9A
- 100AB61DD31DA7CEC64A9222
- 1C66835F4D84BB1920FFEAAB
- E37574F8AF01C3593A60CDC2
- 8E9F201B312BC2A8A6AAF92A
- 431F0C732E9BE455E947B48D
- 5ADBBB18CCC11F6E3C4FBC40
- 5C35D17EF10A6762CE8174FF
- AE0C6F70D0EF4F98D8BC24B0
- 92F4AD2B544B562E049A5F24
- 2E9ED66A3BE5FAF10DCD6677
- F96874B365DB6A7E4A715CA1
- EB6B8D4975AD157FB0B089B9
- CBC4AC883D2D72FD7680CBE4
- F69BFB03EF4AED57D929454A
- CAC6F8B2C87A549208707CAE
- B49E84FED52129263CD07F82
- E943B4A482B94F93A5CB1CD9
- F2E9641ED0A6D7FC9E801BC8
- D647F3CB72D8F7F77475FBA3
- 20A326CE0FC0A14B286C1BE8
- F4C06B09C849F9424DADB433
- A44BFF917BC27019C41F15D4
- D093D44A2814E44CE0DCF5EB
- 18A9E9A7874864962A454C4B
- 48FC7C6A7C0813C2C4D042B8
- 9A00E780EDC833D4E04CE2DC
- 4ADB39F42EEF489872B08532
- 8214D7A64074FC83FD3FE2A2
- C4AF0EF32B5EAC291E2B666D
- E6C06B821967E71CA7C9DFEF
- AE8ADA610F391E5C4A7E4094
- E26BC5E6768CA269FCE0E4B5
- B640209236D7DC9D94C5082D
- 5AFFB04F25DF37ECB284A6F3
- 5CA0AD973E4508508564A6BC
- 448F010F37425D71BA8BAF71
-
+ includeInIndex
+ 1
isa
- PBXGroup
- name
- OCHamcrest
+ PBXFileReference
+ lastKnownFileType
+ text.xcconfig
path
- OCHamcrest
+ Pods-PocketForecastTests-Expecta-Private.xcconfig
sourceTree
<group>
- 76175E0A291C5B641128C4C5
+ 79000B48906C731D6204C826
fileRef
- BAFCB808F669B8E5F0BFB870
+ E5C00397CCF5CC99E9B37CC4
isa
PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
- 765160F82962F3E23EA9E303
+ 79077F06164F4ADD3D9758E5
fileRef
- 13CACD65F3ED5434AFF3E5B0
+ A9410FBC9F604F417126676F
isa
PBXBuildFile
- settings
-
- COMPILER_FLAGS
- -fobjc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
-
- 7672F4FCA5C1FC76B073D7C3
+ 791005BF3061B0D3E6D654FF
includeInIndex
1
@@ -8996,169 +9242,176 @@
lastKnownFileType
sourcecode.c.h
name
- MKTUnsignedShortArgumentGetter.h
+ MKTTestLocation.h
path
- Source/OCMockito/Helpers/ArgumentGetters/MKTUnsignedShortArgumentGetter.h
+ Source/OCMockito/MKTTestLocation.h
sourceTree
<group>
- 7686454558A1AEC8C1F6487C
+ 79160473A2DA52ADB311BBD9
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- text.xcconfig
+ sourcecode.c.objc
path
- Pods-PocketForecastTests.debug.xcconfig
+ Pods-PocketForecastTests-dummy.m
sourceTree
<group>
- 769E15DA96BB8DDE8B858782
+ 791F10773DBD6C7FD8B4086F
includeInIndex
1
isa
PBXFileReference
+ lastKnownFileType
+ sourcecode.c.h
name
- swipe_guide_left@2x.png
+ HCIsCollectionContainingInAnyOrder.h
path
- PaperFold/PaperFold/PaperFold/PaperFoldResources.bundle/swipe_guide_left@2x.png
+ Source/Library/Collection/HCIsCollectionContainingInAnyOrder.h
sourceTree
<group>
- 76A9B78012E51AE893F74A93
+ 792634F439D11BF201F05F4D
- buildActionMask
- 2147483647
- files
-
- EF12234EAF8703BEB6BF792F
- 56C32592B2F400C658304F97
-
+ includeInIndex
+ 1
isa
- PBXSourcesBuildPhase
- runOnlyForDeploymentPostprocessing
- 0
+ PBXFileReference
+ lastKnownFileType
+ sourcecode.c.objc
+ name
+ TyphoonWeakComponentsPool.m
+ path
+ Source/Factory/Pool/TyphoonWeakComponentsPool.m
+ sourceTree
+ <group>
- 76C6B8764C67614F79C1DBDA
+ 794E8EF3964AD20B9BF29BB4
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.h
+ sourcecode.c.objc
name
- MKTUnsignedLongLongReturnSetter.h
+ MKTAtLeastTimes.m
path
- Source/OCMockito/Helpers/ReturnValueSetters/MKTUnsignedLongLongReturnSetter.h
+ Source/OCMockito/MKTAtLeastTimes.m
sourceTree
<group>
- 7771DD4525645BB71F518DF2
+ 79BC53E356EE9AB6AFDD957B
- fileRef
- 05967509E61FB14DF441C484
+ includeInIndex
+ 1
isa
- PBXBuildFile
- settings
-
- COMPILER_FLAGS
- -fobjc-arc -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
-
+ PBXFileReference
+ lastKnownFileType
+ sourcecode.c.objc
+ name
+ HCNumberAssert.m
+ path
+ Source/Library/Number/HCNumberAssert.m
+ sourceTree
+ <group>
- 77AC8B95C0EB7FE0D720E949
+ 79C1C2F1BC8874D0FE2FECBE
- fileRef
- 070493FF9CFEEDB837BCA6D3
+ includeInIndex
+ 1
isa
- PBXBuildFile
+ PBXFileReference
+ lastKnownFileType
+ sourcecode.c.objc
+ name
+ EXPMatchers+beLessThanOrEqualTo.m
+ path
+ src/matchers/EXPMatchers+beLessThanOrEqualTo.m
+ sourceTree
+ <group>
- 77B64B6F51DD95161A653BA5
+ 7A092E94911D107F516DB003
- children
-
- 0F62C237E6934303608FE5EC
- BB60FEEBDC6B6618D045B481
- 704EDDA3576C4B70E511C26F
- 56C10E6761FCCEB68D55C6CB
-
+ includeInIndex
+ 1
isa
- PBXGroup
+ PBXFileReference
+ lastKnownFileType
+ sourcecode.c.h
name
- Support Files
+ EXPMatchers+beNil.h
path
- ../Target Support Files/Pods-PocketForecast-OCLogTemplate
+ src/matchers/EXPMatchers+beNil.h
sourceTree
<group>
- 77C01EBDC7615A90E1D8C5A9
+ 7A6A799CD6096F25D1DF3EA6
fileRef
- BA6E0D74542CD625954402E0
+ EBCA1581525DE2DF95784071
isa
PBXBuildFile
settings
COMPILER_FLAGS
- -fobjc-arc -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+ -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
- 77FF223525E3FD5352595C37
+ 7A98DC73C7FD1CBBF5F817BD
- includeInIndex
- 1
+ children
+
+ ECEDAEC3409206CEDAB972D6
+ BC13FD69D58C7A7727D473D9
+ 4535481D4770949BD73B3F23
+ BD2EDD8D411AB95DDF655C5C
+
isa
- PBXFileReference
- lastKnownFileType
- sourcecode.c.objc
+ PBXGroup
name
- MKTObjectArgumentGetter.m
+ Support Files
path
- Source/OCMockito/Helpers/ArgumentGetters/MKTObjectArgumentGetter.m
+ ../Target Support Files/Pods-PocketForecast-OCLogTemplate
sourceTree
<group>
- 780C769C385B7B3AD67A6D0B
+ 7A9C0601A279A0E2A8767317
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.h
+ sourcecode.c.objc
name
- HCIntReturnGetter.h
+ HCUnsignedCharReturnGetter.m
path
- Source/Core/Helpers/ReturnValueGetters/HCIntReturnGetter.h
+ Source/Core/Helpers/ReturnValueGetters/HCUnsignedCharReturnGetter.m
sourceTree
<group>
- 787AE091BA5F3B9001038FB9
+ 7AAFF7BCC6935FA624A8E7C5
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.objc
+ sourcecode.c.h
name
- TyphoonNSNumberTypeConverter.m
+ HCHasCount.h
path
- Source/TypeConversion/Converters/TyphoonNSNumberTypeConverter.m
+ Source/Library/Collection/HCHasCount.h
sourceTree
<group>
- 787D556698ED4F5EBEC4ABFF
-
- fileRef
- 4CAFED005C761795AC1878D5
- isa
- PBXBuildFile
-
- 78AED80878DA4C18D90913C4
+ 7AD165E94CF5E5B76CCFBD88
includeInIndex
1
@@ -9167,34 +9420,13 @@
lastKnownFileType
sourcecode.c.objc
name
- MKTExactTimes.m
+ FacingView.m
path
- Source/OCMockito/MKTExactTimes.m
+ PaperFold/PaperFold/PaperFold/FacingView.m
sourceTree
<group>
- 78FC14E61EC590ED60466402
-
- fileRef
- 80BB218DBE3E80FE763D2CFE
- isa
- PBXBuildFile
-
- 79212BFBF50A4D1C7CD17CDF
-
- fileRef
- 9E882DFDADC0F59722AB97F2
- isa
- PBXBuildFile
-
- 79362DA3D3E5B22F9BCA390A
-
- fileRef
- C719205B9CDC2EE72B31D349
- isa
- PBXBuildFile
-
- 797FC74CF41ABB4B0BEB256B
+ 7B0E3B36284FB17FF7E5561F
includeInIndex
1
@@ -9203,13 +9435,13 @@
lastKnownFileType
sourcecode.c.h
name
- HCIsCollectionContainingInOrder.h
+ MKTObjectAndProtocolMock.h
path
- Source/Library/Collection/HCIsCollectionContainingInOrder.h
+ Source/OCMockito/MKTObjectAndProtocolMock.h
sourceTree
<group>
- 7A0281981BA11CC9DFE161C8
+ 7B9E7B8786DB9972190B99FD
includeInIndex
1
@@ -9218,13 +9450,25 @@
lastKnownFileType
sourcecode.c.h
name
- TyphoonComponentPostProcessor.h
+ MKTUnsignedLongLongArgumentGetter.h
path
- Source/Configuration/TyphoonComponentPostProcessor.h
+ Source/OCMockito/Helpers/ArgumentGetters/MKTUnsignedLongLongArgumentGetter.h
sourceTree
<group>
- 7A47078C26E253A94F064C44
+ 7D1FD0A2AC6FE33D776735A4
+
+ fileRef
+ 47625E5B100D86753610E8A3
+ isa
+ PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
+
+ 7D2E25E412999023E1902628
includeInIndex
1
@@ -9233,75 +9477,83 @@
lastKnownFileType
sourcecode.c.h
name
- HCFloatReturnGetter.h
+ TyphoonCircularDependencyTerminator.h
path
- Source/Core/Helpers/ReturnValueGetters/HCFloatReturnGetter.h
+ Source/Factory/Block/TyphoonCircularDependencyTerminator.h
sourceTree
<group>
- 7B10DF7FC15AD56B0BC91AE5
-
- fileRef
- 5E47301E6E7CAD0312A99322
- isa
- PBXBuildFile
-
- 7B4BBACC49A71FA95D438B8F
+ 7DA415D227180EBC0DEA28E3
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.h
+ sourcecode.c.objc
name
- MKTClassObjectMock.h
+ HCConformsToProtocol.m
path
- Source/OCMockito/MKTClassObjectMock.h
+ Source/Library/Object/HCConformsToProtocol.m
sourceTree
<group>
- 7B688CCECDE068D7C303B2C5
+ 7E1A8DDB2D449F492DBBDF6E
fileRef
- 63922EAD57E0F3C0C355A5F8
+ FAD83CB323EF4D19A9EBDAE7
isa
PBXBuildFile
- 7B93A358A8B6DDA52C382674
+ 7E8563A60175E76F5B940AA7
- fileRef
- 0F47D1747139DA41C6062493
- isa
- PBXBuildFile
- settings
+ baseConfigurationReference
+ A930938562447A517B7F11C6
+ buildSettings
- COMPILER_FLAGS
- -fobjc-arc -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+ ALWAYS_SEARCH_USER_PATHS
+ NO
+ COPY_PHASE_STRIP
+ YES
+ DSTROOT
+ /tmp/xcodeproj.dst
+ GCC_PRECOMPILE_PREFIX_HEADER
+ YES
+ INSTALL_PATH
+ $(BUILT_PRODUCTS_DIR)
+ IPHONEOS_DEPLOYMENT_TARGET
+ 7.0
+ OTHER_CFLAGS
+
+ -DNS_BLOCK_ASSERTIONS=1
+ $(inherited)
+
+ OTHER_CPLUSPLUSFLAGS
+
+ -DNS_BLOCK_ASSERTIONS=1
+ $(inherited)
+
+ OTHER_LDFLAGS
+
+ OTHER_LIBTOOLFLAGS
+
+ PRODUCT_NAME
+ $(TARGET_NAME)
+ PUBLIC_HEADERS_FOLDER_PATH
+ $(TARGET_NAME)
+ SDKROOT
+ iphoneos
+ SKIP_INSTALL
+ YES
+ VALIDATE_PRODUCT
+ YES
-
- 7BBBBC1D7DC0AE1615BA3A38
-
- fileRef
- B0C61D043CC1D311D13D98A2
- isa
- PBXBuildFile
-
- 7C5E4852D101D9F115F4ABB3
-
- fileRef
- C4DD0452C05EA8F534A674C0
- isa
- PBXBuildFile
-
- 7C8F64426591619101E5FB82
-
- fileRef
- 0815E5742B6AF6C32596FACB
isa
- PBXBuildFile
+ XCBuildConfiguration
+ name
+ Release
- 7CB3223C2108BBE127CF0E8B
+ 7EA54311FC89A7958772373A
includeInIndex
1
@@ -9310,48 +9562,78 @@
lastKnownFileType
sourcecode.c.objc
name
- TyphoonBundledImageTypeConverter.m
+ HCIsNil.m
path
- Source/ios/TypeConversion/Converters/TyphoonBundledImageTypeConverter.m
+ Source/Library/Object/HCIsNil.m
sourceTree
<group>
- 7CD9E5F28F080C0AC35B4501
+ 7EB40C47FADDAAAE9C0D6330
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.h
+ sourcecode.c.objc
+ name
+ HCIsIn.m
path
- ICLoader.h
+ Source/Library/Collection/HCIsIn.m
sourceTree
<group>
- 7D2B93CC03D60D34FBA8CC7D
+ 7EB4D6F1F228BF06F44619BE
- fileRef
- 39CC5EA27EA6BA40FC678E8C
- isa
- PBXBuildFile
- settings
+ baseConfigurationReference
+ 455B82790EAE4B3DD102735D
+ buildSettings
- COMPILER_FLAGS
- -fobjc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+ ALWAYS_SEARCH_USER_PATHS
+ NO
+ COPY_PHASE_STRIP
+ NO
+ DSTROOT
+ /tmp/xcodeproj.dst
+ GCC_DYNAMIC_NO_PIC
+ NO
+ GCC_OPTIMIZATION_LEVEL
+ 0
+ GCC_PRECOMPILE_PREFIX_HEADER
+ YES
+ GCC_PREPROCESSOR_DEFINITIONS
+
+ DEBUG=1
+ $(inherited)
+
+ GCC_SYMBOLS_PRIVATE_EXTERN
+ NO
+ INSTALL_PATH
+ $(BUILT_PRODUCTS_DIR)
+ IPHONEOS_DEPLOYMENT_TARGET
+ 7.0
+ OTHER_LDFLAGS
+
+ OTHER_LIBTOOLFLAGS
+
+ PRODUCT_NAME
+ $(TARGET_NAME)
+ PUBLIC_HEADERS_FOLDER_PATH
+ $(TARGET_NAME)
+ SDKROOT
+ iphoneos
+ SKIP_INSTALL
+ YES
-
- 7D73EE641E47622B7D767901
-
- fileRef
- 351A658A6F07B5C338B2F11D
isa
- PBXBuildFile
+ XCBuildConfiguration
+ name
+ Debug
- 7D7782A89511B50B50AB72BD
+ 7EBDDF97520B00B7461AB1B0
fileRef
- 271C1D47E29BBC36B5641B74
+ 2ED6FF9CDA641E2EE3E67694
isa
PBXBuildFile
settings
@@ -9360,106 +9642,259 @@
-w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
- 7D8E5220791334C3FB828A68
-
- fileRef
- 6E5913CCB23626580C1233D2
- isa
- PBXBuildFile
- settings
-
- COMPILER_FLAGS
- -fobjc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
-
-
- 7D96E0227608694A1659F3E9
-
- fileRef
- 75B8A5DD9238E9A3BDBEDB98
- isa
- PBXBuildFile
-
- 7E22059758D99D00904349FF
+ 7EC39C15C2AF916B91F5A69F
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.h
+ sourcecode.c.objc
name
- EXPMatchers+conformTo.h
+ HCBaseDescription.m
path
- src/matchers/EXPMatchers+conformTo.h
+ Source/Core/HCBaseDescription.m
sourceTree
<group>
- 7E4011DD6EBADA2954F525DF
+ 7EC8822B825A87D19A8CFD67
- includeInIndex
- 1
+ buildActionMask
+ 2147483647
+ files
+
+ AAFBF6998D776A4493102E5C
+
isa
- PBXFileReference
- lastKnownFileType
- text.xcconfig
- path
- Pods-PocketForecast-Typhoon-Private.xcconfig
- sourceTree
- <group>
+ PBXHeadersBuildPhase
+ runOnlyForDeploymentPostprocessing
+ 0
- 7E4566AFC1E95D6FC1CBFD56
+ 7F00F06F73312F109E18335D
- includeInIndex
- 1
+ children
+
+ 9656D02F577F03A1EB81B476
+ 5ECE9C96838C059B18AF734E
+ 106725C3E92FE820374F7593
+ E9FB165DB7442C9DC9A14DAD
+ 3509C96103EC2E54860D8827
+ 05E2D6F2376A1DE7BB09A7D4
+ 9AB5CD3F372B5E54813CB198
+ 34CC5D6534D9CBFE5EBF48E6
+ 333CD8D733881EFC307F95E9
+ DEFF1BE41B0E7EF23E5840A6
+ 0E4CEBB953FFA15569EB4336
+ 466240CE17FAC3CAA744DA72
+ 709FA9C708BCD8C2B8EE8505
+ F0B7135D20F4EADB7E2A99C1
+ 4D8C8A341B6C59169E8E7C20
+ 57FFD224C2B2CD01421C4295
+ 61DB899CF8AEA2D2A474A43E
+ 947854F892F6F70153989F9E
+ E59612A0E5DD02946478E1E2
+ 83B8B1E253C28C379C8E6359
+ 685EBF980B1E1915D5AF1F4A
+ 2F4DC65A64089276D594A74D
+ D30B9A607DBE2BA038266787
+ A7D073A88619E65B8A5B122C
+ 546CDAF4A0AB4C56ED1EA4D4
+ 311DE05DC9C44FF46CB4575C
+ B82387DA5855A113EC8BFD4C
+ C595E916FAD41448103AE624
+ 422208A0B96C8D129A96CA3C
+ DAF27A4E41AD71D85FBEDCB0
+ D7DE75BC1BC33160B29DFC36
+ 05ABA63880A62017C4A1A8EC
+ 6073557742CA2B24D442FF1F
+ 96BD230836C0CA9799047430
+ C06D60E88F731FF86ECA55DD
+ 6C5A290B2FFF8D1309DA9246
+ CE24D2B3018BAB49A62A5AFA
+ 297F287050BADC61800B21E2
+ 63B30F9583DED9A1C670E3D5
+ 23AAAE74C608E61BD5C8C97E
+ 80880EEB216CE22D8A3D9493
+ 9D3CE6DF146D5BF79F3B7A60
+ C1C69D5DF5E9CB14F441F839
+ F9086A3A687C031C9F2A8986
+ 2C79701BE3DE1891206F5424
+ 29F2F5DC3EE667230E447137
+ 5B10344B01CED6A1B1C08613
+ 7D2E25E412999023E1902628
+ 9CFE238C0CDA763B73F5394E
+ E2D69493B10A5675F1E814D0
+ E3D22CE3BD0E05350123A62B
+ 5FF016F005CEA2047B80ABD1
+ B2588C34D676905EF28D3EBD
+ F4554D7C9A71B5204410AE25
+ 445E0996B7C5DACDFDFBDF51
+ 18C8CB46EEDB34BDCF065107
+ BB2141C0E2303511AFE5E691
+ 7816848F0A38DC98AAB9169D
+ C0EDDD259670A27B58EEFCF9
+ 8AE27320A510065369322189
+ 80650359D62505EFEF728469
+ 2F96ACFF0ACB995C367772A9
+ A741FBC9C1D5220BF382E0FF
+ C2D6E7875788704544BC7E35
+ C0739AB9A0D3F515D0777B9C
+ 6F7E1EF85EE6A8419014F145
+ 2CFAB3EF4230558F5DDDC200
+ 743449BF686092A758E77DFE
+ 34306B68C66D8FEC3760180A
+ 0FC8956BA38FAD31A4E69D8F
+ 92FAE74292BD93152155B542
+ ED2D7DB7E6CF1406A4C5B39D
+ E0F48EF6DBEFD254EA6B9983
+ 5FD7814CDF18FBAC5F4AF4A1
+ ECE505F3D2C495BCD2687009
+ 059B3564A432EFE5660823F8
+ CA2ACCE6F27BA878DB30A154
+ 62073F4CE004B12D4524868D
+ CB53902A510FD34ABDE949B5
+ 356EBFC47D7A23708188C71A
+ 326EB87DB2CF3F96648AAFA5
+ 0AD46997A7CF6BF4A850C2BC
+ ED94691DE6E9426B6A12AE7B
+ 2A83F550D2C728CCBFFB5C79
+ E1B4505D4DC4AB09D718DF57
+ ED4FE771AD52A9F9F16CEF47
+ DE8A44EB9650EA5889119F68
+ C872D50FDBF73929EC2EF809
+ EB1A0291CBB1BBB2BB1E0F22
+ 75B009F0052D1DD37AF9337A
+ D002E30299B33C96C7BD100B
+ D48D432537020DC402ACBA56
+ ADC9EE5821772CA9D4D7847D
+ 4977ACD8303C38C8AECC9D01
+ F58354F2ECCB33A30A14C5F9
+ F4B2D93F8D7BD1988C7E86E3
+ B7DB3E67F6BC12FBC6F2DE57
+ 824061AAA790FD725F7E0C97
+ C435D94064EFD3B84C1BC97F
+ 382412215CE01A52C4F02CEA
+ CF6AAB26BD222EACEA30AFCE
+ 6EC768565DC0114A9D802A68
+ 949953EB1882950CCCB5617F
+ C7DC08044239153ADDD3AC88
+ 87FF3251ADE4B5AEDEB500BB
+ 46DC7FB30682C0D6467BCED8
+ B3D8D47637465F2C484A21D5
+ 092797605D78B365FE24F614
+ E8F3299E8BA2FCF623377989
+ 56ECA0E076E4679D3CCD7C78
+ 55778F5E0D2B085CCB997331
+ D7C6220CB62ED69CDE96F3D1
+ 5BFF2E670FF4C3A878FA5658
+ C4EEC30373F52F373AE3ADA8
+ C6A380FCDBE8D3B0B4B5DA1B
+ B5B13390A7BF045B9349E8A3
+ CD8F20B7437907578207C72E
+ CD60BA981BFCFAB1F8A13C68
+ F21A4F34B3ACC897E911CECB
+ 6DA56E2C3D39FF9D4896F4CE
+ 31DB322E70A3E2FF7FF417A3
+ 0295312B37B93EF7F10650AD
+ 54CB547DF18CDFAFC57F407D
+ 7687ADC80230C7568FDB67E5
+ 24B5CB2060C6D24949E7769B
+ 388AE2208360BD3885450DC7
+ 2DFBF07A8AAD31F6DE45B430
+ 8622D79BAEEAE9B017F78F0C
+ 986236FFB9CBD3510D3C0738
+ 61E179D708484358B364BED8
+ 965E191D8386C8C7A8AABB14
+ 881A2F8AB789BA6AA5BEC4A9
+ 83F76A88FB326F96B40E9514
+ 00ABDFEC8D07F39140E19C9B
+ 3B622E0C3534E67D1B318CC5
+ F65FAE9CB07B5D85A5F240F1
+ 1609EC09DE70CD1BF77431FC
+ 4AB856C39AF6932971315521
+ 6EAEB9DF39B88523C31C9CC5
+ 612658E39444157C172AFA30
+ F1631F8A7E0BA1007D4438FB
+ 25D96DCB415BA66AC00F73E4
+ FCFD3678B4E443D056D4316B
+ 98E36407875562351B8C5E1F
+ B67B08D5037F2B629F07D89F
+ 9E565C46C089FE14B8A9D3D9
+ 23E7475EAB51C458C8443FCB
+ D8011340954CBBE98102AD9B
+ E447F12BB08B10EED06D0FA9
+ E5E12DE2A9A62B122430B968
+ FB50E11062C2AA335BBF26DB
+ 8A3276CDB2A2670EA4E2908B
+ 48669F7C229E849593FB1F42
+ 8EB09231868E2F1B03D44C4D
+ 7164601CCDF76A41B0A5E590
+ DE08E2C51096D9169AF855F6
+ 574B8F82969F6E7C19D696C3
+ 45DA3EABCCBDBB7CCE2175E9
+ 47625E5B100D86753610E8A3
+ BD0F3BB9938D52BA90E2111E
+ 17FFCF5565E8E33C13964C53
+ 1BE29746F1970645FBF61F80
+ DE31F46DA5E04B40DBE3B1C9
+ 61D69692A3B97B6EAD1F1708
+ 64A07010204CD19D9B74FD04
+ 786EE3C30DA45D9DBFB66650
+ BBDFDAD7FE7DF50005E6136E
+ 1C249762195CA723E55AAF47
+ 84B420C000F18F8A16249928
+ B8A653E060BD24A15AB2F2C8
+ FCB68589EBD59E267CBB0501
+ EDBB6A25DF93E76B2ABF3C72
+ 6F7500317A87A693D8F8FA5F
+ 2AE3E95AD8D57A38A0D662C1
+ 6E4A04865B3AA0FA57243704
+ A05D942522B1653B0D8AC3FE
+ 792634F439D11BF201F05F4D
+ F3AFC954F7769D510E9B0A7C
+ DC3CF07D6C3A2CC77EA90601
+ 63511BB1296416162CD1C9CB
+
isa
- PBXFileReference
- lastKnownFileType
- sourcecode.c.h
+ PBXGroup
name
- HCDescribedAs.h
+ Typhoon
path
- Source/Library/Decorator/HCDescribedAs.h
+ Typhoon
sourceTree
<group>
- 7E97716916B027419FCBED6E
-
- isa
- PBXTargetDependency
- target
- 132C5A4F6375AD09ADB02E07
- targetProxy
- C3C41C9F30258C983F028BDD
-
- 7EF48A748CD5D23D3D776197
+ 7F01CD28D01DC9B20DD59D80
fileRef
- 557E3C1F0F32391126F72351
+ F26F133847973BFA8859143C
isa
PBXBuildFile
- 7F1324F52D9F5843C7273D09
-
- isa
- PBXTargetDependency
- target
- 99F49A6BF566860B1931F55E
- targetProxy
- B2296DE8F693DFA6FD73F6AD
-
- 7F14FD44F495FE548A2E9F0D
+ 7F22B0D09FE59099A494672E
fileRef
- 7F3144746AF94485C4C4F788
+ ED7BDEF444CB990DCFC68C31
isa
PBXBuildFile
settings
COMPILER_FLAGS
- -fobjc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+ -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
- 7F3144746AF94485C4C4F788
+ 7F2FB313FDDA3334FC1C0CAB
+
+ isa
+ PBXTargetDependency
+ name
+ Pods-PocketForecast-NSURL+QueryDictionary
+ target
+ A09B79B881F22C425D60CA34
+ targetProxy
+ 18AB275318A45AB7799760CA
+
+ 80650359D62505EFEF728469
includeInIndex
1
@@ -9468,142 +9903,162 @@
lastKnownFileType
sourcecode.c.objc
name
- HCLongReturnGetter.m
+ TyphoonConfigPostProcessor.m
path
- Source/Core/Helpers/ReturnValueGetters/HCLongReturnGetter.m
+ Source/Configuration/ConfigPostProcessor/TyphoonConfigPostProcessor.m
sourceTree
<group>
- 7F3BC6B5D0D7C7E316431E5E
-
- buildConfigurations
-
- DF594F7C3B4DFA5A581A6CCF
- 80BF3EE571E805BAE5826ABF
-
- defaultConfigurationIsVisible
- 0
- defaultConfigurationName
- Release
- isa
- XCConfigurationList
-
- 7F79F7D9602E8E7EC363C9BE
+ 80719718A29CCC6F2D28933F
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.h
+ sourcecode.c.objc
name
- FacingView.h
+ MKTFloatArgumentGetter.m
path
- PaperFold/PaperFold/PaperFold/FacingView.h
+ Source/OCMockito/Helpers/ArgumentGetters/MKTFloatArgumentGetter.m
sourceTree
<group>
- 7F8FE144EF3E051077997C03
+ 80880EEB216CE22D8A3D9493
+ includeInIndex
+ 1
isa
PBXFileReference
lastKnownFileType
- wrapper.framework
+ sourcecode.c.objc
name
- Foundation.framework
+ TyphoonBlockComponentFactory.m
path
- Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS7.1.sdk/System/Library/Frameworks/Foundation.framework
+ Source/Factory/Block/TyphoonBlockComponentFactory.m
sourceTree
- DEVELOPER_DIR
+ <group>
- 7FBAFDE592FC084FF1FB3EFE
+ 80E25A2D0697DED1CEB2D702
fileRef
- 0D256D74CB518A5B2C7F285A
+ 2A83F550D2C728CCBFFB5C79
isa
PBXBuildFile
- 8025E8561499A91A0BB26149
+ 8132BA20919BA87DB97380AD
- includeInIndex
- 1
+ fileRef
+ 1708A1C0F17AFF178A22022A
isa
- PBXFileReference
- lastKnownFileType
- text.xcconfig
- path
- Pods-PocketForecastTests.release.xcconfig
- sourceTree
- <group>
+ PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
+
+ 817CFEE2AC5796C08F19855B
+
+ fileRef
+ 1F78C45CE4CE134DC692B63E
+ isa
+ PBXBuildFile
- 802FF5C8069F3A6433E1FDD7
+ 81902BD14D914CAF8F1E1E31
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.objc
+ sourcecode.c.h
name
- EXPMatchers+raiseWithReason.m
+ EXPMatchers+beInstanceOf.h
path
- src/matchers/EXPMatchers+raiseWithReason.m
+ src/matchers/EXPMatchers+beInstanceOf.h
sourceTree
<group>
- 8035E7F4004CF83467EC5CFC
+ 81973BA320E99C928FD26BF8
+
+ fileRef
+ 6ED0BECDB7C9D21EF133AB15
+ isa
+ PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -fno-objc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
+
+ 81B39989B3B3E38E6FBA215A
+
+ fileRef
+ 6BFD38F3F6AA980D1DCCA618
+ isa
+ PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
+
+ 81BFE4143B043C4B9499E84E
fileRef
- 92F4AD2B544B562E049A5F24
+ 82CA7ED1A9294A47E26EAAA7
isa
PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
- 805971D8EB3C14C8D54EE883
+ 81ECFD9B0044C2A25C95F014
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.objc
+ sourcecode.c.h
name
- HCOrderingComparison.m
+ HCIsDictionaryContainingValue.h
path
- Source/Library/Number/HCOrderingComparison.m
+ Source/Library/Collection/HCIsDictionaryContainingValue.h
sourceTree
<group>
- 806FF0783D56F4FF5A7D235B
+ 82104F58703A7852184962B9
fileRef
- 972FD2F0D1885FEA0DC4F6E3
+ 293FAEB0E9E80E85D72FCB34
isa
PBXBuildFile
settings
COMPILER_FLAGS
- -fobjc-arc -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+ -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
- 809B18EE5AF3E88FAAF32E4D
+ 824061AAA790FD725F7E0C97
- children
-
- ACEB91D9E22CA911E95D7D0F
- 1B6690FA9D23A0E26DD50717
- C5FD0101002AFAAAF11DF7B9
- AC0945F388ADED6A3DBBE8A7
-
+ includeInIndex
+ 1
isa
- PBXGroup
+ PBXFileReference
+ lastKnownFileType
+ sourcecode.c.objc
name
- Support Files
+ TyphoonInjectionByObjectFromString.m
path
- ../Target Support Files/Pods-PocketForecast-NSURL+QueryDictionary
+ Source/Definition/Injections/TyphoonInjectionByObjectFromString.m
sourceTree
<group>
- 80BB218DBE3E80FE763D2CFE
+ 8265740D7404F67AE3C28C45
includeInIndex
1
@@ -9612,16 +10067,29 @@
lastKnownFileType
sourcecode.c.h
name
- HCAllOf.h
+ MKTUnsignedLongReturnSetter.h
path
- Source/Library/Logical/HCAllOf.h
+ Source/OCMockito/Helpers/ReturnValueSetters/MKTUnsignedLongReturnSetter.h
+ sourceTree
+ <group>
+
+ 826899A0E8F85DBC0574F2E8
+
+ includeInIndex
+ 1
+ isa
+ PBXFileReference
+ lastKnownFileType
+ sourcecode.c.h
+ path
+ UIImage+CKUITools.h
sourceTree
<group>
- 80BF3EE571E805BAE5826ABF
+ 827C30EF0077190BD3512C36
baseConfigurationReference
- 1B6690FA9D23A0E26DD50717
+ D4CBB02D22D2F4F5C29F3205
buildSettings
ALWAYS_SEARCH_USER_PATHS
@@ -9633,7 +10101,7 @@
GCC_PRECOMPILE_PREFIX_HEADER
YES
GCC_PREFIX_HEADER
- Target Support Files/Pods-PocketForecast-NSURL+QueryDictionary/Pods-PocketForecast-NSURL+QueryDictionary-prefix.pch
+ Target Support Files/Pods-PocketForecast-ICLoader/Pods-PocketForecast-ICLoader-prefix.pch
INSTALL_PATH
$(BUILT_PRODUCTS_DIR)
IPHONEOS_DEPLOYMENT_TARGET
@@ -9668,42 +10136,206 @@
name
Release
- 80C7C01A6648C335A15C4853
+ 828A4F784B80034CE5B4A7EF
+
+ containerPortal
+ 94AF5A4F363AA9649B0CD69F
+ isa
+ PBXContainerItemProxy
+ proxyType
+ 1
+ remoteGlobalIDString
+ 31446349C693FD4C940D7E04
+ remoteInfo
+ Pods-PocketForecast-ICLoader
+
+ 82AB34153D856B821FDAFFCC
+
+ containerPortal
+ 94AF5A4F363AA9649B0CD69F
+ isa
+ PBXContainerItemProxy
+ proxyType
+ 1
+ remoteGlobalIDString
+ AA40588D1293189E877D8591
+ remoteInfo
+ Pods-PocketForecast-Typhoon
+
+ 82CA7ED1A9294A47E26EAAA7
+
+ includeInIndex
+ 1
+ isa
+ PBXFileReference
+ lastKnownFileType
+ sourcecode.c.objc
+ name
+ MKTUnsignedIntArgumentGetter.m
+ path
+ Source/OCMockito/Helpers/ArgumentGetters/MKTUnsignedIntArgumentGetter.m
+ sourceTree
+ <group>
+
+ 831728BA176349093853D5E7
+
+ fileRef
+ 3BAA9D55D3C138D5146AF927
+ isa
+ PBXBuildFile
+
+ 833A82F5EDF136D28661D18B
+
+ includeInIndex
+ 1
+ isa
+ PBXFileReference
+ lastKnownFileType
+ sourcecode.c.objc
+ name
+ NSValue+Expecta.m
+ path
+ src/NSValue+Expecta.m
+ sourceTree
+ <group>
+
+ 83A2CC03E48936840DED5974
+
+ isa
+ PBXTargetDependency
+ name
+ Pods-PocketForecastTests-OCMockito
+ target
+ 8421D127EBCD885E2968409F
+ targetProxy
+ 0EDED61A688615B607E2C2C9
+
+ 83B8B1E253C28C379C8E6359
+
+ includeInIndex
+ 1
+ isa
+ PBXFileReference
+ lastKnownFileType
+ sourcecode.c.h
+ name
+ NSValue+TCFUnwrapValues.h
+ path
+ Source/Factory/Internal/NSValue+TCFUnwrapValues.h
+ sourceTree
+ <group>
+
+ 83BA0F8AE14136581490AD73
+
+ fileRef
+ C2D6E7875788704544BC7E35
+ isa
+ PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
+
+ 83EC10461130185E89D14E58
+
+ includeInIndex
+ 1
+ isa
+ PBXFileReference
+ lastKnownFileType
+ sourcecode.c.objc
+ path
+ UIImage+CKUITools.m
+ sourceTree
+ <group>
+
+ 83F76A88FB326F96B40E9514
+
+ includeInIndex
+ 1
+ isa
+ PBXFileReference
+ lastKnownFileType
+ sourcecode.c.h
+ name
+ TyphoonParameterInjection.h
+ path
+ Source/Definition/Injections/TyphoonParameterInjection.h
+ sourceTree
+ <group>
+
+ 8404EA2CD2996CD96A0855F6
+
+ fileRef
+ E269FBB06D257E77BF201018
+ isa
+ PBXBuildFile
+
+ 8421D127EBCD885E2968409F
+
+ buildConfigurationList
+ F3703464B3E47BAEB71062EB
+ buildPhases
+
+ 004D66D3DFBA92C5CB64927E
+ 907B27C813FA5CDE997C508E
+ CF9806554BFC8BD1420E496E
+
+ buildRules
+
+ dependencies
+
+ CF08EB33583C4B8C3FCA2368
+
+ isa
+ PBXNativeTarget
+ name
+ Pods-PocketForecastTests-OCMockito
+ productName
+ Pods-PocketForecastTests-OCMockito
+ productReference
+ 6F001FDD18E182D9A8EAC57E
+ productType
+ com.apple.product-type.library.static
+
+ 842B07F1AD0A48682F39DF0E
- includeInIndex
- 1
+ fileRef
+ B9BF7DDC6019657742C1B6BB
isa
- PBXFileReference
- lastKnownFileType
- sourcecode.c.objc
- name
- MKTLongLongArgumentGetter.m
- path
- Source/OCMockito/Helpers/ArgumentGetters/MKTLongLongArgumentGetter.m
- sourceTree
- <group>
+ PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -fno-objc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
- 81113D654949618FE0201774
+ 84409270DFD04D9F48743AF6
fileRef
- 6F8404E0221D73BA8E330B84
+ 1F5BFB560D4697A5F77FF1E0
isa
PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
- 8114EBDC3E4F4764B14DC8C2
+ 84A24B11E91E45DE05D38E08
- includeInIndex
- 1
+ fileRef
+ 0295312B37B93EF7F10650AD
isa
- PBXFileReference
- lastKnownFileType
- sourcecode.c.objc
- path
- Pods-PocketForecast-dummy.m
- sourceTree
- <group>
+ PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
- 8177198F4DAB45927FE225C6
+ 84B420C000F18F8A16249928
includeInIndex
1
@@ -9712,25 +10344,13 @@
lastKnownFileType
sourcecode.c.h
name
- MKTBaseMockObject.h
+ TyphoonTypeDescriptor.h
path
- Source/OCMockito/MKTBaseMockObject.h
+ Source/TypeConversion/TyphoonTypeDescriptor.h
sourceTree
<group>
- 819211D5B16779C015E1A06A
-
- fileRef
- 124A4EE0AA403A20FEBD1980
- isa
- PBXBuildFile
- settings
-
- COMPILER_FLAGS
- -fobjc-arc -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
-
-
- 81A94657D4AF46A9B0D8F55A
+ 8545F8453C4BE30D0B3B9A55
includeInIndex
1
@@ -9739,40 +10359,40 @@
lastKnownFileType
sourcecode.c.h
name
- TyphoonInjectionByType.h
+ MKTMockitoCore.h
path
- Source/Definition/Injections/TyphoonInjectionByType.h
+ Source/OCMockito/MKTMockitoCore.h
sourceTree
<group>
- 81B7A87C241CC86D7942B171
+ 8568F5A08E380B977BC5A625
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.objc
+ sourcecode.c.h
name
- EXPMatchers+beInTheRangeOf.m
+ MultiFoldView.h
path
- src/matchers/EXPMatchers+beInTheRangeOf.m
+ PaperFold/PaperFold/PaperFold/MultiFoldView.h
sourceTree
<group>
- 81C92208FDF89A2E3E23760E
+ 8590B2A8DBEB1A55F165B0A4
fileRef
- F8EE4AEDB0524AF74BA512E5
+ 61E179D708484358B364BED8
isa
PBXBuildFile
settings
COMPILER_FLAGS
- -fobjc-arc -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+ -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
- 8214D7A64074FC83FD3FE2A2
+ 85D71F7D113F8445388256A1
includeInIndex
1
@@ -9781,56 +10401,25 @@
lastKnownFileType
sourcecode.c.objc
name
- HCUnsignedShortReturnGetter.m
+ EXPMatchers+beSubclassOf.m
path
- Source/Core/Helpers/ReturnValueGetters/HCUnsignedShortReturnGetter.m
+ src/matchers/EXPMatchers+beSubclassOf.m
sourceTree
<group>
- 829A29C62B6651D23F1A42A6
-
- fileRef
- 3CBFE0E05F8A077CB74FEE0B
- isa
- PBXBuildFile
- settings
-
- COMPILER_FLAGS
- -fobjc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
-
-
- 82A3DC46618FD598B4E22F6D
-
- fileRef
- 301F603958961FDB424FEA21
- isa
- PBXBuildFile
-
- 82A471BF3F12DD2292FC7A1C
+ 85F888269A728F03E8138116
fileRef
- A90B88108E940A98D775DD28
+ E21EB5AC78556DDA3B2F266D
isa
PBXBuildFile
settings
COMPILER_FLAGS
- -fobjc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
-
-
- 82AEE487FBAC58A5116CFAB7
-
- fileRef
- C1909E1386BA6B8A62FAB0F3
- isa
- PBXBuildFile
- settings
-
- COMPILER_FLAGS
- -fobjc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+ -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
- 82B4A1FA770B1479A4F376CE
+ 8622D79BAEEAE9B017F78F0C
includeInIndex
1
@@ -9839,30 +10428,55 @@
lastKnownFileType
sourcecode.c.h
name
- HCIs.h
+ TyphoonObjectWithCustomInjection.h
path
- Source/Library/Decorator/HCIs.h
+ Source/Definition/Internal/TyphoonObjectWithCustomInjection.h
sourceTree
<group>
- 82E22EEDB6BED1F84A5B4F4A
+ 86250ABFB2C67CC55580B476
+
+ fileRef
+ F9086A3A687C031C9F2A8986
+ isa
+ PBXBuildFile
+
+ 8626FB981029797D680DFF14
+
+ containerPortal
+ 94AF5A4F363AA9649B0CD69F
+ isa
+ PBXContainerItemProxy
+ proxyType
+ 1
+ remoteGlobalIDString
+ 3E763831D9EE3703733E7770
+ remoteInfo
+ Pods-PocketForecast-CKUITools
+
+ 8686FF9506F3F0CDD8AF9FE5
fileRef
- 5572523E1D73EAA04A9A221D
+ ED2D7DB7E6CF1406A4C5B39D
isa
PBXBuildFile
- 82EE123975A2A4438CF847F1
+ 86D984E48455EBD468EB4C5D
fileRef
- 66316EACD4891B207B6A0D44
+ 32625CE45EC31A2B9D19C4AA
isa
PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
- 83870B698A8B8F2710315723
+ 86E93B252F9FC5C58DAE217C
baseConfigurationReference
- 7E4011DD6EBADA2954F525DF
+ 78EE0A4E105DCD26DDDC7065
buildSettings
ALWAYS_SEARCH_USER_PATHS
@@ -9874,7 +10488,7 @@
GCC_PRECOMPILE_PREFIX_HEADER
YES
GCC_PREFIX_HEADER
- Target Support Files/Pods-PocketForecast-Typhoon/Pods-PocketForecast-Typhoon-prefix.pch
+ Target Support Files/Pods-PocketForecastTests-Expecta/Pods-PocketForecastTests-Expecta-prefix.pch
INSTALL_PATH
$(BUILT_PRODUCTS_DIR)
IPHONEOS_DEPLOYMENT_TARGET
@@ -9909,151 +10523,119 @@
name
Release
- 83C03091310A90F699B54EA9
+ 86EEE541AF6246FBA526447D
fileRef
- 431F0C732E9BE455E947B48D
+ 4A5583A81FE0D07883765D92
isa
PBXBuildFile
- 845B3B38D51FF640C7F3D0A6
+ 873CA1F37F5BC9A222C6951C
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.h
- name
- TyphoonResource.h
+ text.script.sh
path
- Source/Configuration/Resource/TyphoonResource.h
+ Pods-PocketForecastTests-resources.sh
sourceTree
<group>
- 846B7B4A2C71AD4F54295FE4
+ 87684E15D00A7277B1F69CEC
- includeInIndex
- 1
+ buildConfigurations
+
+ 185D8CF25C16E71BD005D735
+ 86E93B252F9FC5C58DAE217C
+
+ defaultConfigurationIsVisible
+ 0
+ defaultConfigurationName
+ Release
isa
- PBXFileReference
- lastKnownFileType
- sourcecode.c.objc
- name
- MKTArgumentGetter.m
- path
- Source/OCMockito/Helpers/ArgumentGetters/MKTArgumentGetter.m
- sourceTree
- <group>
+ XCConfigurationList
- 84793CCDC5C0345D8F55F795
+ 877594B94AB854AF93D352A5
- includeInIndex
- 1
+ fileRef
+ 059B3564A432EFE5660823F8
isa
- PBXFileReference
- lastKnownFileType
- sourcecode.c.h
- name
- TyphoonOrdered.h
- path
- Source/Configuration/TyphoonOrdered.h
- sourceTree
- <group>
+ PBXBuildFile
+
+ 87A9D86F1EBDA492992C78C4
+
+ fileRef
+ 92C557794316C7918E59FA84
+ isa
+ PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
- 8490B3609A99AF7DDE56DC5F
+ 87D578BBA0FD78C93567F0B7
fileRef
- 524C3FC0D25F8DD0CF207A68
+ 6073557742CA2B24D442FF1F
isa
PBXBuildFile
- 849535F53908DB8E5A258395
+ 87EEB03ACA5D77A89A2D6829
fileRef
- 7672F4FCA5C1FC76B073D7C3
+ 8545F8453C4BE30D0B3B9A55
isa
PBXBuildFile
- 84BDE6EB229475ECEEBA5B91
+ 87FF3251ADE4B5AEDEB500BB
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.objc
+ sourcecode.c.h
name
- HCHasDescription.m
+ TyphoonInjectionByType.h
path
- Source/Library/Object/HCHasDescription.m
+ Source/Definition/Injections/TyphoonInjectionByType.h
sourceTree
<group>
- 852C0B771CDFF63E772A7328
+ 880B64CAD50CDBD316F1ECED
fileRef
- 86F2C20671AB7A6DAFD686DB
+ D6F09596F8BFC367480F858F
isa
PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
- 852C67027088DEB7C97C0D3B
-
- includeInIndex
- 1
- isa
- PBXFileReference
- lastKnownFileType
- sourcecode.c.objc
- path
- Pods-PocketForecast-NGAParallaxMotion-dummy.m
- sourceTree
- <group>
-
- 85639B91984CF0C162449349
+ 881A2F8AB789BA6AA5BEC4A9
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.objc
+ sourcecode.c.h
name
- MKTIntReturnSetter.m
+ TyphoonOrdered.h
path
- Source/OCMockito/Helpers/ReturnValueSetters/MKTIntReturnSetter.m
+ Source/Configuration/TyphoonOrdered.h
sourceTree
<group>
- 857FB3DA714DA7BC8A3D9DB9
-
- buildActionMask
- 2147483647
- files
-
- 2535C8CFDB6BABE7D377D7F7
-
- isa
- PBXHeadersBuildPhase
- runOnlyForDeploymentPostprocessing
- 0
-
- 85899F7AE4E7FAD658731611
-
- fileRef
- 6B508F6087ABD62A28086EB1
- isa
- PBXBuildFile
- settings
-
- COMPILER_FLAGS
- -fobjc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
-
-
- 85C3512EC2913C70532BFD28
+ 8822162F749CC65D8AD4C03A
fileRef
- 4D646FC2F5F56A601B10F13B
+ DE6908F8A6BE178DD368D6AD
isa
PBXBuildFile
settings
@@ -10062,41 +10644,29 @@
-w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
- 85CC734D2DF7FD596B1846A1
-
- fileRef
- 3111AC587E565A1F1746C394
- isa
- PBXBuildFile
-
- 85D75AD9CFBA49A5FFCAE959
+ 88495D57C9AC80001ABFBE92
fileRef
- 4DDCE2DEF2D58EBC7C3467D4
+ 83F76A88FB326F96B40E9514
isa
PBXBuildFile
- settings
-
- COMPILER_FLAGS
- -fobjc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
-
- 8610F04E42582B5FD19FC8BE
+ 88D095687C4178E6D83BDC11
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.h
+ sourcecode.c.objc
name
- EXPFloatTuple.h
+ MKTClassArgumentGetter.m
path
- src/EXPFloatTuple.h
+ Source/OCMockito/Helpers/ArgumentGetters/MKTClassArgumentGetter.m
sourceTree
<group>
- 86487159C1623B9C23A925C3
+ 88E16F150A091F2CBCB3437E
includeInIndex
1
@@ -10105,20 +10675,13 @@
lastKnownFileType
sourcecode.c.objc
name
- MKTLongReturnSetter.m
+ Expecta.m
path
- Source/OCMockito/Helpers/ReturnValueSetters/MKTLongReturnSetter.m
+ src/Expecta.m
sourceTree
<group>
- 865D50A109C0816A40EB481F
-
- fileRef
- 54DC237870D48F7981187DB3
- isa
- PBXBuildFile
-
- 8693BEFD996C08E5151744FE
+ 892C45F1C9975BD9A5272957
includeInIndex
1
@@ -10127,35 +10690,28 @@
lastKnownFileType
sourcecode.c.h
name
- HCObjectReturnGetter.h
+ PaperFoldNavigationController.h
path
- Source/Core/Helpers/ReturnValueGetters/HCObjectReturnGetter.h
+ PaperFold/PaperFold/PaperFold/PaperFoldNavigationController.h
sourceTree
<group>
- 86A0F76A90E6858BCE56D7A8
+ 892F198EE3041AEB5B816EE7
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.objc
+ sourcecode.c.h
name
- MKTUnsignedCharReturnSetter.m
+ MKTUnsignedShortReturnSetter.h
path
- Source/OCMockito/Helpers/ReturnValueSetters/MKTUnsignedCharReturnSetter.m
+ Source/OCMockito/Helpers/ReturnValueSetters/MKTUnsignedShortReturnSetter.h
sourceTree
<group>
- 86E1BCDE02BCDF42CB148D66
-
- fileRef
- F04AA1384ACC2AA7073CBB53
- isa
- PBXBuildFile
-
- 86F2C20671AB7A6DAFD686DB
+ 896677EBF0FF6C8474DA6733
includeInIndex
1
@@ -10164,37 +10720,28 @@
lastKnownFileType
sourcecode.c.h
name
- EXPMatchers+beGreaterThan.h
+ MKTUnsignedCharReturnSetter.h
path
- src/matchers/EXPMatchers+beGreaterThan.h
+ Source/OCMockito/Helpers/ReturnValueSetters/MKTUnsignedCharReturnSetter.h
sourceTree
<group>
- 8701F57C948DD9CA2414829A
+ 896CD42AF24F61977DDE050A
- children
-
- ED9A36E13AA31F231AD6C37B
- C3FBB7053B1E9AD06F9132A8
- 6A5D83B29099C80D4C5A521E
- 4C60E890F1570AE222F7AD4E
- E29229392EF1CE93FC87A070
- CB24482BCE49ACDB7E000400
- 3D7AC1DDFEC11BA59ED575ED
- 959C2760E44D30F59C0ADC62
- 4EF5BF9F14C57048F80A2281
- 5D1031FAB01BE6A31D911D3C
- 153DD79F6CBA865C41A7C6B0
- 30F3C7AD203A1C8442573BE8
-
+ includeInIndex
+ 1
isa
- PBXGroup
+ PBXFileReference
+ lastKnownFileType
+ sourcecode.c.objc
name
- Products
+ HCIsEqualIgnoringCase.m
+ path
+ Source/Library/Text/HCIsEqualIgnoringCase.m
sourceTree
<group>
- 874C1CE31FC34990585368F4
+ 8972713CE6587FF26F1C54B5
includeInIndex
1
@@ -10203,37 +10750,39 @@
lastKnownFileType
sourcecode.c.h
name
- MKTShortReturnSetter.h
+ MKTClassReturnSetter.h
path
- Source/OCMockito/Helpers/ReturnValueSetters/MKTShortReturnSetter.h
+ Source/OCMockito/Helpers/ReturnValueSetters/MKTClassReturnSetter.h
sourceTree
<group>
- 87656471FC38ACD342993B0D
+ 8A0119C90CD678EAA80797E1
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- text
+ sourcecode.c.h
name
- Podfile
+ HCIsCloseTo.h
path
- ../Podfile
+ Source/Library/Number/HCIsCloseTo.h
sourceTree
- SOURCE_ROOT
- xcLanguageSpecificationIdentifier
- xcode.lang.ruby
+ <group>
- 87675DE10FE5AC1172A761CF
+ 8A2266AACE1C84989124832B
- fileRef
- B0694DDE0425C765DF0049F0
isa
- PBXBuildFile
+ PBXTargetDependency
+ name
+ Pods-PocketForecast-PaperFold
+ target
+ 309DBA81EB404BC63DAED7B6
+ targetProxy
+ DE12FBFD413208060A662AA3
- 87BCA50D7E7AED86F4753B6E
+ 8A3276CDB2A2670EA4E2908B
includeInIndex
1
@@ -10242,25 +10791,13 @@
lastKnownFileType
sourcecode.c.h
name
- MKTReturnValueSetter.h
+ TyphoonRuntimeArguments.h
path
- Source/OCMockito/Helpers/ReturnValueSetters/MKTReturnValueSetter.h
+ Source/Factory/Block/TyphoonRuntimeArguments.h
sourceTree
<group>
- 87EB2E637DDEAB37B72B8962
-
- fileRef
- A44BFF917BC27019C41F15D4
- isa
- PBXBuildFile
- settings
-
- COMPILER_FLAGS
- -fobjc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
-
-
- 881A63EBE73C042BD2DD1FFE
+ 8AE27320A510065369322189
includeInIndex
1
@@ -10269,55 +10806,29 @@
lastKnownFileType
sourcecode.c.h
name
- ShadowView.h
+ TyphoonConfigPostProcessor.h
path
- PaperFold/PaperFold/PaperFold/ShadowView.h
+ Source/Configuration/ConfigPostProcessor/TyphoonConfigPostProcessor.h
sourceTree
<group>
- 886E940B1AB731C92FB5A28F
-
- fileRef
- 06D9C10A9BABE580C5128C47
- isa
- PBXBuildFile
- settings
-
- COMPILER_FLAGS
- -fobjc-arc -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
-
-
- 8882CA3EE1F0E114212EED63
-
- fileRef
- 3F39FA607A1F8DD3FD5AC97F
- isa
- PBXBuildFile
- settings
-
- COMPILER_FLAGS
- -fobjc-arc -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
-
-
- 889DD9B5394E0DB08D5C3B2A
+ 8AFF964B18442DBBD4575FBE
includeInIndex
1
isa
PBXFileReference
- lastKnownFileType
- sourcecode.c.h
name
- TyphoonInjections.h
+ swipe_guide_right@2x.png
path
- Source/Definition/Injections/TyphoonInjections.h
+ PaperFold/PaperFold/PaperFold/PaperFoldResources.bundle/swipe_guide_right@2x.png
sourceTree
<group>
- 88DE36DB47186F0BCD2E90AD
+ 8B55105FAC69AF85E033AECE
baseConfigurationReference
- 8025E8561499A91A0BB26149
+ 5B95E3A36C48363BE1CF382E
buildSettings
ALWAYS_SEARCH_USER_PATHS
@@ -10362,7 +10873,7 @@
name
Release
- 8944F418B15D3EA30409A36E
+ 8B5FAD35BE8A277CE6B120FA
includeInIndex
1
@@ -10371,62 +10882,87 @@
lastKnownFileType
sourcecode.c.h
name
- MKTIntReturnSetter.h
+ MKTArgumentGetter.h
path
- Source/OCMockito/Helpers/ReturnValueSetters/MKTIntReturnSetter.h
+ Source/OCMockito/Helpers/ArgumentGetters/MKTArgumentGetter.h
sourceTree
<group>
- 89478B9D51442F2494DB1A95
+ 8B725CA2CF42E03F9EC163CF
fileRef
- 5EA183353B0769D9D47F1B50
+ DEFF1BE41B0E7EF23E5840A6
isa
PBXBuildFile
settings
COMPILER_FLAGS
- -fobjc-arc -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+ -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
- 897C206E689D8067CF69262F
+ 8BF71082E81897452ABDC942
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- text.xcconfig
+ sourcecode.c.objc
+ name
+ HCSenTestFailureHandler.m
path
- Pods-PocketForecast-PaperFold-Private.xcconfig
+ Source/Core/Helpers/TestFailureHandlers/HCSenTestFailureHandler.m
sourceTree
<group>
- 899D0302E42BFB050E2A537A
+ 8C27545C15D0FAD561E3BBF1
fileRef
- 84BDE6EB229475ECEEBA5B91
+ DAFF4E1F18EE51D27A935534
isa
PBXBuildFile
- settings
-
- COMPILER_FLAGS
- -fobjc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
-
- 89D025FF73BEFA2E1221E3FA
+ 8C28F7FE843A4637F6A55015
+
+ includeInIndex
+ 1
+ isa
+ PBXFileReference
+ lastKnownFileType
+ sourcecode.c.h
+ path
+ Pods-PocketForecast-NGAParallaxMotion-prefix.pch
+ sourceTree
+ <group>
+
+ 8C7776E30B540916FC087A0B
+
+ includeInIndex
+ 1
+ isa
+ PBXFileReference
+ lastKnownFileType
+ sourcecode.c.h
+ name
+ MKTReturnValueSetterChain.h
+ path
+ Source/OCMockito/Helpers/ReturnValueSetters/MKTReturnValueSetterChain.h
+ sourceTree
+ <group>
+
+ 8D6007D7C5A8B4D33FF9BB9D
fileRef
- A25A09E49BF65E0ECCE52C2F
+ 7A9C0601A279A0E2A8767317
isa
PBXBuildFile
settings
COMPILER_FLAGS
- -fobjc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+ -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
- 89E6C2DE7E4E203574B07CE5
+ 8D630DAF6482225374FFB5BF
includeInIndex
1
@@ -10435,25 +10971,58 @@
lastKnownFileType
sourcecode.c.objc
name
- NSInvocation+OCMockito.m
+ MKTBoolArgumentGetter.m
path
- Source/OCMockito/NSInvocation+OCMockito.m
+ Source/OCMockito/Helpers/ArgumentGetters/MKTBoolArgumentGetter.m
sourceTree
<group>
- 8A25C15F8866CE85FC8B2732
+ 8D886B158BDC39CD9887E840
fileRef
- AE8ADA610F391E5C4A7E4094
+ D002E30299B33C96C7BD100B
isa
PBXBuildFile
- 8ABECB3DDA8F79994FC1EEFA
+ 8DC0C9B69D894D4FB99244EC
+
+ includeInIndex
+ 1
+ isa
+ PBXFileReference
+ lastKnownFileType
+ sourcecode.c.h
+ name
+ NGAParallaxMotion.h
+ path
+ Classes/NGAParallaxMotion.h
+ sourceTree
+ <group>
+
+ 8E2DADFF8A491407394529A5
+
+ children
+
+ B6F00DAD8B374ACC85A53696
+ 12301405A0573E317933D8E9
+ 47DA9F41D15B28D8F359D710
+ DA775C2606DDDB4341822928
+
+ isa
+ PBXGroup
+ name
+ Support Files
+ path
+ ../Target Support Files/Pods-PocketForecastTests-OCHamcrest
+ sourceTree
+ <group>
+
+ 8E3BC40357E20E616BBD70D2
buildConfigurations
- D27ADC004091A294245EB1AA
- B545DC898D4A33A1BBB88E92
+ 5B1144DD895FB698D0EC9CC1
+ C49D383668892673420000AC
defaultConfigurationIsVisible
0
@@ -10462,116 +11031,159 @@
isa
XCConfigurationList
- 8AC00BDFAE63841750106549
+ 8E4352E9888BFAF11F3D0387
+ fileRef
+ B8D45D352E71D7FBFE31E5B0
isa
- PBXTargetDependency
- target
- FE39F0327F8630A5A83C4D4D
- targetProxy
- 6D3A18593F0DC4FA3D83F3EE
+ PBXBuildFile
+
+ 8E85A976C048925279C6951C
+
+ fileRef
+ 5B1AFB92EC81A862023907C3
+ isa
+ PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
+
+ 8E8E18DADAA51F0C55D65C64
+
+ fileRef
+ 6FD241EF8AE4044C3F03E9A0
+ isa
+ PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
- 8AC8E01759D02D25AB9DACBC
+ 8E958EE732241882D2D28D1A
fileRef
- C0A461F0F00297326563EE07
+ B249D790379229DED9FBB919
isa
PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
- 8AF2889C49615B471CDFFCBE
+ 8EB09231868E2F1B03D44C4D
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.objc
+ sourcecode.c.h
name
- EXPDoubleTuple.m
+ TyphoonSelector.h
path
- src/EXPDoubleTuple.m
+ Source/Utils/TyphoonSelector.h
sourceTree
<group>
- 8AF429D946E40A71CB606E6A
+ 8ED566F1109C50A088D0021C
fileRef
- 116FD4E2D84BA1956EB0F99B
+ 79C1C2F1BC8874D0FE2FECBE
isa
PBXBuildFile
settings
COMPILER_FLAGS
- -fobjc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+ -fno-objc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
- 8B6F1FEE89D1EAF14E14366E
+ 8EF62947C4E27578576E865F
fileRef
- 8693BEFD996C08E5151744FE
+ 23E7475EAB51C458C8443FCB
isa
PBXBuildFile
- 8BBD0DA6726174D54E0D91E3
+ 9005122F4E33ADA3572B24CE
+ fileRef
+ 8C7776E30B540916FC087A0B
isa
- PBXTargetDependency
- target
- B9913B95D378F004DD626DF4
- targetProxy
- 4ACFF5B854C849C282B6B784
+ PBXBuildFile
- 8C300BB88EC1C828FEB3D20A
+ 9015A9503D2B62D9B3B89D18
- includeInIndex
- 1
+ fileRef
+ F563D502F0F917DE7706369C
isa
- PBXFileReference
- lastKnownFileType
- sourcecode.c.objc
- name
- MKTDoubleReturnSetter.m
- path
- Source/OCMockito/Helpers/ReturnValueSetters/MKTDoubleReturnSetter.m
- sourceTree
- <group>
+ PBXBuildFile
- 8C30DB2DD4D9E8A0AAC1F819
+ 902381EA58F98DEBEEAE7D72
- includeInIndex
- 1
+ fileRef
+ 61D69692A3B97B6EAD1F1708
isa
- PBXFileReference
- lastKnownFileType
- sourcecode.c.h
- name
- EXPMatchers+beLessThanOrEqualTo.h
- path
- src/matchers/EXPMatchers+beLessThanOrEqualTo.h
- sourceTree
- <group>
+ PBXBuildFile
+
+ 904E3D462BD11FF1D8E31906
+
+ fileRef
+ AEBCE6F65A0D9C907B6003F5
+ isa
+ PBXBuildFile
+
+ 907B27C813FA5CDE997C508E
+
+ buildActionMask
+ 2147483647
+ files
+
+ 2E2A23EDD5A0D8B17AA8F429
+
+ isa
+ PBXFrameworksBuildPhase
+ runOnlyForDeploymentPostprocessing
+ 0
+
+ 90B047BA2074948584687B4C
+
+ fileRef
+ 47C34AF873AD1D30E16AD87C
+ isa
+ PBXBuildFile
- 8C3715D8E515DFEC7B184F3D
+ 90B150834FE5192282838E77
fileRef
- 6EAA2AE5C5E6B4004CF28A73
+ 443009496120E2A57392A3F4
isa
PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
- 8C59AACA68267104622E7A95
+ 90D33726263BE6D919903A6A
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.objc
+ sourcecode.c.h
+ name
+ HCDiagnosingMatcher.h
path
- UIView+Position.m
+ Source/Core/HCDiagnosingMatcher.h
sourceTree
<group>
- 8C630356CE6A73DD0E838C57
+ 90E0953E838F212DFBABCCEE
includeInIndex
1
@@ -10580,29 +11192,31 @@
lastKnownFileType
sourcecode.c.objc
name
- HCIsNil.m
+ HCCharReturnGetter.m
path
- Source/Library/Object/HCIsNil.m
+ Source/Core/Helpers/ReturnValueGetters/HCCharReturnGetter.m
sourceTree
<group>
- 8C6F7EEBD138DD23ADE826A5
+ 90E229F23C0F17C306D47E18
+ includeInIndex
+ 1
isa
- PBXTargetDependency
- target
- 588DD2A7E5D597C657926E83
- targetProxy
- 1272D25265C49C7493E0BF1E
+ PBXFileReference
+ path
+ radialGeometry.c
+ sourceTree
+ <group>
- 8CEE02ADDFC1C4107AFC0A5A
+ 90E60065132447246415EA25
fileRef
- 311405EF987BD24797238843
+ 9E8FD7165F3ECE5DB9687E41
isa
PBXBuildFile
- 8D605DE0037E2EC94967E53B
+ 90EC8DD1431B9BB14A1CE351
includeInIndex
1
@@ -10611,20 +11225,25 @@
lastKnownFileType
sourcecode.c.h
name
- EXPMatchers+notify.h
+ NSInvocation+OCHamcrest.h
path
- src/matchers/EXPMatchers+notify.h
+ Source/Core/Helpers/NSInvocation+OCHamcrest.h
sourceTree
<group>
- 8D7021DD199861E8CBD84416
+ 914C7760F28B0716CE38F6FD
fileRef
- D3ABE593F5044BCBFC314CA1
+ E0F48EF6DBEFD254EA6B9983
isa
PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
- 8D861C49CA8914B50DE11740
+ 91698B71A06077A36593413E
includeInIndex
1
@@ -10633,40 +11252,137 @@
lastKnownFileType
sourcecode.c.h
name
- TyphoonJsonStyleConfiguration.h
+ EXPMatchers+beginWith.h
path
- Source/Configuration/ConfigPostProcessor/TyphoonConfiguration/TyphoonJsonStyleConfiguration.h
+ src/matchers/EXPMatchers+beginWith.h
sourceTree
<group>
- 8D9A20E44C8CA3C57F6453A3
+ 918B4DCAD8D1A71AFFCEC791
- includeInIndex
- 1
+ fileRef
+ 748307E4D80DBC897287E39E
isa
- PBXFileReference
- lastKnownFileType
- sourcecode.c.h
- name
- HCHasProperty.h
- path
- Source/Library/Object/HCHasProperty.h
- sourceTree
- <group>
+ PBXBuildFile
- 8DFD2C13B14E4565B6C48ED8
+ 9190EAC494DB5CDD2D6D8445
fileRef
- 6CCF3B9DB01DF98E8C827C0D
+ C6A380FCDBE8D3B0B4B5DA1B
isa
PBXBuildFile
settings
COMPILER_FLAGS
- -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+ -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
+
+ 91B18C154B996A5E760E33B8
+
+ fileRef
+ 896677EBF0FF6C8474DA6733
+ isa
+ PBXBuildFile
+
+ 91CF3999BF7B1ACB4FD83842
+
+ baseConfigurationReference
+ 595C7DC781E5D6F04B9A1BA0
+ buildSettings
+
+ ALWAYS_SEARCH_USER_PATHS
+ NO
+ COPY_PHASE_STRIP
+ NO
+ DSTROOT
+ /tmp/xcodeproj.dst
+ GCC_DYNAMIC_NO_PIC
+ NO
+ GCC_OPTIMIZATION_LEVEL
+ 0
+ GCC_PRECOMPILE_PREFIX_HEADER
+ YES
+ GCC_PREFIX_HEADER
+ Target Support Files/Pods-PocketForecast-NGAParallaxMotion/Pods-PocketForecast-NGAParallaxMotion-prefix.pch
+ GCC_PREPROCESSOR_DEFINITIONS
+
+ DEBUG=1
+ $(inherited)
+
+ GCC_SYMBOLS_PRIVATE_EXTERN
+ NO
+ INSTALL_PATH
+ $(BUILT_PRODUCTS_DIR)
+ IPHONEOS_DEPLOYMENT_TARGET
+ 7.0
+ OTHER_LDFLAGS
+
+ OTHER_LIBTOOLFLAGS
+
+ PRODUCT_NAME
+ $(TARGET_NAME)
+ PUBLIC_HEADERS_FOLDER_PATH
+ $(TARGET_NAME)
+ SDKROOT
+ iphoneos
+ SKIP_INSTALL
+ YES
+
+ isa
+ XCBuildConfiguration
+ name
+ Debug
+
+ 920B7C9A2224017CED09A988
+
+ baseConfigurationReference
+ B03F27A6ACAB1624C0698333
+ buildSettings
+
+ ALWAYS_SEARCH_USER_PATHS
+ NO
+ COPY_PHASE_STRIP
+ NO
+ DSTROOT
+ /tmp/xcodeproj.dst
+ GCC_DYNAMIC_NO_PIC
+ NO
+ GCC_OPTIMIZATION_LEVEL
+ 0
+ GCC_PRECOMPILE_PREFIX_HEADER
+ YES
+ GCC_PREFIX_HEADER
+ Target Support Files/Pods-PocketForecast-NSURL+QueryDictionary/Pods-PocketForecast-NSURL+QueryDictionary-prefix.pch
+ GCC_PREPROCESSOR_DEFINITIONS
+
+ DEBUG=1
+ $(inherited)
+
+ GCC_SYMBOLS_PRIVATE_EXTERN
+ NO
+ INSTALL_PATH
+ $(BUILT_PRODUCTS_DIR)
+ IPHONEOS_DEPLOYMENT_TARGET
+ 7.0
+ OTHER_LDFLAGS
+
+ OTHER_LIBTOOLFLAGS
+
+ PRODUCT_NAME
+ $(TARGET_NAME)
+ PUBLIC_HEADERS_FOLDER_PATH
+ $(TARGET_NAME)
+ SDKROOT
+ iphoneos
+ SKIP_INSTALL
+ YES
+ isa
+ XCBuildConfiguration
+ name
+ Debug
- 8E107FF83AA99860004C8E09
+ 9222B43166414D4B8398D965
includeInIndex
1
@@ -10675,20 +11391,13 @@
lastKnownFileType
sourcecode.c.objc
name
- TyphoonInjectionByConfig.m
+ NGAParallaxMotion.m
path
- Source/Definition/Injections/TyphoonInjectionByConfig.m
+ Classes/NGAParallaxMotion.m
sourceTree
<group>
- 8E838BBB04D5939F8FD3B50A
-
- fileRef
- 5CC374DD8194E7A5C88A2617
- isa
- PBXBuildFile
-
- 8E9F201B312BC2A8A6AAF92A
+ 92C557794316C7918E59FA84
includeInIndex
1
@@ -10697,13 +11406,13 @@
lastKnownFileType
sourcecode.c.objc
name
- HCStringContainsInOrder.m
+ HCIsEqualToNumber.m
path
- Source/Library/Text/HCStringContainsInOrder.m
+ Source/Library/Number/HCIsEqualToNumber.m
sourceTree
<group>
- 8EB809FE338947EE4BCF59F4
+ 92C5849A373F9388A9EAAB0D
includeInIndex
1
@@ -10712,213 +11421,121 @@
lastKnownFileType
sourcecode.c.h
name
- EXPMatchers+beInTheRangeOf.h
+ MKTThrowsException.h
path
- src/matchers/EXPMatchers+beInTheRangeOf.h
+ Source/OCMockito/MKTThrowsException.h
sourceTree
<group>
- 8EBA4EDC5CFF07ECF9C541B1
-
- buildActionMask
- 2147483647
- files
-
- 072712CCF7ADB23624093BA8
- C4913171938E5F665E45ECA9
- 2C57FD5DBD506E11EE872BAE
- BAFC64F86B177B6D5A6C2ED7
- 2DA8B598B635A281CA68527C
- DBAB6C859B42C0852F1CB000
- 2B7B94694B7811305EDF9192
- ADD42A0824F7FB3098EAEF5B
- EB69DE9E412A74C5905888A9
- CB2DCBE3DBD14A82EFD34433
-
- isa
- PBXSourcesBuildPhase
- runOnlyForDeploymentPostprocessing
- 0
-
- 8EEE6BD6592E42D1882F9EBA
-
- buildActionMask
- 2147483647
- files
-
- 52524FE797820AFBF0830963
-
- isa
- PBXFrameworksBuildPhase
- runOnlyForDeploymentPostprocessing
- 0
-
- 8F47EDC0F7A8105BDF198F16
-
- buildActionMask
- 2147483647
- files
-
- 3C8027EA0C5B7A9E3D9B15DB
- 6B8D0196CCE15E1C6E14AC19
-
- isa
- PBXSourcesBuildPhase
- runOnlyForDeploymentPostprocessing
- 0
-
- 8F67CF7435CCE130D6CE7D9D
+ 92F62273F2AD35F7D3E57FB9
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.objc
+ sourcecode.c.h
name
- HCIsCollectionContainingInOrder.m
+ EXPMatchers+endWith.h
path
- Source/Library/Collection/HCIsCollectionContainingInOrder.m
+ src/matchers/EXPMatchers+endWith.h
sourceTree
<group>
- 8FDD373A393BD09436D42FC2
+ 92FAE74292BD93152155B542
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- text.xcconfig
+ sourcecode.c.h
+ name
+ TyphoonDefinitionPostProcessor.h
path
- Pods-PocketForecastTests-OCHamcrest.xcconfig
+ Source/Configuration/TyphoonDefinitionPostProcessor.h
sourceTree
<group>
- 90174F22889E06FC9A35F810
-
- buildConfigurationList
- 6EDB0767D831902FD78B64C2
- buildPhases
-
- D95F4905A9F9E719A840988E
- 3C99BEA021C514CFEEC490FD
- E94F7B66903BADAD93F33753
-
- buildRules
-
- dependencies
-
- isa
- PBXNativeTarget
- name
- Pods-PocketForecast-CKUITools
- productName
- Pods-PocketForecast-CKUITools
- productReference
- C3FBB7053B1E9AD06F9132A8
- productType
- com.apple.product-type.library.static
-
- 9039021B63EBCF27258B6282
+ 9329650D7F7A5AABB940DDB8
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.objc
+ sourcecode.c.h
name
- TyphoonPlistStyleConfiguration.m
+ MKTOngoingStubbing.h
path
- Source/Configuration/ConfigPostProcessor/TyphoonConfiguration/TyphoonPlistStyleConfiguration.m
+ Source/OCMockito/MKTOngoingStubbing.h
sourceTree
<group>
- 90A71C16FA01541BF074849C
+ 9339A993A119F46A76277A02
fileRef
- 6AAA69DAAD241DECEB2AA035
+ DFF8E7F66E786A7648DEC9C0
isa
PBXBuildFile
- settings
-
- COMPILER_FLAGS
- -fobjc-arc -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
-
- 90B16B7372260B49B544CC72
+ 9392DB62A8BF7DF1A36983CB
fileRef
- 5727CF5C562E3CBB7422F7CC
+ 881A2F8AB789BA6AA5BEC4A9
isa
PBXBuildFile
- settings
-
- COMPILER_FLAGS
- -fobjc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
-
-
- 90BF94336E87A0A49F2E0768
-
- children
-
- A9A7932D51FF4D01A3C54B21
- 769E15DA96BB8DDE8B858782
- A66C29DA7812541104913A4D
- F0ACFFA16C4413DCFFB4646E
-
- isa
- PBXGroup
- name
- Resources
- sourceTree
- <group>
-
- 910D595203308B1BA0EA0A00
-
- buildConfigurations
-
- 619FE3F57E222F823FFE8A19
- 310CD0BD5E263BEA634FD274
-
- defaultConfigurationIsVisible
- 0
- defaultConfigurationName
- Release
- isa
- XCConfigurationList
- 914A4CA67FDE8C0182ABC1F7
+ 93C1E6C7EE5862DFF3EF045B
fileRef
- 3D338EA4712E7D7F08FD1D91
+ ADC9EE5821772CA9D4D7847D
isa
PBXBuildFile
- 921BF63E1BE68855FC2B6D21
+ 94572AB8BC1410FFEFF6FA8D
- fileRef
- A038FEB6F78FDBDB15F2D1CC
+ explicitFileType
+ archive.ar
+ includeInIndex
+ 0
isa
- PBXBuildFile
+ PBXFileReference
+ path
+ libPods-PocketForecastTests-Expecta.a
+ sourceTree
+ BUILT_PRODUCTS_DIR
- 925CD2DE998846801C32D1FD
+ 947854F892F6F70153989F9E
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.objc
+ sourcecode.c.h
name
- MKTUnsignedIntArgumentGetter.m
+ NSObject+TyphoonIntrospectionUtils.h
path
- Source/OCMockito/Helpers/ArgumentGetters/MKTUnsignedIntArgumentGetter.m
+ Source/Utils/NSObject+TyphoonIntrospectionUtils.h
sourceTree
<group>
- 927F2E2DDF860A1196F2AB8F
+ 948C5B432B7F896332E14AE3
+
+ buildActionMask
+ 2147483647
+ files
+
+ 15347842681CC0AFD6E100B2
+ 5DD4943063EF14FB1FE2FEB2
+
+ isa
+ PBXSourcesBuildPhase
+ runOnlyForDeploymentPostprocessing
+ 0
+
+ 949953EB1882950CCCB5617F
includeInIndex
1
@@ -10927,35 +11544,60 @@
lastKnownFileType
sourcecode.c.h
name
- TyphoonAssemblyDefinitionBuilder.h
+ TyphoonInjectionByRuntimeArgument.h
path
- Source/Factory/Block/TyphoonAssemblyDefinitionBuilder.h
+ Source/Definition/Injections/TyphoonInjectionByRuntimeArgument.h
sourceTree
<group>
- 92B270E0F72E92062C8BF869
+ 94AF5A4F363AA9649B0CD69F
- children
+ attributes
+
+ LastUpgradeCheck
+ 0510
+
+ buildConfigurationList
+ E456DDD0887F2F0F59E87C7E
+ compatibilityVersion
+ Xcode 3.2
+ developmentRegion
+ English
+ hasScannedForEncodings
+ 0
+ isa
+ PBXProject
+ knownRegions
- 077DC96EAE130E5B44C124AB
- 329113BCB55819FC94C24C95
- BAB72BF1F155F5496629A98E
- 3D7656857395C9B2CA630B1E
- B65D29A93710A93063BA364E
- 760216C8A99DB889AC8B3CA1
- B567BE4EA274B9D60392DC20
- AC0ADD7013E6BC4C7CE2B1F7
- 522A6BD7773FD0DA4FD6106E
- 2602201178E22E04FFE313BE
+ en
+
+ mainGroup
+ 1650260F5C9910622AF8E54A
+ productRefGroup
+ 22189BBABE17FF1386FFC866
+ projectDirPath
+
+ projectReferences
+
+ projectRoot
+
+ targets
+
+ 2FBCFF6F69B05B1C62DBAF59
+ 3E763831D9EE3703733E7770
+ 31446349C693FD4C940D7E04
+ D4486042FCDB17AA6B93D575
+ A09B79B881F22C425D60CA34
+ EA629E091DAA649B68E71FB0
+ 309DBA81EB404BC63DAED7B6
+ AA40588D1293189E877D8591
+ AAF0291AFD8E7AB166B15487
+ 682DEE61CEEDEFD605AD9713
+ 5435E2F75D9AF2AFF4987142
+ 8421D127EBCD885E2968409F
- isa
- PBXGroup
- name
- Pods
- sourceTree
- <group>
- 92BEDED29D6ECBE98E7AF578
+ 94D8AE391CA887480448ADBC
includeInIndex
1
@@ -10964,13 +11606,13 @@
lastKnownFileType
sourcecode.c.h
name
- MKTUnsignedShortReturnSetter.h
+ MKTLongReturnSetter.h
path
- Source/OCMockito/Helpers/ReturnValueSetters/MKTUnsignedShortReturnSetter.h
+ Source/OCMockito/Helpers/ReturnValueSetters/MKTLongReturnSetter.h
sourceTree
<group>
- 92F4AD2B544B562E049A5F24
+ 95C730F5AA3BFCF3FB3B3579
includeInIndex
1
@@ -10979,122 +11621,42 @@
lastKnownFileType
sourcecode.c.h
name
- HCStringStartsWith.h
+ HCIsInstanceOf.h
path
- Source/Library/Text/HCStringStartsWith.h
+ Source/Library/Object/HCIsInstanceOf.h
sourceTree
<group>
- 9304D178CF069801CEBE63E0
+ 95CE4F5570FB9AF70E56ABBA
fileRef
- 0BAD89EAC488FCA407BF7071
+ 7575BDCCD376072FB37FE1FC
isa
PBXBuildFile
- settings
-
- COMPILER_FLAGS
- -fobjc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
-
-
- 93183C63F70194245E89842F
-
- buildConfigurationList
- CC21516886A9BC6DE74E6157
- buildPhases
-
- 346B644013FE9F9F04128EA0
- B41B47B35DFF717A2E8D523B
- 3216BC8BB11559A1E5D9E100
-
- buildRules
-
- dependencies
-
- isa
- PBXNativeTarget
- name
- Pods-PocketForecastTests-OCHamcrest
- productName
- Pods-PocketForecastTests-OCHamcrest
- productReference
- 153DD79F6CBA865C41A7C6B0
- productType
- com.apple.product-type.library.static
- 933F02B5AA0D0C391240B5CE
+ 95DE0FA4DA9E60ED3713C5F2
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.objc
+ sourcecode.c.h
name
- EXPMatchers+conformTo.m
+ EXPMatchers+raise.h
path
- src/matchers/EXPMatchers+conformTo.m
+ src/matchers/EXPMatchers+raise.h
sourceTree
<group>
- 93950DBC42371C2AFA667AB1
-
- baseConfigurationReference
- A480D1210E9AE0BDB415105E
- buildSettings
-
- ALWAYS_SEARCH_USER_PATHS
- NO
- COPY_PHASE_STRIP
- YES
- DSTROOT
- /tmp/xcodeproj.dst
- GCC_PRECOMPILE_PREFIX_HEADER
- YES
- GCC_PREFIX_HEADER
- Target Support Files/Pods-PocketForecastTests-OCHamcrest/Pods-PocketForecastTests-OCHamcrest-prefix.pch
- INSTALL_PATH
- $(BUILT_PRODUCTS_DIR)
- IPHONEOS_DEPLOYMENT_TARGET
- 7.0
- OTHER_CFLAGS
-
- -DNS_BLOCK_ASSERTIONS=1
- $(inherited)
-
- OTHER_CPLUSPLUSFLAGS
-
- -DNS_BLOCK_ASSERTIONS=1
- $(inherited)
-
- OTHER_LDFLAGS
-
- OTHER_LIBTOOLFLAGS
-
- PRODUCT_NAME
- $(TARGET_NAME)
- PUBLIC_HEADERS_FOLDER_PATH
- $(TARGET_NAME)
- SDKROOT
- iphoneos
- SKIP_INSTALL
- YES
- VALIDATE_PRODUCT
- YES
-
- isa
- XCBuildConfiguration
- name
- Release
-
- 93B9B5A69AE7C760178A504C
+ 95F00D6A53B9606673B65CF6
fileRef
- 1411E9EB86FFAEEEEA318AD9
+ AF1AF7F4A4C162D0A4239D65
isa
PBXBuildFile
- 942C25DFCFED9288E5E00CB2
+ 9649E75800A864A5D92E5622
includeInIndex
1
@@ -11103,13 +11665,13 @@
lastKnownFileType
sourcecode.c.h
name
- MKTLongLongReturnSetter.h
+ EXPMatchers+beKindOf.h
path
- Source/OCMockito/Helpers/ReturnValueSetters/MKTLongLongReturnSetter.h
+ src/matchers/EXPMatchers+beKindOf.h
sourceTree
<group>
- 94470E0E520EDD8D4D91DAEB
+ 9656D02F577F03A1EB81B476
includeInIndex
1
@@ -11118,20 +11680,13 @@
lastKnownFileType
sourcecode.c.h
name
- TyphoonDefinition+Option.h
+ Collections+CustomInjection.h
path
- Source/Configuration/DefinitionOptionConfiguration/TyphoonDefinition+Option.h
+ Source/Definition/Internal/Collections+CustomInjection.h
sourceTree
<group>
- 947CDA6E7F14E81D02CFF1EC
-
- fileRef
- E37584DF6407C4E6C3E1531A
- isa
- PBXBuildFile
-
- 94AC5DDDB1ADCCCED998F12D
+ 965E191D8386C8C7A8AABB14
includeInIndex
1
@@ -11140,13 +11695,25 @@
lastKnownFileType
sourcecode.c.h
name
- HCCharReturnGetter.h
+ TyphoonOptionMatcher+Internal.h
path
- Source/Core/Helpers/ReturnValueGetters/HCCharReturnGetter.h
+ Source/Configuration/DefinitionOptionConfiguration/Matcher/TyphoonOptionMatcher+Internal.h
sourceTree
<group>
- 952342C8F74EE0E2CFE5059D
+ 96631CC7057B5DEF465DAFD0
+
+ fileRef
+ 49215298520885A7820AF7AE
+ isa
+ PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
+
+ 9668716E799AB4947FAF6E35
includeInIndex
1
@@ -11155,70 +11722,65 @@
lastKnownFileType
sourcecode.c.h
name
- TyphoonAssemblySelectorAdviser.h
+ HCSelfDescribing.h
path
- Source/Factory/Block/TyphoonAssemblySelectorAdviser.h
+ Source/Core/HCSelfDescribing.h
sourceTree
<group>
- 9559EB59EA4B344ED43718AC
-
- fileRef
- 1278815722298C801F226544
- isa
- PBXBuildFile
-
- 955C5A58817275DA4C9C6239
+ 9689EC7FECF588765F21837F
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.objc
+ text.xcconfig
path
- Pods-PocketForecastTests-OCHamcrest-dummy.m
+ Pods-PocketForecastTests-OCMockito.xcconfig
sourceTree
<group>
- 958894123C876DD3EFED513F
+ 969E4EE8123C45CD7D142F25
fileRef
- 846B7B4A2C71AD4F54295FE4
+ 0FC8956BA38FAD31A4E69D8F
isa
PBXBuildFile
settings
COMPILER_FLAGS
- -fobjc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+ -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
- 959C2760E44D30F59C0ADC62
+ 96BD230836C0CA9799047430
- explicitFileType
- archive.ar
includeInIndex
- 0
+ 1
isa
PBXFileReference
+ lastKnownFileType
+ sourcecode.c.objc
+ name
+ TyphoonAssemblyDefinitionBuilder.m
path
- libPods-PocketForecast-Typhoon.a
+ Source/Factory/Block/TyphoonAssemblyDefinitionBuilder.m
sourceTree
- BUILT_PRODUCTS_DIR
+ <group>
- 961A40D8C4DAFAABFF95E601
+ 96CB15A71E388CFF5BC1BA7E
fileRef
- AA0B325A507B07A3CA6A01B4
+ 2DE2E26BE7EB4FEBCF392F9C
isa
PBXBuildFile
settings
COMPILER_FLAGS
- -fobjc-arc -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+ -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
- 96224BB7CABEEA15D47CC054
+ 96CCB8980CE615EA4529CECB
includeInIndex
1
@@ -11226,14 +11788,12 @@
PBXFileReference
lastKnownFileType
sourcecode.c.objc
- name
- EXPMatchers+beLessThan.m
path
- src/matchers/EXPMatchers+beLessThan.m
+ Pods-PocketForecast-PaperFold-dummy.m
sourceTree
<group>
- 962D305B278FAC54326BAFF2
+ 96FA23FC8E121AA3AFC8800F
includeInIndex
1
@@ -11242,47 +11802,32 @@
lastKnownFileType
sourcecode.c.objc
name
- TyphoonTypeDescriptor.m
- path
- Source/TypeConversion/TyphoonTypeDescriptor.m
- sourceTree
- <group>
-
- 9639A0B4D5CC8F6EF4529086
-
- includeInIndex
- 1
- isa
- PBXFileReference
- lastKnownFileType
- sourcecode.c.h
- name
- PaperFoldNavigationController.h
+ HCIsTrueFalse.m
path
- PaperFold/PaperFold/PaperFold/PaperFoldNavigationController.h
+ Source/Library/Number/HCIsTrueFalse.m
sourceTree
<group>
- 96824E971CE12F08C0EC6558
+ 9749B4A2EDDD2F5553C0866E
fileRef
- 74618DE3D5A0C1AB289B3426
+ 8A0119C90CD678EAA80797E1
isa
PBXBuildFile
- 971FFA6FFE2CD0BF47CA4252
+ 974C19C5E91C90578C7054E9
fileRef
- 2162F4C9BD143BAC0A6AFD57
+ 67AD1568617B95A7E4E85255
isa
PBXBuildFile
settings
COMPILER_FLAGS
- -fobjc-arc -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+ -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
- 972FD2F0D1885FEA0DC4F6E3
+ 97C3D0CFAF32323D5ACAE47A
includeInIndex
1
@@ -11291,62 +11836,25 @@
lastKnownFileType
sourcecode.c.objc
name
- TyphoonInjectionByFactoryReference.m
+ HCRequireNonNilObject.m
path
- Source/Definition/Injections/TyphoonInjectionByFactoryReference.m
+ Source/Core/Helpers/HCRequireNonNilObject.m
sourceTree
<group>
- 9747C73040D83FB52F7D4B33
+ 97FBDAC6395A65FD42BC3ACC
- baseConfigurationReference
- 897C206E689D8067CF69262F
- buildSettings
-
- ALWAYS_SEARCH_USER_PATHS
- NO
- COPY_PHASE_STRIP
- NO
- DSTROOT
- /tmp/xcodeproj.dst
- GCC_DYNAMIC_NO_PIC
- NO
- GCC_OPTIMIZATION_LEVEL
- 0
- GCC_PRECOMPILE_PREFIX_HEADER
- YES
- GCC_PREFIX_HEADER
- Target Support Files/Pods-PocketForecast-PaperFold/Pods-PocketForecast-PaperFold-prefix.pch
- GCC_PREPROCESSOR_DEFINITIONS
-
- DEBUG=1
- $(inherited)
-
- GCC_SYMBOLS_PRIVATE_EXTERN
- NO
- INSTALL_PATH
- $(BUILT_PRODUCTS_DIR)
- IPHONEOS_DEPLOYMENT_TARGET
- 7.0
- OTHER_LDFLAGS
-
- OTHER_LIBTOOLFLAGS
-
- PRODUCT_NAME
- $(TARGET_NAME)
- PUBLIC_HEADERS_FOLDER_PATH
- $(TARGET_NAME)
- SDKROOT
- iphoneos
- SKIP_INSTALL
- YES
+ fileRef
+ 5B4BE2D468BD84800FD63686
+ isa
+ PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
- isa
- XCBuildConfiguration
- name
- Debug
- 976233DD1ACE7A37EFA3DD4B
+ 986236FFB9CBD3510D3C0738
includeInIndex
1
@@ -11355,13 +11863,13 @@
lastKnownFileType
sourcecode.c.h
name
- HCReturnValueGetter.h
+ TyphoonOptionMatcher.h
path
- Source/Core/Helpers/ReturnValueGetters/HCReturnValueGetter.h
+ Source/Configuration/DefinitionOptionConfiguration/Matcher/TyphoonOptionMatcher.h
sourceTree
<group>
- 97916AE08C74EE3BCD92B173
+ 98E36407875562351B8C5E1F
includeInIndex
1
@@ -11370,128 +11878,131 @@
lastKnownFileType
sourcecode.c.h
name
- TyphoonStartup.h
+ TyphoonPrimitiveTypeConverter.h
path
- Source/Configuration/Startup/TyphoonStartup.h
+ Source/TypeConversion/Converters/TyphoonPrimitiveTypeConverter.h
sourceTree
<group>
- 97AAE3424EAE48A204353A19
+ 98E4D3C39C978C1C82EAA0BD
+ includeInIndex
+ 1
isa
- PBXTargetDependency
- target
- 93183C63F70194245E89842F
- targetProxy
- F9A4BCF2E3C4B9603335B76B
+ PBXFileReference
+ lastKnownFileType
+ sourcecode.c.h
+ name
+ HCAllOf.h
+ path
+ Source/Library/Logical/HCAllOf.h
+ sourceTree
+ <group>
- 97AD65592F1F4B04808AB32F
+ 98E8A1C0E1B8E4F82A3C0503
fileRef
- 6DA6D09022E67FA6FCB588B7
+ 75B009F0052D1DD37AF9337A
isa
PBXBuildFile
settings
COMPILER_FLAGS
- -fobjc-arc -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+ -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
- 97BD456BAABEF0F31F4B52D2
+ 99409F6EAD53682F3372E8EA
fileRef
- D3DE641B7BD52F05C9D88007
+ 96BD230836C0CA9799047430
isa
PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
- 97CC0D7C230161F56CDB6179
+ 99656E9C0B245A511002AD2B
- includeInIndex
- 1
+ fileRef
+ DF960B63D0DDF9B42A782A8F
isa
- PBXFileReference
- lastKnownFileType
- sourcecode.c.h
- name
- MKTSelectorArgumentGetter.h
- path
- Source/OCMockito/Helpers/ArgumentGetters/MKTSelectorArgumentGetter.h
- sourceTree
- <group>
+ PBXBuildFile
- 97CD52B9850CF71AEFE79E14
+ 99715900C5624460EFC3207B
- containerPortal
- 66C2EBDD522B033360138729
+ fileRef
+ B9F73EB655E0B113A1D72498
isa
- PBXContainerItemProxy
- proxyType
- 1
- remoteGlobalIDString
- 72B8FFAC4B9F21FBC308992A
- remoteInfo
- Pods-PocketForecast-PaperFold
+ PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -fno-objc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
- 97DF5186E6E90C2E533E7CFA
+ 99B7DD72B1736479186ED94B
fileRef
- DA46753BD09AD6E16B0DF955
+ EA8DE1EFA0AD2939AF9C0F25
isa
PBXBuildFile
settings
COMPILER_FLAGS
- -fobjc-arc -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+ -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
- 97EF099C4B36F40FB84BD8E8
+ 99C723FE4D5E12D3D8ACEC8E
- includeInIndex
- 1
+ fileRef
+ 96CCB8980CE615EA4529CECB
isa
- PBXFileReference
- lastKnownFileType
- text.xcconfig
- path
- Pods-PocketForecast.release.xcconfig
- sourceTree
- <group>
+ PBXBuildFile
- 97FC981EC79C5CE936E1E663
+ 99D57DC18FE9C155DAFF7C62
fileRef
- 75D202EBD44A65A26082911C
+ 0DBB9CE06B3A9F93B66178AF
isa
PBXBuildFile
settings
COMPILER_FLAGS
- -fobjc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+ -fno-objc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
- 9837D6F86E7FC36DC22DD047
+ 9A47F77DCFAA092BA2A3A79B
+
+ fileRef
+ 015AACB2C2DB02E9D2222027
+ isa
+ PBXBuildFile
+
+ 9A8D89C98516FC03E7B2E965
fileRef
- 22C4E86D7FC88FFF45F7B49C
+ E5ADB3F6A930E64F39B1CD9D
isa
PBXBuildFile
- 984A8DCC35CAE69C9CCB62DE
+ 9AB5CD3F372B5E54813CB198
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.objc
+ sourcecode.c.h
name
- TyphoonInitialStoryboardResolver.m
+ NSInvocation+TCFUnwrapValues.h
path
- Source/ios/Storyboard/TyphoonInitialStoryboardResolver.m
+ Source/Factory/Internal/NSInvocation+TCFUnwrapValues.h
sourceTree
<group>
- 989324BCAAE23796E22395EE
+ 9AB7569B036A87B924AF9352
includeInIndex
1
@@ -11499,14 +12010,27 @@
PBXFileReference
lastKnownFileType
sourcecode.c.h
+ path
+ Pods-PocketForecastTests-environment.h
+ sourceTree
+ <group>
+
+ 9B13DDD7C1311DD2A0E76F27
+
+ includeInIndex
+ 1
+ isa
+ PBXFileReference
+ lastKnownFileType
+ sourcecode.c.objc
name
- EXPMatchers+beInstanceOf.h
+ MKTLongArgumentGetter.m
path
- src/matchers/EXPMatchers+beInstanceOf.h
+ Source/OCMockito/Helpers/ArgumentGetters/MKTLongArgumentGetter.m
sourceTree
<group>
- 98AE3248317BA42D04F24A01
+ 9B1D86E1D855155024698F63
includeInIndex
1
@@ -11515,25 +12039,32 @@
lastKnownFileType
sourcecode.c.h
name
- Typhoon.h
+ HCFloatReturnGetter.h
path
- Source/Typhoon.h
+ Source/Core/Helpers/ReturnValueGetters/HCFloatReturnGetter.h
sourceTree
<group>
- 990D2802EC59FA9CE8E2434C
+ 9B24E3B68F543CBE451866DB
+
+ fileRef
+ 4AB856C39AF6932971315521
+ isa
+ PBXBuildFile
+
+ 9B58E6C67855B9780AB386B0
fileRef
- 9D7AC84FF1A48822E8A08512
+ 02FA6C0741E23D11449C0B37
isa
PBXBuildFile
settings
COMPILER_FLAGS
- -fobjc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+ -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
- 994F8BF6210D40A9E5152881
+ 9BCF1C8BD5AD9CC6FD16B6A5
includeInIndex
1
@@ -11542,38 +12073,13 @@
lastKnownFileType
sourcecode.c.h
name
- NSArray+TyphoonManualEnumeration.h
+ HCIsNot.h
path
- Source/Utils/NSArray+TyphoonManualEnumeration.h
+ Source/Library/Logical/HCIsNot.h
sourceTree
<group>
- 99F49A6BF566860B1931F55E
-
- buildConfigurationList
- 45EC3CE10369D60125044AB1
- buildPhases
-
- BDB7C565E803E47126677C5F
- FF7C4665F59EFDB4C55E065F
- E324BDC2AE67C649A4C1E74A
-
- buildRules
-
- dependencies
-
- isa
- PBXNativeTarget
- name
- Pods-PocketForecast-Typhoon
- productName
- Pods-PocketForecast-Typhoon
- productReference
- 959C2760E44D30F59C0ADC62
- productType
- com.apple.product-type.library.static
-
- 9A00E780EDC833D4E04CE2DC
+ 9C1C632621A994FBBE41B9DF
includeInIndex
1
@@ -11582,56 +12088,42 @@
lastKnownFileType
sourcecode.c.objc
name
- HCUnsignedLongReturnGetter.m
+ HCBoolReturnGetter.m
path
- Source/Core/Helpers/ReturnValueGetters/HCUnsignedLongReturnGetter.m
+ Source/Core/Helpers/ReturnValueGetters/HCBoolReturnGetter.m
sourceTree
<group>
- 9A59DF3398CF12A376EFB15B
+ 9C3AF2ACFB17A06748ECA702
fileRef
- 8E9F201B312BC2A8A6AAF92A
+ EB1A0291CBB1BBB2BB1E0F22
isa
PBXBuildFile
- settings
-
- COMPILER_FLAGS
- -fobjc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
-
-
- 9AC7437D03FAF63ED3D007EF
-
- children
-
- 9FB7DBCCCC52F044367865E3
-
- isa
- PBXGroup
- name
- Frameworks
- sourceTree
- <group>
- 9AF585D2DC3C876EC0067479
+ 9C6281C0BEE608CF53CE254A
fileRef
- 171FAD71337179F83E396D4C
+ D28DCE6B0A7645F9E194CF94
isa
PBXBuildFile
- 9AFE0091F8FBC7DCD1845DE9
+ 9C7BD80C3AB23D7B78804471
includeInIndex
1
isa
PBXFileReference
+ lastKnownFileType
+ sourcecode.c.objc
+ name
+ HCGenericTestFailureHandler.m
path
- radialGeometry.c
+ Source/Core/Helpers/TestFailureHandlers/HCGenericTestFailureHandler.m
sourceTree
<group>
- 9B3525C50ABC6816A6D6D2CB
+ 9CAF9AFF5C9DE8354024E4F7
includeInIndex
1
@@ -11639,14 +12131,39 @@
PBXFileReference
lastKnownFileType
sourcecode.c.h
+ path
+ Pods-PocketForecastTests-Expecta-prefix.pch
+ sourceTree
+ <group>
+
+ 9CB0FA32A06DC6FF975F6758
+
+ fileRef
+ 88D095687C4178E6D83BDC11
+ isa
+ PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
+
+ 9CFE238C0CDA763B73F5394E
+
+ includeInIndex
+ 1
+ isa
+ PBXFileReference
+ lastKnownFileType
+ sourcecode.c.objc
name
- EXPMatchers+beFalsy.h
+ TyphoonCircularDependencyTerminator.m
path
- src/matchers/EXPMatchers+beFalsy.h
+ Source/Factory/Block/TyphoonCircularDependencyTerminator.m
sourceTree
<group>
- 9B3BFA1242B65AEC2B9ABE3C
+ 9D3CE6DF146D5BF79F3B7A60
includeInIndex
1
@@ -11655,171 +12172,127 @@
lastKnownFileType
sourcecode.c.h
name
- NSObject+PropertyInjection.h
+ TyphoonBundleResource.h
path
- Source/Utils/NSObject+PropertyInjection.h
+ Source/Configuration/Resource/TyphoonBundleResource.h
sourceTree
<group>
- 9B8EC419943C11B909DA5904
+ 9D88F3384441F03EC5D22608
fileRef
- 2E2C2CF8E2CA66346C1D0F1E
+ F46F33C407DD2E8E12F96E22
isa
PBXBuildFile
settings
COMPILER_FLAGS
- -fobjc-arc -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+ -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
- 9B97955E3B45634827CC032D
+ 9DE9B125E65D13CBCEB56CD7
- baseConfigurationReference
- 2319C460EE01E5E74FC2B309
- buildSettings
+ fileRef
+ 2CB29E8ED1879B5E5476A9D9
+ isa
+ PBXBuildFile
+ settings
- ALWAYS_SEARCH_USER_PATHS
- NO
- COPY_PHASE_STRIP
- YES
- DSTROOT
- /tmp/xcodeproj.dst
- GCC_PRECOMPILE_PREFIX_HEADER
- YES
- GCC_PREFIX_HEADER
- Target Support Files/Pods-PocketForecast-CKUITools/Pods-PocketForecast-CKUITools-prefix.pch
- INSTALL_PATH
- $(BUILT_PRODUCTS_DIR)
- IPHONEOS_DEPLOYMENT_TARGET
- 7.0
- OTHER_CFLAGS
-
- -DNS_BLOCK_ASSERTIONS=1
- $(inherited)
-
- OTHER_CPLUSPLUSFLAGS
-
- -DNS_BLOCK_ASSERTIONS=1
- $(inherited)
-
- OTHER_LDFLAGS
-
- OTHER_LIBTOOLFLAGS
-
- PRODUCT_NAME
- $(TARGET_NAME)
- PUBLIC_HEADERS_FOLDER_PATH
- $(TARGET_NAME)
- SDKROOT
- iphoneos
- SKIP_INSTALL
- YES
- VALIDATE_PRODUCT
- YES
+ COMPILER_FLAGS
+ -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
- isa
- XCBuildConfiguration
- name
- Release
- 9BBD6F1FA2AC80A083157E7F
+ 9E565C46C089FE14B8A9D3D9
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.objc
+ sourcecode.c.h
name
- HCIs.m
+ TyphoonPropertyInjection.h
path
- Source/Library/Decorator/HCIs.m
+ Source/Definition/Injections/TyphoonPropertyInjection.h
sourceTree
<group>
- 9BC9AE6CB5BF899C624645B6
+ 9E8FD7165F3ECE5DB9687E41
- fileRef
- 9EEC4EAF615F06E1FB8AC960
+ includeInIndex
+ 1
isa
- PBXBuildFile
- settings
-
- COMPILER_FLAGS
- -fobjc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
-
+ PBXFileReference
+ lastKnownFileType
+ sourcecode.c.h
+ name
+ EXPMatchers+raiseWithReason.h
+ path
+ src/matchers/EXPMatchers+raiseWithReason.h
+ sourceTree
+ <group>
- 9BDC169C21C8296937C45B1F
+ 9EE6B52B1FC6B0FE6560BE12
+ fileRef
+ 744DB94125D2664AFD6C30AD
isa
- PBXTargetDependency
- target
- FCC0C743343AEB4749672241
- targetProxy
- A4D3E3FBA8E1F8ED7768BF5B
+ PBXBuildFile
- 9BF074E9BAEAF99E355D6BD0
+ 9F15165663C589C9876C3B6D
fileRef
- EE8E3905E05837FAC6B226A8
+ 92C5849A373F9388A9EAAB0D
isa
PBXBuildFile
- 9BF2236FB159954BF5F03886
+ 9F60BF29703CD68CD66ADCBB
- fileRef
- 35CDED577270714778EB0E6F
+ includeInIndex
+ 1
isa
- PBXBuildFile
+ PBXFileReference
+ lastKnownFileType
+ sourcecode.c.h
+ name
+ HCWrapInMatcher.h
+ path
+ Source/Core/Helpers/HCWrapInMatcher.h
+ sourceTree
+ <group>
- 9C0A14FA2FF261FE17CB3782
+ 9F908A4AEB6BB7727554C205
fileRef
- B629CBA628ECF422E78A04DF
+ BB2141C0E2303511AFE5E691
isa
PBXBuildFile
settings
COMPILER_FLAGS
- -fobjc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+ -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
- 9C5005A19EB49C10741F95B8
+ 9FE6AECF23F1A046986D8102
fileRef
- F69BFB03EF4AED57D929454A
+ 291501F45D90BE8C355F8579
isa
PBXBuildFile
settings
COMPILER_FLAGS
- -fobjc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+ -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
- 9CFF51B34DAC12E9A77C7F2B
+ A028B804E597E927497CF809
- buildActionMask
- 2147483647
- files
-
- 6818C2BB13401E24F6801564
- 5CBCC03EAA537D816640EFEC
- EC555FC7743262E38FD2C491
- ED58972A2C2AA24CC6844C75
- A4E575E77D7CF27C99888FAE
- 0CD72BF7CF545D337E8D0069
- F67B00FCBDFCA5DF3D79F8CB
- 34DC1E33EF648E42A3EAEDAD
- 60DC88DA1BDFE4946CCA9169
- E3CC6B72277BEA05AD6D360B
-
+ fileRef
+ BCA93382656A0513A01968B0
isa
- PBXHeadersBuildPhase
- runOnlyForDeploymentPostprocessing
- 0
+ PBXBuildFile
- 9D4A93AEB397E5C7E100D25C
+ A03621938ABF30851F225A8D
includeInIndex
1
@@ -11828,40 +12301,43 @@
lastKnownFileType
sourcecode.c.objc
name
- TyphoonCollaboratingAssemblyProxy.m
+ HCDescribedAs.m
path
- Source/Factory/Block/TyphoonCollaboratingAssemblyProxy.m
+ Source/Library/Decorator/HCDescribedAs.m
sourceTree
<group>
- 9D7AC84FF1A48822E8A08512
+ A05D942522B1653B0D8AC3FE
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.objc
+ sourcecode.c.h
name
- MKTObjectReturnSetter.m
+ TyphoonWeakComponentsPool.h
path
- Source/OCMockito/Helpers/ReturnValueSetters/MKTObjectReturnSetter.m
+ Source/Factory/Pool/TyphoonWeakComponentsPool.h
sourceTree
<group>
- 9D7D03A7C2BD9250E8F7700A
+ A08A87259FDDC3C8A28F2526
- fileRef
- 371A12418776090932885974
+ includeInIndex
+ 1
isa
- PBXBuildFile
- settings
-
- COMPILER_FLAGS
- -fobjc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
-
+ PBXFileReference
+ lastKnownFileType
+ sourcecode.c.h
+ name
+ MKTPrimitiveArgumentMatching.h
+ path
+ Source/OCMockito/MKTPrimitiveArgumentMatching.h
+ sourceTree
+ <group>
- 9DC0605ED63C845AE126B499
+ A097E7CC2543533255DF344D
includeInIndex
1
@@ -11870,215 +12346,472 @@
lastKnownFileType
sourcecode.c.objc
name
- MKTPointerArgumentGetter.m
+ HCReturnTypeHandlerChain.m
path
- Source/OCMockito/Helpers/ArgumentGetters/MKTPointerArgumentGetter.m
+ Source/Core/Helpers/ReturnValueGetters/HCReturnTypeHandlerChain.m
sourceTree
<group>
- 9E39E63346899DF3D55EC731
+ A09B79B881F22C425D60CA34
+
+ buildConfigurationList
+ D3B69B6F4AA05EFB5EF3E952
+ buildPhases
+
+ 948C5B432B7F896332E14AE3
+ 6B746633341D03871D372B9D
+ 5CE8012EEAEEAC1505C05A5C
+
+ buildRules
+
+ dependencies
+
+ isa
+ PBXNativeTarget
+ name
+ Pods-PocketForecast-NSURL+QueryDictionary
+ productName
+ Pods-PocketForecast-NSURL+QueryDictionary
+ productReference
+ 51BF1169535EF30F36481AF1
+ productType
+ com.apple.product-type.library.static
+
+ A0FC8097538A193F4D214DDF
fileRef
- 2CF763A0E68326C6C80A8D78
+ 1EB4E6F9B98F8A68B1B5474C
isa
PBXBuildFile
settings
COMPILER_FLAGS
- -fobjc-arc -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+ -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
- 9E44CFEEE5DC22BE0BC26214
+ A11F731071D615EE80315C8A
+
+ children
+
+ 212E450E48D539EECBF74498
+ 0DBB9CE06B3A9F93B66178AF
+ 748307E4D80DBC897287E39E
+ 1F92BA73F2138740CF2FCB22
+ 25ADDFBD08C010C1A01611C6
+ 26689FED941FE5DA7ECF301B
+ 287D676715016C6A5B32EB3A
+ D28DCE6B0A7645F9E194CF94
+ 71410D0A202951B6AB5B9C69
+ B61C80B6CD5A2F07E446CFEE
+ 44BFAE6CE23A05A8DE1B8B32
+ B4CE1E2CA9997D9556A853C1
+ 389DE650606FDFD2B5D45722
+ 2972514166C06AC87A8E39E9
+ A9CC9057EE9049867BC1224E
+ B362FF78938348AC09085487
+ CBC768B700F071B4A5EFA42A
+ 54365D9107CFC793AFAE23FB
+ 1E920AACBFDBA5758779D851
+ 5AD8DDD290CCCE16590BDBED
+ B9BF7DDC6019657742C1B6BB
+ 732DED3FD2C3B93790738E57
+ AC164DBA5F03BB3EDAF39D41
+ EE9ED931673C9085F7896E5C
+ E580A3A42E40E6168B354485
+ 05718A8FD327B0ABEFBF3CC7
+ 33FA837E67131E1FD7D72379
+ 81902BD14D914CAF8F1E1E31
+ F4C35E745C19E5AA5AF5CB2D
+ 9649E75800A864A5D92E5622
+ A21CE3C5DA435C7E9873F2F1
+ 5F55252A9B9ACF8A282CC882
+ B9F73EB655E0B113A1D72498
+ 4A5583A81FE0D07883765D92
+ 79C1C2F1BC8874D0FE2FECBE
+ 7A092E94911D107F516DB003
+ 14C03EBD3FC4A3AA148B9636
+ 5CA15DE718414805441A2842
+ 85D71F7D113F8445388256A1
+ 2DEC1CC62F015970ECDAE110
+ 458701F4D48746F45BF400E0
+ 4F591986BE2787E7C9B6E8EF
+ 66F14B004450C33C52C62E80
+ 91698B71A06077A36593413E
+ 5292AF5F158767E28D77DD9B
+ 7066C30F35CDBAB3312DE97E
+ 6ED0BECDB7C9D21EF133AB15
+ 28066E6570EC4EEC6FF506F5
+ 6D3408E1DB0242BAF6933D2C
+ 92F62273F2AD35F7D3E57FB9
+ FB849AD7B3E47DC26E89D461
+ CFB22A1CCBF2E45D747D1EDC
+ 0C7C2103EF761103D3FE3D99
+ 015AACB2C2DB02E9D2222027
+ 676610CF3183AFA630BC3123
+ 771CAE826894210CB9BF5B34
+ BBAC57E55C4DDBA203912AF9
+ 95DE0FA4DA9E60ED3713C5F2
+ 704F0128607CD6F3F343B835
+ 9E8FD7165F3ECE5DB9687E41
+ AEEB2C554A13F0C3F8EED630
+ 6B67518E6329CA33B1E58827
+ FC47F0D761096F2844441A06
+ E6EB648DD55AAE6458CFA2AE
+ B98E52439DADFB5D3A21FD37
+ 31C60DC3F2443CC01A6BE227
+ 88E16F150A091F2CBCB3437E
+ B56A671F1DAA307C47E3D147
+ 69CFB9846C215F3A326B4646
+ 48876D62DF323E361A3FCC48
+ D701C0DA94CC9F282FEF8217
+ 833A82F5EDF136D28661D18B
+ E09ECABE7EB190A120339AF8
+
+ isa
+ PBXGroup
+ name
+ Expecta
+ path
+ Expecta
+ sourceTree
+ <group>
+
+ A163CEAFD96C1D6E4B7AD33B
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.h
+ sourcecode.c.objc
name
- TyphoonAssembly+TyphoonAssemblyFriend.h
+ MKTExecutesBlock.m
path
- Source/Factory/Block/TyphoonAssembly+TyphoonAssemblyFriend.h
+ Source/OCMockito/MKTExecutesBlock.m
sourceTree
<group>
- 9E67C24DCCD7BE560BBCCBFC
+ A189AD3A42E5C7BCBD000D2C
- baseConfigurationReference
- 3D4DE702B0299E029DD8AEAC
- buildSettings
-
- ALWAYS_SEARCH_USER_PATHS
- NO
- COPY_PHASE_STRIP
- NO
- DSTROOT
- /tmp/xcodeproj.dst
- GCC_DYNAMIC_NO_PIC
- NO
- GCC_OPTIMIZATION_LEVEL
- 0
- GCC_PRECOMPILE_PREFIX_HEADER
- YES
- GCC_PREPROCESSOR_DEFINITIONS
-
- DEBUG=1
- $(inherited)
-
- GCC_SYMBOLS_PRIVATE_EXTERN
- NO
- INSTALL_PATH
- $(BUILT_PRODUCTS_DIR)
- IPHONEOS_DEPLOYMENT_TARGET
- 7.0
- OTHER_LDFLAGS
-
- OTHER_LIBTOOLFLAGS
-
- PRODUCT_NAME
- $(TARGET_NAME)
- PUBLIC_HEADERS_FOLDER_PATH
- $(TARGET_NAME)
- SDKROOT
- iphoneos
- SKIP_INSTALL
- YES
-
+ children
+
+ 4C259839A246407B42A8AD34
+
isa
- XCBuildConfiguration
+ PBXGroup
name
- Debug
+ Frameworks
+ sourceTree
+ <group>
+
+ A1ECCE0C42A1B7A4FE6C022E
+
+ fileRef
+ DBE641793358F374CFDBEAC7
+ isa
+ PBXBuildFile
- 9E882DFDADC0F59722AB97F2
+ A21CE3C5DA435C7E9873F2F1
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.h
+ sourcecode.c.objc
+ name
+ EXPMatchers+beKindOf.m
path
- UIColor+CKUITools.h
+ src/matchers/EXPMatchers+beKindOf.m
sourceTree
<group>
- 9EDF171E30294879B574B039
+ A29D1155F48BCA80977F4ED2
+
+ includeInIndex
+ 1
+ isa
+ PBXFileReference
+ lastKnownFileType
+ sourcecode.c.objc
+ name
+ MKTOngoingStubbing.m
+ path
+ Source/OCMockito/MKTOngoingStubbing.m
+ sourceTree
+ <group>
+
+ A2C2E3DA752B79FB490E8355
fileRef
- F96874B365DB6A7E4A715CA1
+ 1DFDBF4B58FB6EFCB7A15D47
isa
PBXBuildFile
- 9EEC4EAF615F06E1FB8AC960
+ A3896F332486FF51BF494F33
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.objc
- name
- MKTClassReturnSetter.m
+ text.plist.xml
path
- Source/OCMockito/Helpers/ReturnValueSetters/MKTClassReturnSetter.m
+ Pods-PocketForecastTests-acknowledgements.plist
sourceTree
<group>
- 9F009F3EFD7DA718589A9840
+ A3B27D005ECD3B9CA6994F52
fileRef
- 9039021B63EBCF27258B6282
+ 56ECA0E076E4679D3CCD7C78
isa
PBXBuildFile
settings
COMPILER_FLAGS
- -fobjc-arc -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+ -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
- 9F370E8BE9EA8AC858A3AA34
+ A3C0DE4D0BADF4D6728318A7
fileRef
- DACCCB69E939BAB7B9523B0B
+ 1609EC09DE70CD1BF77431FC
isa
PBXBuildFile
settings
COMPILER_FLAGS
- -fobjc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+ -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
- 9F600815320D37BC0C21012A
+ A3C49E6A920C0965B8352346
+
+ isa
+ PBXTargetDependency
+ name
+ Pods-PocketForecastTests-OCHamcrest
+ target
+ 5435E2F75D9AF2AFF4987142
+ targetProxy
+ 58458D599115DCED1F1BA1CA
+
+ A3CCC4DEB2BD45A60A12C439
+
+ buildActionMask
+ 2147483647
+ files
+
+ 77008F9164FB1643B7FC5BD9
+
+ isa
+ PBXFrameworksBuildPhase
+ runOnlyForDeploymentPostprocessing
+ 0
+
+ A3D1ADB49859DB45E43273D8
+
+ fileRef
+ 1BE29746F1970645FBF61F80
+ isa
+ PBXBuildFile
+
+ A3FF522DCD5BB3E3A38FE904
+
+ fileRef
+ C4EEC30373F52F373AE3ADA8
+ isa
+ PBXBuildFile
+
+ A40BEF411D9EC7AE9BAAF469
fileRef
- C4D4921D35D50C1639930997
+ 5B10344B01CED6A1B1C08613
isa
PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
- 9F76CB47EA446D01FDD0D626
+ A410E31EACB8C5F660D3B467
fileRef
- 42EDCDDB40ED9B65C0F3524B
+ E8D391852C284C75C882615E
isa
PBXBuildFile
settings
COMPILER_FLAGS
- -fobjc-arc -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+ -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
- 9FB6105A8D48E16569D2DB5A
+ A42D8EEE1BD84EF236BEF98D
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- text
+ sourcecode.c.objc
+ name
+ MultiFoldView.m
path
- Pods-PocketForecastTests-acknowledgements.markdown
+ PaperFold/PaperFold/PaperFold/MultiFoldView.m
sourceTree
<group>
- 9FB7DBCCCC52F044367865E3
+ A4B7E3F4AEEBE38E917DFE9B
- children
+ fileRef
+ 9AB5CD3F372B5E54813CB198
+ isa
+ PBXBuildFile
+
+ A4E517561FA070F62DA183CD
+
+ fileRef
+ 9222B43166414D4B8398D965
+ isa
+ PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
+
+ A4F9291009415001CCEB12A6
+
+ fileRef
+ E543500769C63C6CF458F118
+ isa
+ PBXBuildFile
+
+ A5583A807BCDD074F01F07DA
+
+ buildActionMask
+ 2147483647
+ files
- 7F8FE144EF3E051077997C03
- C0A461F0F00297326563EE07
- DE35AEEAF54569597B3CE973
+ 0D972C1C591577461C97F17F
+ C02C7D28EF68FFB8AE8F1F32
+ 47F7AADCC52177368731A521
+ F73764DFB325063E6888C342
+ 2E22359C14E729F085C32D2B
+ 488BD6C892E0B575CCEC65E8
+ 1739650EEFBC4D8BDDABA413
+ A9EC41F078BED8C7B09B17FD
+ 440546376A3F7B23CD6FA03A
+ 51443B24F16BCF4138B6B2A5
+ FEB6AC2B36F26FF2BB77897D
+ B2BE15EF7E7C20547DA2E347
+ 1D87C05E40CFF67AF6FE7181
+ 0CDBF8245E0D716870F1A3C3
+ 1279346EFFFCEA7E48404974
+ F8325E8A77C5DE637DCB0152
+ 10AF86AB215E5B84C37F0093
+ DEEC0C2269178C6B2263416F
+ 8132BA20919BA87DB97380AD
+ 9B58E6C67855B9780AB386B0
+ 70781FA1493CE59168557105
+ 5F305446301D3F1B4EAEE776
+ 11663CED373423A7B71BD2A2
+ 056129FFF1769264814D68C7
+ 79000B48906C731D6204C826
+ 47486EDF03506ACCC8190853
+ 299F1F1E44CAE8F936623D76
+ D597A06E813666B9FA4646D9
+ AFDD3EF1CB2B9D96E888C66B
+ 7EBDDF97520B00B7461AB1B0
+ 3C66B921AF4E0357B717A7BA
+ 4CF39629A49E2DEDC30655A0
+ 55E36CFD8D1CEC7BB542CDDD
+ B48D67379FFEDDFF00257013
+ 4A3BE6D0E30C8C2CB15F5A75
+ 271983162A34F5FD0C6CBD63
+ 87A9D86F1EBDA492992C78C4
+ 4BDCBA9559A8F85F3FAD6568
+ E0204977CB86FC495ADED3A3
+ CE4366C2595D927EDBC92D55
+ 9DE9B125E65D13CBCEB56CD7
+ 8E958EE732241882D2D28D1A
+ DC06050E2AFA74D206476427
+ 1EA6C56D318497711D50BBB8
+ A0FC8097538A193F4D214DDF
+ C01EDB9848672A1DAF4335CF
+ D54B2332698DFB1AD49C01F1
+ B890ADA590345CA656EC40FC
+ 5FCCED956926E0F11C010936
+ 4E830C8113FE7964570FB802
+ EC7BE70976EDD479A7D63C9E
+ 1A317A79C844C2A9916D19D9
+ B97A8A2C660F6B6C75DCFA92
+ E423E5B8EC0E8894CD93313A
+ 86D984E48455EBD468EB4C5D
+ 0156F285B21293E0E9C79354
+ E1474AA15AF4890794D109F9
+ 8E85A976C048925279C6951C
+ 556A669E081284938DE70396
+ 22234A2EC3F87EE3224B0A43
+ CB48297854B6154014B83BBC
+ B6B7230F30DEB17F35196B25
+ CBE85836561C07037BBE2188
+ A77B6EA992AC0969E398338A
+ 8D6007D7C5A8B4D33FF9BB9D
+ 5FC83F9EB01706919FDECFB7
+ EFD87CAEA2FCC90442AB9370
+ 73489BA8026DB0DDBE8A56EA
+ 60C0551F94C610F1E4A5094E
+ 96CB15A71E388CFF5BC1BA7E
+ 25E16CA41203FED62F139126
+ 9D88F3384441F03EC5D22608
+ FACB52DBD523DB631DF0A754
isa
- PBXGroup
- name
- iOS
- sourceTree
- <group>
+ PBXSourcesBuildPhase
+ runOnlyForDeploymentPostprocessing
+ 0
+
+ A5704A72FE11C026EDE66417
+
+ fileRef
+ CD60BA981BFCFAB1F8A13C68
+ isa
+ PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
+
+ A63236DF8EEB76547480FD3C
+
+ fileRef
+ 9E565C46C089FE14B8A9D3D9
+ isa
+ PBXBuildFile
- 9FF775C16817AD9CE2996451
+ A6CCB62673CB51AE48FDF7FD
fileRef
- D119E8DC0BE8E57E7BF88507
+ CBD59C75C5E1160AC14DB4DE
isa
PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
- 9FFAA0A0891AA7B721F16D33
+ A6FADE23EDD47E0596780A7F
- includeInIndex
- 1
+ fileRef
+ CD8F20B7437907578207C72E
isa
- PBXFileReference
- lastKnownFileType
- sourcecode.c.objc
- name
- MultiFoldView.m
- path
- PaperFold/PaperFold/PaperFold/MultiFoldView.m
- sourceTree
- <group>
+ PBXBuildFile
- A038FEB6F78FDBDB15F2D1CC
+ A741FBC9C1D5220BF382E0FF
includeInIndex
1
@@ -12087,32 +12820,47 @@
lastKnownFileType
sourcecode.c.h
name
- EXPDefines.h
+ TyphoonDefinition.h
path
- src/EXPDefines.h
+ Source/Definition/TyphoonDefinition.h
sourceTree
<group>
- A04F5FCB2CCCCACFC70FB69F
-
- fileRef
- 7F8FE144EF3E051077997C03
- isa
- PBXBuildFile
-
- A070AC9F1977CD69837AD7AB
+ A77B6EA992AC0969E398338A
fileRef
- 285C6EAE32B22A2D4E5E22E3
+ 5F7E5B7ED73014B6E9838119
isa
PBXBuildFile
settings
COMPILER_FLAGS
- -fobjc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+ -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
- A081CF46EA479DC9B9C41967
+ A79EA3266E36D5C542A3FE88
+
+ buildActionMask
+ 2147483647
+ files
+
+ 5AEB5E76F9BC1030C5BD2494
+ 8404EA2CD2996CD96A0855F6
+ D828F62E9311CA2A8974249C
+ 730944313BFA1E0798B5477D
+ BC2BE743D41CFA9DB4723380
+ 0D975F2FED845CBD8FD47786
+ BE398CFE5EBC698299C002DE
+ 9A8D89C98516FC03E7B2E965
+ 45A6B06E065AA8C654E04964
+ 6CCF3654B02FF9515B076C83
+
+ isa
+ PBXHeadersBuildPhase
+ runOnlyForDeploymentPostprocessing
+ 0
+
+ A7A55E642EA8362A2B3BCA35
includeInIndex
1
@@ -12121,25 +12869,25 @@
lastKnownFileType
sourcecode.c.h
name
- MKTUnsignedIntArgumentGetter.h
+ HCThrowsException.h
path
- Source/OCMockito/Helpers/ArgumentGetters/MKTUnsignedIntArgumentGetter.h
+ Source/Library/Object/HCThrowsException.h
sourceTree
<group>
- A0854561DDE7397A48555F0B
+ A7B4E33323C2435CB0AB927A
fileRef
- 8214D7A64074FC83FD3FE2A2
+ B54DF7A7D15D5B1DF6D4F652
isa
PBXBuildFile
settings
COMPILER_FLAGS
- -fobjc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+ -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
- A0B66FA14196E9757A1D79E2
+ A7D073A88619E65B8A5B122C
includeInIndex
1
@@ -12148,47 +12896,40 @@
lastKnownFileType
sourcecode.c.h
name
- EXPMatchers+beTruthy.h
+ TyphoonAbstractDetachableComponentFactoryPostProcessor.h
path
- src/matchers/EXPMatchers+beTruthy.h
+ Source/Configuration/TyphoonAbstractDetachableComponentFactoryPostProcessor.h
sourceTree
<group>
- A0C52350B47B15A2C17C1F36
+ A81F62887155C7101030AE62
- includeInIndex
- 1
+ buildActionMask
+ 2147483647
+ files
+
+ 03CAFA9991313A12C3754900
+
isa
- PBXFileReference
- lastKnownFileType
- sourcecode.c.h
- name
- TyphoonSelector.h
- path
- Source/Utils/TyphoonSelector.h
- sourceTree
- <group>
+ PBXSourcesBuildPhase
+ runOnlyForDeploymentPostprocessing
+ 0
- A10DD4C366FE6B445D634536
+ A888715600FE0CB43F4534F3
fileRef
- 35CCEBEF9958083293396923
+ 8AE27320A510065369322189
isa
PBXBuildFile
- A19AC675071C820E5D823A93
+ A8963C2AF51D0B82D2DBDC65
fileRef
- 78AED80878DA4C18D90913C4
+ 709FA9C708BCD8C2B8EE8505
isa
PBXBuildFile
- settings
-
- COMPILER_FLAGS
- -fobjc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
-
- A1CD728FFB1F9973E19707AB
+ A8CF5EBA53C3E4F61A9C0B47
includeInIndex
1
@@ -12197,93 +12938,48 @@
lastKnownFileType
sourcecode.c.objc
name
- HCDescribedAs.m
+ HCUnsignedShortReturnGetter.m
path
- Source/Library/Decorator/HCDescribedAs.m
+ Source/Core/Helpers/ReturnValueGetters/HCUnsignedShortReturnGetter.m
sourceTree
<group>
- A201C4AC15FB19A99DC22F13
+ A930938562447A517B7F11C6
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.h
- name
- NSInvocation+TCFUnwrapValues.h
+ text.xcconfig
path
- Source/Factory/Internal/NSInvocation+TCFUnwrapValues.h
+ Pods-PocketForecastTests.release.xcconfig
sourceTree
<group>
- A22F37D046E2CB85A6C3D5FD
+ A936A4E5CCCAF6F222340E13
- baseConfigurationReference
- 897C206E689D8067CF69262F
- buildSettings
-
- ALWAYS_SEARCH_USER_PATHS
- NO
- COPY_PHASE_STRIP
- YES
- DSTROOT
- /tmp/xcodeproj.dst
- GCC_PRECOMPILE_PREFIX_HEADER
- YES
- GCC_PREFIX_HEADER
- Target Support Files/Pods-PocketForecast-PaperFold/Pods-PocketForecast-PaperFold-prefix.pch
- INSTALL_PATH
- $(BUILT_PRODUCTS_DIR)
- IPHONEOS_DEPLOYMENT_TARGET
- 7.0
- OTHER_CFLAGS
-
- -DNS_BLOCK_ASSERTIONS=1
- $(inherited)
-
- OTHER_CPLUSPLUSFLAGS
-
- -DNS_BLOCK_ASSERTIONS=1
- $(inherited)
-
- OTHER_LDFLAGS
-
- OTHER_LIBTOOLFLAGS
-
- PRODUCT_NAME
- $(TARGET_NAME)
- PUBLIC_HEADERS_FOLDER_PATH
- $(TARGET_NAME)
- SDKROOT
- iphoneos
- SKIP_INSTALL
- YES
- VALIDATE_PRODUCT
- YES
-
+ fileRef
+ 27F56194E49435F303A5C11B
isa
- XCBuildConfiguration
- name
- Release
+ PBXBuildFile
- A25A09E49BF65E0ECCE52C2F
+ A9410FBC9F604F417126676F
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.objc
+ sourcecode.c.h
name
- HCIsInstanceOf.m
+ HCUnsignedLongReturnGetter.h
path
- Source/Library/Object/HCIsInstanceOf.m
+ Source/Core/Helpers/ReturnValueGetters/HCUnsignedLongReturnGetter.h
sourceTree
<group>
- A27E3985A84EC14A2A77AFE0
+ A9C585440F329CDFE936846A
includeInIndex
1
@@ -12292,25 +12988,28 @@
lastKnownFileType
sourcecode.c.objc
name
- HCAssertThat.m
+ MKTCapturingMatcher.m
path
- Source/Core/HCAssertThat.m
+ Source/OCMockito/MKTCapturingMatcher.m
sourceTree
<group>
- A2B15715446DAEB125183558
+ A9CC9057EE9049867BC1224E
- fileRef
- 554DF16FDAF5174B35F85C1A
+ includeInIndex
+ 1
isa
- PBXBuildFile
- settings
-
- COMPILER_FLAGS
- -fobjc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
-
+ PBXFileReference
+ lastKnownFileType
+ sourcecode.c.h
+ name
+ EXPMatchers.h
+ path
+ src/matchers/EXPMatchers.h
+ sourceTree
+ <group>
- A2CCFBBD62251301E840B2C9
+ A9E527AC46EB6F998C82BA65
includeInIndex
1
@@ -12319,82 +13018,69 @@
lastKnownFileType
sourcecode.c.h
name
- MKTOngoingStubbing.h
+ HCIsEqualIgnoringCase.h
path
- Source/OCMockito/MKTOngoingStubbing.h
+ Source/Library/Text/HCIsEqualIgnoringCase.h
sourceTree
<group>
- A31AE3D8C56E5D0FD57CB151
+ A9EC41F078BED8C7B09B17FD
fileRef
- 3BF94B06A28D33CAF7B0BD9A
+ B8DC1CBC4682ADCF7CFC1186
isa
PBXBuildFile
settings
COMPILER_FLAGS
- -fobjc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+ -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
- A31E835E346DDE5C03E0F4AE
+ AA372DAB246C553FBF2C5E4D
fileRef
- CA2CABD1017958D6B0039B1C
+ 791005BF3061B0D3E6D654FF
isa
PBXBuildFile
- settings
-
- COMPILER_FLAGS
- -fobjc-arc -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
-
-
- A39DD9FFF316AE942523AC21
-
- includeInIndex
- 1
- isa
- PBXFileReference
- lastKnownFileType
- sourcecode.c.h
- name
- TyphoonInjectionByCollection.h
- path
- Source/Definition/Injections/TyphoonInjectionByCollection.h
- sourceTree
- <group>
- A3C128E9DA7AB7DB2346D58F
+ AA40588D1293189E877D8591
- includeInIndex
- 1
+ buildConfigurationList
+ B00917CBCAE8FB87907AAF91
+ buildPhases
+
+ F823C317DA6FC046B38688C8
+ B4B81A2E8E5F1ABA1C14BCF6
+ 3214EAD410837ECD5877E952
+
+ buildRules
+
+ dependencies
+
isa
- PBXFileReference
- lastKnownFileType
- sourcecode.c.objc
+ PBXNativeTarget
name
- MKTReturnValueSetter.m
- path
- Source/OCMockito/Helpers/ReturnValueSetters/MKTReturnValueSetter.m
- sourceTree
- <group>
+ Pods-PocketForecast-Typhoon
+ productName
+ Pods-PocketForecast-Typhoon
+ productReference
+ 2C47524403C90654EFA5D1D6
+ productType
+ com.apple.product-type.library.static
- A42B4135171DB8B049F61545
+ AA96E0CB48DCF9C5B3863EC4
- includeInIndex
- 1
+ fileRef
+ FC47F0D761096F2844441A06
isa
- PBXFileReference
- lastKnownFileType
- sourcecode.c.h
- name
- TyphoonDefinition+InstanceBuilder.h
- path
- Source/Definition/Internal/TyphoonDefinition+InstanceBuilder.h
- sourceTree
- <group>
+ PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -fno-objc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
- A43679B587807744C367F3EE
+ AAD2185F5011CB60702C45F7
includeInIndex
1
@@ -12403,56 +13089,71 @@
lastKnownFileType
sourcecode.c.objc
name
- TyphoonIntrospectionUtils.m
+ HCTestFailure.m
path
- Source/Utils/TyphoonIntrospectionUtils.m
+ Source/Core/Helpers/TestFailureHandlers/HCTestFailure.m
sourceTree
<group>
- A44BFF917BC27019C41F15D4
+ AAF0291AFD8E7AB166B15487
- includeInIndex
- 1
+ buildConfigurationList
+ B176715EE3919913EFD46349
+ buildPhases
+
+ A81F62887155C7101030AE62
+ D5BC24A16D163A1B504A49A4
+
+ buildRules
+
+ dependencies
+
+ E122EDE9F756ABFC15DB8F4D
+ A3C49E6A920C0965B8352346
+ 83A2CC03E48936840DED5974
+
isa
- PBXFileReference
- lastKnownFileType
- sourcecode.c.objc
+ PBXNativeTarget
name
- HCUnsignedIntReturnGetter.m
- path
- Source/Core/Helpers/ReturnValueGetters/HCUnsignedIntReturnGetter.m
- sourceTree
- <group>
+ Pods-PocketForecastTests
+ productName
+ Pods-PocketForecastTests
+ productReference
+ 4345D1EE47EDF85E37422BB7
+ productType
+ com.apple.product-type.library.static
- A4535EA3E9CFE3997F7B849D
+ AAFBF6998D776A4493102E5C
fileRef
- B30F8F417E7480B7A492ACB1
+ 25F334970C78EDAED5971CA7
isa
PBXBuildFile
- settings
-
- COMPILER_FLAGS
- -fobjc-arc -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
-
- A480D1210E9AE0BDB415105E
+ AB052938D8F883D9937ABC9C
- includeInIndex
- 1
+ fileRef
+ C595E916FAD41448103AE624
isa
- PBXFileReference
- lastKnownFileType
- text.xcconfig
- path
- Pods-PocketForecastTests-OCHamcrest-Private.xcconfig
- sourceTree
- <group>
+ PBXBuildFile
+
+ AB08265878D04CDE0D71508E
+
+ buildActionMask
+ 2147483647
+ files
+
+ 9339A993A119F46A76277A02
+
+ isa
+ PBXFrameworksBuildPhase
+ runOnlyForDeploymentPostprocessing
+ 0
- A4BAE351D85B3B5714D2A95B
+ AB157C3D5EFE5048A562F1F4
fileRef
- 96224BB7CABEEA15D47CC054
+ 6C29038D2ED98C9F3B3FCB08
isa
PBXBuildFile
settings
@@ -12461,112 +13162,96 @@
-w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
- A4D3E3FBA8E1F8ED7768BF5B
-
- containerPortal
- 66C2EBDD522B033360138729
- isa
- PBXContainerItemProxy
- proxyType
- 1
- remoteGlobalIDString
- FCC0C743343AEB4749672241
- remoteInfo
- Pods-PocketForecastTests-Expecta
-
- A4E575E77D7CF27C99888FAE
+ AB386614536A54CD029771A4
fileRef
- 9639A0B4D5CC8F6EF4529086
+ 329DCC5DC3FE0B0FAED72928
isa
PBXBuildFile
- A4F11A583BDE8576271AA1B5
+ AB87E858ADCD4B8068C893A8
fileRef
- 30BA3E3F4385D37BDEC60226
+ 1AB10823C118B15B7D22E5FB
isa
PBXBuildFile
settings
COMPILER_FLAGS
- -fobjc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+ -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
- A5071ED000718E71AA7821F6
+ ABA459D283DF6D9A19A6138E
- fileRef
- 5317A30986F4B6C6F20E7292
+ includeInIndex
+ 1
isa
- PBXBuildFile
+ PBXFileReference
+ lastKnownFileType
+ sourcecode.c.objc
+ name
+ MKTLongReturnSetter.m
+ path
+ Source/OCMockito/Helpers/ReturnValueSetters/MKTLongReturnSetter.m
+ sourceTree
+ <group>
- A5398A51334EA71B12717D19
+ ABCE916AD1831EDBDB1794F7
fileRef
- DE09BCD8815012A677B7E271
+ DFF8E7F66E786A7648DEC9C0
isa
PBXBuildFile
- A56DFE8FF4E4B0DEF8E47B3C
+ AC164DBA5F03BB3EDAF39D41
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.h
+ sourcecode.c.objc
name
- TyphoonAbstractDetachableComponentFactoryPostProcessor.h
+ EXPMatchers+beGreaterThanOrEqualTo.m
path
- Source/Configuration/TyphoonAbstractDetachableComponentFactoryPostProcessor.h
+ src/matchers/EXPMatchers+beGreaterThanOrEqualTo.m
sourceTree
<group>
- A5B1ABEFEDBC33C8A4D00735
+ AC811DCDCC2AFDCDF5C496A8
fileRef
- 36C500260A2883F9DAC110BE
+ 7687ADC80230C7568FDB67E5
isa
PBXBuildFile
- settings
-
- COMPILER_FLAGS
- -fobjc-arc -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
-
- A60D44B2931655ED015C793F
+ ACCD933006B566C9B10D70AB
fileRef
- C4F0C10696A3905B4A89E0E7
+ 9B1D86E1D855155024698F63
isa
PBXBuildFile
- A651022DDA9FC5935CE2BFA9
+ AD90FF79B56D5003CD31B9B5
fileRef
- E2FD0E43B32E0BA882752C0E
+ 6D3408E1DB0242BAF6933D2C
isa
PBXBuildFile
settings
COMPILER_FLAGS
- -fobjc-arc -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+ -fno-objc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
- A66C29DA7812541104913A4D
+ ADC67AA4DC98BCED59DA7B99
- includeInIndex
- 1
+ fileRef
+ F3A77ABFD33566283A90E0E2
isa
- PBXFileReference
- name
- swipe_guide_right.png
- path
- PaperFold/PaperFold/PaperFold/PaperFoldResources.bundle/swipe_guide_right.png
- sourceTree
- <group>
+ PBXBuildFile
- A68C158701617AC90DB6375A
+ ADC9EE5821772CA9D4D7847D
includeInIndex
1
@@ -12575,25 +13260,27 @@
lastKnownFileType
sourcecode.c.h
name
- MKTTestLocation.h
+ TyphoonInjectionByDictionary.h
path
- Source/OCMockito/MKTTestLocation.h
+ Source/Definition/Injections/TyphoonInjectionByDictionary.h
sourceTree
<group>
- A69BF1E4EF194947A3CAD3EA
+ ADD281A4134AC1B35706E088
fileRef
- 3DCF02AE6552261CDC241AAE
+ A9CC9057EE9049867BC1224E
+ isa
+ PBXBuildFile
+
+ ADFF378F3C9821BBB046C313
+
+ fileRef
+ E403ED8286A634DABD4D73E7
isa
PBXBuildFile
- settings
-
- COMPILER_FLAGS
- -fobjc-arc -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
-
- A6C90643AE3E42FFBA744124
+ AEBCE6F65A0D9C907B6003F5
includeInIndex
1
@@ -12602,56 +13289,164 @@
lastKnownFileType
sourcecode.c.h
name
- TyphoonPassThroughTypeConverter.h
+ MKTStubbedInvocationMatcher.h
path
- Source/TypeConversion/Converters/TyphoonPassThroughTypeConverter.h
+ Source/OCMockito/MKTStubbedInvocationMatcher.h
sourceTree
<group>
- A6F51DEFAD79C9B79A3B0855
-
- fileRef
- E37574F8AF01C3593A60CDC2
- isa
- PBXBuildFile
-
- A70DA019EA36DC93A2147B52
-
- fileRef
- 02A240D2937D4DB10DA9C73E
- isa
- PBXBuildFile
-
- A72924F34DBAACCF6D1FA1E8
-
- fileRef
- 37EE459C234DB4704D300825
- isa
- PBXBuildFile
-
- A730C4513097FF09444EFD95
+ AEBE105023F9F42C2ED903A3
fileRef
- 7CD9E5F28F080C0AC35B4501
+ FB50E11062C2AA335BBF26DB
isa
PBXBuildFile
- A73CD549550A4BA77B070503
+ AEC87368E3E02940B641A542
- includeInIndex
- 1
+ children
+
+ 04D145DFEF56E4D428C15BFB
+ 0FF21AB33CC0568E5970807F
+ D5784838BCFF4F54C01689E6
+ 8B5FAD35BE8A277CE6B120FA
+ 4E1EF8294018360228465586
+ F538E3037EB266946E40BBA0
+ EA8DE1EFA0AD2939AF9C0F25
+ 429F593E100702E327F23D6A
+ 794E8EF3964AD20B9BF29BB4
+ 5355E60A32BCDC844044CF7E
+ 03A9C020468ACE04DF06AFC4
+ 7575BDCCD376072FB37FE1FC
+ BE6FB00CF8AD8FA4BAA5C25A
+ BC592C0D31937EBE3FCDBD3C
+ 8D630DAF6482225374FFB5BF
+ 649B86BDB5FEB04C5250577B
+ 1A0CF8CA688AD34B88CA3ADA
+ 74B94E63DC66DCC657B677C5
+ A9C585440F329CDFE936846A
+ F8EA4D74634221FD814CF13D
+ 39624CA83B40CA7064B9416E
+ CFA4C3CCCB45B502CF0C0E23
+ E21EB5AC78556DDA3B2F266D
+ 00F8DB9309B838C6927BE039
+ 88D095687C4178E6D83BDC11
+ ED293689D31EF2E9363BCB83
+ 6FD241EF8AE4044C3F03E9A0
+ 8972713CE6587FF26F1C54B5
+ 3F3853F476E94BA7BAD77C04
+ 52C822302EFB9AFA494E1645
+ 0E8703CA92FF5F4B5F506228
+ DAFF4E1F18EE51D27A935534
+ B780C1D81E8BD271C465AE3C
+ F41D93C20738C7BFA9F0A19D
+ 64395DB3478BEE6D68781F71
+ 22B9031D60DDCD5CB6B7DE34
+ 51416928FAB1B6632C1EBF72
+ 0B9481EDF4709AA6EF24A8E1
+ A163CEAFD96C1D6E4B7AD33B
+ 2AD6FE2F4E21F6CC6A5F6478
+ 80719718A29CCC6F2D28933F
+ B3A202A14C18239A98009983
+ 2296F3F66674BE9327803727
+ 0DD17658B34D1D8866FB09D3
+ 35C93D5091D5ED8AF3EB5F72
+ 1F78C45CE4CE134DC692B63E
+ 293FAEB0E9E80E85D72FCB34
+ CE2533A87715E3DFBFF332B7
+ DE6908F8A6BE178DD368D6AD
+ 285EC3F1F192572CCF89114C
+ 5594398E6685111ED1A4507E
+ F5FC63291CD70A337689FF55
+ 9B13DDD7C1311DD2A0E76F27
+ B837139887BCEBD1B9E8A7B9
+ C5FEDC89B366FCBCD9FDF0C8
+ 4552E3CE521587223197C20A
+ 291501F45D90BE8C355F8579
+ 94D8AE391CA887480448ADBC
+ ABA459D283DF6D9A19A6138E
+ 1B7E7CADAC18E130281F58C2
+ CBD59C75C5E1160AC14DB4DE
+ 8545F8453C4BE30D0B3B9A55
+ 5FF16CB20CD010C6CBA5223F
+ 7B0E3B36284FB17FF7E5561F
+ 3188A298D83BC914EEA0D5CA
+ 3C48E4C5CF2B9E562A631981
+ D6F09596F8BFC367480F858F
+ 41E45F9F9F711B532ACBB4EF
+ 240EC3FB8142DF5791FF8E22
+ 12726689F72FDF8E237E6154
+ 1AB10823C118B15B7D22E5FB
+ 9329650D7F7A5AABB940DDB8
+ A29D1155F48BCA80977F4ED2
+ 23FF67D9AF98407A17C1C1C9
+ 043504D4F259A0F6A54B99B0
+ A08A87259FDDC3C8A28F2526
+ 70A59998C2D275A3B454ECED
+ 10A17C3FBB2B55F9F5E895DA
+ F563D502F0F917DE7706369C
+ 539F21DFB444A50A66819BC9
+ 8C7776E30B540916FC087A0B
+ 5076C99B3FE3CBDDA4B970AF
+ 5926E461F94F7CFC63DD1696
+ 3D4ABCA41A1609B07976E774
+ 719BC9A8D1379282E74A5E9E
+ 25BD75A2B7ADEDA00AE557BC
+ FAD83CB323EF4D19A9EBDAE7
+ 3CED84D8F1A1F1D4A3CFCA26
+ 2BAE3B92FA36D21D6BB88CB4
+ 69A13AC913B1774851EBA193
+ BEE6BE958211BD620E143358
+ 443009496120E2A57392A3F4
+ BF93558D2D5E3DD6F3368B02
+ 6426AAF03C8059150F445047
+ AEBCE6F65A0D9C907B6003F5
+ 0379E19A1150976474CA5F4E
+ 791005BF3061B0D3E6D654FF
+ 49215298520885A7820AF7AE
+ 92C5849A373F9388A9EAAB0D
+ 63F1DDBECF822E19EE068E48
+ B7BEB43CA40A4F12F2BF56C0
+ EBCA1581525DE2DF95784071
+ 896677EBF0FF6C8474DA6733
+ D32B322B93CA2BA6841C7B71
+ F39F9EC1BA543BAA4C4DCFDD
+ 82CA7ED1A9294A47E26EAAA7
+ BCA96D021A200BB60C8AB3D8
+ 291F4B952A1CFFFD1021775F
+ C6A6C6ACA54619886DB6260E
+ 55F3CC69502B0790873DF737
+ 7B9E7B8786DB9972190B99FD
+ CFFEFCCAE72BD139399DD9F6
+ 47C34AF873AD1D30E16AD87C
+ E2B17A9E84593780E638655C
+ 8265740D7404F67AE3C28C45
+ E390C2BEA70FB9D07E977433
+ E68B8E12337D5CB742D9670C
+ ED18239B5EE8F5D601F99979
+ 892F198EE3041AEB5B816EE7
+ 1F5BFB560D4697A5F77FF1E0
+ BB6D5A5597542CC8262F9839
+ B54DF7A7D15D5B1DF6D4F652
+ F6781E4C53622FDC2167BAAA
+ 12FFF084180C49535499161E
+ 6C29038D2ED98C9F3B3FCB08
+ B8D45D352E71D7FBFE31E5B0
+ 5B4BE2D468BD84800FD63686
+ 6E4E485474B46C7C8B53BDE5
+ 6BFD38F3F6AA980D1DCCA618
+ 518C58E040DD2DC2B2421A0F
+
isa
- PBXFileReference
- lastKnownFileType
- sourcecode.c.h
+ PBXGroup
name
- NSInvocation+TCFInstanceBuilder.h
+ OCMockito
path
- Source/Factory/Internal/NSInvocation+TCFInstanceBuilder.h
+ OCMockito
sourceTree
<group>
- A75167FB96ADE160168A634B
+ AEEB2C554A13F0C3F8EED630
includeInIndex
1
@@ -12660,46 +13455,48 @@
lastKnownFileType
sourcecode.c.objc
name
- MKTClassObjectMock.m
+ EXPMatchers+raiseWithReason.m
path
- Source/OCMockito/MKTClassObjectMock.m
+ src/matchers/EXPMatchers+raiseWithReason.m
sourceTree
<group>
- A81B98790D488DE32772C86B
-
- fileRef
- 1089FD861E66FCAFC04B7345
- isa
- PBXBuildFile
-
- A8B6D1F4CD94EB2C12B607EC
+ AF1AF7F4A4C162D0A4239D65
includeInIndex
1
isa
PBXFileReference
+ lastKnownFileType
+ sourcecode.c.h
+ name
+ HCObjectReturnGetter.h
path
- randomDouble.c
+ Source/Core/Helpers/ReturnValueGetters/HCObjectReturnGetter.h
sourceTree
<group>
- A90B88108E940A98D775DD28
+ AF5583A88F4795C5020F6421
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.objc
- name
- HCBaseMatcher.m
+ text.xcconfig
path
- Source/Core/HCBaseMatcher.m
+ Pods-PocketForecastTests-Expecta.xcconfig
sourceTree
<group>
- A953D828E6029A1C1B5F27EC
+ AF9443FE2A134B09B575CC10
+
+ fileRef
+ E91F6EB34529D94F1DD6779A
+ isa
+ PBXBuildFile
+
+ AF989E4F8F5CE4BEA8A66919
includeInIndex
1
@@ -12708,16 +13505,16 @@
lastKnownFileType
sourcecode.c.h
name
- TouchThroughUIView.h
+ HCIsCollectionOnlyContaining.h
path
- PaperFold/PaperFold/PaperFold/TouchThroughUIView.h
+ Source/Library/Collection/HCIsCollectionOnlyContaining.h
sourceTree
<group>
- A97BB1607B0BE507CA8F4276
+ AFDD3EF1CB2B9D96E888C66B
fileRef
- B6D1041F63D32D97B513730A
+ B39245D26DF691DFDEA46B47
isa
PBXBuildFile
settings
@@ -12726,33 +13523,34 @@
-w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
- A9A7932D51FF4D01A3C54B21
+ B00917CBCAE8FB87907AAF91
+
+ buildConfigurations
+
+ F475C1B46DD007D4480B0847
+ 4CDD09D8C16ED19C8463D640
+
+ defaultConfigurationIsVisible
+ 0
+ defaultConfigurationName
+ Release
+ isa
+ XCConfigurationList
+
+ B03F27A6ACAB1624C0698333
includeInIndex
1
isa
PBXFileReference
- name
- swipe_guide_left.png
+ lastKnownFileType
+ text.xcconfig
path
- PaperFold/PaperFold/PaperFold/PaperFoldResources.bundle/swipe_guide_left.png
+ Pods-PocketForecast-NSURL+QueryDictionary-Private.xcconfig
sourceTree
<group>
- A9F06D728381FC25A1A0D0BE
-
- containerPortal
- 66C2EBDD522B033360138729
- isa
- PBXContainerItemProxy
- proxyType
- 1
- remoteGlobalIDString
- 93183C63F70194245E89842F
- remoteInfo
- Pods-PocketForecastTests-OCHamcrest
-
- AA0B325A507B07A3CA6A01B4
+ B04A719A5632B987F1E0F014
includeInIndex
1
@@ -12761,20 +13559,13 @@
lastKnownFileType
sourcecode.c.objc
name
- TyphoonAssembly.m
+ HCXCTestFailureHandler.m
path
- Source/Factory/Block/TyphoonAssembly.m
+ Source/Core/Helpers/TestFailureHandlers/HCXCTestFailureHandler.m
sourceTree
<group>
- AA85D7CA9CF8679E4C2E33A3
-
- fileRef
- 690B3F2361483F379FC4BFC7
- isa
- PBXBuildFile
-
- AABD0AB907CDF2FA5A655E85
+ B08AC4B84F99F06C74753221
includeInIndex
1
@@ -12783,223 +13574,108 @@
lastKnownFileType
sourcecode.c.h
name
- MKTUnsignedLongReturnSetter.h
+ HCIsTypeOf.h
path
- Source/OCMockito/Helpers/ReturnValueSetters/MKTUnsignedLongReturnSetter.h
+ Source/Library/Object/HCIsTypeOf.h
sourceTree
<group>
- AAFD984F7D4876947EEA3B50
-
- fileRef
- 7F8FE144EF3E051077997C03
- isa
- PBXBuildFile
-
- AB20E5E1FF8DD264CD0BB7AB
+ B0A9E47F4A92EA988CA233AB
fileRef
- E4509060854BF09C168E6B26
+ 833A82F5EDF136D28661D18B
isa
PBXBuildFile
settings
COMPILER_FLAGS
- -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+ -fno-objc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
- AB50B86079B4956F42E28D98
+ B14176EFB1D8B658CCC1354E
fileRef
- 1CF242C214296CD5B835297F
- isa
- PBXBuildFile
-
- AB94BDFFF24F09D8D0C8B33B
-
- fileRef
- CFF4E64B2E64BA92447976D6
+ 64A07010204CD19D9B74FD04
isa
PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
- ABA1928D8800C4919F08E881
+ B176715EE3919913EFD46349
- fileRef
- A73CD549550A4BA77B070503
+ buildConfigurations
+
+ B81324099D0459507D67D6F9
+ 7E8563A60175E76F5B940AA7
+
+ defaultConfigurationIsVisible
+ 0
+ defaultConfigurationName
+ Release
isa
- PBXBuildFile
+ XCConfigurationList
- AC034BED1BA0D5BD7FE1CBCC
+ B178BA8C5D6AF4BCDF9DC41E
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.objc
- name
- EXPMatcherHelpers.m
+ sourcecode.c.h
path
- src/matchers/EXPMatcherHelpers.m
+ Pods-PocketForecast-CKUITools-prefix.pch
sourceTree
<group>
- AC0945F388ADED6A3DBBE8A7
+ B249D790379229DED9FBB919
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.h
+ sourcecode.c.objc
+ name
+ HCIsSame.m
path
- Pods-PocketForecast-NSURL+QueryDictionary-prefix.pch
+ Source/Library/Object/HCIsSame.m
sourceTree
<group>
- AC0ADD7013E6BC4C7CE2B1F7
+ B2588C34D676905EF28D3EBD
- children
-
- DA2B8E20CBBB0AD1F50618ED
- 4E50DCD10BCD3104C3943DF1
- 690B3F2361483F379FC4BFC7
- 846B7B4A2C71AD4F54295FE4
- BAFCB808F669B8E5F0BFB870
- 41A3CCFD7E9D808957358EB3
- B2644F77EB592417F4620940
- 10FDFE09CAC966C73296867A
- 8177198F4DAB45927FE225C6
- 13CACD65F3ED5434AFF3E5B0
- 064744FD5A78C86AF17EE5B6
- 285C6EAE32B22A2D4E5E22E3
- 2E244701842148B4F523BF68
- 6B70D8364F4CB684A01C864F
- D119E8DC0BE8E57E7BF88507
- 6E5913CCB23626580C1233D2
- C4D4921D35D50C1639930997
- 441EDED44D007DCFE80B38AA
- 21DD19043C2AC098065C4E49
- C1909E1386BA6B8A62FAB0F3
- 5E735A76CAA25DB3069B073E
- 2C83966193931F84EFBDE064
- 75B8A5DD9238E9A3BDBEDB98
- 3CBFE0E05F8A077CB74FEE0B
- 7B4BBACC49A71FA95D438B8F
- A75167FB96ADE160168A634B
- 63922EAD57E0F3C0C355A5F8
- 9EEC4EAF615F06E1FB8AC960
- 171FAD71337179F83E396D4C
- BCAF36C3A60783E4FA4EC15B
- 37EE459C234DB4704D300825
- 8C300BB88EC1C828FEB3D20A
- 540A4526A5EFE5FA6AAAB1CD
- 78AED80878DA4C18D90913C4
- 09D61011F563A3185025D7CC
- 142C3E56E2164E42A72A9416
- 066D45E402FD9F4620D8A317
- 6579238046607023A2813928
- 3BF4F9D847DC803879829E82
- 0854E4C976D504425ADA9F1A
- 8944F418B15D3EA30409A36E
- 85639B91984CF0C162449349
- B88B44F3E47CDDD1AABE7DB9
- 07DCB38EC8FFF8DF6529A357
- 3481B039F0BFFA27E39D4063
- 6DE33C7384C4C2A30066FCB9
- 671792EBFDA9A847D63833A9
- 08C6B699734D2C03C49818B8
- D2419A0632CDC3C006032227
- 80C7C01A6648C335A15C4853
- 942C25DFCFED9288E5E00CB2
- 40DDE7E0EAEA00FE379D72AD
- 2EC3C499C2585B029F13D1FA
- 86487159C1623B9C23A925C3
- F5549238CB2FCEADBC309B1A
- 03114AE263EA23529C5B7679
- 6C9DC4F724BB6CE7CA143ED5
- 02A096AC414F928F8C3432FE
- 2DB102B092A3CC6BD9EEFE08
- 17A63E94C914EFFAF850FF60
- C445932EBE68D7355E6C3DF9
- 77FF223525E3FD5352595C37
- 3AA9285675B95287900B6F58
- 6D4477A5B9ED125ED9DA4CB1
- 6EAA2AE5C5E6B4004CF28A73
- 9D7AC84FF1A48822E8A08512
- A2CCFBBD62251301E840B2C9
- FFB61FBE36692251DD62683E
- 0D2FAD37C77F448121F7DA2B
- 9DC0605ED63C845AE126B499
- CE02C29F29E0AB65DABD2638
- D514B9434AF3DF21AEAFD6BF
- 116FD4E2D84BA1956EB0F99B
- 87BCA50D7E7AED86F4753B6E
- A3C128E9DA7AB7DB2346D58F
- E3C7AEA70E7753C436493B0C
- B3075702E9973E7AD142AF65
- 97CC0D7C230161F56CDB6179
- CA8B3A3233DB719E63B8665E
- 0EBE04C0EC1DD2D8657BA377
- 1AA14EE0D4B9DF0ECF0FE604
- 874C1CE31FC34990585368F4
- ACA1979C74D4135136255577
- CD3E50CE3DBF3D9521F087BD
- 58CFE8E0A98A48FAE159E3C4
- 1B75FC941791FEAE05E9F2B9
- 1BEB62B801A829E7CF670C3D
- 070493FF9CFEEDB837BCA6D3
- 6E95FE3EA33053E4C40FCBC6
- A68C158701617AC90DB6375A
- DACCCB69E939BAB7B9523B0B
- 4C35FAAFE1EED579E7EEF8A4
- EF73E89D8D8C7BFB18D399D8
- B0694DDE0425C765DF0049F0
- 86A0F76A90E6858BCE56D7A8
- A081CF46EA479DC9B9C41967
- 925CD2DE998846801C32D1FD
- 5CE86BB9761D0CF5C5DD98D0
- 39CC5EA27EA6BA40FC678E8C
- 41F64960A605B8CB76DF621E
- 0AE9E6C7C75C971FCED5EDB1
- 1411E9EB86FFAEEEEA318AD9
- 5BFF00E74FB23A4C2136EA9E
- 76C6B8764C67614F79C1DBDA
- 320EA20DD8DB8FA9A49B443D
- AABD0AB907CDF2FA5A655E85
- 0E2350AFB3C1D5AF09EF5294
- 7672F4FCA5C1FC76B073D7C3
- 2E96A4D07FE32BD620A13BAA
- 92BEDED29D6ECBE98E7AF578
- 5727CF5C562E3CBB7422F7CC
- 48AD0D5987DA890CD6B25F62
- 4A960AC06115B982C0E9C144
- B76AD62715346BFD8F9D3435
- EC39C0F831B28CE0A358FC7D
- 554DF16FDAF5174B35F85C1A
- 641AFC37A3F61E493B9661A4
- 89E6C2DE7E4E203574B07CE5
- BD8B0DE96258BDF107B5CF54
- 5AFC335D4AC693CF38049A05
- C409FB46B985858DF9AD1D54
-
+ includeInIndex
+ 1
isa
- PBXGroup
+ PBXFileReference
+ lastKnownFileType
+ sourcecode.c.objc
name
- OCMockito
+ TyphoonCollaboratingAssemblyProxy.m
path
- OCMockito
+ Source/Factory/Block/TyphoonCollaboratingAssemblyProxy.m
sourceTree
<group>
- AC361BD99EAEDF56672DD827
+ B263D5471BD59ED79FC0F7A2
- fileRef
- 889DD9B5394E0DB08D5C3B2A
+ buildConfigurations
+
+ FE78EB808629488C5C84A1AD
+ 827C30EF0077190BD3512C36
+
+ defaultConfigurationIsVisible
+ 0
+ defaultConfigurationName
+ Release
isa
- PBXBuildFile
+ XCConfigurationList
- ACA1979C74D4135136255577
+ B27B7407C8CEFCF3BC77B6AA
includeInIndex
1
@@ -13008,91 +13684,68 @@
lastKnownFileType
sourcecode.c.objc
name
- MKTShortReturnSetter.m
+ HCIsCollectionContainingInAnyOrder.m
path
- Source/OCMockito/Helpers/ReturnValueSetters/MKTShortReturnSetter.m
+ Source/Library/Collection/HCIsCollectionContainingInAnyOrder.m
sourceTree
<group>
- ACB5A3A68820F7CFD304013F
+ B2BE15EF7E7C20547DA2E347
fileRef
- F598DCF778E98B2FE6D419C2
+ BC821A8561653EE50A7363EF
isa
PBXBuildFile
settings
COMPILER_FLAGS
- -fobjc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+ -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
- ACBC6C20CF9502D56519DBAB
-
- fileRef
- 7B4BBACC49A71FA95D438B8F
- isa
- PBXBuildFile
-
- ACEB91D9E22CA911E95D7D0F
+ B2E862C3E92D8B23FEA87CF6
- includeInIndex
- 1
+ fileRef
+ 95C730F5AA3BFCF3FB3B3579
isa
- PBXFileReference
- lastKnownFileType
- text.xcconfig
- path
- Pods-PocketForecast-NSURL+QueryDictionary.xcconfig
- sourceTree
- <group>
+ PBXBuildFile
- AD9D3A4B889E287D2BF79655
+ B2F96681032A6C59153375B5
fileRef
- 41F64960A605B8CB76DF621E
+ 8DC0C9B69D894D4FB99244EC
isa
PBXBuildFile
- ADC527A437B78582D1BBEE54
+ B2FE8ADE27B6F9565061A1C7
fileRef
- 0854E4C976D504425ADA9F1A
+ C0739AB9A0D3F515D0777B9C
isa
PBXBuildFile
- settings
-
- COMPILER_FLAGS
- -fobjc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
-
- ADD42A0824F7FB3098EAEF5B
+ B3559B5C915607BC9F45E258
fileRef
- D8D4A29431B294596DEB8639
+ 6C3BA0A2958916D831E11FF0
isa
PBXBuildFile
- settings
-
- COMPILER_FLAGS
- -fobjc-arc -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
-
- ADEC4D6F4358D5ADE3780B00
+ B362FF78938348AC09085487
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.objc
+ sourcecode.c.h
name
- HCIsEqualIgnoringCase.m
+ EXPMatchers+beCloseTo.h
path
- Source/Library/Text/HCIsEqualIgnoringCase.m
+ src/matchers/EXPMatchers+beCloseTo.h
sourceTree
<group>
- AE0C6F70D0EF4F98D8BC24B0
+ B39245D26DF691DFDEA46B47
includeInIndex
1
@@ -13101,26 +13754,26 @@
lastKnownFileType
sourcecode.c.objc
name
- HCStringEndsWith.m
+ HCIsDictionaryContaining.m
path
- Source/Library/Text/HCStringEndsWith.m
+ Source/Library/Collection/HCIsDictionaryContaining.m
sourceTree
<group>
- AE1FC0C800EFE991F35FF5D6
+ B39C115510ABFF1C79C3397C
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- text.xcconfig
+ sourcecode.c.h
path
- Pods-PocketForecastTests-Expecta-Private.xcconfig
+ Pods-PocketForecast-NSURL+QueryDictionary-prefix.pch
sourceTree
<group>
- AE2E7E5B3C75B349DC937A93
+ B3A202A14C18239A98009983
includeInIndex
1
@@ -13129,13 +13782,25 @@
lastKnownFileType
sourcecode.c.h
name
- EXPMatchers+beKindOf.h
+ MKTFloatReturnSetter.h
path
- src/matchers/EXPMatchers+beKindOf.h
+ Source/OCMockito/Helpers/ReturnValueSetters/MKTFloatReturnSetter.h
sourceTree
<group>
- AE50B08C331ACA5265B05035
+ B3B42522B4E7F10CE07CB76C
+
+ fileRef
+ B2588C34D676905EF28D3EBD
+ isa
+ PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
+
+ B3D8D47637465F2C484A21D5
includeInIndex
1
@@ -13144,70 +13809,109 @@
lastKnownFileType
sourcecode.c.h
name
- EXPUnsupportedObject.h
+ TyphoonInjectionContext.h
path
- src/EXPUnsupportedObject.h
+ Source/Definition/Injections/TyphoonInjectionContext.h
sourceTree
<group>
- AE710A9529A10DAFAE53C566
+ B3DBE1B23580817F2668BB63
+
+ fileRef
+ 9BCF1C8BD5AD9CC6FD16B6A5
+ isa
+ PBXBuildFile
+
+ B46AC0953ECBF5521291008E
+
+ fileRef
+ 28066E6570EC4EEC6FF506F5
+ isa
+ PBXBuildFile
+
+ B48D67379FFEDDFF00257013
+
+ fileRef
+ 15F285883E525C7BA8B359EA
+ isa
+ PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
+
+ B4B81A2E8E5F1ABA1C14BCF6
+
+ buildActionMask
+ 2147483647
+ files
+
+ 27D663FAE87E14DC1265C011
+
+ isa
+ PBXFrameworksBuildPhase
+ runOnlyForDeploymentPostprocessing
+ 0
+
+ B4CE1E2CA9997D9556A853C1
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.objc
+ sourcecode.c.h
name
- HCBoolReturnGetter.m
+ EXPMatcher.h
path
- Source/Core/Helpers/ReturnValueGetters/HCBoolReturnGetter.m
+ src/EXPMatcher.h
sourceTree
<group>
- AE8ADA610F391E5C4A7E4094
+ B51ECD46E0212F89C5FCB7EC
+
+ fileRef
+ 287D676715016C6A5B32EB3A
+ isa
+ PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -fno-objc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
+
+ B54DF7A7D15D5B1DF6D4F652
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.h
+ sourcecode.c.objc
name
- HCXCTestFailureHandler.h
+ MKTVerificationData.m
path
- Source/Core/Helpers/TestFailureHandlers/HCXCTestFailureHandler.h
+ Source/OCMockito/MKTVerificationData.m
sourceTree
<group>
- AEBEE301923316E784909C67
+ B56A671F1DAA307C47E3D147
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.objc
+ sourcecode.c.h
name
- EXPMatchers+equal.m
+ ExpectaSupport.h
path
- src/matchers/EXPMatchers+equal.m
+ src/ExpectaSupport.h
sourceTree
<group>
- AF5D0192FD8BBF5BB393F9FF
-
- fileRef
- 35217750E2613BE3FAD62A0D
- isa
- PBXBuildFile
- settings
-
- COMPILER_FLAGS
- -fobjc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
-
-
- B0694DDE0425C765DF0049F0
+ B5B13390A7BF045B9349E8A3
includeInIndex
1
@@ -13216,13 +13920,13 @@
lastKnownFileType
sourcecode.c.h
name
- MKTUnsignedCharReturnSetter.h
+ TyphoonLinkerCategoryBugFix.h
path
- Source/OCMockito/Helpers/ReturnValueSetters/MKTUnsignedCharReturnSetter.h
+ Source/Utils/TyphoonLinkerCategoryBugFix.h
sourceTree
<group>
- B0C61D043CC1D311D13D98A2
+ B61C80B6CD5A2F07E446CFEE
includeInIndex
1
@@ -13231,20 +13935,20 @@
lastKnownFileType
sourcecode.c.h
name
- TyphoonBundleResource.h
+ EXPFloatTuple.h
path
- Source/Configuration/Resource/TyphoonBundleResource.h
+ src/EXPFloatTuple.h
sourceTree
<group>
- B0D83B103948E93FE7C8C20D
+ B66D1582915E63AFC8999ABF
fileRef
- 34DF7BE24BF6C84AB523E0B2
+ 4E4EA19D68E83D0873B571B9
isa
PBXBuildFile
- B11DB39CAB7174C516E399A3
+ B67B08D5037F2B629F07D89F
includeInIndex
1
@@ -13253,33 +13957,38 @@
lastKnownFileType
sourcecode.c.objc
name
- TyphoonDefinition+Infrastructure.m
+ TyphoonPrimitiveTypeConverter.m
path
- Source/Definition/Internal/TyphoonDefinition+Infrastructure.m
+ Source/TypeConversion/Converters/TyphoonPrimitiveTypeConverter.m
sourceTree
<group>
- B1FC9CB760BBE7E08264DAB8
+ B6B7230F30DEB17F35196B25
fileRef
- 955C5A58817275DA4C9C6239
+ 0230985ECD3DE7FBFF40A9FC
isa
PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
- B2296DE8F693DFA6FD73F6AD
+ B6F00DAD8B374ACC85A53696
- containerPortal
- 66C2EBDD522B033360138729
- isa
- PBXContainerItemProxy
- proxyType
+ includeInIndex
1
- remoteGlobalIDString
- 99F49A6BF566860B1931F55E
- remoteInfo
- Pods-PocketForecast-Typhoon
+ isa
+ PBXFileReference
+ lastKnownFileType
+ text.xcconfig
+ path
+ Pods-PocketForecastTests-OCHamcrest.xcconfig
+ sourceTree
+ <group>
- B23E8A70DB9A81907C50A392
+ B70561061E9E83FCF9AC9453
includeInIndex
1
@@ -13287,12 +13996,28 @@
PBXFileReference
lastKnownFileType
sourcecode.c.h
+ name
+ HCIsEqualToNumber.h
path
- Pods-PocketForecast-NGAParallaxMotion-prefix.pch
+ Source/Library/Number/HCIsEqualToNumber.h
sourceTree
<group>
- B2644F77EB592417F4620940
+ B758138F89246544CEAFFE1C
+
+ buildActionMask
+ 2147483647
+ files
+
+ 57EE0A822AF0C0EE43EBC79B
+ 1148DC701BC9C5833DCC3EDC
+
+ isa
+ PBXFrameworksBuildPhase
+ runOnlyForDeploymentPostprocessing
+ 0
+
+ B76E9F1A6425983AF99F1483
includeInIndex
1
@@ -13300,29 +14025,27 @@
PBXFileReference
lastKnownFileType
sourcecode.c.h
- name
- MKTAtLeastTimes.h
path
- Source/OCMockito/MKTAtLeastTimes.h
+ Pods-PocketForecast-Typhoon-prefix.pch
sourceTree
<group>
- B3075702E9973E7AD142AF65
+ B779DFC384525C3314A5EBD2
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.objc
+ sourcecode.c.h
name
- MKTReturnValueSetterChain.m
+ HCIsIn.h
path
- Source/OCMockito/Helpers/ReturnValueSetters/MKTReturnValueSetterChain.m
+ Source/Library/Collection/HCIsIn.h
sourceTree
<group>
- B30F8F417E7480B7A492ACB1
+ B780C1D81E8BD271C465AE3C
includeInIndex
1
@@ -13331,101 +14054,40 @@
lastKnownFileType
sourcecode.c.objc
name
- TyphoonCallStack.m
+ MKTDoubleReturnSetter.m
path
- Source/Factory/Internal/TyphoonCallStack.m
+ Source/OCMockito/Helpers/ReturnValueSetters/MKTDoubleReturnSetter.m
sourceTree
<group>
- B378F6DD6356EE23C71BBD7D
-
- buildConfigurations
-
- 397F8210E9FB982B5513B421
- 3089C30062F92205F42E0E41
-
- defaultConfigurationIsVisible
- 0
- defaultConfigurationName
- Release
- isa
- XCConfigurationList
-
- B4113CB24628794A59D045AB
-
- fileRef
- 48FC7C6A7C0813C2C4D042B8
- isa
- PBXBuildFile
-
- B41B47B35DFF717A2E8D523B
-
- buildActionMask
- 2147483647
- files
-
- 1DDA8E71C2F5250AE4196CCF
-
- isa
- PBXFrameworksBuildPhase
- runOnlyForDeploymentPostprocessing
- 0
-
- B424E90785A4DB24C51F2983
-
- fileRef
- 2C83966193931F84EFBDE064
- isa
- PBXBuildFile
- settings
-
- COMPILER_FLAGS
- -fobjc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
-
-
- B49E84FED52129263CD07F82
+ B7BEB43CA40A4F12F2BF56C0
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.objc
+ sourcecode.c.h
name
- HCTestFailureHandler.m
+ MKTUnsignedCharArgumentGetter.h
path
- Source/Core/Helpers/TestFailureHandlers/HCTestFailureHandler.m
+ Source/OCMockito/Helpers/ArgumentGetters/MKTUnsignedCharArgumentGetter.h
sourceTree
<group>
- B4D5673F260C5724C6845F1A
+ B7D34EF00D42173442CEF857
fileRef
- CA959B703FF3FE0D8891AACE
+ EDBB6A25DF93E76B2ABF3C72
isa
PBXBuildFile
settings
COMPILER_FLAGS
- -fobjc-arc -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+ -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
- B4E14B480463B9786C8ACF39
-
- includeInIndex
- 1
- isa
- PBXFileReference
- lastKnownFileType
- sourcecode.c.h
- name
- TyphoonSwizzler.h
- path
- Source/Utils/Swizzle/TyphoonSwizzler.h
- sourceTree
- <group>
-
- B50B871359C48784F15C96D0
+ B7DB3E67F6BC12FBC6F2DE57
includeInIndex
1
@@ -13434,55 +14096,48 @@
lastKnownFileType
sourcecode.c.h
name
- TyphoonPlistStyleConfiguration.h
+ TyphoonInjectionByObjectFromString.h
path
- Source/Configuration/ConfigPostProcessor/TyphoonConfiguration/TyphoonPlistStyleConfiguration.h
+ Source/Definition/Injections/TyphoonInjectionByObjectFromString.h
sourceTree
<group>
- B50FE5DCC240FFF53B04EFA1
+ B7DEE190C1E815A7219F9A28
- includeInIndex
- 1
+ fileRef
+ CF6AAB26BD222EACEA30AFCE
isa
- PBXFileReference
- lastKnownFileType
- text.xcconfig
- path
- Pods-PocketForecast-Typhoon.xcconfig
- sourceTree
- <group>
+ PBXBuildFile
- B545DC898D4A33A1BBB88E92
+ B81324099D0459507D67D6F9
baseConfigurationReference
- 6C79D36727AB2BDCA7C2C827
+ 70FA3172B35B53466D0D3BEA
buildSettings
ALWAYS_SEARCH_USER_PATHS
NO
COPY_PHASE_STRIP
- YES
+ NO
DSTROOT
/tmp/xcodeproj.dst
+ GCC_DYNAMIC_NO_PIC
+ NO
+ GCC_OPTIMIZATION_LEVEL
+ 0
GCC_PRECOMPILE_PREFIX_HEADER
YES
- GCC_PREFIX_HEADER
- Target Support Files/Pods-PocketForecastTests-OCMockito/Pods-PocketForecastTests-OCMockito-prefix.pch
+ GCC_PREPROCESSOR_DEFINITIONS
+
+ DEBUG=1
+ $(inherited)
+
+ GCC_SYMBOLS_PRIVATE_EXTERN
+ NO
INSTALL_PATH
$(BUILT_PRODUCTS_DIR)
IPHONEOS_DEPLOYMENT_TARGET
7.0
- OTHER_CFLAGS
-
- -DNS_BLOCK_ASSERTIONS=1
- $(inherited)
-
- OTHER_CPLUSPLUSFLAGS
-
- -DNS_BLOCK_ASSERTIONS=1
- $(inherited)
-
OTHER_LDFLAGS
OTHER_LIBTOOLFLAGS
@@ -13495,31 +14150,13 @@
iphoneos
SKIP_INSTALL
YES
- VALIDATE_PRODUCT
- YES
isa
XCBuildConfiguration
name
- Release
-
- B567BE4EA274B9D60392DC20
-
- children
-
- 2700AD2EFDC0E3E04420CC92
- 77B64B6F51DD95161A653BA5
-
- isa
- PBXGroup
- name
- OCLogTemplate
- path
- OCLogTemplate
- sourceTree
- <group>
+ Debug
- B629CBA628ECF422E78A04DF
+ B82387DA5855A113EC8BFD4C
includeInIndex
1
@@ -13528,13 +14165,13 @@
lastKnownFileType
sourcecode.c.objc
name
- HCBaseDescription.m
+ TyphoonAbstractInjection.m
path
- Source/Core/HCBaseDescription.m
+ Source/Definition/Injections/TyphoonAbstractInjection.m
sourceTree
<group>
- B640209236D7DC9D94C5082D
+ B837139887BCEBD1B9E8A7B9
includeInIndex
1
@@ -13543,37 +14180,25 @@
lastKnownFileType
sourcecode.c.h
name
- NSInvocation+OCHamcrest.h
- path
- Source/Core/Helpers/NSInvocation+OCHamcrest.h
- sourceTree
- <group>
-
- B65D29A93710A93063BA364E
-
- children
-
- D66171838B6295D5B413436C
- D7D516B72D45BF31BE104925
- 809B18EE5AF3E88FAAF32E4D
-
- isa
- PBXGroup
- name
- NSURL+QueryDictionary
+ MKTLongLongArgumentGetter.h
path
- NSURL+QueryDictionary
+ Source/OCMockito/Helpers/ArgumentGetters/MKTLongLongArgumentGetter.h
sourceTree
<group>
- B67E131E147131B734CE7778
+ B890ADA590345CA656EC40FC
fileRef
- 1B75FC941791FEAE05E9F2B9
+ B939A9ADE9713D414AE86151
isa
PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
- B6D1041F63D32D97B513730A
+ B8A653E060BD24A15AB2F2C8
includeInIndex
1
@@ -13582,25 +14207,13 @@
lastKnownFileType
sourcecode.c.objc
name
- EXPMatchers+beInstanceOf.m
+ TyphoonTypeDescriptor.m
path
- src/matchers/EXPMatchers+beInstanceOf.m
+ Source/TypeConversion/TyphoonTypeDescriptor.m
sourceTree
<group>
- B74F1DCEF30492C00FA8142B
-
- fileRef
- 5CE0EB073C06E400E92A77CF
- isa
- PBXBuildFile
- settings
-
- COMPILER_FLAGS
- -fobjc-arc -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
-
-
- B76AD62715346BFD8F9D3435
+ B8D45D352E71D7FBFE31E5B0
includeInIndex
1
@@ -13609,25 +14222,28 @@
lastKnownFileType
sourcecode.c.h
name
- MKTVerificationMode.h
+ NSInvocation+OCMockito.h
path
- Source/OCMockito/MKTVerificationMode.h
+ Source/OCMockito/NSInvocation+OCMockito.h
sourceTree
<group>
- B7FBD4857D831E251DC4C6D9
+ B8DC1CBC4682ADCF7CFC1186
- fileRef
- CFD56A05B7A434B7D4EC9FC0
+ includeInIndex
+ 1
isa
- PBXBuildFile
- settings
-
- COMPILER_FLAGS
- -fobjc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
-
+ PBXFileReference
+ lastKnownFileType
+ sourcecode.c.objc
+ name
+ HCClassMatcher.m
+ path
+ Source/Library/Object/HCClassMatcher.m
+ sourceTree
+ <group>
- B8092684DA2273FA9A245AF9
+ B939A9ADE9713D414AE86151
includeInIndex
1
@@ -13636,90 +14252,89 @@
lastKnownFileType
sourcecode.c.objc
name
- HCIsCloseTo.m
+ HCObjectReturnGetter.m
path
- Source/Library/Number/HCIsCloseTo.m
+ Source/Core/Helpers/ReturnValueGetters/HCObjectReturnGetter.m
sourceTree
<group>
- B844CD20337523A4B77CD253
+ B959E24192BB6A6AA394F661
fileRef
- 32131004E857FFEEF9A22110
+ 382412215CE01A52C4F02CEA
isa
PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
- B84FAB252E9D3BADF28C92D8
+ B97A8A2C660F6B6C75DCFA92
fileRef
- 76C6B8764C67614F79C1DBDA
+ 8BF71082E81897452ABDC942
isa
PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
- B86E21C2EB23E9B7824ED75C
-
- buildActionMask
- 2147483647
- files
-
- 74F074E5BC03E9C4B39609C9
-
- isa
- PBXFrameworksBuildPhase
- runOnlyForDeploymentPostprocessing
- 0
-
- B8716BD4FCEB4879C7B16B42
+ B98E52439DADFB5D3A21FD37
- buildActionMask
- 2147483647
- files
-
- FFB8E37DD52C7D24412B8399
-
+ includeInIndex
+ 1
isa
- PBXFrameworksBuildPhase
- runOnlyForDeploymentPostprocessing
- 0
+ PBXFileReference
+ lastKnownFileType
+ sourcecode.c.objc
+ name
+ EXPUnsupportedObject.m
+ path
+ src/EXPUnsupportedObject.m
+ sourceTree
+ <group>
- B88B44F3E47CDDD1AABE7DB9
+ B9BF7DDC6019657742C1B6BB
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.h
+ sourcecode.c.objc
name
- MKTInvocationContainer.h
+ EXPMatchers+beGreaterThan.m
path
- Source/OCMockito/MKTInvocationContainer.h
+ src/matchers/EXPMatchers+beGreaterThan.m
sourceTree
<group>
- B88FDDCCDAEEA94D44042431
+ B9F73EB655E0B113A1D72498
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.h
+ sourcecode.c.objc
name
- HCLongReturnGetter.h
+ EXPMatchers+beLessThan.m
path
- Source/Core/Helpers/ReturnValueGetters/HCLongReturnGetter.h
+ src/matchers/EXPMatchers+beLessThan.m
sourceTree
<group>
- B8BF3D8D3E6179DD713B14D2
+ BA55EFBBF9BBE45101FA654E
fileRef
- 3BF4F9D847DC803879829E82
+ 279A11C97F0EC334E0B31097
isa
PBXBuildFile
- B91208C577807582BD8EF5EE
+ BAC4506949B9D1CAFA5A0D37
includeInIndex
1
@@ -13728,13 +14343,13 @@
lastKnownFileType
sourcecode.c.objc
name
- TouchThroughUIView.m
+ HCCollect.m
path
- PaperFold/PaperFold/PaperFold/TouchThroughUIView.m
+ Source/Core/Helpers/HCCollect.m
sourceTree
<group>
- B989A76BE2772B72F66B94B8
+ BB2141C0E2303511AFE5E691
includeInIndex
1
@@ -13743,87 +14358,65 @@
lastKnownFileType
sourcecode.c.objc
name
- EXPMatchers+contain.m
+ TyphoonComponentFactory+InstanceBuilder.m
path
- src/matchers/EXPMatchers+contain.m
+ Source/Factory/Internal/TyphoonComponentFactory+InstanceBuilder.m
sourceTree
<group>
- B9913B95D378F004DD626DF4
-
- buildConfigurationList
- 7F3BC6B5D0D7C7E316431E5E
- buildPhases
-
- 8F47EDC0F7A8105BDF198F16
- B86E21C2EB23E9B7824ED75C
- 3118DA5C7BC3069841D3B437
-
- buildRules
-
- dependencies
-
- isa
- PBXNativeTarget
- name
- Pods-PocketForecast-NSURL+QueryDictionary
- productName
- Pods-PocketForecast-NSURL+QueryDictionary
- productReference
- E29229392EF1CE93FC87A070
- productType
- com.apple.product-type.library.static
-
- B9BF4005A6D2F2B1B5733B3E
+ BB2941F55548D2C69DC9AAE9
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.objc
+ sourcecode.c.h
name
- HCIsEqualToNumber.m
+ HCTestFailureHandlerChain.h
path
- Source/Library/Number/HCIsEqualToNumber.m
+ Source/Core/Helpers/TestFailureHandlers/HCTestFailureHandlerChain.h
sourceTree
<group>
- B9C31D190D7C5B5A7E63D6FE
+ BB6D5A5597542CC8262F9839
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.objc
+ sourcecode.c.h
name
- TyphoonMethod.m
+ MKTVerificationData.h
path
- Source/Definition/Method/TyphoonMethod.m
+ Source/OCMockito/MKTVerificationData.h
sourceTree
<group>
- B9CA54A6321E3A303602654D
+ BB8A15DEE7E2F3E82080AF45
fileRef
- CAB5DFF8467310866E4CE5F1
+ 33353153D622CC70F804C4A6
isa
PBXBuildFile
- BA16537E03FE6B133AB1B1EE
+ BBAC57E55C4DDBA203912AF9
- fileRef
- 016D41F9BE75C31F729DC4BA
+ includeInIndex
+ 1
isa
- PBXBuildFile
- settings
-
- COMPILER_FLAGS
- -fobjc-arc -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
-
+ PBXFileReference
+ lastKnownFileType
+ sourcecode.c.objc
+ name
+ EXPMatchers+notify.m
+ path
+ src/matchers/EXPMatchers+notify.m
+ sourceTree
+ <group>
- BA1DB5F9C608FF00987CA73B
+ BBDFDAD7FE7DF50005E6136E
includeInIndex
1
@@ -13832,63 +14425,70 @@
lastKnownFileType
sourcecode.c.h
name
- EXPMatchers+raiseWithReason.h
+ TyphoonTypeConverterRegistry.h
path
- src/matchers/EXPMatchers+raiseWithReason.h
+ Source/TypeConversion/TyphoonTypeConverterRegistry.h
sourceTree
<group>
- BA41F76E3A24CFF958957660
+ BBFB54807CEE74035965FC97
+
+ fileRef
+ AF989E4F8F5CE4BEA8A66919
+ isa
+ PBXBuildFile
+
+ BC13FD69D58C7A7727D473D9
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.objc
- name
- TyphoonSelector.m
+ text.xcconfig
path
- Source/Utils/TyphoonSelector.m
+ Pods-PocketForecast-OCLogTemplate-Private.xcconfig
sourceTree
<group>
- BA59E5FB059CBF326708B9DE
+ BC2BE743D41CFA9DB4723380
fileRef
- 16DB9C2391B4C9FD0A879A78
+ 892C45F1C9975BD9A5272957
isa
PBXBuildFile
- BA6E0D74542CD625954402E0
+ BC592C0D31937EBE3FCDBD3C
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.objc
+ sourcecode.c.h
name
- TyphoonReferenceDefinition.m
+ MKTBoolArgumentGetter.h
path
- Source/Definition/Internal/TyphoonReferenceDefinition.m
+ Source/OCMockito/Helpers/ArgumentGetters/MKTBoolArgumentGetter.h
sourceTree
<group>
- BA7EEF024786D7059B4A775C
+ BC821A8561653EE50A7363EF
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.h
+ sourcecode.c.objc
+ name
+ HCDiagnosingMatcher.m
path
- UIImage+CKUITools.h
+ Source/Core/HCDiagnosingMatcher.m
sourceTree
<group>
- BA989B6E5BEE1B5231C3DC4F
+ BC878B2E39BF88AFBE111450
includeInIndex
1
@@ -13896,58 +14496,68 @@
PBXFileReference
lastKnownFileType
sourcecode.c.objc
- name
- EXPMatchers+endWith.m
path
- src/matchers/EXPMatchers+endWith.m
+ Pods-PocketForecast-dummy.m
sourceTree
<group>
- BAB72BF1F155F5496629A98E
+ BCA93382656A0513A01968B0
- children
-
- 7CD9E5F28F080C0AC35B4501
- CA2FA4906E9A1ADE556EB3EA
- 3B461AB497D4668CF36F69AA
-
+ includeInIndex
+ 1
isa
- PBXGroup
+ PBXFileReference
+ lastKnownFileType
+ sourcecode.c.h
name
- ICLoader
+ HCIsSame.h
path
- ICLoader
+ Source/Library/Object/HCIsSame.h
sourceTree
<group>
- BAE48792D6C4FE1B0A926238
+ BCA96D021A200BB60C8AB3D8
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.objc
+ sourcecode.c.h
name
- TyphoonInjectionByCurrentRuntimeArguments.m
+ MKTUnsignedIntReturnSetter.h
path
- Source/Definition/Injections/TyphoonInjectionByCurrentRuntimeArguments.m
+ Source/OCMockito/Helpers/ReturnValueSetters/MKTUnsignedIntReturnSetter.h
sourceTree
<group>
- BAFC64F86B177B6D5A6C2ED7
+ BCB4CED9D26541F19B399659
+
+ fileRef
+ 0E4CEBB953FFA15569EB4336
+ isa
+ PBXBuildFile
+
+ BCDAEECC3676D0ADBF77E810
fileRef
- F12E74853FDE195837DB1E2B
+ CBC768B700F071B4A5EFA42A
isa
PBXBuildFile
settings
COMPILER_FLAGS
- -fobjc-arc -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+ -fno-objc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
- BAFCB808F669B8E5F0BFB870
+ BCF7536D31BA5ED965B5F19F
+
+ fileRef
+ 95DE0FA4DA9E60ED3713C5F2
+ isa
+ PBXBuildFile
+
+ BD0855CEA5F2C12883EA4DCB
includeInIndex
1
@@ -13956,26 +14566,35 @@
lastKnownFileType
sourcecode.c.h
name
- MKTArgumentGetterChain.h
+ HCAssertThat.h
path
- Source/OCMockito/Helpers/ArgumentGetters/MKTArgumentGetterChain.h
+ Source/Core/HCAssertThat.h
sourceTree
<group>
- BB60FEEBDC6B6618D045B481
+ BD0C08451EE0DE2160E52898
+
+ fileRef
+ 6ADACBD7E122AABBEB835D67
+ isa
+ PBXBuildFile
+
+ BD0F3BB9938D52BA90E2111E
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- text.xcconfig
+ sourcecode.c.h
+ name
+ TyphoonStoryboard.h
path
- Pods-PocketForecast-OCLogTemplate-Private.xcconfig
+ Source/ios/Storyboard/TyphoonStoryboard.h
sourceTree
<group>
- BB977741808EF814F7A1EAD3
+ BD2EDD8D411AB95DDF655C5C
includeInIndex
1
@@ -13983,55 +14602,72 @@
PBXFileReference
lastKnownFileType
sourcecode.c.h
- name
- FoldView.h
path
- PaperFold/PaperFold/PaperFold/FoldView.h
+ Pods-PocketForecast-OCLogTemplate-prefix.pch
sourceTree
<group>
- BBC7D78344A7D1F077BF5DD9
+ BDF44F29F0DD07FA688A1B71
+
+ fileRef
+ 6E4E485474B46C7C8B53BDE5
+ isa
+ PBXBuildFile
+
+ BDFA3D8892FA77ED7B00F26C
fileRef
- DE55DC7BEFDECFB12AD605AA
+ 44BFAE6CE23A05A8DE1B8B32
isa
PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -fno-objc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
- BC8B9CDB57B4E7C840BF85B6
+ BE398CFE5EBC698299C002DE
fileRef
- DE35AEEAF54569597B3CE973
+ 054B6A50EB3842CDD704E585
isa
PBXBuildFile
- BCAF36C3A60783E4FA4EC15B
+ BE6110D4EB485847F9CB1D03
- includeInIndex
- 1
+ buildActionMask
+ 2147483647
+ files
+
+ 731D03CF1F3C7CBEDEAD97AD
+ 974C19C5E91C90578C7054E9
+ 778DC9CCC40948AAFFE7651B
+ FA11123747D43128F83F5A94
+ 2C3C0ABAB59878826C0EB30E
+ 27FB559BD5735B99AB53B9E8
+ 99C723FE4D5E12D3D8ACEC8E
+ 0A3F61249200307DC62F6C80
+ 0A3117A8BF94FD998A6148B3
+ 77DCD4764469EF17C0A55C28
+
isa
- PBXFileReference
- lastKnownFileType
- sourcecode.c.objc
- name
- MKTDoubleArgumentGetter.m
- path
- Source/OCMockito/Helpers/ArgumentGetters/MKTDoubleArgumentGetter.m
- sourceTree
- <group>
+ PBXSourcesBuildPhase
+ runOnlyForDeploymentPostprocessing
+ 0
- BCC46B6F884E3ADD916A6C9C
+ BE6ECBD203910CCA1DBAA784
fileRef
- 2202EC8BE08FAB6B2B66FDD4
+ A163CEAFD96C1D6E4B7AD33B
isa
PBXBuildFile
settings
COMPILER_FLAGS
- -fobjc-arc -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+ -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
- BCCE9A54DA601F0D28050DA5
+ BE6FB00CF8AD8FA4BAA5C25A
includeInIndex
1
@@ -14040,38 +14676,53 @@
lastKnownFileType
sourcecode.c.objc
name
- HCRequireNonNilObject.m
+ MKTBlockArgumentGetter.m
path
- Source/Core/Helpers/HCRequireNonNilObject.m
+ Source/OCMockito/Helpers/ArgumentGetters/MKTBlockArgumentGetter.m
+ sourceTree
+ <group>
+
+ BEE6BE958211BD620E143358
+
+ includeInIndex
+ 1
+ isa
+ PBXFileReference
+ lastKnownFileType
+ sourcecode.c.h
+ name
+ MKTStructArgumentGetter.h
+ path
+ Source/OCMockito/Helpers/ArgumentGetters/MKTStructArgumentGetter.h
sourceTree
<group>
- BCF40AAF349E7403AC7B76A7
+ BF09181CCDE4EF972EEA8E21
fileRef
- 962D305B278FAC54326BAFF2
+ 326EB87DB2CF3F96648AAFA5
isa
PBXBuildFile
settings
COMPILER_FLAGS
- -fobjc-arc -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+ -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
- BCF9773DC7EB95D7642B8CB3
+ BF63DD9DDE1404E80BCD97CE
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.h
+ sourcecode.c.objc
path
- radialGeometry.h
+ UIColor+CKUITools.m
sourceTree
<group>
- BD8B0DE96258BDF107B5CF54
+ BF93558D2D5E3DD6F3368B02
includeInIndex
1
@@ -14080,184 +14731,65 @@
lastKnownFileType
sourcecode.c.h
name
- OCMockito.h
+ MKTStructReturnSetter.h
path
- Source/OCMockito/OCMockito.h
+ Source/OCMockito/Helpers/ReturnValueSetters/MKTStructReturnSetter.h
sourceTree
<group>
- BDB7C565E803E47126677C5F
-
- buildActionMask
- 2147483647
- files
-
- 819211D5B16779C015E1A06A
- B4D5673F260C5724C6845F1A
- 2BEF5E735ED309EEF65F5E1D
- F3D56D1878897C713D234957
- DCE4568CAB41C787EC833D20
- 8882CA3EE1F0E114212EED63
- C51FF3EAC52838C76FC5AB33
- D0680284E94EA6D3CAFD8A2E
- C88603E6B660E0C673FA1A03
- 90A71C16FA01541BF074849C
- 886E940B1AB731C92FB5A28F
- 4B7EB1EE307F3A79870E098A
- 39C9A371DDF08535F0028F65
- 623C97683E786CAB9DF78D4C
- 961A40D8C4DAFAABFF95E601
- 5A36A7E6FEF2DA209215E558
- 270705B80B1C3D19936C0743
- 7771DD4525645BB71F518DF2
- 81C92208FDF89A2E3E23760E
- 0ACF2A22ED83793FE307436F
- 222B1E3E461A08C4552747BE
- 4C97D2AD23C008D2E73E03E5
- A4535EA3E9CFE3997F7B849D
- 9B8EC419943C11B909DA5904
- E7902D2B45C94ABF65B19FD9
- D0509C439FCC49F9B088D798
- 4CAFC908B472C579E4779098
- 97DF5186E6E90C2E533E7CFA
- C633EAFB381F1E8E6A42E7D8
- EBB4DFC3F7696AC196B1C6BA
- BF951FAEB40D73735A9FA764
- 3D130C0B6C383074135C1AB4
- 89478B9D51442F2494DB1A95
- 5892CA69B5E511712DFAA43D
- 971FFA6FFE2CD0BF47CA4252
- 2BBBE47907C564C05150790A
- B74F1DCEF30492C00FA8142B
- FCAF1890710D57030EE4EAF6
- 15B4193D7C70D5D43384BE68
- 66A976FF54C364AF05B1C08D
- 31D2B2C9E36AE1E1708F38F4
- 608CB81E506576F43EE399F1
- 73B1FB0A6BBFD454C98BAEE0
- D1008E3F1176BE606CFFC528
- 806FF0783D56F4FF5A7D235B
- BCC46B6F884E3ADD916A6C9C
- 1CC5A099AD4997FAF89A55A5
- 056CADFBBF0F2420D638326C
- A651022DDA9FC5935CE2BFA9
- BA16537E03FE6B133AB1B1EE
- A31E835E346DDE5C03E0F4AE
- A69BF1E4EF194947A3CAD3EA
- DABF98E923ACCBDB9A46A6D3
- 2749AC223CDD0C14F4B164AF
- 9E39E63346899DF3D55EC731
- 6D9B519CB36861A3C365C065
- 6AD2D6DD68754C00D11455F6
- 09232301800F111331FEB008
- 54011321C8DC3B735110DBB0
- 619B6ED5887CC590B8B874E0
- 7B93A358A8B6DDA52C382674
- 2A051743565E059EB8933BAE
- 3746536CB7AB6CA1D853D59C
- 9F009F3EFD7DA718589A9840
- E141643718174899B85C3A81
- EAF2398EDF1B55D8B675D594
- 77C01EBDC7615A90E1D8C5A9
- 2FA2C62A251F5EF2F6CE4B68
- E4EE65B8BA7880E3B035CA22
- D10550D1ADC6838B38476AFF
- 9F76CB47EA446D01FDD0D626
- 97AD65592F1F4B04808AB32F
- 21E6813D9B331877237B649C
- 5EF65DEA3BD71C61B3EBF4CE
- 373E3041A0CD272C9BA44479
- BCF40AAF349E7403AC7B76A7
- 32BFC4C57C97065C0D9D1979
- A5B1ABEFEDBC33C8A4D00735
- D3A7D05F412A75BBEB594F51
-
- isa
- PBXSourcesBuildPhase
- runOnlyForDeploymentPostprocessing
- 0
-
- BDCE2F2311B3A40FF8A6D9D8
+ C01EDB9848672A1DAF4335CF
fileRef
- 2E96A4D07FE32BD620A13BAA
+ 3CAB0694FFEF1F867C9CB02B
isa
PBXBuildFile
settings
COMPILER_FLAGS
- -fobjc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+ -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
- BE02DC726E107CC21EF12D07
-
- fileRef
- C830076124FD07FF74958408
- isa
- PBXBuildFile
-
- BE3F7F152DF4C76D77C672FD
+ C02C7D28EF68FFB8AE8F1F32
fileRef
- 4E50DCD10BCD3104C3943DF1
+ F6302222D456A88D8B92AB13
isa
PBXBuildFile
settings
COMPILER_FLAGS
- -fobjc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+ -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
- BE66C014AFA695A3AD92E60F
-
- fileRef
- E0AA4BE538BB4BCDB9DDBFD2
- isa
- PBXBuildFile
-
- BEBF99191F90229BCE513116
-
- fileRef
- A68C158701617AC90DB6375A
- isa
- PBXBuildFile
-
- BEE1EBDCCEBFD0D4500EAD7B
-
- fileRef
- 12BF774FD1AEC31FB828AF8E
- isa
- PBXBuildFile
-
- BF2582BFE1D065840D9097A8
+ C06A7577843D58EF495C7C34
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.h
- name
- HCIsDictionaryContainingKey.h
+ sourcecode.c.objc
path
- Source/Library/Collection/HCIsDictionaryContainingKey.h
+ Pods-PocketForecastTests-OCMockito-dummy.m
sourceTree
<group>
- BF3A3F41266FD3304ECF06DC
+ C06D60E88F731FF86ECA55DD
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- text.xcconfig
+ sourcecode.c.h
+ name
+ TyphoonAssemblyPropertyInjectionPostProcessor.h
path
- Pods-PocketForecast-ICLoader-Private.xcconfig
+ Source/Factory/Block/TyphoonAssemblyPropertyInjectionPostProcessor.h
sourceTree
<group>
- BF48FD1A1FE8C32F48525EB7
+ C0739AB9A0D3F515D0777B9C
includeInIndex
1
@@ -14266,248 +14798,224 @@
lastKnownFileType
sourcecode.c.h
name
- HCSelfDescribing.h
+ TyphoonDefinition+Infrastructure.h
path
- Source/Core/HCSelfDescribing.h
+ Source/Definition/Internal/TyphoonDefinition+Infrastructure.h
sourceTree
<group>
- BF7A1BD4AA35FFD0341E70F8
+ C08E87CE73C79C33568484B3
fileRef
- B50B871359C48784F15C96D0
+ 31C60DC3F2443CC01A6BE227
isa
PBXBuildFile
- BF951FAEB40D73735A9FA764
+ C0EDDD259670A27B58EEFCF9
- fileRef
- 32C417CA47F37F86B5CD5D23
+ includeInIndex
+ 1
isa
- PBXBuildFile
- settings
-
- COMPILER_FLAGS
- -fobjc-arc -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
-
+ PBXFileReference
+ lastKnownFileType
+ sourcecode.c.h
+ name
+ TyphoonComponentsPool.h
+ path
+ Source/Factory/Pool/TyphoonComponentsPool.h
+ sourceTree
+ <group>
- BFA237BC74E18D0CE1B10777
+ C1396DE7A362AD3A8F863A3B
- fileRef
- 97CC0D7C230161F56CDB6179
+ buildConfigurations
+
+ 527728AE6D4E7AE552F1646C
+ FB53ADF4D8A72579757DBD58
+
+ defaultConfigurationIsVisible
+ 0
+ defaultConfigurationName
+ Release
isa
- PBXBuildFile
+ XCConfigurationList
- C04B03A5ECE858624D96CCCE
+ C1C69D5DF5E9CB14F441F839
- fileRef
- 06CC2BE604ED59B3CE26ACA5
+ includeInIndex
+ 1
isa
- PBXBuildFile
+ PBXFileReference
+ lastKnownFileType
+ sourcecode.c.objc
+ name
+ TyphoonBundleResource.m
+ path
+ Source/Configuration/Resource/TyphoonBundleResource.m
+ sourceTree
+ <group>
- C0A461F0F00297326563EE07
+ C229DC47DBC0240447E65ECF
+ includeInIndex
+ 1
isa
PBXFileReference
lastKnownFileType
- wrapper.framework
+ sourcecode.c.objc
name
- QuartzCore.framework
+ HCUnsignedLongReturnGetter.m
path
- Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS7.1.sdk/System/Library/Frameworks/QuartzCore.framework
+ Source/Core/Helpers/ReturnValueGetters/HCUnsignedLongReturnGetter.m
sourceTree
- DEVELOPER_DIR
+ <group>
- C0D175D3860CD8084E81F0C2
+ C22C93ADA8CBDB379174C97B
fileRef
- 05152266727FA4BFE9F51012
+ B98E52439DADFB5D3A21FD37
isa
PBXBuildFile
settings
COMPILER_FLAGS
- -fobjc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+ -fno-objc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
- C0E8D30243B94157DC1FBA62
+ C281829BAAE1244A3FED1D57
fileRef
- 86A0F76A90E6858BCE56D7A8
+ E6EB648DD55AAE6458CFA2AE
isa
PBXBuildFile
- settings
-
- COMPILER_FLAGS
- -fobjc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
-
- C129AC40D7F5969080132D94
+ C2CDFC2C35A3009509BC2ADF
- fileRef
- 258F6D8BBD6EB8E36A4855E4
+ includeInIndex
+ 1
isa
- PBXBuildFile
- settings
-
- COMPILER_FLAGS
- -fobjc-arc -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
-
+ PBXFileReference
+ lastKnownFileType
+ sourcecode.c.objc
+ name
+ HCOrderingComparison.m
+ path
+ Source/Library/Number/HCOrderingComparison.m
+ sourceTree
+ <group>
- C12E07399D8069D2CB379489
+ C2D6E7875788704544BC7E35
- baseConfigurationReference
- 2319C460EE01E5E74FC2B309
- buildSettings
-
- ALWAYS_SEARCH_USER_PATHS
- NO
- COPY_PHASE_STRIP
- NO
- DSTROOT
- /tmp/xcodeproj.dst
- GCC_DYNAMIC_NO_PIC
- NO
- GCC_OPTIMIZATION_LEVEL
- 0
- GCC_PRECOMPILE_PREFIX_HEADER
- YES
- GCC_PREFIX_HEADER
- Target Support Files/Pods-PocketForecast-CKUITools/Pods-PocketForecast-CKUITools-prefix.pch
- GCC_PREPROCESSOR_DEFINITIONS
-
- DEBUG=1
- $(inherited)
-
- GCC_SYMBOLS_PRIVATE_EXTERN
- NO
- INSTALL_PATH
- $(BUILT_PRODUCTS_DIR)
- IPHONEOS_DEPLOYMENT_TARGET
- 7.0
- OTHER_LDFLAGS
-
- OTHER_LIBTOOLFLAGS
-
- PRODUCT_NAME
- $(TARGET_NAME)
- PUBLIC_HEADERS_FOLDER_PATH
- $(TARGET_NAME)
- SDKROOT
- iphoneos
- SKIP_INSTALL
- YES
-
+ includeInIndex
+ 1
isa
- XCBuildConfiguration
+ PBXFileReference
+ lastKnownFileType
+ sourcecode.c.objc
name
- Debug
+ TyphoonDefinition.m
+ path
+ Source/Definition/TyphoonDefinition.m
+ sourceTree
+ <group>
- C132DE33585380DB17A36F6B
+ C310A28E674163CC8E6F92EB
fileRef
- 81B7A87C241CC86D7942B171
+ 24B5CB2060C6D24949E7769B
isa
PBXBuildFile
settings
COMPILER_FLAGS
- -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+ -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
- C156C05A87DF38D64AFD08DB
+ C31DA6C2B861CF0B9CDBB13E
fileRef
- FB87F09D372E8323A261837C
+ 92FAE74292BD93152155B542
isa
PBXBuildFile
- C1909E1386BA6B8A62FAB0F3
+ C32B1E60AFDE92D67F2791D0
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.objc
- name
- MKTCharArgumentGetter.m
+ text.xcconfig
path
- Source/OCMockito/Helpers/ArgumentGetters/MKTCharArgumentGetter.m
+ Pods-PocketForecast-CKUITools.xcconfig
sourceTree
<group>
- C1EBAF075FC2810B8258F5C9
-
- fileRef
- 5AFFB04F25DF37ECB284A6F3
- isa
- PBXBuildFile
- settings
-
- COMPILER_FLAGS
- -fobjc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
-
-
- C211A013341DC56EE0F84EA4
+ C3A0F5C52AE2453F4E5C1D94
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- text.xcconfig
+ sourcecode.c.h
path
- Pods-PocketForecast-ICLoader.xcconfig
+ Pods-PocketForecastTests-OCMockito-prefix.pch
sourceTree
<group>
- C2189F828E34765D52520505
+ C435D94064EFD3B84C1BC97F
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.objc
+ sourcecode.c.h
name
- TyphoonNSURLTypeConverter.m
+ TyphoonInjectionByObjectInstance.h
path
- Source/TypeConversion/Converters/TyphoonNSURLTypeConverter.m
+ Source/Definition/Injections/TyphoonInjectionByObjectInstance.h
sourceTree
<group>
- C2C76F3CF80801B9040C2781
+ C45AB3EF4326603C26FB7401
+
+ fileRef
+ D2187AF7EEE21AD6CCE33AA9
+ isa
+ PBXBuildFile
+
+ C49D383668892673420000AC
baseConfigurationReference
- BB60FEEBDC6B6618D045B481
+ 06C175668D6482182E7B993E
buildSettings
ALWAYS_SEARCH_USER_PATHS
NO
COPY_PHASE_STRIP
- NO
+ YES
DSTROOT
/tmp/xcodeproj.dst
- GCC_DYNAMIC_NO_PIC
- NO
- GCC_OPTIMIZATION_LEVEL
- 0
GCC_PRECOMPILE_PREFIX_HEADER
YES
GCC_PREFIX_HEADER
- Target Support Files/Pods-PocketForecast-OCLogTemplate/Pods-PocketForecast-OCLogTemplate-prefix.pch
- GCC_PREPROCESSOR_DEFINITIONS
-
- DEBUG=1
- $(inherited)
-
- GCC_SYMBOLS_PRIVATE_EXTERN
- NO
+ Target Support Files/Pods-PocketForecast-PaperFold/Pods-PocketForecast-PaperFold-prefix.pch
INSTALL_PATH
$(BUILT_PRODUCTS_DIR)
IPHONEOS_DEPLOYMENT_TARGET
7.0
+ OTHER_CFLAGS
+
+ -DNS_BLOCK_ASSERTIONS=1
+ $(inherited)
+
+ OTHER_CPLUSPLUSFLAGS
+
+ -DNS_BLOCK_ASSERTIONS=1
+ $(inherited)
+
OTHER_LDFLAGS
OTHER_LIBTOOLFLAGS
@@ -14520,90 +15028,79 @@
iphoneos
SKIP_INSTALL
YES
+ VALIDATE_PRODUCT
+ YES
isa
XCBuildConfiguration
name
- Debug
-
- C2DA5A4524C82066B8A7BB2C
-
- fileRef
- B76AD62715346BFD8F9D3435
- isa
- PBXBuildFile
+ Release
- C364246CA9711D2F413F376D
+ C4EEC30373F52F373AE3ADA8
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.objc
+ sourcecode.c.h
name
- TyphoonComponentFactory+InstanceBuilder.m
+ TyphoonJsonStyleConfiguration.h
path
- Source/Factory/Internal/TyphoonComponentFactory+InstanceBuilder.m
+ Source/Configuration/ConfigPostProcessor/TyphoonConfiguration/TyphoonJsonStyleConfiguration.h
sourceTree
<group>
- C37FE9F4F241B80F4EA541E6
+ C4F0C885DEEBE1ED1FE96B0B
fileRef
- 27323D5D76F10955193670F3
+ 2C79701BE3DE1891206F5424
isa
PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
- C3C41C9F30258C983F028BDD
-
- containerPortal
- 66C2EBDD522B033360138729
- isa
- PBXContainerItemProxy
- proxyType
- 1
- remoteGlobalIDString
- 132C5A4F6375AD09ADB02E07
- remoteInfo
- Pods-PocketForecast-ICLoader
-
- C3C6D7835D379DA87226FE4A
+ C52A7A095BDE7A0196017A15
fileRef
- CBC4AC883D2D72FD7680CBE4
+ EE818A50BB7E3F718FF1CAF9
isa
PBXBuildFile
- C3EC23C7AB476B1FF6D52147
+ C595E916FAD41448103AE624
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.objc
+ sourcecode.c.h
name
- HCIsCollectionContaining.m
+ TyphoonAssembly.h
path
- Source/Library/Collection/HCIsCollectionContaining.m
+ Source/Factory/Block/TyphoonAssembly.h
sourceTree
<group>
- C3FBB7053B1E9AD06F9132A8
+ C5FEDC89B366FCBCD9FDF0C8
- explicitFileType
- archive.ar
includeInIndex
- 0
+ 1
isa
PBXFileReference
+ lastKnownFileType
+ sourcecode.c.objc
+ name
+ MKTLongLongArgumentGetter.m
path
- libPods-PocketForecast-CKUITools.a
+ Source/OCMockito/Helpers/ArgumentGetters/MKTLongLongArgumentGetter.m
sourceTree
- BUILT_PRODUCTS_DIR
+ <group>
- C402D7BF4115A9DCF1E6B2A1
+ C6A380FCDBE8D3B0B4B5DA1B
includeInIndex
1
@@ -14612,58 +15109,43 @@
lastKnownFileType
sourcecode.c.objc
name
- HCIsIn.m
+ TyphoonJsonStyleConfiguration.m
path
- Source/Library/Collection/HCIsIn.m
+ Source/Configuration/ConfigPostProcessor/TyphoonConfiguration/TyphoonJsonStyleConfiguration.m
sourceTree
<group>
- C4051BE437636FB6A39ED6BA
-
- fileRef
- 43D5DBE24923EDBE011DB617
- isa
- PBXBuildFile
- settings
-
- COMPILER_FLAGS
- -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
-
-
- C409FB46B985858DF9AD1D54
+ C6A6C6ACA54619886DB6260E
- children
-
- 1201075091882EF7A552237B
- 6C79D36727AB2BDCA7C2C827
- 5CC374DD8194E7A5C88A2617
- 23D721D5FAA15FF8AFF82B14
-
+ includeInIndex
+ 1
isa
- PBXGroup
+ PBXFileReference
+ lastKnownFileType
+ sourcecode.c.h
name
- Support Files
+ MKTUnsignedLongArgumentGetter.h
path
- ../Target Support Files/Pods-PocketForecastTests-OCMockito
+ Source/OCMockito/Helpers/ArgumentGetters/MKTUnsignedLongArgumentGetter.h
sourceTree
<group>
- C445932EBE68D7355E6C3DF9
+ C6DDA6FD1BF4FC9453561D1D
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.h
+ sourcecode.c.objc
name
- MKTObjectArgumentGetter.h
+ HCFloatReturnGetter.m
path
- Source/OCMockito/Helpers/ArgumentGetters/MKTObjectArgumentGetter.h
+ Source/Core/Helpers/ReturnValueGetters/HCFloatReturnGetter.m
sourceTree
<group>
- C4624651D753064C500AA5B5
+ C6E7C64A03598C6E696CEA89
includeInIndex
1
@@ -14672,96 +15154,101 @@
lastKnownFileType
sourcecode.c.objc
name
- HCHasCount.m
+ HCBaseMatcher.m
path
- Source/Library/Collection/HCHasCount.m
+ Source/Core/HCBaseMatcher.m
sourceTree
<group>
- C480CCDE41BB6D06A75E7EF6
-
- fileRef
- F871F5A9A5574AD41FD7EE1C
- isa
- PBXBuildFile
- settings
-
- COMPILER_FLAGS
- -fobjc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
-
-
- C4913171938E5F665E45ECA9
+ C702D5992E8D48AB71E8053B
fileRef
- 28897A4277450AA9F240641A
+ BD0855CEA5F2C12883EA4DCB
isa
PBXBuildFile
- settings
-
- COMPILER_FLAGS
- -fobjc-arc -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
-
- C4AB9509203C0570719405F9
+ C77F13014D3DB5649A9512A8
- fileRef
- 0EAE3520D7A46854DA0043C1
+ includeInIndex
+ 1
isa
- PBXBuildFile
+ PBXFileReference
+ lastKnownFileType
+ sourcecode.c.objc
+ name
+ HCIsAnything.m
+ path
+ Source/Library/Logical/HCIsAnything.m
+ sourceTree
+ <group>
- C4AF0EF32B5EAC291E2B666D
+ C7DC08044239153ADDD3AC88
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.h
+ sourcecode.c.objc
name
- HCWrapInMatcher.h
+ TyphoonInjectionByRuntimeArgument.m
path
- Source/Core/Helpers/HCWrapInMatcher.h
+ Source/Definition/Injections/TyphoonInjectionByRuntimeArgument.m
sourceTree
<group>
- C4D38D31D51D5DF30E4109FA
+ C8480717C2FC66DD79C9CE38
fileRef
- 5C35D17EF10A6762CE8174FF
+ 98E4D3C39C978C1C82EAA0BD
isa
PBXBuildFile
- C4D4921D35D50C1639930997
+ C872D50FDBF73929EC2EF809
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.h
+ sourcecode.c.objc
name
- MKTCapturingMatcher.h
+ TyphoonInjectionByComponentFactory.m
path
- Source/OCMockito/MKTCapturingMatcher.h
+ Source/Definition/Injections/TyphoonInjectionByComponentFactory.m
sourceTree
<group>
- C4DD0452C05EA8F534A674C0
+ C938CD4F8DE4F08EE5343C84
+
+ fileRef
+ 23AAAE74C608E61BD5C8C97E
+ isa
+ PBXBuildFile
+
+ CA2ACCE6F27BA878DB30A154
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.h
+ sourcecode.c.objc
name
- HCOrderingComparison.h
+ TyphoonFactoryDefinition.m
path
- Source/Library/Number/HCOrderingComparison.h
+ Source/Definition/Internal/TyphoonFactoryDefinition.m
sourceTree
<group>
- C4F0C10696A3905B4A89E0E7
+ CA735B3370446EFD843D6D0F
+
+ fileRef
+ CAC1704B7895AD0448F0FD8A
+ isa
+ PBXBuildFile
+
+ CAC1704B7895AD0448F0FD8A
includeInIndex
1
@@ -14770,74 +15257,54 @@
lastKnownFileType
sourcecode.c.h
name
- TyphoonPathResource.h
+ HCStringEndsWith.h
path
- Source/Configuration/Resource/TyphoonPathResource.h
+ Source/Library/Text/HCStringEndsWith.h
sourceTree
<group>
- C51FF3EAC52838C76FC5AB33
-
- fileRef
- E86F1A29E2D4A0936B60048A
- isa
- PBXBuildFile
- settings
-
- COMPILER_FLAGS
- -fobjc-arc -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
-
-
- C52AAE42E7E08443E575198F
+ CAEFC7846AB8166CCCDE6880
fileRef
- E7D6D6E7E3CB754DDFA07AF7
+ F3D14813E70EA6C86EF80B8F
isa
PBXBuildFile
- C53AB38DBE689A77ADD81CAE
+ CB48297854B6154014B83BBC
fileRef
- 0E2350AFB3C1D5AF09EF5294
+ AAD2185F5011CB60702C45F7
isa
PBXBuildFile
settings
COMPILER_FLAGS
- -fobjc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+ -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
- C54614DBD9830585544D0F23
+ CB513D5D48F43EDFB78D51E3
- includeInIndex
- 1
+ fileRef
+ DF0333EA0EB27DA55BC0C7AF
isa
- PBXFileReference
- lastKnownFileType
- sourcecode.c.h
- name
- TyphoonRuntimeArguments.h
- path
- Source/Factory/Block/TyphoonRuntimeArguments.h
- sourceTree
- <group>
+ PBXBuildFile
- C5992F7AB45240C4EB907B78
+ CB53902A510FD34ABDE949B5
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.h
+ sourcecode.c.objc
name
- TyphoonPatcher.h
+ TyphoonFactoryPropertyInjectionPostProcessor.m
path
- Source/Test/Patcher/TyphoonPatcher.h
+ Source/Factory/Internal/TyphoonFactoryPropertyInjectionPostProcessor.m
sourceTree
<group>
- C5FD0101002AFAAAF11DF7B9
+ CBC768B700F071B4A5EFA42A
includeInIndex
1
@@ -14845,31 +15312,26 @@
PBXFileReference
lastKnownFileType
sourcecode.c.objc
+ name
+ EXPMatchers+beCloseTo.m
path
- Pods-PocketForecast-NSURL+QueryDictionary-dummy.m
+ src/matchers/EXPMatchers+beCloseTo.m
sourceTree
<group>
- C633EAFB381F1E8E6A42E7D8
+ CBD41C565F3C196640A343DB
fileRef
- 4EEDE92B742933B3FC2E6CCF
+ 4E1EF8294018360228465586
isa
PBXBuildFile
settings
COMPILER_FLAGS
- -fobjc-arc -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+ -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
- C634896EB933EA90FF2231C1
-
- fileRef
- 9E44CFEEE5DC22BE0BC26214
- isa
- PBXBuildFile
-
- C64363C52BBDFC5B312B00C5
+ CBD59C75C5E1160AC14DB4DE
includeInIndex
1
@@ -14878,79 +15340,85 @@
lastKnownFileType
sourcecode.c.objc
name
- TyphoonPathResource.m
+ MKTMockingProgress.m
path
- Source/Configuration/Resource/TyphoonPathResource.m
+ Source/OCMockito/MKTMockingProgress.m
sourceTree
<group>
- C644A04FDD2216B6EAB208D2
+ CBDE321FBFA0E1EE99D9C5CD
- includeInIndex
- 1
+ fileRef
+ 6B67518E6329CA33B1E58827
isa
- PBXFileReference
- lastKnownFileType
- sourcecode.c.h
- name
- HCIsCollectionOnlyContaining.h
- path
- Source/Library/Collection/HCIsCollectionOnlyContaining.h
- sourceTree
- <group>
+ PBXBuildFile
+
+ CBE85836561C07037BBE2188
+
+ fileRef
+ 42512C8BFB4FA37A33641B4D
+ isa
+ PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
- C65DB4461F2C55DAF4C30AA4
+ CC2D6C6B0591BC18500856D8
fileRef
- 7F8FE144EF3E051077997C03
+ 74B94E63DC66DCC657B677C5
isa
PBXBuildFile
- C6BE253DEB0F251A754BA776
+ CC5FE158635D0E73A1620C17
fileRef
- 48AD0D5987DA890CD6B25F62
+ 4240BF30EFAA2D77E9D3F7AE
isa
PBXBuildFile
- C719205B9CDC2EE72B31D349
+ CC62FF1EF5B7A119486FDC1C
- includeInIndex
- 1
+ fileRef
+ 3CED84D8F1A1F1D4A3CFCA26
isa
- PBXFileReference
- lastKnownFileType
- sourcecode.c.h
- name
- HCReturnTypeHandlerChain.h
- path
- Source/Core/Helpers/ReturnValueGetters/HCReturnTypeHandlerChain.h
- sourceTree
- <group>
+ PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
- C77B6544CF0C6C44D21E248C
+ CCD7EFE0D0C49498EC1EE8C8
fileRef
- D514B9434AF3DF21AEAFD6BF
+ 7164601CCDF76A41B0A5E590
isa
PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
- C7ADFC102C61FC96FEBE2830
+ CD60BA981BFCFAB1F8A13C68
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.h
+ sourcecode.c.objc
name
- TyphoonComponentFactory+TyphoonDefinitionRegisterer.h
+ TyphoonLoadedView.m
path
- Source/Factory/Internal/TyphoonComponentFactory+TyphoonDefinitionRegisterer.h
+ Source/ios/Storyboard/TyphoonLoadedView.m
sourceTree
<group>
- C826EFF6FA273B8511270D27
+ CD8F20B7437907578207C72E
includeInIndex
1
@@ -14959,13 +15427,13 @@
lastKnownFileType
sourcecode.c.h
name
- TyphoonFactoryPropertyInjectionPostProcessor.h
+ TyphoonLoadedView.h
path
- Source/Factory/Internal/TyphoonFactoryPropertyInjectionPostProcessor.h
+ Source/ios/Storyboard/TyphoonLoadedView.h
sourceTree
<group>
- C830076124FD07FF74958408
+ CDCFB898275F2B233DAF6F13
includeInIndex
1
@@ -14974,13 +15442,25 @@
lastKnownFileType
sourcecode.c.h
name
- TyphoonMethodSwizzler.h
+ PaperFoldSwipeHintView.h
path
- Source/Utils/Swizzle/TyphoonMethodSwizzler.h
+ PaperFold/PaperFold/PaperFold/PaperFoldSwipeHintView.h
sourceTree
<group>
- C87424478EB68D27718C9256
+ CE110F95A860AD1D10B861DC
+
+ fileRef
+ 297F287050BADC61800B21E2
+ isa
+ PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
+
+ CE24D2B3018BAB49A62A5AFA
includeInIndex
1
@@ -14989,20 +15469,13 @@
lastKnownFileType
sourcecode.c.h
name
- PaperFoldConstants.h
+ TyphoonAssemblySelectorAdviser.h
path
- PaperFold/PaperFold/PaperFold/PaperFoldConstants.h
+ Source/Factory/Block/TyphoonAssemblySelectorAdviser.h
sourceTree
<group>
- C87C0942CD078C26D2356A67
-
- fileRef
- 4C35FAAFE1EED579E7EEF8A4
- isa
- PBXBuildFile
-
- C87CBD6B449B085CC2FB11DE
+ CE2533A87715E3DFBFF332B7
includeInIndex
1
@@ -15011,132 +15484,208 @@
lastKnownFileType
sourcecode.c.h
name
- TyphoonAssemblyAdviser.h
+ MKTInvocationContainer.h
path
- Source/Factory/Block/TyphoonAssemblyAdviser.h
+ Source/OCMockito/MKTInvocationContainer.h
sourceTree
<group>
- C88603E6B660E0C673FA1A03
+ CE4366C2595D927EDBC92D55
fileRef
- F24548C7A2D000854CCA47BD
+ 7EA54311FC89A7958772373A
isa
PBXBuildFile
settings
COMPILER_FLAGS
- -fobjc-arc -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+ -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
- C9176AD9EAEA200F57572E12
+ CE6A596391837AE2ADF3E681
fileRef
- A201C4AC15FB19A99DC22F13
+ AEEB2C554A13F0C3F8EED630
isa
PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -fno-objc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
- C98B64C922DA616099F91330
-
- includeInIndex
- 1
- isa
- PBXFileReference
- lastKnownFileType
- sourcecode.c.h
- path
- Pods-PocketForecast-environment.h
- sourceTree
- <group>
-
- C9AA264FD5B2E936E003C09E
+ CE74AC5E0BE543D2040C826F
fileRef
- 5AFE8D83DB0B29C743586467
+ 30EBBB50AC0D1EF36FC12EDB
isa
PBXBuildFile
- C9C70FCB1D4A5C0882B0F822
+ CED84F039EF578F84A4579CA
+ explicitFileType
+ archive.ar
includeInIndex
- 1
+ 0
isa
PBXFileReference
- lastKnownFileType
- sourcecode.c.h
- name
- NSValue+Expecta.h
path
- src/NSValue+Expecta.h
+ libPods-PocketForecast-CKUITools.a
sourceTree
- <group>
+ BUILT_PRODUCTS_DIR
+
+ CEEEC3651EC23B5B4F026836
+
+ buildActionMask
+ 2147483647
+ files
+
+ 7F22B0D09FE59099A494672E
+ 6A160819FBFD6673F7AE5336
+ 4719038F4C88B4D16D108652
+ 1F139BD4FD0CB4FDB5E58043
+ E3F61CD0498C9170EAA56EEA
+ 28B25EFCC95490EE9EC98E2E
+ 3901605D1CF2ABBD27ABA6C6
+ A410E31EACB8C5F660D3B467
+
+ isa
+ PBXSourcesBuildPhase
+ runOnlyForDeploymentPostprocessing
+ 0
- C9E7578895713D8592F4EF1D
+ CF0541BEE9CD1117BABE5BD5
fileRef
- 92BEDED29D6ECBE98E7AF578
+ 574B8F82969F6E7C19D696C3
isa
PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
- CA2CABD1017958D6B0039B1C
+ CF08EB33583C4B8C3FCA2368
- includeInIndex
- 1
isa
- PBXFileReference
- lastKnownFileType
- sourcecode.c.objc
+ PBXTargetDependency
name
- TyphoonInjectionContext.m
- path
- Source/Definition/Injections/TyphoonInjectionContext.m
- sourceTree
- <group>
+ Pods-PocketForecastTests-OCHamcrest
+ target
+ 5435E2F75D9AF2AFF4987142
+ targetProxy
+ 4D03B9FF3F7F465E619A2A80
- CA2FA4906E9A1ADE556EB3EA
+ CF6AAB26BD222EACEA30AFCE
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.objc
+ sourcecode.c.h
+ name
+ TyphoonInjectionByReference.h
path
- ICLoader.m
+ Source/Definition/Injections/TyphoonInjectionByReference.h
sourceTree
<group>
- CA8B3A3233DB719E63B8665E
+ CF9806554BFC8BD1420E496E
- includeInIndex
- 1
+ buildActionMask
+ 2147483647
+ files
+
+ D74BDCAC4833485DF1DDB4BC
+ 2D01B7EAFBB44E61B85206FA
+ DE9CCA87B3F570E4B3E08E2F
+ D6A22DF4064FF17F0F87BD3B
+ 54687343697BE04AC6BBD0AA
+ D156ABE4903B689D2FDEFCAB
+ 95CE4F5570FB9AF70E56ABBA
+ 69182D4A2C8726AFF3CDC4D7
+ 01298EA2657BE7D6F750BAC1
+ CC2D6C6B0591BC18500856D8
+ 2EA8A4BDC48F3DEEE0E7630B
+ 52EC52E062677B6603677C97
+ 5409D4F2C153384A48C03058
+ 69A31D238F3AE89607198DFB
+ 289FE25F7FEFB6347E511E08
+ D0CE798906BB9E9033254D9B
+ 8C27545C15D0FAD561E3BBF1
+ 2B79039415652F30B4C1136D
+ 2968BCB1B8FF1D009448B97A
+ E2356076B5207D7CAF841201
+ 6CC6B01833FDA4C1C2413548
+ 0DA2BD7AE36E623A87ED4287
+ 5221CD6158CAC5B1102ABBF0
+ 817CFEE2AC5796C08F19855B
+ D89B9E72E652A47D8652AD76
+ FD0E4D3FEB6DA97E4B0A71E6
+ 26A48C64EBD8251BD73F8471
+ 3ECDB7B0669FD7D22D9645D9
+ 1991EC6377AEC4D3E5FCB07A
+ 53AF6429DE6F195A5AE78DAA
+ 2D56A9B53473894A6C6977DA
+ 87EEB03ACA5D77A89A2D6829
+ E5D8FE7C0D3BC9E1A79B6ABF
+ FC180576E9E7B51C8984E928
+ E7AC1944490F52A67C4A2925
+ 621A29D74FA75CC110796554
+ EAA146BC034DDEB46BE681F9
+ 2FB70652686C5B8D9E3C28CB
+ 52F37F289340D8EB4A4A768F
+ 39177EF38E6F4AC3540A7A61
+ 9015A9503D2B62D9B3B89D18
+ 9005122F4E33ADA3572B24CE
+ 2816AFCFE26FE2EFE95D49D3
+ 3CA9A85C8932ABE6DD0218B0
+ 7E1A8DDB2D449F492DBBDF6E
+ 3D32740DA32A838020F3AFB0
+ D89B60DEDCD9D5334C5597DE
+ F162AF5CBE84201F88026077
+ 904E3D462BD11FF1D8E31906
+ AA372DAB246C553FBF2C5E4D
+ 9F15165663C589C9876C3B6D
+ 69E8E83DD54165005DA87E14
+ 91B18C154B996A5E760E33B8
+ 613AFEA2256AD0F7C50391AE
+ 1C5395451B334D35EF5680CC
+ 216D656D2121AE15F4F27D7E
+ 6BBC2E9175D02DF8E8D61844
+ 90B047BA2074948584687B4C
+ 1950236695CAE834365F9E2F
+ EBC786CA40C591F438B46A50
+ 1B92DD449354C108D420DE02
+ 19C3D371E43D1B34C679002E
+ 01AFAB4267F90131910EF84D
+ 2EE1900B6A6F7F3B81E06C32
+ 8E4352E9888BFAF11F3D0387
+ BDF44F29F0DD07FA688A1B71
+
isa
- PBXFileReference
- lastKnownFileType
- sourcecode.c.objc
- name
- MKTSelectorArgumentGetter.m
- path
- Source/OCMockito/Helpers/ArgumentGetters/MKTSelectorArgumentGetter.m
- sourceTree
- <group>
+ PBXHeadersBuildPhase
+ runOnlyForDeploymentPostprocessing
+ 0
- CA959B703FF3FE0D8891AACE
+ CFA4C3CCCB45B502CF0C0E23
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.objc
+ sourcecode.c.h
name
- NSArray+TyphoonManualEnumeration.m
+ MKTCharReturnSetter.h
path
- Source/Utils/NSArray+TyphoonManualEnumeration.m
+ Source/OCMockito/Helpers/ReturnValueSetters/MKTCharReturnSetter.h
sourceTree
<group>
- CAB5DFF8467310866E4CE5F1
+ CFB22A1CCBF2E45D747D1EDC
includeInIndex
1
@@ -15145,40 +15694,28 @@
lastKnownFileType
sourcecode.c.h
name
- EXPMatchers+endWith.h
+ EXPMatchers+equal.h
path
- src/matchers/EXPMatchers+endWith.h
+ src/matchers/EXPMatchers+equal.h
sourceTree
<group>
- CAC6F8B2C87A549208707CAE
+ CFFEFCCAE72BD139399DD9F6
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.h
+ sourcecode.c.objc
name
- HCTestFailureHandler.h
+ MKTUnsignedLongLongArgumentGetter.m
path
- Source/Core/Helpers/TestFailureHandlers/HCTestFailureHandler.h
+ Source/OCMockito/Helpers/ArgumentGetters/MKTUnsignedLongLongArgumentGetter.m
sourceTree
<group>
- CAE8E96F3014740221FCC1B4
-
- fileRef
- FB293E7DC88E5CF65C965917
- isa
- PBXBuildFile
- settings
-
- COMPILER_FLAGS
- -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
-
-
- CAFEA57640B4FAD13C2A68BA
+ D002E30299B33C96C7BD100B
includeInIndex
1
@@ -15187,26 +15724,13 @@
lastKnownFileType
sourcecode.c.h
name
- HCNumberAssert.h
+ TyphoonInjectionByCurrentRuntimeArguments.h
path
- Source/Library/Number/HCNumberAssert.h
+ Source/Definition/Injections/TyphoonInjectionByCurrentRuntimeArguments.h
sourceTree
<group>
- CB24482BCE49ACDB7E000400
-
- explicitFileType
- archive.ar
- includeInIndex
- 0
- isa
- PBXFileReference
- path
- libPods-PocketForecast-OCLogTemplate.a
- sourceTree
- BUILT_PRODUCTS_DIR
-
- CB2906129E607812A6E9D4D2
+ D0175D953A50F541347C6DC2
includeInIndex
1
@@ -15215,45 +15739,33 @@
lastKnownFileType
sourcecode.c.objc
name
- TyphoonAbstractInjection.m
+ HCStringDescription.m
path
- Source/Definition/Injections/TyphoonAbstractInjection.m
+ Source/Core/HCStringDescription.m
sourceTree
<group>
- CB2DCBE3DBD14A82EFD34433
-
- fileRef
- 190BC3DAB334E76B5FA16D00
- isa
- PBXBuildFile
- settings
-
- COMPILER_FLAGS
- -fobjc-arc -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
-
-
- CBC4AC883D2D72FD7680CBE4
+ D0184781AAFBA9934E0FE071
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.h
+ sourcecode.c.objc
name
- HCTestFailure.h
+ HCStringContainsInOrder.m
path
- Source/Core/Helpers/TestFailureHandlers/HCTestFailure.h
+ Source/Library/Text/HCStringContainsInOrder.m
sourceTree
<group>
- CC21516886A9BC6DE74E6157
+ D032EA2354BAE4BD7A13C2D6
buildConfigurations
- FF0F68BEF388D2732C5DD2AB
- 93950DBC42371C2AFA667AB1
+ 7EB4D6F1F228BF06F44619BE
+ 8B55105FAC69AF85E033AECE
defaultConfigurationIsVisible
0
@@ -15262,89 +15774,52 @@
isa
XCConfigurationList
- CCC70FFE6B6E1A3183D7B072
-
- includeInIndex
- 1
- isa
- PBXFileReference
- lastKnownFileType
- sourcecode.c.objc
- path
- Pods-PocketForecast-ICLoader-dummy.m
- sourceTree
- <group>
-
- CD3E50CE3DBF3D9521F087BD
+ D068FB7B9AAF95CCB6AADCBB
- includeInIndex
- 1
+ fileRef
+ 29F2F5DC3EE667230E447137
isa
- PBXFileReference
- lastKnownFileType
- sourcecode.c.h
- name
- MKTStructArgumentGetter.h
- path
- Source/OCMockito/Helpers/ArgumentGetters/MKTStructArgumentGetter.h
- sourceTree
- <group>
+ PBXBuildFile
- CD43CB60AB9F322B0FF93300
+ D08D168D9C6EC9685F61B566
fileRef
- 5ADBBB18CCC11F6E3C4FBC40
+ 5BFF2E670FF4C3A878FA5658
isa
PBXBuildFile
settings
COMPILER_FLAGS
- -fobjc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+ -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
- CD8D93C47B20E0862A8F4903
-
- buildActionMask
- 2147483647
- files
-
- 0E0C452CEC278791523A0154
-
- isa
- PBXFrameworksBuildPhase
- runOnlyForDeploymentPostprocessing
- 0
-
- CE02C29F29E0AB65DABD2638
-
- includeInIndex
- 1
- isa
- PBXFileReference
- lastKnownFileType
- sourcecode.c.h
- name
- MKTPrimitiveArgumentMatching.h
- path
- Source/OCMockito/MKTPrimitiveArgumentMatching.h
- sourceTree
- <group>
-
- CE11034C9021287BD826B763
+ D0A7964A271F0683420B9376
fileRef
- 952342C8F74EE0E2CFE5059D
+ 19A6074E7FCE23417D893DCB
isa
PBXBuildFile
- CE1C4ABF1C42A3480EB1A8DC
+ D0ABFD946620CFFBF8B8F9BC
fileRef
- 13DD25621A7CF13FA27F8E81
+ F1631F8A7E0BA1007D4438FB
+ isa
+ PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
+
+ D0CE798906BB9E9033254D9B
+
+ fileRef
+ 52C822302EFB9AFA494E1645
isa
PBXBuildFile
- CE4B2CE9F33E2978042BEA30
+ D12E97B5802920FAF5F98491
includeInIndex
1
@@ -15353,104 +15828,188 @@
lastKnownFileType
sourcecode.c.h
name
- HCRequireNonNilObject.h
+ HCXCTestFailureHandler.h
path
- Source/Core/Helpers/HCRequireNonNilObject.h
+ Source/Core/Helpers/TestFailureHandlers/HCXCTestFailureHandler.h
sourceTree
<group>
- CE6BC93F5030A10B87E5C25A
+ D156ABE4903B689D2FDEFCAB
fileRef
- 874C1CE31FC34990585368F4
+ 5355E60A32BCDC844044CF7E
isa
PBXBuildFile
- CE70B7DC329AC1FF5D41AA2D
+ D1756E8E1AD3BF6E87FE9E95
fileRef
- 2E9ED66A3BE5FAF10DCD6677
+ 6E4A04865B3AA0FA57243704
isa
PBXBuildFile
settings
COMPILER_FLAGS
- -fobjc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+ -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
- CE799A2C49F6F6B0ABC5896B
+ D2187AF7EEE21AD6CCE33AA9
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.objc
+ sourcecode.c.h
name
- HCIsTypeOf.m
+ HCConformsToProtocol.h
path
- Source/Library/Object/HCIsTypeOf.m
+ Source/Library/Object/HCConformsToProtocol.h
sourceTree
<group>
- CE7CA93CB67A618593DBA2BE
+ D28DCE6B0A7645F9E194CF94
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.objc
+ sourcecode.c.h
+ name
+ EXPExpect.h
path
- Pods-PocketForecastTests-dummy.m
+ src/EXPExpect.h
sourceTree
<group>
- CF086F580D11EFD74E0C054A
+ D2961279BC6A024A0C93C399
+
+ fileRef
+ B82387DA5855A113EC8BFD4C
+ isa
+ PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
+
+ D299D5B226073520478B9FC2
+
+ fileRef
+ 422208A0B96C8D129A96CA3C
+ isa
+ PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
+
+ D30B9A607DBE2BA038266787
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.objc
+ sourcecode.c.h
name
- TyphoonInjectionByReference.m
+ Typhoon.h
path
- Source/Definition/Injections/TyphoonInjectionByReference.m
+ Source/Typhoon.h
sourceTree
<group>
- CF0F7C05C9403D8C543F9F16
+ D31A5BF7F1FEDAA29F134E6B
fileRef
- 3481B039F0BFFA27E39D4063
+ 07FC81C41C3AD46E5416FB93
isa
PBXBuildFile
- CF3E33FD54F61118135DD873
+ D32B322B93CA2BA6841C7B71
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.h
+ sourcecode.c.objc
name
- HCBoolReturnGetter.h
+ MKTUnsignedCharReturnSetter.m
path
- Source/Core/Helpers/ReturnValueGetters/HCBoolReturnGetter.h
+ Source/OCMockito/Helpers/ReturnValueSetters/MKTUnsignedCharReturnSetter.m
sourceTree
<group>
- CF80ED07A0D456E99AC66A87
+ D37477684393FAAC978398BF
+
+ fileRef
+ 9656D02F577F03A1EB81B476
+ isa
+ PBXBuildFile
+
+ D39F4A4A4A3BD1EADE4A5953
+
+ fileRef
+ 0379E19A1150976474CA5F4E
+ isa
+ PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
+
+ D3B69B6F4AA05EFB5EF3E952
+
+ buildConfigurations
+
+ 920B7C9A2224017CED09A988
+ 6016B5D55E1084AE6AE4ED27
+
+ defaultConfigurationIsVisible
+ 0
+ defaultConfigurationName
+ Release
+ isa
+ XCConfigurationList
+
+ D405F798044A256C040583FB
fileRef
- B88FDDCCDAEEA94D44042431
+ B779DFC384525C3314A5EBD2
isa
PBXBuildFile
- CFD56A05B7A434B7D4EC9FC0
+ D4486042FCDB17AA6B93D575
+
+ buildConfigurationList
+ 36CE765EEE7DCAAD3CDC07F2
+ buildPhases
+
+ 0000642DF06CE71D953E6E9A
+ E30248842186F114046FFB1A
+ 21D61DF1E26D2023AAE80739
+
+ buildRules
+
+ dependencies
+
+ isa
+ PBXNativeTarget
+ name
+ Pods-PocketForecast-NGAParallaxMotion
+ productName
+ Pods-PocketForecast-NGAParallaxMotion
+ productReference
+ DBF25C71D73F84F4B5051C5C
+ productType
+ com.apple.product-type.library.static
+
+ D48D432537020DC402ACBA56
includeInIndex
1
@@ -15459,40 +16018,38 @@
lastKnownFileType
sourcecode.c.objc
name
- HCAnyOf.m
+ TyphoonInjectionByCurrentRuntimeArguments.m
path
- Source/Library/Logical/HCAnyOf.m
+ Source/Definition/Injections/TyphoonInjectionByCurrentRuntimeArguments.m
sourceTree
<group>
- CFF4E64B2E64BA92447976D6
+ D4CBB02D22D2F4F5C29F3205
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.h
- name
- HCIsSame.h
+ text.xcconfig
path
- Source/Library/Object/HCIsSame.h
+ Pods-PocketForecast-ICLoader-Private.xcconfig
sourceTree
<group>
- D0509C439FCC49F9B088D798
+ D54B2332698DFB1AD49C01F1
fileRef
- 9D4A93AEB397E5C7E100D25C
+ 79BC53E356EE9AB6AFDD957B
isa
PBXBuildFile
settings
COMPILER_FLAGS
- -fobjc-arc -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+ -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
- D058DB1BC6E51F9FAB785CB9
+ D5784838BCFF4F54C01689E6
includeInIndex
1
@@ -15501,71 +16058,60 @@
lastKnownFileType
sourcecode.c.objc
name
- HCSenTestFailureHandler.m
+ MKTArgumentCaptor.m
path
- Source/Core/Helpers/TestFailureHandlers/HCSenTestFailureHandler.m
+ Source/OCMockito/MKTArgumentCaptor.m
sourceTree
<group>
- D0680284E94EA6D3CAFD8A2E
+ D597A06E813666B9FA4646D9
fileRef
- 25986B0664A4BD0D8807F5D1
+ 4FFC309E249F0AECEE75B5C8
isa
PBXBuildFile
settings
COMPILER_FLAGS
- -fobjc-arc -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+ -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
- D088103AC691B09FCA007E9B
+ D5BC24A16D163A1B504A49A4
+
+ buildActionMask
+ 2147483647
+ files
+
+ DCD6249C576CB8180CC5583D
+
+ isa
+ PBXFrameworksBuildPhase
+ runOnlyForDeploymentPostprocessing
+ 0
+
+ D6A22DF4064FF17F0F87BD3B
fileRef
- ADEC4D6F4358D5ADE3780B00
+ F538E3037EB266946E40BBA0
isa
PBXBuildFile
- settings
-
- COMPILER_FLAGS
- -fobjc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
-
- D093D44A2814E44CE0DCF5EB
+ D6F09596F8BFC367480F858F
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.h
+ sourcecode.c.objc
name
- HCUnsignedLongLongReturnGetter.h
+ MKTObjectArgumentGetter.m
path
- Source/Core/Helpers/ReturnValueGetters/HCUnsignedLongLongReturnGetter.h
+ Source/OCMockito/Helpers/ArgumentGetters/MKTObjectArgumentGetter.m
sourceTree
<group>
- D0DAF051702FD6E42EBC92B2
-
- fileRef
- 540A4526A5EFE5FA6AAAB1CD
- isa
- PBXBuildFile
-
- D1008E3F1176BE606CFFC528
-
- fileRef
- 45F49565EB9A2E7EDD26D45E
- isa
- PBXBuildFile
- settings
-
- COMPILER_FLAGS
- -fobjc-arc -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
-
-
- D100DE518E02133C4CCB43AD
+ D701C0DA94CC9F282FEF8217
includeInIndex
1
@@ -15574,25 +16120,20 @@
lastKnownFileType
sourcecode.c.h
name
- NSDictionary+CustomInjection.h
+ NSValue+Expecta.h
path
- Source/Definition/Internal/NSDictionary+CustomInjection.h
+ src/NSValue+Expecta.h
sourceTree
<group>
- D10550D1ADC6838B38476AFF
+ D74BDCAC4833485DF1DDB4BC
fileRef
- DDE2E1FDEBF6FF5C15126A07
+ 04D145DFEF56E4D428C15BFB
isa
PBXBuildFile
- settings
-
- COMPILER_FLAGS
- -fobjc-arc -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
-
- D119E8DC0BE8E57E7BF88507
+ D7C6220CB62ED69CDE96F3D1
includeInIndex
1
@@ -15601,46 +16142,28 @@
lastKnownFileType
sourcecode.c.h
name
- MKTBoolReturnSetter.h
+ TyphoonIntrospectionUtils.h
path
- Source/OCMockito/Helpers/ReturnValueSetters/MKTBoolReturnSetter.h
+ Source/Utils/TyphoonIntrospectionUtils.h
sourceTree
<group>
- D17A8D6BF36BA228F2114051
-
- fileRef
- 8114EBDC3E4F4764B14DC8C2
- isa
- PBXBuildFile
-
- D1B5D1EEB3A0D7A037B79273
-
- fileRef
- 86487159C1623B9C23A925C3
- isa
- PBXBuildFile
- settings
-
- COMPILER_FLAGS
- -fobjc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
-
-
- D1B89646A6163C75BAE07D32
-
- fileRef
- 780C769C385B7B3AD67A6D0B
- isa
- PBXBuildFile
-
- D1BEFA82D51A755454329578
+ D7DE75BC1BC33160B29DFC36
- fileRef
- 1E8F85197AF0696CDD3CA530
+ includeInIndex
+ 1
isa
- PBXBuildFile
+ PBXFileReference
+ lastKnownFileType
+ sourcecode.c.h
+ name
+ TyphoonAssemblyAdviser.h
+ path
+ Source/Factory/Block/TyphoonAssemblyAdviser.h
+ sourceTree
+ <group>
- D1D5CDC9BAD2D123CE618F8B
+ D8011340954CBBE98102AD9B
includeInIndex
1
@@ -15649,163 +16172,168 @@
lastKnownFileType
sourcecode.c.objc
name
- HCConformsToProtocol.m
+ TyphoonPropertyStyleConfiguration.m
path
- Source/Library/Object/HCConformsToProtocol.m
+ Source/Configuration/ConfigPostProcessor/TyphoonConfiguration/TyphoonPropertyStyleConfiguration.m
sourceTree
<group>
- D1EAE14EC496C0EDA8E59850
+ D80EEA4DF3E3F535303AFA90
fileRef
- 25268F90C85770CB4C8A7CC9
+ 90EC8DD1431B9BB14A1CE351
+ isa
+ PBXBuildFile
+
+ D828F62E9311CA2A8974249C
+
+ fileRef
+ 8568F5A08E380B977BC5A625
isa
PBXBuildFile
- settings
-
- COMPILER_FLAGS
- -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
-
- D2419A0632CDC3C006032227
+ D8471135469DCB7F5009F1DB
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.h
+ sourcecode.c.objc
name
- MKTLongLongArgumentGetter.h
+ NSInvocation+TCFInstanceBuilder.m
path
- Source/OCMockito/Helpers/ArgumentGetters/MKTLongLongArgumentGetter.h
+ Source/Factory/Internal/NSInvocation+TCFInstanceBuilder.m
sourceTree
<group>
- D27ADC004091A294245EB1AA
+ D89B60DEDCD9D5334C5597DE
- baseConfigurationReference
- 6C79D36727AB2BDCA7C2C827
- buildSettings
-
- ALWAYS_SEARCH_USER_PATHS
- NO
- COPY_PHASE_STRIP
- NO
- DSTROOT
- /tmp/xcodeproj.dst
- GCC_DYNAMIC_NO_PIC
- NO
- GCC_OPTIMIZATION_LEVEL
- 0
- GCC_PRECOMPILE_PREFIX_HEADER
- YES
- GCC_PREFIX_HEADER
- Target Support Files/Pods-PocketForecastTests-OCMockito/Pods-PocketForecastTests-OCMockito-prefix.pch
- GCC_PREPROCESSOR_DEFINITIONS
-
- DEBUG=1
- $(inherited)
-
- GCC_SYMBOLS_PRIVATE_EXTERN
- NO
- INSTALL_PATH
- $(BUILT_PRODUCTS_DIR)
- IPHONEOS_DEPLOYMENT_TARGET
- 7.0
- OTHER_LDFLAGS
-
- OTHER_LIBTOOLFLAGS
-
- PRODUCT_NAME
- $(TARGET_NAME)
- PUBLIC_HEADERS_FOLDER_PATH
- $(TARGET_NAME)
- SDKROOT
- iphoneos
- SKIP_INSTALL
- YES
-
+ fileRef
+ BEE6BE958211BD620E143358
isa
- XCBuildConfiguration
+ PBXBuildFile
+
+ D89B9E72E652A47D8652AD76
+
+ fileRef
+ CE2533A87715E3DFBFF332B7
+ isa
+ PBXBuildFile
+
+ D8DCE1EFBEC1BB937FA73DD2
+
+ fileRef
+ F4554D7C9A71B5204410AE25
+ isa
+ PBXBuildFile
+
+ D910DFAC759D7A83A1C2905D
+
+ isa
+ PBXTargetDependency
name
- Debug
+ Pods-PocketForecast-OCLogTemplate
+ target
+ EA629E091DAA649B68E71FB0
+ targetProxy
+ 2C8B39F4EF490BDBEF1986A5
- D2925EBF1BEBA12B4FC11C46
+ D918FA7A8254E76635E78C6F
fileRef
- B8092684DA2273FA9A245AF9
+ 824061AAA790FD725F7E0C97
isa
PBXBuildFile
settings
COMPILER_FLAGS
- -fobjc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+ -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
- D2D4704BF88868F39D889E7B
+ D92DAD6DB92248C81D04EA21
+
+ fileRef
+ 05718A8FD327B0ABEFBF3CC7
+ isa
+ PBXBuildFile
+
+ D95D9BA8BB0146783D7BBFE3
- includeInIndex
- 1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.h
+ wrapper.framework
+ name
+ UIKit.framework
path
- Pods-PocketForecast-CKUITools-prefix.pch
+ Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS7.1.sdk/System/Library/Frameworks/UIKit.framework
sourceTree
- <group>
+ DEVELOPER_DIR
- D3055671CC70FC8C89A55C72
+ D9907C13EE0CD3E0DB65E159
fileRef
- 1D01C0E7001F1384920B7C8F
+ 88E16F150A091F2CBCB3437E
isa
PBXBuildFile
settings
COMPILER_FLAGS
- -fobjc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+ -fno-objc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
- D33C1D1DB512CA9746007CF5
+ D9C15EE25B5043EE7AC5FCE4
- includeInIndex
- 1
+ fileRef
+ 61DB899CF8AEA2D2A474A43E
isa
- PBXFileReference
- lastKnownFileType
- text.plist.xml
- path
- Pods-PocketForecastTests-acknowledgements.plist
- sourceTree
- <group>
+ PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
- D37475939FDEF5709BAC9EA7
+ D9C259437447E8F8281E2592
fileRef
- AC034BED1BA0D5BD7FE1CBCC
+ 2DFBF07A8AAD31F6DE45B430
isa
PBXBuildFile
settings
COMPILER_FLAGS
- -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+ -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
- D3A7D05F412A75BBEB594F51
+ D9D91C8D2F9D125689542B08
+
+ fileRef
+ A7D073A88619E65B8A5B122C
+ isa
+ PBXBuildFile
+
+ D9E3180B80D1D6286CDE7A49
+
+ fileRef
+ 5F55252A9B9ACF8A282CC882
+ isa
+ PBXBuildFile
+
+ DA3B28F8CFEF17CF5AE52BF0
fileRef
- 33575795595FEDA4EDF717C1
+ 3B622E0C3534E67D1B318CC5
isa
PBXBuildFile
settings
COMPILER_FLAGS
- -fobjc-arc -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+ -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
- D3ABE593F5044BCBFC314CA1
+ DA775C2606DDDB4341822928
includeInIndex
1
@@ -15813,14 +16341,24 @@
PBXFileReference
lastKnownFileType
sourcecode.c.h
- name
- NSValue+TCFUnwrapValues.h
path
- Source/Factory/Internal/NSValue+TCFUnwrapValues.h
+ Pods-PocketForecastTests-OCHamcrest-prefix.pch
sourceTree
<group>
- D3DE641B7BD52F05C9D88007
+ DAB619D5E5C2477A8D30612A
+
+ fileRef
+ FCFD3678B4E443D056D4316B
+ isa
+ PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
+
+ DAF27A4E41AD71D85FBEDCB0
includeInIndex
1
@@ -15829,13 +16367,13 @@
lastKnownFileType
sourcecode.c.h
name
- TyphoonDefinition.h
+ TyphoonAssembly+TyphoonAssemblyFriend.h
path
- Source/Definition/TyphoonDefinition.h
+ Source/Factory/Block/TyphoonAssembly+TyphoonAssemblyFriend.h
sourceTree
<group>
- D4578CA99CB2858433B4B397
+ DAFF4E1F18EE51D27A935534
includeInIndex
1
@@ -15844,13 +16382,13 @@
lastKnownFileType
sourcecode.c.h
name
- TyphoonCollaboratingAssemblyProxy.h
+ MKTDoubleReturnSetter.h
path
- Source/Factory/Block/TyphoonCollaboratingAssemblyProxy.h
+ Source/OCMockito/Helpers/ReturnValueSetters/MKTDoubleReturnSetter.h
sourceTree
<group>
- D47FE25C1722AFCCAEDA0ACB
+ DBE641793358F374CFDBEAC7
includeInIndex
1
@@ -15859,16 +16397,29 @@
lastKnownFileType
sourcecode.c.h
name
- TyphoonMethod+InstanceBuilder.h
+ HCLongLongReturnGetter.h
path
- Source/Definition/Method/Internal/TyphoonMethod+InstanceBuilder.h
+ Source/Core/Helpers/ReturnValueGetters/HCLongLongReturnGetter.h
sourceTree
<group>
- D489FC24A0C46FDED0CDD05D
+ DBF25C71D73F84F4B5051C5C
+
+ explicitFileType
+ archive.ar
+ includeInIndex
+ 0
+ isa
+ PBXFileReference
+ path
+ libPods-PocketForecast-NGAParallaxMotion.a
+ sourceTree
+ BUILT_PRODUCTS_DIR
+
+ DC06050E2AFA74D206476427
fileRef
- 70BF6A646BAA0B5A74F36507
+ 96FA23FC8E121AA3AFC8800F
isa
PBXBuildFile
settings
@@ -15877,44 +16428,87 @@
-w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
- D4DBCE9C926659AE1A8606C7
+ DC3CF07D6C3A2CC77EA90601
+
+ children
+
+ 6A01863B439BB4F3A6DBB165
+ 7075B87A168CA9AF42318340
+ F26F133847973BFA8859143C
+ B76E9F1A6425983AF99F1483
+
+ isa
+ PBXGroup
+ name
+ Support Files
+ path
+ ../Target Support Files/Pods-PocketForecast-Typhoon
+ sourceTree
+ <group>
+
+ DCD6249C576CB8180CC5583D
fileRef
- 186863908CDBA6BEF2F9F3B2
+ DFF8E7F66E786A7648DEC9C0
isa
PBXBuildFile
- D514B9434AF3DF21AEAFD6BF
+ DCFA13732A9BF388776F0D2C
includeInIndex
1
isa
PBXFileReference
- lastKnownFileType
- sourcecode.c.h
name
- MKTProtocolMock.h
+ swipe_guide_left.png
path
- Source/OCMockito/MKTProtocolMock.h
+ PaperFold/PaperFold/PaperFold/PaperFoldResources.bundle/swipe_guide_left.png
sourceTree
<group>
- D54A5465A693DABE1FCC4B29
+ DD3B5538960466C294253F9F
+
+ fileRef
+ E447F12BB08B10EED06D0FA9
+ isa
+ PBXBuildFile
+
+ DD45BC650DD33C2C8628CFC8
+
+ fileRef
+ B7DB3E67F6BC12FBC6F2DE57
+ isa
+ PBXBuildFile
+
+ DE08E2C51096D9169AF855F6
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.objc
+ sourcecode.c.h
name
- HCInvocationMatcher.m
+ TyphoonStackElement.h
path
- Source/Core/Helpers/HCInvocationMatcher.m
+ Source/Factory/Internal/TyphoonStackElement.h
sourceTree
<group>
- D5625D9411D6CF4BAF8DDFF0
+ DE12FBFD413208060A662AA3
+
+ containerPortal
+ 94AF5A4F363AA9649B0CD69F
+ isa
+ PBXContainerItemProxy
+ proxyType
+ 1
+ remoteGlobalIDString
+ 309DBA81EB404BC63DAED7B6
+ remoteInfo
+ Pods-PocketForecast-PaperFold
+
+ DE31F46DA5E04B40DBE3B1C9
includeInIndex
1
@@ -15923,63 +16517,89 @@
lastKnownFileType
sourcecode.c.objc
name
- HCIsEmptyCollection.m
+ TyphoonSwizzler.m
path
- Source/Library/Collection/HCIsEmptyCollection.m
+ Source/Utils/Swizzle/TyphoonSwizzler.m
sourceTree
<group>
- D58649D539B80372D35771E2
+ DE6908F8A6BE178DD368D6AD
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.h
+ sourcecode.c.objc
name
- TyphoonStoryboard.h
+ MKTInvocationContainer.m
path
- Source/ios/Storyboard/TyphoonStoryboard.h
+ Source/OCMockito/MKTInvocationContainer.m
sourceTree
<group>
- D5DDDCBD64E2D386F964294A
+ DE8A44EB9650EA5889119F68
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.objc
+ sourcecode.c.h
+ name
+ TyphoonInjectionByComponentFactory.h
path
- Pods-PocketForecast-Typhoon-dummy.m
+ Source/Definition/Injections/TyphoonInjectionByComponentFactory.h
sourceTree
<group>
- D60EB29AB46C0CBF12A654D7
+ DE9CCA87B3F570E4B3E08E2F
fileRef
- E0A3C3F953BB4993044B5E03
+ 8B5FAD35BE8A277CE6B120FA
isa
PBXBuildFile
- D647F3CB72D8F7F77475FBA3
+ DEB8A0D19BA2343AAFCF6BB9
+
+ fileRef
+ 64395DB3478BEE6D68781F71
+ isa
+ PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
+
+ DEEC0C2269178C6B2263416F
+
+ fileRef
+ EA62F478E9FB9414B17F4F6D
+ isa
+ PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
+
+ DEFF1BE41B0E7EF23E5840A6
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.h
+ sourcecode.c.objc
name
- HCUnsignedCharReturnGetter.h
+ NSMethodSignature+TCFUnwrapValues.m
path
- Source/Core/Helpers/ReturnValueGetters/HCUnsignedCharReturnGetter.h
+ Source/Factory/Internal/NSMethodSignature+TCFUnwrapValues.m
sourceTree
<group>
- D66171838B6295D5B413436C
+ DF0333EA0EB27DA55BC0C7AF
includeInIndex
1
@@ -15987,14 +16607,42 @@
PBXFileReference
lastKnownFileType
sourcecode.c.h
- name
- NSURL+QueryDictionary.h
path
- NSURL+QueryDictionary/NSURL+QueryDictionary.h
+ radialGeometry.h
sourceTree
<group>
- D694F36F707976BEFA93D77B
+ DF17495F4AE0936624BEC43C
+
+ fileRef
+ 6EAEB9DF39B88523C31C9CC5
+ isa
+ PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
+
+ DF44FFB44AF936FFAE584A4B
+
+ fileRef
+ CFB22A1CCBF2E45D747D1EDC
+ isa
+ PBXBuildFile
+
+ DF707C4A518FD69D4B1A51EC
+
+ isa
+ PBXTargetDependency
+ name
+ Pods-PocketForecast-CKUITools
+ target
+ 3E763831D9EE3703733E7770
+ targetProxy
+ 73764BEF4CEA1A3B289972F3
+
+ DF960B63D0DDF9B42A782A8F
includeInIndex
1
@@ -16003,28 +16651,120 @@
lastKnownFileType
sourcecode.c.h
name
- TyphoonInjectedObject.h
+ HCGenericTestFailureHandler.h
path
- Source/Definition/AutoInjection/TyphoonInjectedObject.h
+ Source/Core/Helpers/TestFailureHandlers/HCGenericTestFailureHandler.h
+ sourceTree
+ <group>
+
+ DFE6DC09C1A640DC3D98FC73
+
+ fileRef
+ 77B0C65AF3DB0793246B0FC7
+ isa
+ PBXBuildFile
+
+ DFF8E7F66E786A7648DEC9C0
+
+ isa
+ PBXFileReference
+ lastKnownFileType
+ wrapper.framework
+ name
+ Foundation.framework
+ path
+ Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS7.1.sdk/System/Library/Frameworks/Foundation.framework
+ sourceTree
+ DEVELOPER_DIR
+
+ E0204977CB86FC495ADED3A3
+
+ fileRef
+ 61E86E30ADBF322F0CBA56DC
+ isa
+ PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
+
+ E09ECABE7EB190A120339AF8
+
+ children
+
+ AF5583A88F4795C5020F6421
+ 78EE0A4E105DCD26DDDC7065
+ ECF7DDB3C2C275E88617BBF9
+ 9CAF9AFF5C9DE8354024E4F7
+
+ isa
+ PBXGroup
+ name
+ Support Files
+ path
+ ../Target Support Files/Pods-PocketForecastTests-Expecta
sourceTree
<group>
- D724E75E502F7D54B8B99BE1
+ E0F48EF6DBEFD254EA6B9983
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.h
+ sourcecode.c.objc
name
- TyphooniOS.h
+ TyphoonDefinitionRegisterer.m
path
- Source/ios/TyphooniOS.h
+ Source/Factory/TyphoonDefinitionRegisterer.m
sourceTree
<group>
- D7706C4E629F1830F79EE9C3
+ E122EDE9F756ABFC15DB8F4D
+
+ isa
+ PBXTargetDependency
+ name
+ Pods-PocketForecastTests-Expecta
+ target
+ 682DEE61CEEDEFD605AD9713
+ targetProxy
+ 5E46306E8A6BD9EEA70B300F
+
+ E1236C2C0242EBC0D4EAE38D
+
+ fileRef
+ 4D8C8A341B6C59169E8E7C20
+ isa
+ PBXBuildFile
+
+ E1474AA15AF4890794D109F9
+
+ fileRef
+ D0175D953A50F541347C6DC2
+ isa
+ PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
+
+ E1924B9D4230D02625049065
+
+ fileRef
+ 6C5A290B2FFF8D1309DA9246
+ isa
+ PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
+
+ E1B4505D4DC4AB09D718DF57
includeInIndex
1
@@ -16033,25 +16773,44 @@
lastKnownFileType
sourcecode.c.h
name
- TyphoonObjectWithCustomInjection.h
+ TyphoonInjectionByCollection.h
path
- Source/Definition/Internal/TyphoonObjectWithCustomInjection.h
+ Source/Definition/Injections/TyphoonInjectionByCollection.h
sourceTree
<group>
- D7C4D1CFBB8462B647AB6DF2
+ E1DE8230FC771A72C21DB843
+
+ fileRef
+ 092797605D78B365FE24F614
+ isa
+ PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
+
+ E1F73CDDC111201D1950F60B
+
+ fileRef
+ A05D942522B1653B0D8AC3FE
+ isa
+ PBXBuildFile
+
+ E201B93CF37110B45EAAD07B
fileRef
- 9DC0605ED63C845AE126B499
+ 0E8703CA92FF5F4B5F506228
isa
PBXBuildFile
settings
COMPILER_FLAGS
- -fobjc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+ -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
- D7D516B72D45BF31BE104925
+ E21EB5AC78556DDA3B2F266D
includeInIndex
1
@@ -16060,20 +16819,20 @@
lastKnownFileType
sourcecode.c.objc
name
- NSURL+QueryDictionary.m
+ MKTCharReturnSetter.m
path
- NSURL+QueryDictionary/NSURL+QueryDictionary.m
+ Source/OCMockito/Helpers/ReturnValueSetters/MKTCharReturnSetter.m
sourceTree
<group>
- D7F8012954E7BB72AACC0FED
+ E2356076B5207D7CAF841201
fileRef
- 0D2FAD37C77F448121F7DA2B
+ 0B9481EDF4709AA6EF24A8E1
isa
PBXBuildFile
- D809618B0D968619AF233DE1
+ E236B980FB632D7B83605AD1
includeInIndex
1
@@ -16082,13 +16841,13 @@
lastKnownFileType
sourcecode.c.h
name
- NSNullTypeConverter.h
+ HCStringDescription.h
path
- Source/TypeConversion/Converters/NSNullTypeConverter.h
+ Source/Core/HCStringDescription.h
sourceTree
<group>
- D8891B6F3FDCC31C1BE45A74
+ E269FBB06D257E77BF201018
includeInIndex
1
@@ -16097,13 +16856,13 @@
lastKnownFileType
sourcecode.c.h
name
- TyphoonDefinition+Infrastructure.h
+ FoldView.h
path
- Source/Definition/Internal/TyphoonDefinition+Infrastructure.h
+ PaperFold/PaperFold/PaperFold/FoldView.h
sourceTree
<group>
- D8D4A29431B294596DEB8639
+ E2B17A9E84593780E638655C
includeInIndex
1
@@ -16112,317 +16871,388 @@
lastKnownFileType
sourcecode.c.objc
name
- ShadowView.m
+ MKTUnsignedLongLongReturnSetter.m
path
- PaperFold/PaperFold/PaperFold/ShadowView.m
+ Source/OCMockito/Helpers/ReturnValueSetters/MKTUnsignedLongLongReturnSetter.m
sourceTree
<group>
- D93002A254097ABEF2EBA904
+ E2D69493B10A5675F1E814D0
- fileRef
- 654C74C6D789867E0990530E
+ includeInIndex
+ 1
isa
- PBXBuildFile
- settings
-
- COMPILER_FLAGS
- -fobjc-arc -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
-
+ PBXFileReference
+ lastKnownFileType
+ sourcecode.c.h
+ name
+ TyphoonCollaboratingAssemblyPropertyEnumerator.h
+ path
+ Source/Factory/Block/TyphoonCollaboratingAssemblyPropertyEnumerator.h
+ sourceTree
+ <group>
- D93266433CA7FE72ECC2D9D4
+ E3018A94825125D2E4969494
- fileRef
- 48B36785AFC9214A28B7BE3D
- isa
- PBXBuildFile
- settings
+ buildSettings
- COMPILER_FLAGS
- -fobjc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+ ALWAYS_SEARCH_USER_PATHS
+ NO
+ CLANG_CXX_LANGUAGE_STANDARD
+ gnu++0x
+ CLANG_CXX_LIBRARY
+ libc++
+ CLANG_ENABLE_MODULES
+ YES
+ CLANG_ENABLE_OBJC_ARC
+ YES
+ CLANG_WARN_BOOL_CONVERSION
+ YES
+ CLANG_WARN_CONSTANT_CONVERSION
+ YES
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE
+ YES
+ CLANG_WARN_EMPTY_BODY
+ YES
+ CLANG_WARN_ENUM_CONVERSION
+ YES
+ CLANG_WARN_INT_CONVERSION
+ YES
+ CLANG_WARN_OBJC_ROOT_CLASS
+ YES
+ COPY_PHASE_STRIP
+ YES
+ GCC_C_LANGUAGE_STANDARD
+ gnu99
+ GCC_DYNAMIC_NO_PIC
+ NO
+ GCC_OPTIMIZATION_LEVEL
+ 0
+ GCC_PREPROCESSOR_DEFINITIONS
+
+ DEBUG=1
+ $(inherited)
+
+ GCC_SYMBOLS_PRIVATE_EXTERN
+ NO
+ GCC_WARN_64_TO_32_BIT_CONVERSION
+ YES
+ GCC_WARN_ABOUT_RETURN_TYPE
+ YES
+ GCC_WARN_UNDECLARED_SELECTOR
+ YES
+ GCC_WARN_UNINITIALIZED_AUTOS
+ YES
+ GCC_WARN_UNUSED_FUNCTION
+ YES
+ GCC_WARN_UNUSED_VARIABLE
+ YES
+ IPHONEOS_DEPLOYMENT_TARGET
+ 7.0
+ ONLY_ACTIVE_ARCH
+ YES
+ STRIP_INSTALLED_PRODUCT
+ NO
-
- D95BFDD290B719EF71140DBC
-
- fileRef
- 989324BCAAE23796E22395EE
isa
- PBXBuildFile
+ XCBuildConfiguration
+ name
+ Debug
- D95F4905A9F9E719A840988E
+ E30248842186F114046FFB1A
buildActionMask
2147483647
files
- 4C772D6A3DF8EA347A171497
- 6DAD44CEB9CD40EE82266D56
- D93002A254097ABEF2EBA904
- 289FBDBC4F93A809FC461E78
- C129AC40D7F5969080132D94
- 5DB03CCA703779E88B560A08
- 33884E2202F2E2669425AB7F
- 3C26A2CEAAFE885C146D0EEC
+ 67334919AF7A7E53C7C4BE1F
+ 7532E927E5DB9CEC49DCC7C7
isa
- PBXSourcesBuildPhase
+ PBXFrameworksBuildPhase
runOnlyForDeploymentPostprocessing
0
- D9943C63E7EF7849EA5E7DE2
+ E31B6C2DD7E1D2EC71925741
fileRef
- 80C7C01A6648C335A15C4853
+ 685EBF980B1E1915D5AF1F4A
isa
PBXBuildFile
settings
COMPILER_FLAGS
- -fobjc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+ -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
- D9BBAB00C4D743A19E265E75
+ E37FC97429CA1499C272C88B
fileRef
- C445932EBE68D7355E6C3DF9
+ DE08E2C51096D9169AF855F6
isa
PBXBuildFile
- D9CD022798E45F303793F6EF
+ E390C2BEA70FB9D07E977433
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.h
+ sourcecode.c.objc
name
- TyphoonAssemblyPropertyInjectionPostProcessor.h
+ MKTUnsignedLongReturnSetter.m
path
- Source/Factory/Block/TyphoonAssemblyPropertyInjectionPostProcessor.h
+ Source/OCMockito/Helpers/ReturnValueSetters/MKTUnsignedLongReturnSetter.m
sourceTree
<group>
- DA2B8E20CBBB0AD1F50618ED
+ E39F4B6A41F0A2A3EA6DE260
+
+ fileRef
+ 612658E39444157C172AFA30
+ isa
+ PBXBuildFile
+
+ E3D22CE3BD0E05350123A62B
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.h
+ sourcecode.c.objc
+ name
+ TyphoonCollaboratingAssemblyPropertyEnumerator.m
+ path
+ Source/Factory/Block/TyphoonCollaboratingAssemblyPropertyEnumerator.m
+ sourceTree
+ <group>
+
+ E3F61CD0498C9170EAA56EEA
+
+ fileRef
+ 4CA7C037430A73B071B46967
+ isa
+ PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
+
+ E403ED8286A634DABD4D73E7
+
+ isa
+ PBXFileReference
+ lastKnownFileType
+ wrapper.framework
+ name
+ QuartzCore.framework
+ path
+ Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS7.1.sdk/System/Library/Frameworks/QuartzCore.framework
+ sourceTree
+ DEVELOPER_DIR
+
+ E423E5B8EC0E8894CD93313A
+
+ fileRef
+ 18171E91389C6974D5AFEFDE
+ isa
+ PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
+
+ E43EBD0ADCB2AC104406299B
+
+ baseConfigurationReference
+ 17C8CEDD5CD81F92A4A17B88
+ buildSettings
+
+ ALWAYS_SEARCH_USER_PATHS
+ NO
+ COPY_PHASE_STRIP
+ YES
+ DSTROOT
+ /tmp/xcodeproj.dst
+ GCC_PRECOMPILE_PREFIX_HEADER
+ YES
+ GCC_PREFIX_HEADER
+ Target Support Files/Pods-PocketForecast-CKUITools/Pods-PocketForecast-CKUITools-prefix.pch
+ INSTALL_PATH
+ $(BUILT_PRODUCTS_DIR)
+ IPHONEOS_DEPLOYMENT_TARGET
+ 7.0
+ OTHER_CFLAGS
+
+ -DNS_BLOCK_ASSERTIONS=1
+ $(inherited)
+
+ OTHER_CPLUSPLUSFLAGS
+
+ -DNS_BLOCK_ASSERTIONS=1
+ $(inherited)
+
+ OTHER_LDFLAGS
+
+ OTHER_LIBTOOLFLAGS
+
+ PRODUCT_NAME
+ $(TARGET_NAME)
+ PUBLIC_HEADERS_FOLDER_PATH
+ $(TARGET_NAME)
+ SDKROOT
+ iphoneos
+ SKIP_INSTALL
+ YES
+ VALIDATE_PRODUCT
+ YES
+
+ isa
+ XCBuildConfiguration
name
- MKTArgumentCaptor.h
- path
- Source/OCMockito/MKTArgumentCaptor.h
- sourceTree
- <group>
+ Release
- DA46753BD09AD6E16B0DF955
+ E447F12BB08B10EED06D0FA9
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.objc
+ sourcecode.c.h
name
- TyphoonComponentFactory.m
+ TyphoonReferenceDefinition.h
path
- Source/Factory/TyphoonComponentFactory.m
+ Source/Definition/Internal/TyphoonReferenceDefinition.h
sourceTree
<group>
- DA90323C57AA8B6B61FA34B6
+ E456DDD0887F2F0F59E87C7E
- buildActionMask
- 2147483647
- files
+ buildConfigurations
- F932E0D9D86878BDB68D1C30
+ E3018A94825125D2E4969494
+ 3EBB276E99A4B236F354E238
- isa
- PBXFrameworksBuildPhase
- runOnlyForDeploymentPostprocessing
+ defaultConfigurationIsVisible
0
-
- DABF98E923ACCBDB9A46A6D3
-
- fileRef
- A43679B587807744C367F3EE
- isa
- PBXBuildFile
- settings
-
- COMPILER_FLAGS
- -fobjc-arc -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
-
-
- DACCCB69E939BAB7B9523B0B
-
- includeInIndex
- 1
- isa
- PBXFileReference
- lastKnownFileType
- sourcecode.c.objc
- name
- MKTTestLocation.m
- path
- Source/OCMockito/MKTTestLocation.m
- sourceTree
- <group>
-
- DB75E31601064AA8E3EC2738
-
- fileRef
- A3C128E9DA7AB7DB2346D58F
+ defaultConfigurationName
+ Release
isa
- PBXBuildFile
- settings
-
- COMPILER_FLAGS
- -fobjc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
-
+ XCConfigurationList
- DB985EA81333AF45F39892FB
+ E4D6CDEE69FC7F7B117E6E93
fileRef
- 94AC5DDDB1ADCCCED998F12D
+ 62073F4CE004B12D4524868D
isa
PBXBuildFile
- DBAB6C859B42C0852F1CB000
+ E4FD5F209C7F5344E49CA72C
fileRef
- 280EAD2E2904FCD8E249041B
+ E5CB6114CF29D266FEABC5ED
isa
PBXBuildFile
- settings
-
- COMPILER_FLAGS
- -fobjc-arc -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
-
- DBBA4930C536F522F2D5BE13
+ E539C46D2007BCBE4869B97E
- includeInIndex
- 1
+ children
+
+ 0DA80A45E02A2836CAD31F5D
+ A3896F332486FF51BF494F33
+ 79160473A2DA52ADB311BBD9
+ 9AB7569B036A87B924AF9352
+ 873CA1F37F5BC9A222C6951C
+ 70FA3172B35B53466D0D3BEA
+ A930938562447A517B7F11C6
+
isa
- PBXFileReference
- lastKnownFileType
- sourcecode.c.h
+ PBXGroup
name
- OCLogTemplate.h
+ Pods-PocketForecastTests
path
- Source/Vendor/OCLogTemplate/OCLogTemplate.h
+ Target Support Files/Pods-PocketForecastTests
sourceTree
<group>
- DBE88854C122050BB1921602
+ E543500769C63C6CF458F118
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.h
- name
- HCIsEqual.h
+ sourcecode.c.objc
path
- Source/Library/Object/HCIsEqual.h
+ Pods-PocketForecast-ICLoader-dummy.m
sourceTree
<group>
- DC2CAB68C037ECE988276698
+ E57E3310D26EA33988954EDD
fileRef
- 08C6B699734D2C03C49818B8
+ 965E191D8386C8C7A8AABB14
isa
PBXBuildFile
- settings
-
- COMPILER_FLAGS
- -fobjc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
-
- DC3CFDE502F596CC086ED2D7
+ E580A3A42E40E6168B354485
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.h
+ sourcecode.c.objc
name
- HCMatcher.h
+ EXPMatchers+beIdenticalTo.m
path
- Source/Core/HCMatcher.h
+ src/matchers/EXPMatchers+beIdenticalTo.m
sourceTree
<group>
- DC4657442D97C2223C053CEB
+ E59612A0E5DD02946478E1E2
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.h
+ sourcecode.c.objc
name
- EXPMatchers+raise.h
+ NSObject+TyphoonIntrospectionUtils.m
path
- src/matchers/EXPMatchers+raise.h
+ Source/Utils/NSObject+TyphoonIntrospectionUtils.m
sourceTree
<group>
- DC6CCBBE48324F55AB03390F
-
- fileRef
- 994F8BF6210D40A9E5152881
- isa
- PBXBuildFile
-
- DCE4568CAB41C787EC833D20
-
- fileRef
- 06369952B5A0CE6A7A45D67A
- isa
- PBXBuildFile
- settings
-
- COMPILER_FLAGS
- -fobjc-arc -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
-
-
- DD39F3CC7894B3B5BFB29251
+ E59D92FC49354B23CDEEB051
fileRef
- B989A76BE2772B72F66B94B8
+ 545DBC43C5FEB64EA7E4921D
isa
PBXBuildFile
- settings
-
- COMPILER_FLAGS
- -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
-
- DDC2679323269F2DF9A89915
+ E5ADB3F6A930E64F39B1CD9D
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.objc
+ sourcecode.c.h
name
- TyphoonInjectionByObjectInstance.m
+ ShadowView.h
path
- Source/Definition/Injections/TyphoonInjectionByObjectInstance.m
+ PaperFold/PaperFold/PaperFold/ShadowView.h
sourceTree
<group>
- DDE2E1FDEBF6FF5C15126A07
+ E5C00397CCF5CC99E9B37CC4
includeInIndex
1
@@ -16431,13 +17261,13 @@
lastKnownFileType
sourcecode.c.objc
name
- TyphoonStackElement.m
+ HCIsCollectionContaining.m
path
- Source/Factory/Internal/TyphoonStackElement.m
+ Source/Library/Collection/HCIsCollectionContaining.m
sourceTree
<group>
- DE09BCD8815012A677B7E271
+ E5CB6114CF29D266FEABC5ED
includeInIndex
1
@@ -16446,215 +17276,69 @@
lastKnownFileType
sourcecode.c.h
name
- TyphoonOptionMatcher+Internal.h
+ HCHasProperty.h
path
- Source/Configuration/DefinitionOptionConfiguration/Matcher/TyphoonOptionMatcher+Internal.h
+ Source/Library/Object/HCHasProperty.h
sourceTree
<group>
- DE35AEEAF54569597B3CE973
-
- isa
- PBXFileReference
- lastKnownFileType
- wrapper.framework
- name
- UIKit.framework
- path
- Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS7.1.sdk/System/Library/Frameworks/UIKit.framework
- sourceTree
- DEVELOPER_DIR
-
- DE3975B176753D845144EBBE
+ E5D8FE7C0D3BC9E1A79B6ABF
fileRef
- CAFEA57640B4FAD13C2A68BA
+ 7B0E3B36284FB17FF7E5561F
isa
PBXBuildFile
- DE55DC7BEFDECFB12AD605AA
+ E5E12DE2A9A62B122430B968
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.h
+ sourcecode.c.objc
name
- TyphoonLinkerCategoryBugFix.h
+ TyphoonReferenceDefinition.m
path
- Source/Utils/TyphoonLinkerCategoryBugFix.h
+ Source/Definition/Internal/TyphoonReferenceDefinition.m
sourceTree
<group>
- DF08CD4E394FCD7DA30B37E7
-
- fileRef
- 5BFF00E74FB23A4C2136EA9E
- isa
- PBXBuildFile
- settings
-
- COMPILER_FLAGS
- -fobjc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
-
-
- DF1C0EDB6981C2458C0A5016
+ E67ABC2578C6251AF3BC6FB5
fileRef
- 02A67CAEE2471305CCEF3F1C
+ 25D96DCB415BA66AC00F73E4
isa
PBXBuildFile
- DF594F7C3B4DFA5A581A6CCF
-
- baseConfigurationReference
- 1B6690FA9D23A0E26DD50717
- buildSettings
-
- ALWAYS_SEARCH_USER_PATHS
- NO
- COPY_PHASE_STRIP
- NO
- DSTROOT
- /tmp/xcodeproj.dst
- GCC_DYNAMIC_NO_PIC
- NO
- GCC_OPTIMIZATION_LEVEL
- 0
- GCC_PRECOMPILE_PREFIX_HEADER
- YES
- GCC_PREFIX_HEADER
- Target Support Files/Pods-PocketForecast-NSURL+QueryDictionary/Pods-PocketForecast-NSURL+QueryDictionary-prefix.pch
- GCC_PREPROCESSOR_DEFINITIONS
-
- DEBUG=1
- $(inherited)
-
- GCC_SYMBOLS_PRIVATE_EXTERN
- NO
- INSTALL_PATH
- $(BUILT_PRODUCTS_DIR)
- IPHONEOS_DEPLOYMENT_TARGET
- 7.0
- OTHER_LDFLAGS
-
- OTHER_LIBTOOLFLAGS
-
- PRODUCT_NAME
- $(TARGET_NAME)
- PUBLIC_HEADERS_FOLDER_PATH
- $(TARGET_NAME)
- SDKROOT
- iphoneos
- SKIP_INSTALL
- YES
-
- isa
- XCBuildConfiguration
- name
- Debug
-
- DF94911292582E82C60B8BAB
+ E68B8E12337D5CB742D9670C
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.objc
+ sourcecode.c.h
name
- HCIsEqual.m
+ MKTUnsignedShortArgumentGetter.h
path
- Source/Library/Object/HCIsEqual.m
+ Source/OCMockito/Helpers/ArgumentGetters/MKTUnsignedShortArgumentGetter.h
sourceTree
<group>
- DF981644DD47BDBFE3A5A5C9
+ E6E3B5D8795633D5F7A8CBB6
fileRef
- 20E8F85BB5F3CFB66FFB017F
+ D48D432537020DC402ACBA56
isa
PBXBuildFile
settings
COMPILER_FLAGS
- -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+ -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
- DFA6B39D1FDA29EE8462F027
-
- buildActionMask
- 2147483647
- files
-
- 865D50A109C0816A40EB481F
- 538C3758D80752013828115C
- 921BF63E1BE68855FC2B6D21
- 3515B274EB0C8320679C0526
- 483787EE1EF51BC1C1682434
- 5C0737DC60B14B7053344A0C
- C4AB9509203C0570719405F9
- E990FC17928A60BE7F818954
- F82F99F5C815DDBBD5894DA2
- 273047803CE76EC56EE4BC13
- 852C0B771CDFF63E772A7328
- 41418A8058016498F7E55DEB
- 8CEE02ADDFC1C4107AFC0A5A
- 248BBF535FB27D0D9E32F906
- D95BFDD290B719EF71140DBC
- 5626E2EE55FA98FE9AFAD439
- 7C8F64426591619101E5FB82
- 4422E0F1A5960EC74392CCD8
- A70DA019EA36DC93A2147B52
- CE1C4ABF1C42A3480EB1A8DC
- 82E22EEDB6BED1F84A5B4F4A
- 168F0E87186E1CC30FFD7B60
- 7EF48A748CD5D23D3D776197
- 677AB3DF774D58CBC8DECCFD
- F7CD0E6065F02777EDADF8BE
- B9CA54A6321E3A303602654D
- 24E1505676DB6FA1C2DE8FDA
- F77F50AE94973A91D73CB156
- E1F7C879835EDABCAF0B9A65
- 56346FBE5CFF72ACED7D9BE9
- EE4DD2C01E8B1F9735D2976D
- BA59E5FB059CBF326708B9DE
- A81B98790D488DE32772C86B
- 6A7344F304428400A8AB56CB
- 640B9AD0BCB6867F5709655B
- 05CB028A5A1007FB28B9C0F0
- 473E06EC98A981CAADF84514
- 28DDA15F8541D6D1D88DC3D3
-
- isa
- PBXHeadersBuildPhase
- runOnlyForDeploymentPostprocessing
- 0
-
- E07C707DECEDFE9A1E16B51B
-
- fileRef
- 5E735A76CAA25DB3069B073E
- isa
- PBXBuildFile
-
- E0A3C3F953BB4993044B5E03
-
- includeInIndex
- 1
- isa
- PBXFileReference
- lastKnownFileType
- sourcecode.c.h
- name
- TyphoonCollaboratingAssemblyPropertyEnumerator.h
- path
- Source/Factory/Block/TyphoonCollaboratingAssemblyPropertyEnumerator.h
- sourceTree
- <group>
-
- E0AA4BE538BB4BCDB9DDBFD2
+ E6EB648DD55AAE6458CFA2AE
includeInIndex
1
@@ -16663,142 +17347,127 @@
lastKnownFileType
sourcecode.c.h
name
- TyphoonInjectionByRuntimeArgument.h
+ EXPUnsupportedObject.h
path
- Source/Definition/Injections/TyphoonInjectionByRuntimeArgument.h
+ src/EXPUnsupportedObject.h
sourceTree
<group>
- E0AC3949EE2913B69553AA11
-
- fileRef
- 933F02B5AA0D0C391240B5CE
- isa
- PBXBuildFile
- settings
-
- COMPILER_FLAGS
- -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
-
-
- E0F81FED1DE76FAC08CFDA75
+ E6FC3E2B22BD6B2127644A48
fileRef
- 6E32C3F1D7195CE4E23DCFC3
+ DFF8E7F66E786A7648DEC9C0
isa
PBXBuildFile
- E12C4F6DF3568B9807D39870
+ E7461CD5B1465654C1F6C728
- includeInIndex
- 1
+ children
+
+ 53F81F15A70AB367D784767E
+ 1404C10174837CC74A4F406A
+ ECA42FA674C078E4561AD6EA
+
isa
- PBXFileReference
- lastKnownFileType
- sourcecode.c.h
+ PBXGroup
name
- TyphoonReferenceDefinition.h
+ NSURL+QueryDictionary
path
- Source/Definition/Internal/TyphoonReferenceDefinition.h
+ NSURL+QueryDictionary
sourceTree
<group>
- E141643718174899B85C3A81
+ E7667F25D23823F4519D4EB7
fileRef
- EC0D9E11290B4F8853A03DB2
+ 45DA3EABCCBDBB7CCE2175E9
isa
PBXBuildFile
- settings
-
- COMPILER_FLAGS
- -fobjc-arc -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
-
- E1560B53971BE3ADC068F09C
+ E7AC1944490F52A67C4A2925
- buildConfigurations
-
- 66AAD91393966DD013C1C690
- 2E9A78DB82B874E2AC006B0D
-
- defaultConfigurationIsVisible
- 0
- defaultConfigurationName
- Release
+ fileRef
+ 41E45F9F9F711B532ACBB4EF
isa
- XCConfigurationList
+ PBXBuildFile
- E19F2A896057622AA5D689F5
+ E8C9434E46BEBB6682A7E881
fileRef
- 84793CCDC5C0345D8F55F795
+ D30B9A607DBE2BA038266787
isa
PBXBuildFile
- E1B6FFD4F32846C732BB4164
+ E8D391852C284C75C882615E
+
+ includeInIndex
+ 1
+ isa
+ PBXFileReference
+ path
+ randomDouble.c
+ sourceTree
+ <group>
+
+ E8D701CD9D16BF5786F4825E
fileRef
- 9B3BFA1242B65AEC2B9ABE3C
+ 2F96ACFF0ACB995C367772A9
isa
PBXBuildFile
- E1F7C879835EDABCAF0B9A65
+ E8EC9E58E5A2D42CDD55939A
fileRef
- 8D605DE0037E2EC94967E53B
+ 00ABDFEC8D07F39140E19C9B
isa
PBXBuildFile
- E21D11327227068FD3D6064B
+ E8F3299E8BA2FCF623377989
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- text.xcconfig
+ sourcecode.c.h
+ name
+ TyphoonInjections.h
path
- Pods-PocketForecastTests-Expecta.xcconfig
+ Source/Definition/Injections/TyphoonInjections.h
sourceTree
<group>
- E26BC5E6768CA269FCE0E4B5
+ E91F6EB34529D94F1DD6779A
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.objc
+ sourcecode.c.h
name
- HCXCTestFailureHandler.m
+ HCIsDictionaryContainingKey.h
path
- Source/Core/Helpers/TestFailureHandlers/HCXCTestFailureHandler.m
+ Source/Library/Collection/HCIsDictionaryContainingKey.h
sourceTree
<group>
- E27DFF0000371F16A04C5AF7
+ E97EA3E39858BF943BE90FC7
fileRef
- 2A996CD0C90954B031ACC11A
+ C0EDDD259670A27B58EEFCF9
isa
PBXBuildFile
- E29229392EF1CE93FC87A070
+ E9E7926C984B1DB3BD59D101
- explicitFileType
- archive.ar
- includeInIndex
- 0
+ fileRef
+ B70561061E9E83FCF9AC9453
isa
- PBXFileReference
- path
- libPods-PocketForecast-NSURL+QueryDictionary.a
- sourceTree
- BUILT_PRODUCTS_DIR
+ PBXBuildFile
- E2FD0E43B32E0BA882752C0E
+ E9FB165DB7442C9DC9A14DAD
includeInIndex
1
@@ -16807,327 +17476,181 @@
lastKnownFileType
sourcecode.c.objc
name
- TyphoonInjectionByRuntimeArgument.m
+ NSArray+TyphoonManualEnumeration.m
path
- Source/Definition/Injections/TyphoonInjectionByRuntimeArgument.m
+ Source/Utils/NSArray+TyphoonManualEnumeration.m
sourceTree
<group>
- E324BDC2AE67C649A4C1E74A
+ EA1F4C52A38DE76E909FACAD
buildActionMask
2147483647
files
- 2E59A26CFA40DC9FB98B198F
- DC6CCBBE48324F55AB03390F
- 6CD3DCD6039D8E5D6B440421
- ABA1928D8800C4919F08E881
- C9176AD9EAEA200F57572E12
- 472A6B7143E9F19B683F623F
- 3F14D8035D279E11F6ED1566
- AB50B86079B4956F42E28D98
- E9925830E8CA3ED875BB36F9
- E1B6FFD4F32846C732BB4164
- 947CDA6E7F14E81D02CFF1EC
- 8D7021DD199861E8CBD84416
- F4038971180B2E439527951B
- 0DF36A18DA24AAC2E4A8BE12
- FC3D656487F189864A101E18
- 3F51DD963FC1F528603D25D3
- C634896EB933EA90FF2231C1
- C156C05A87DF38D64AFD08DB
- 6723BB7F69575859C4215294
- E7686B48A2FE663E69590386
- E4F6A93B6E86F86AA5C31A31
- CE11034C9021287BD826B763
- 82A3DC46618FD598B4E22F6D
- ECF35DB4E0BE3365918C547F
- 7BBBBC1D7DC0AE1615BA3A38
- EFD3D514C9D6831497EC0966
- 29EB2678E0F27B76FFE2C192
- FA21587F5813ED1B82B5DDD4
- D60EB29AB46C0CBF12A654D7
- 1F36343E8FC064A5695AD1AE
- 9BF074E9BAEAF99E355D6BD0
- 45174D3FA2BF1023F14F76C8
- D1BEFA82D51A755454329578
- EA44438044EDE75E720A3DAA
- 4930CCC755728EED570AD69D
- 41513E955237DF59C3CB7C2C
- 2E7833A70CF0A0B96C36B2AA
- 82EE123975A2A4438CF847F1
- 5156DE7615819E598B1D0FC9
- 22073A6242EA971526A6544D
- 4E0C651BF45C5FC5463694A9
- 97BD456BAABEF0F31F4B52D2
- 81113D654949618FE0201774
- ED7CAE5A931F8E37C4672762
- 3A40A732AE989949682C7AD6
- 49538E5EC9B14D1D99755B3C
- 01FDFB65374BD49AC9D84BF0
- FF8A08EC2915AAE6FEA34C19
- 2F889F68481B459E3A27D5A2
- 1038956DE1A6023687C67BE9
- 74FC7713781A71261BC08BF8
- 5F4CB3CA449A0CABB4917150
- BEE1EBDCCEBFD0D4500EAD7B
- F1DCE1215868DDBCC63EB400
- 96824E971CE12F08C0EC6558
- 1F9EDD44011DFB597EB77364
- 9837D6F86E7FC36DC22DD047
- 8490B3609A99AF7DDE56DC5F
- BE66C014AFA695A3AD92E60F
- 01E6EF797E33FB050EB72EFD
- 370D05409EC051568A488714
- AC361BD99EAEDF56672DD827
- 18BC02DE04CC05ECCB6547F7
- 30EC80DF301E81CE7115A859
- BBC7D78344A7D1F077BF5DD9
- 16C2634F551ABFD17D0C0253
- 465242B70BCAB4C2AAD7478B
- BE02DC726E107CC21EF12D07
- 4A46E84E4FA8C7DA907B7EED
- 2512119ABA6DF8782F6998E2
- 2F195390194E9D9799223B6F
- A5398A51334EA71B12717D19
- C04B03A5ECE858624D96CCCE
- E19F2A896057622AA5D689F5
- C9AA264FD5B2E936E003C09E
- 319803C679389D54A1BD6A1C
- 491D024282B0009EF055163B
- F42AF2454A03E23A7D61219F
- A60D44B2931655ED015C793F
- BF7A1BD4AA35FFD0341E70F8
- E0F81FED1DE76FAC08CFDA75
- 6881B85B27F2FC11A3A07A19
- 4C7FA742DD7F8EDDA7F1B40A
- 5BC641E2AD1C522C2DA59EBF
- 5ED705A9B169DE46A35BCDD2
- 052B8FB715C844F1466B1DF8
- 4D2FA3C0331063936849CE6E
- C52AAE42E7E08443E575198F
- E4804184D230C532F440698B
- 30A8C07854DD5595486BEE7A
- 307E3EE11A47D088653F7F91
- 7B10DF7FC15AD56B0BC91AE5
- 0A1BAEE50D26A14B637F4EBB
- 7D73EE641E47622B7D767901
- 122C34A48F8F056048E86A06
- 16B46BC0CE20F68EA4F9604A
- 6F179A2D2E18418F53AE616F
- F326938AFC4647BD38F1916A
- 1C1428417F352C1AE60BB2CA
- FAA917D277C6C5D0F6333B58
+ 6C3D5C33A00E17183599755E
isa
- PBXHeadersBuildPhase
+ PBXSourcesBuildPhase
runOnlyForDeploymentPostprocessing
0
- E35B5A556FD86D31D2EFD90A
+ EA2A1DAA6543103BDC08BFB1
- children
-
- 3631B94934523CD9334533C6
- 6D4DB8882B8FC92B1F4060F7
-
+ fileRef
+ 4F591986BE2787E7C9B6E8EF
isa
- PBXGroup
- name
- Targets Support Files
- sourceTree
- <group>
+ PBXBuildFile
- E37574F8AF01C3593A60CDC2
+ EA629E091DAA649B68E71FB0
- includeInIndex
- 1
+ buildConfigurationList
+ 64D7EECA4BC0061177ECF12B
+ buildPhases
+
+ EA1F4C52A38DE76E909FACAD
+ 68FAC2D9AA8AA41B5D6D9FDB
+ 7EC8822B825A87D19A8CFD67
+
+ buildRules
+
+ dependencies
+
isa
- PBXFileReference
- lastKnownFileType
- sourcecode.c.h
+ PBXNativeTarget
name
- HCStringContainsInOrder.h
- path
- Source/Library/Text/HCStringContainsInOrder.h
- sourceTree
- <group>
+ Pods-PocketForecast-OCLogTemplate
+ productName
+ Pods-PocketForecast-OCLogTemplate
+ productReference
+ 2870579DAD95EA8EC3472521
+ productType
+ com.apple.product-type.library.static
- E37584DF6407C4E6C3E1531A
+ EA62F478E9FB9414B17F4F6D
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.h
+ sourcecode.c.objc
name
- NSObject+TyphoonIntrospectionUtils.h
+ HCHasDescription.m
path
- Source/Utils/NSObject+TyphoonIntrospectionUtils.h
+ Source/Library/Object/HCHasDescription.m
sourceTree
<group>
- E3C7AEA70E7753C436493B0C
+ EA8DE1EFA0AD2939AF9C0F25
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.h
+ sourcecode.c.objc
name
- MKTReturnValueSetterChain.h
+ MKTArgumentGetterChain.m
path
- Source/OCMockito/Helpers/ReturnValueSetters/MKTReturnValueSetterChain.h
+ Source/OCMockito/Helpers/ArgumentGetters/MKTArgumentGetterChain.m
sourceTree
<group>
- E3CC6B72277BEA05AD6D360B
+ EAA146BC034DDEB46BE681F9
fileRef
- 52A3AA9171B374EE1DC77A8A
+ 9329650D7F7A5AABB940DDB8
isa
PBXBuildFile
- E430A75F7AC5136481B0A82E
-
- baseConfigurationReference
- 7686454558A1AEC8C1F6487C
- buildSettings
-
- ALWAYS_SEARCH_USER_PATHS
- NO
- COPY_PHASE_STRIP
- NO
- DSTROOT
- /tmp/xcodeproj.dst
- GCC_DYNAMIC_NO_PIC
- NO
- GCC_OPTIMIZATION_LEVEL
- 0
- GCC_PRECOMPILE_PREFIX_HEADER
- YES
- GCC_PREPROCESSOR_DEFINITIONS
-
- DEBUG=1
- $(inherited)
-
- GCC_SYMBOLS_PRIVATE_EXTERN
- NO
- INSTALL_PATH
- $(BUILT_PRODUCTS_DIR)
- IPHONEOS_DEPLOYMENT_TARGET
- 7.0
- OTHER_LDFLAGS
-
- OTHER_LIBTOOLFLAGS
-
- PRODUCT_NAME
- $(TARGET_NAME)
- PUBLIC_HEADERS_FOLDER_PATH
- $(TARGET_NAME)
- SDKROOT
- iphoneos
- SKIP_INSTALL
- YES
-
- isa
- XCBuildConfiguration
- name
- Debug
-
- E4509060854BF09C168E6B26
+ EB1A0291CBB1BBB2BB1E0F22
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.objc
+ sourcecode.c.h
name
- NSValue+Expecta.m
+ TyphoonInjectionByConfig.h
path
- src/NSValue+Expecta.m
+ Source/Definition/Injections/TyphoonInjectionByConfig.h
sourceTree
<group>
- E454EB29A62938440A731C71
-
- fileRef
- A1CD728FFB1F9973E19707AB
- isa
- PBXBuildFile
- settings
-
- COMPILER_FLAGS
- -fobjc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
-
-
- E4598AE996D1156EECBC05E9
+ EB5D3FEBD8986C63A1437413
fileRef
- 709D4D8AB5A11C8AE78CF226
+ 81902BD14D914CAF8F1E1E31
isa
PBXBuildFile
- E4804184D230C532F440698B
+ EBC786CA40C591F438B46A50
fileRef
- 97916AE08C74EE3BCD92B173
+ E68B8E12337D5CB742D9670C
isa
PBXBuildFile
- E4EE65B8BA7880E3B035CA22
+ EBC89C845AF5008924C44E0D
fileRef
- BA41F76E3A24CFF958957660
+ 34CC5D6534D9CBFE5EBF48E6
isa
PBXBuildFile
settings
COMPILER_FLAGS
- -fobjc-arc -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+ -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
- E4F6A93B6E86F86AA5C31A31
-
- fileRef
- D9CD022798E45F303793F6EF
- isa
- PBXBuildFile
-
- E52DA258A8CBBF88D27FCA69
+ EBCA1581525DE2DF95784071
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.h
+ sourcecode.c.objc
name
- HCBaseDescription.h
+ MKTUnsignedCharArgumentGetter.m
path
- Source/Core/HCBaseDescription.h
+ Source/OCMockito/Helpers/ArgumentGetters/MKTUnsignedCharArgumentGetter.m
sourceTree
<group>
- E5BFD8A30C79EF2076D294DB
+ EC7BE70976EDD479A7D63C9E
fileRef
- 797FC74CF41ABB4B0BEB256B
+ A097E7CC2543533255DF344D
isa
PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
- E5C11731EA84088259A0195C
+ ECA42FA674C078E4561AD6EA
- fileRef
- 7F8FE144EF3E051077997C03
+ children
+
+ 2E7519D3057EB9EAF0331CFD
+ B03F27A6ACAB1624C0698333
+ 4860263DAAF788B88AC102D8
+ B39C115510ABFF1C79C3397C
+
isa
- PBXBuildFile
+ PBXGroup
+ name
+ Support Files
+ path
+ ../Target Support Files/Pods-PocketForecast-NSURL+QueryDictionary
+ sourceTree
+ <group>
- E612883A3BACD4FC14202F71
+ ECE505F3D2C495BCD2687009
includeInIndex
1
@@ -17136,95 +17659,54 @@
lastKnownFileType
sourcecode.c.objc
name
- TyphoonInjectedObject.m
+ TyphoonFactoryAutoInjectionPostProcessor.m
path
- Source/Definition/AutoInjection/TyphoonInjectedObject.m
+ Source/Definition/AutoInjection/TyphoonFactoryAutoInjectionPostProcessor.m
sourceTree
<group>
- E66EDB5854ECAE06192DF949
-
- fileRef
- 976233DD1ACE7A37EFA3DD4B
- isa
- PBXBuildFile
-
- E6C06B821967E71CA7C9DFEF
+ ECEDAEC3409206CEDAB972D6
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.objc
- name
- HCWrapInMatcher.m
+ text.xcconfig
path
- Source/Core/Helpers/HCWrapInMatcher.m
+ Pods-PocketForecast-OCLogTemplate.xcconfig
sourceTree
<group>
- E7686B48A2FE663E69590386
-
- fileRef
- 927F2E2DDF860A1196F2AB8F
- isa
- PBXBuildFile
-
- E7902D2B45C94ABF65B19FD9
-
- fileRef
- FF4BC052D37CF479F5D1FBC4
- isa
- PBXBuildFile
- settings
-
- COMPILER_FLAGS
- -fobjc-arc -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
-
-
- E7D6D6E7E3CB754DDFA07AF7
+ ECF7DDB3C2C275E88617BBF9
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.h
- name
- TyphoonStackElement.h
+ sourcecode.c.objc
path
- Source/Factory/Internal/TyphoonStackElement.h
+ Pods-PocketForecastTests-Expecta-dummy.m
sourceTree
<group>
- E7D97850E41538AA5C4A6CA4
-
- fileRef
- C0A461F0F00297326563EE07
- isa
- PBXBuildFile
-
- E80ACE646BFBF4A4F94ADC0E
-
- fileRef
- 5D4CE88510DCC9B84846B143
- isa
- PBXBuildFile
-
- E80EADC0714162D43EE53735
+ ECFB905EFA574B333A328BF3
- fileRef
- 802FF5C8069F3A6433E1FDD7
+ includeInIndex
+ 1
isa
- PBXBuildFile
- settings
-
- COMPILER_FLAGS
- -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
-
+ PBXFileReference
+ lastKnownFileType
+ sourcecode.c.h
+ name
+ HCMatcher.h
+ path
+ Source/Core/HCMatcher.h
+ sourceTree
+ <group>
- E86F1A29E2D4A0936B60048A
+ ED18239B5EE8F5D601F99979
includeInIndex
1
@@ -17233,13 +17715,13 @@
lastKnownFileType
sourcecode.c.objc
name
- NSNullTypeConverter.m
+ MKTUnsignedShortArgumentGetter.m
path
- Source/TypeConversion/Converters/NSNullTypeConverter.m
+ Source/OCMockito/Helpers/ArgumentGetters/MKTUnsignedShortArgumentGetter.m
sourceTree
<group>
- E8AC236042E221F9EB67ED15
+ ED293689D31EF2E9363BCB83
includeInIndex
1
@@ -17248,13 +17730,13 @@
lastKnownFileType
sourcecode.c.h
name
- TyphoonFactoryDefinition.h
+ MKTClassObjectMock.h
path
- Source/Definition/Internal/TyphoonFactoryDefinition.h
+ Source/OCMockito/MKTClassObjectMock.h
sourceTree
<group>
- E943B4A482B94F93A5CB1CD9
+ ED2D7DB7E6CF1406A4C5B39D
includeInIndex
1
@@ -17263,33 +17745,13 @@
lastKnownFileType
sourcecode.c.h
name
- HCTestFailureHandlerChain.h
+ TyphoonDefinitionRegisterer.h
path
- Source/Core/Helpers/TestFailureHandlers/HCTestFailureHandlerChain.h
+ Source/Factory/TyphoonDefinitionRegisterer.h
sourceTree
<group>
- E94F7B66903BADAD93F33753
-
- buildActionMask
- 2147483647
- files
-
- F63F0B8D0BD95A3360ADE68E
- 10A4D3C357F3F71815059EA9
- 79212BFBF50A4D1C7CD17CDF
- F93DA90BEFDE0A525288C4C9
- DF1C0EDB6981C2458C0A5016
- C37FE9F4F241B80F4EA541E6
- 4FDECF9E77E0C19ADD80893B
- 5431C67197219D5D5443EA36
-
- isa
- PBXHeadersBuildPhase
- runOnlyForDeploymentPostprocessing
- 0
-
- E95C984C8694FED5CE9B7CF6
+ ED4FE771AD52A9F9F16CEF47
includeInIndex
1
@@ -17298,20 +17760,26 @@
lastKnownFileType
sourcecode.c.objc
name
- TyphoonPropertyStyleConfiguration.m
+ TyphoonInjectionByCollection.m
path
- Source/Configuration/ConfigPostProcessor/TyphoonConfiguration/TyphoonPropertyStyleConfiguration.m
+ Source/Definition/Injections/TyphoonInjectionByCollection.m
sourceTree
<group>
- E990FC17928A60BE7F818954
+ ED7BDEF444CB990DCFC68C31
- fileRef
- F8AA5E1E5D1E05B4E81C371D
+ includeInIndex
+ 1
isa
- PBXBuildFile
+ PBXFileReference
+ lastKnownFileType
+ sourcecode.c.objc
+ path
+ CALayer+Image.m
+ sourceTree
+ <group>
- E991CEDC631D725520F39AA3
+ ED94691DE6E9426B6A12AE7B
includeInIndex
1
@@ -17320,276 +17788,282 @@
lastKnownFileType
sourcecode.c.objc
name
- EXPExpect.m
+ TyphoonInjectedObject.m
path
- src/EXPExpect.m
+ Source/Definition/AutoInjection/TyphoonInjectedObject.m
sourceTree
<group>
- E9925830E8CA3ED875BB36F9
-
- fileRef
- 39FE0D9E20590DEE011C8A84
- isa
- PBXBuildFile
-
- E9EA9FB533AC6215F8AD91A4
+ EDBB6A25DF93E76B2ABF3C72
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.h
+ sourcecode.c.objc
name
- Expecta.h
+ TyphoonUIColorTypeConverter.m
path
- src/Expecta.h
+ Source/ios/TypeConversion/Converters/TyphoonUIColorTypeConverter.m
sourceTree
<group>
- EA44438044EDE75E720A3DAA
-
- fileRef
- F2797CB6DF8F80475FD9E98E
- isa
- PBXBuildFile
-
- EA832600025B6972AAB5329B
+ EE1BD262EEB26B6F34F3C322
fileRef
- AEBEE301923316E784909C67
+ ECE505F3D2C495BCD2687009
isa
PBXBuildFile
settings
COMPILER_FLAGS
- -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+ -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
- EAEE072C57BDBFE0AC9C4455
+ EE74A5D239691B4AE333CE78
fileRef
- 07DCB38EC8FFF8DF6529A357
+ 7066C30F35CDBAB3312DE97E
isa
PBXBuildFile
- settings
-
- COMPILER_FLAGS
- -fobjc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
-
- EAF2398EDF1B55D8B675D594
+ EE818A50BB7E3F718FF1CAF9
- fileRef
- E95C984C8694FED5CE9B7CF6
+ includeInIndex
+ 1
isa
- PBXBuildFile
- settings
-
- COMPILER_FLAGS
- -fobjc-arc -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
-
+ PBXFileReference
+ lastKnownFileType
+ sourcecode.c.h
+ name
+ HCUnsignedIntReturnGetter.h
+ path
+ Source/Core/Helpers/ReturnValueGetters/HCUnsignedIntReturnGetter.h
+ sourceTree
+ <group>
- EB4006B04090DD73362D03D2
+ EE8D0BFCFC3D75A9E6916E7F
fileRef
- BD8B0DE96258BDF107B5CF54
+ 5FD7814CDF18FBAC5F4AF4A1
isa
PBXBuildFile
- EB69DE9E412A74C5905888A9
+ EE9ED931673C9085F7896E5C
- fileRef
- B91208C577807582BD8EF5EE
+ includeInIndex
+ 1
isa
- PBXBuildFile
- settings
-
- COMPILER_FLAGS
- -fobjc-arc -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
-
+ PBXFileReference
+ lastKnownFileType
+ sourcecode.c.h
+ name
+ EXPMatchers+beIdenticalTo.h
+ path
+ src/matchers/EXPMatchers+beIdenticalTo.h
+ sourceTree
+ <group>
- EB6B8D4975AD157FB0B089B9
+ EF5A20BCF37707E870707162
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.objc
+ sourcecode.c.h
name
- HCSubstringMatcher.m
+ HCEvery.h
path
- Source/Library/Text/HCSubstringMatcher.m
+ Source/Library/Collection/HCEvery.h
sourceTree
<group>
- EB80E2145E750344F0C13130
+ EF6E6AD5106B61B3BB146A7D
fileRef
- 33C31F45327B944AC75488B0
+ 66F14B004450C33C52C62E80
isa
PBXBuildFile
settings
COMPILER_FLAGS
- -fobjc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+ -fno-objc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
- EBB4DFC3F7696AC196B1C6BA
+ EF6F90CE8E300CCD74FFB251
fileRef
- B11DB39CAB7174C516E399A3
+ B67B08D5037F2B629F07D89F
isa
PBXBuildFile
settings
COMPILER_FLAGS
- -fobjc-arc -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+ -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
- EC0D9E11290B4F8853A03DB2
-
- includeInIndex
- 1
- isa
- PBXFileReference
- lastKnownFileType
- sourcecode.c.objc
- name
- TyphoonPrimitiveTypeConverter.m
- path
- Source/TypeConversion/Converters/TyphoonPrimitiveTypeConverter.m
- sourceTree
- <group>
-
- EC1793382271E9CB703E263E
+ EFD87CAEA2FCC90442AB9370
fileRef
- C4624651D753064C500AA5B5
+ 2620E4207645AAB4D5C5A21E
isa
PBXBuildFile
settings
COMPILER_FLAGS
- -fobjc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+ -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
- EC18134D210911194D531906
+ F0031F96E0700ECCCB2C33D9
fileRef
- 3F5348593FF1CE6AD78D05FD
+ F58354F2ECCB33A30A14C5F9
isa
PBXBuildFile
- settings
+
+ F0B1852E67E8EFD534CB85A9
+
+ baseConfigurationReference
+ 595C7DC781E5D6F04B9A1BA0
+ buildSettings
- COMPILER_FLAGS
- -fobjc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+ ALWAYS_SEARCH_USER_PATHS
+ NO
+ COPY_PHASE_STRIP
+ YES
+ DSTROOT
+ /tmp/xcodeproj.dst
+ GCC_PRECOMPILE_PREFIX_HEADER
+ YES
+ GCC_PREFIX_HEADER
+ Target Support Files/Pods-PocketForecast-NGAParallaxMotion/Pods-PocketForecast-NGAParallaxMotion-prefix.pch
+ INSTALL_PATH
+ $(BUILT_PRODUCTS_DIR)
+ IPHONEOS_DEPLOYMENT_TARGET
+ 7.0
+ OTHER_CFLAGS
+
+ -DNS_BLOCK_ASSERTIONS=1
+ $(inherited)
+
+ OTHER_CPLUSPLUSFLAGS
+
+ -DNS_BLOCK_ASSERTIONS=1
+ $(inherited)
+
+ OTHER_LDFLAGS
+
+ OTHER_LIBTOOLFLAGS
+
+ PRODUCT_NAME
+ $(TARGET_NAME)
+ PUBLIC_HEADERS_FOLDER_PATH
+ $(TARGET_NAME)
+ SDKROOT
+ iphoneos
+ SKIP_INSTALL
+ YES
+ VALIDATE_PRODUCT
+ YES
+ isa
+ XCBuildConfiguration
+ name
+ Release
- EC39C0F831B28CE0A358FC7D
+ F0B7135D20F4EADB7E2A99C1
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.h
+ sourcecode.c.objc
name
- MKT_TPDWeakProxy.h
+ NSObject+DeallocNotification.m
path
- Source/ThirdParty/TPDWeakProxy-1.1.0/TPDWeakProxy/MKT_TPDWeakProxy.h
+ Source/Utils/NSObject+DeallocNotification.m
sourceTree
<group>
- EC555FC7743262E38FD2C491
-
- fileRef
- 5E8ACBA331BDC78F5131CBB8
- isa
- PBXBuildFile
-
- ECF35DB4E0BE3365918C547F
+ F0B89A81B1579B541FEE2AD8
fileRef
- 2EC423B6136A5F401870F8C2
+ 240EC3FB8142DF5791FF8E22
isa
PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
- ED58972A2C2AA24CC6844C75
+ F106D37FE7FDD28CD4422E3B
fileRef
- C87424478EB68D27718C9256
+ 23AED3248C9A787DD57836EA
isa
PBXBuildFile
- ED6F9049CC081A4E179352EC
+ F12E652C9E078DA1D5EEF106
fileRef
- 6B70D8364F4CB684A01C864F
+ CFFEFCCAE72BD139399DD9F6
isa
PBXBuildFile
settings
COMPILER_FLAGS
- -fobjc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+ -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
- ED7CAE5A931F8E37C4672762
+ F162AF5CBE84201F88026077
fileRef
- 368842BE936A5D5ABAF0A122
+ BF93558D2D5E3DD6F3368B02
isa
PBXBuildFile
- ED9A36E13AA31F231AD6C37B
+ F1631F8A7E0BA1007D4438FB
- explicitFileType
- archive.ar
includeInIndex
- 0
+ 1
isa
PBXFileReference
+ lastKnownFileType
+ sourcecode.c.objc
+ name
+ TyphoonPathResource.m
path
- libPods-PocketForecast.a
+ Source/Configuration/Resource/TyphoonPathResource.m
sourceTree
- BUILT_PRODUCTS_DIR
-
- EDB97A0E9143DE7322CD7567
-
- fileRef
- D058DB1BC6E51F9FAB785CB9
- isa
- PBXBuildFile
- settings
-
- COMPILER_FLAGS
- -fobjc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
-
-
- EDE498992A61B3041F19E363
-
- fileRef
- 2DB102B092A3CC6BD9EEFE08
- isa
- PBXBuildFile
+ <group>
- EDFE1D06F55183C1072CB40B
+ F16FC51ACEB508F495FAAD9E
- fileRef
- A2CCFBBD62251301E840B2C9
+ includeInIndex
+ 1
isa
- PBXBuildFile
+ PBXFileReference
+ lastKnownFileType
+ sourcecode.c.objc
+ name
+ HCEvery.m
+ path
+ Source/Library/Collection/HCEvery.m
+ sourceTree
+ <group>
- EE4DD2C01E8B1F9735D2976D
+ F17C13B7EEF48D57866912A0
fileRef
- BA1DB5F9C608FF00987CA73B
+ 92F62273F2AD35F7D3E57FB9
isa
PBXBuildFile
- EE8E3905E05837FAC6B226A8
+ F20A126801FB88F5B9AF3066
includeInIndex
1
@@ -17598,97 +18072,62 @@
lastKnownFileType
sourcecode.c.h
name
- TyphoonComponentFactory+InstanceBuilder.h
+ HCStringContainsInOrder.h
path
- Source/Factory/Internal/TyphoonComponentFactory+InstanceBuilder.h
+ Source/Library/Text/HCStringContainsInOrder.h
sourceTree
<group>
- EF12234EAF8703BEB6BF792F
-
- fileRef
- 501CFB4EADDFD28FC7318129
- isa
- PBXBuildFile
- settings
-
- COMPILER_FLAGS
- -fobjc-arc -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
-
-
- EF148740F9A2F5B8D32E9A0E
-
- fileRef
- D1D5CDC9BAD2D123CE618F8B
- isa
- PBXBuildFile
- settings
-
- COMPILER_FLAGS
- -fobjc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
-
-
- EF670123F9406896397966D4
-
- buildActionMask
- 2147483647
- files
-
- E5C11731EA84088259A0195C
-
- isa
- PBXFrameworksBuildPhase
- runOnlyForDeploymentPostprocessing
- 0
-
- EF73E89D8D8C7BFB18D399D8
+ F21A4F34B3ACC897E911CECB
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.objc
+ sourcecode.c.h
name
- MKTUnsignedCharArgumentGetter.m
+ TyphoonMethod.h
path
- Source/OCMockito/Helpers/ArgumentGetters/MKTUnsignedCharArgumentGetter.m
+ Source/Definition/Method/TyphoonMethod.h
sourceTree
<group>
- EFBDBEDB03D13578EB55123C
+ F26F133847973BFA8859143C
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.h
+ sourcecode.c.objc
path
- Pods-PocketForecastTests-OCHamcrest-prefix.pch
+ Pods-PocketForecast-Typhoon-dummy.m
sourceTree
<group>
- EFBE86558A6DDC905A004C6D
+ F36EE8E10557AAB5A3849BDA
fileRef
- 85639B91984CF0C162449349
+ 10A042DABC1D7F4118BF97F8
isa
PBXBuildFile
- settings
-
- COMPILER_FLAGS
- -fobjc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
-
- EFD3D514C9D6831497EC0966
+ F3703464B3E47BAEB71062EB
- fileRef
- 552D63B460397F81D7DE7FD8
+ buildConfigurations
+
+ FDAEC4D8BDF87D03C0FF3D51
+ 43620FB1AEC85B21EBC66E89
+
+ defaultConfigurationIsVisible
+ 0
+ defaultConfigurationName
+ Release
isa
- PBXBuildFile
+ XCConfigurationList
- F04AA1384ACC2AA7073CBB53
+ F3807A03256B8148E31EFDB5
includeInIndex
1
@@ -17697,13 +18136,13 @@
lastKnownFileType
sourcecode.c.h
name
- HCIsTypeOf.h
+ HCHasDescription.h
path
- Source/Library/Object/HCIsTypeOf.h
+ Source/Library/Object/HCHasDescription.h
sourceTree
<group>
- F06ED8D5984AD707113D8872
+ F39F9EC1BA543BAA4C4DCFDD
includeInIndex
1
@@ -17712,153 +18151,91 @@
lastKnownFileType
sourcecode.c.h
name
- TyphoonAbstractInjection.h
+ MKTUnsignedIntArgumentGetter.h
path
- Source/Definition/Injections/TyphoonAbstractInjection.h
+ Source/OCMockito/Helpers/ArgumentGetters/MKTUnsignedIntArgumentGetter.h
sourceTree
<group>
- F08030C5311CAF5A352CEE72
+ F3A77ABFD33566283A90E0E2
- baseConfigurationReference
- BB60FEEBDC6B6618D045B481
- buildSettings
-
- ALWAYS_SEARCH_USER_PATHS
- NO
- COPY_PHASE_STRIP
- YES
- DSTROOT
- /tmp/xcodeproj.dst
- GCC_PRECOMPILE_PREFIX_HEADER
- YES
- GCC_PREFIX_HEADER
- Target Support Files/Pods-PocketForecast-OCLogTemplate/Pods-PocketForecast-OCLogTemplate-prefix.pch
- INSTALL_PATH
- $(BUILT_PRODUCTS_DIR)
- IPHONEOS_DEPLOYMENT_TARGET
- 7.0
- OTHER_CFLAGS
-
- -DNS_BLOCK_ASSERTIONS=1
- $(inherited)
-
- OTHER_CPLUSPLUSFLAGS
-
- -DNS_BLOCK_ASSERTIONS=1
- $(inherited)
-
- OTHER_LDFLAGS
-
- OTHER_LIBTOOLFLAGS
-
- PRODUCT_NAME
- $(TARGET_NAME)
- PUBLIC_HEADERS_FOLDER_PATH
- $(TARGET_NAME)
- SDKROOT
- iphoneos
- SKIP_INSTALL
- YES
- VALIDATE_PRODUCT
- YES
-
+ includeInIndex
+ 1
isa
- XCBuildConfiguration
+ PBXFileReference
+ lastKnownFileType
+ sourcecode.c.h
name
- Release
-
- F0A150A1B997D25F9158E000
-
- buildActionMask
- 2147483647
- files
-
- 4C61A99374BC2BC56391BE98
- BC8B9CDB57B4E7C840BF85B6
-
- isa
- PBXFrameworksBuildPhase
- runOnlyForDeploymentPostprocessing
- 0
+ HCRequireNonNilObject.h
+ path
+ Source/Core/Helpers/HCRequireNonNilObject.h
+ sourceTree
+ <group>
- F0ACFFA16C4413DCFFB4646E
+ F3AFC954F7769D510E9B0A7C
includeInIndex
1
isa
PBXFileReference
+ lastKnownFileType
+ sourcecode.c.h
name
- swipe_guide_right@2x.png
+ TyphooniOS.h
path
- PaperFold/PaperFold/PaperFold/PaperFoldResources.bundle/swipe_guide_right@2x.png
+ Source/ios/TyphooniOS.h
sourceTree
<group>
- F0B40E2C164752FE89FF12C2
+ F3D14813E70EA6C86EF80B8F
- fileRef
- EB6B8D4975AD157FB0B089B9
+ includeInIndex
+ 1
isa
- PBXBuildFile
- settings
-
- COMPILER_FLAGS
- -fobjc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
-
+ PBXFileReference
+ lastKnownFileType
+ sourcecode.c.h
+ path
+ UIColor+CKUITools.h
+ sourceTree
+ <group>
- F12E74853FDE195837DB1E2B
+ F41D93C20738C7BFA9F0A19D
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.objc
+ sourcecode.c.h
name
- PaperFoldNavigationController.m
+ MKTDynamicProperties.h
path
- PaperFold/PaperFold/PaperFold/PaperFoldNavigationController.m
+ Source/OCMockito/Helpers/MKTDynamicProperties.h
sourceTree
<group>
- F1322611AD15F038605EDC8E
-
- fileRef
- A081CF46EA479DC9B9C41967
- isa
- PBXBuildFile
-
- F18656CA213873F07F5C9A07
-
- fileRef
- CAC6F8B2C87A549208707CAE
- isa
- PBXBuildFile
-
- F1B2D2FEAE9B61A137F30869
+ F428CBF0D1D723DBB899B01A
includeInIndex
1
isa
PBXFileReference
- lastKnownFileType
- sourcecode.c.h
name
- EXPMatchers+equal.h
+ swipe_guide_right.png
path
- src/matchers/EXPMatchers+equal.h
+ PaperFold/PaperFold/PaperFold/PaperFoldResources.bundle/swipe_guide_right.png
sourceTree
<group>
- F1DCE1215868DDBCC63EB400
+ F4328B65F8FC77316AD85B9B
fileRef
- 1D67B0E9901A3681DE62AF7E
+ 9668716E799AB4947FAF6E35
isa
PBXBuildFile
- F1DF01E4D707D0A114F155F6
+ F4554D7C9A71B5204410AE25
includeInIndex
1
@@ -17867,13 +18244,13 @@
lastKnownFileType
sourcecode.c.h
name
- Collections+CustomInjection.h
+ TyphoonComponentFactory.h
path
- Source/Definition/Internal/Collections+CustomInjection.h
+ Source/Factory/TyphoonComponentFactory.h
sourceTree
<group>
- F23A49EC398208FDA8F3A4FC
+ F46F33C407DD2E8E12F96E22
includeInIndex
1
@@ -17882,13 +18259,62 @@
lastKnownFileType
sourcecode.c.objc
name
- EXPMatchers+beSubclassOf.m
+ NSInvocation+OCHamcrest.m
path
- src/matchers/EXPMatchers+beSubclassOf.m
+ Source/Core/Helpers/NSInvocation+OCHamcrest.m
sourceTree
<group>
- F24548C7A2D000854CCA47BD
+ F475C1B46DD007D4480B0847
+
+ baseConfigurationReference
+ 7075B87A168CA9AF42318340
+ buildSettings
+
+ ALWAYS_SEARCH_USER_PATHS
+ NO
+ COPY_PHASE_STRIP
+ NO
+ DSTROOT
+ /tmp/xcodeproj.dst
+ GCC_DYNAMIC_NO_PIC
+ NO
+ GCC_OPTIMIZATION_LEVEL
+ 0
+ GCC_PRECOMPILE_PREFIX_HEADER
+ YES
+ GCC_PREFIX_HEADER
+ Target Support Files/Pods-PocketForecast-Typhoon/Pods-PocketForecast-Typhoon-prefix.pch
+ GCC_PREPROCESSOR_DEFINITIONS
+
+ DEBUG=1
+ $(inherited)
+
+ GCC_SYMBOLS_PRIVATE_EXTERN
+ NO
+ INSTALL_PATH
+ $(BUILT_PRODUCTS_DIR)
+ IPHONEOS_DEPLOYMENT_TARGET
+ 7.0
+ OTHER_LDFLAGS
+
+ OTHER_LIBTOOLFLAGS
+
+ PRODUCT_NAME
+ $(TARGET_NAME)
+ PUBLIC_HEADERS_FOLDER_PATH
+ $(TARGET_NAME)
+ SDKROOT
+ iphoneos
+ SKIP_INSTALL
+ YES
+
+ isa
+ XCBuildConfiguration
+ name
+ Debug
+
+ F4B2D93F8D7BD1988C7E86E3
includeInIndex
1
@@ -17897,114 +18323,72 @@
lastKnownFileType
sourcecode.c.objc
name
- NSObject+PropertyInjection.m
+ TyphoonInjectionByFactoryReference.m
path
- Source/Utils/NSObject+PropertyInjection.m
+ Source/Definition/Injections/TyphoonInjectionByFactoryReference.m
sourceTree
<group>
- F2797CB6DF8F80475FD9E98E
+ F4C35E745C19E5AA5AF5CB2D
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.h
+ sourcecode.c.objc
name
- TyphoonComponentFactoryPostProcessor.h
+ EXPMatchers+beInstanceOf.m
path
- Source/Configuration/TyphoonComponentFactoryPostProcessor.h
+ src/matchers/EXPMatchers+beInstanceOf.m
sourceTree
<group>
- F2A11C267915DB4FE58A291B
+ F50F5530AFA4122B8FE767EE
fileRef
- 389FAE9DC4FA6A6E90BE645D
+ B362FF78938348AC09085487
isa
PBXBuildFile
- F2E9641ED0A6D7FC9E801BC8
+ F538E3037EB266946E40BBA0
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.objc
+ sourcecode.c.h
name
- HCTestFailureHandlerChain.m
+ MKTArgumentGetterChain.h
path
- Source/Core/Helpers/TestFailureHandlers/HCTestFailureHandlerChain.m
+ Source/OCMockito/Helpers/ArgumentGetters/MKTArgumentGetterChain.h
sourceTree
<group>
- F326938AFC4647BD38F1916A
-
- fileRef
- 02BF234C8B18E8DB29B5262B
- isa
- PBXBuildFile
-
- F32A4DCDA77997A4C4D6D40B
-
- fileRef
- 641AFC37A3F61E493B9661A4
- isa
- PBXBuildFile
-
- F32C6594A8FAD904E816F44A
-
- isa
- PBXTargetDependency
- target
- 72B8FFAC4B9F21FBC308992A
- targetProxy
- 97CD52B9850CF71AEFE79E14
-
- F3D56D1878897C713D234957
+ F53DA8CE2E8A7609F9EF18A4
fileRef
- 07B869EE55BE14EE0486CAFC
+ 54365D9107CFC793AFAE23FB
isa
PBXBuildFile
- settings
-
- COMPILER_FLAGS
- -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
-
- F3D995537EABB20681812916
+ F563D502F0F917DE7706369C
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.objc
+ sourcecode.c.h
name
- NSDictionary+CustomInjection.m
+ MKTReturnValueSetter.h
path
- Source/Definition/Internal/NSDictionary+CustomInjection.m
+ Source/OCMockito/Helpers/ReturnValueSetters/MKTReturnValueSetter.h
sourceTree
<group>
- F4038971180B2E439527951B
-
- fileRef
- DBBA4930C536F522F2D5BE13
- isa
- PBXBuildFile
-
- F42AF2454A03E23A7D61219F
-
- fileRef
- C5992F7AB45240C4EB907B78
- isa
- PBXBuildFile
-
- F4C06B09C849F9424DADB433
+ F58354F2ECCB33A30A14C5F9
includeInIndex
1
@@ -18013,68 +18397,70 @@
lastKnownFileType
sourcecode.c.h
name
- HCUnsignedIntReturnGetter.h
+ TyphoonInjectionByFactoryReference.h
path
- Source/Core/Helpers/ReturnValueGetters/HCUnsignedIntReturnGetter.h
+ Source/Definition/Injections/TyphoonInjectionByFactoryReference.h
sourceTree
<group>
- F4F15A1B95F9AD52156B3CAE
+ F5932759741E61398AA1B210
+
+ fileRef
+ F4B2D93F8D7BD1988C7E86E3
+ isa
+ PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
+
+ F5FC63291CD70A337689FF55
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.objc
+ sourcecode.c.h
+ name
+ MKTLongArgumentGetter.h
path
- Pods-PocketForecast-PaperFold-dummy.m
+ Source/OCMockito/Helpers/ArgumentGetters/MKTLongArgumentGetter.h
sourceTree
<group>
- F5549238CB2FCEADBC309B1A
+ F6302222D456A88D8B92AB13
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.h
+ sourcecode.c.objc
name
- MKTMockingProgress.h
+ HCAnyOf.m
path
- Source/OCMockito/MKTMockingProgress.h
+ Source/Library/Logical/HCAnyOf.m
sourceTree
<group>
- F58FA85C3CFA982017593706
-
- fileRef
- FAE8C75671510D0893C0CEB7
- isa
- PBXBuildFile
- settings
-
- COMPILER_FLAGS
- -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
-
-
- F598DCF778E98B2FE6D419C2
+ F65FAE9CB07B5D85A5F240F1
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.objc
+ sourcecode.c.h
name
- HCIsDictionaryContainingKey.m
+ TyphoonPassThroughTypeConverter.h
path
- Source/Library/Collection/HCIsDictionaryContainingKey.m
+ Source/TypeConversion/Converters/TyphoonPassThroughTypeConverter.h
sourceTree
<group>
- F5D8DD66A27F38A912EA4E5C
+ F6781E4C53622FDC2167BAAA
includeInIndex
1
@@ -18083,162 +18469,325 @@
lastKnownFileType
sourcecode.c.h
name
- TyphoonCircularDependencyTerminator.h
+ MKTVerificationMode.h
path
- Source/Factory/Block/TyphoonCircularDependencyTerminator.h
+ Source/OCMockito/MKTVerificationMode.h
sourceTree
<group>
- F5F550A0D92006959E7DCF86
-
- fileRef
- CE02C29F29E0AB65DABD2638
- isa
- PBXBuildFile
-
- F600F29FA33539AE823988B4
+ F6FEC31680712DDBBB5905C7
fileRef
- 6C9DC4F724BB6CE7CA143ED5
+ 18C8CB46EEDB34BDCF065107
isa
PBXBuildFile
- F63F0B8D0BD95A3360ADE68E
+ F73764DFB325063E6888C342
fileRef
- 39E7534835E6CE8A4E4C33EC
+ 7EC39C15C2AF916B91F5A69F
isa
PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
- F67B00FCBDFCA5DF3D79F8CB
+ F7395E171F9E3B73756271A2
fileRef
- 5EE961774E0E138B79283CA2
+ D32B322B93CA2BA6841C7B71
isa
PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
- F695453CDE254EC1375F8E39
+ F767CD6FCC9C7912109FA3A4
- fileRef
- D647F3CB72D8F7F77475FBA3
+ containerPortal
+ 94AF5A4F363AA9649B0CD69F
isa
- PBXBuildFile
+ PBXContainerItemProxy
+ proxyType
+ 1
+ remoteGlobalIDString
+ D4486042FCDB17AA6B93D575
+ remoteInfo
+ Pods-PocketForecast-NGAParallaxMotion
- F69BFB03EF4AED57D929454A
+ F7CDCBB88D4BBF4220BAFC09
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.objc
- name
- HCTestFailure.m
+ sourcecode.c.h
path
- Source/Core/Helpers/TestFailureHandlers/HCTestFailure.m
+ UIScreen+CKUITools.h
sourceTree
<group>
- F6CA403144C6CFFE6A150016
+ F80CF583EF643F697B7C6BBE
fileRef
- CE7CA93CB67A618593DBA2BE
+ 46DC7FB30682C0D6467BCED8
isa
PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
- F77F50AE94973A91D73CB156
+ F823C317DA6FC046B38688C8
- fileRef
- 6DF52A776541B883C5476113
+ buildActionMask
+ 2147483647
+ files
+
+ 49087FDAEFF9356DE82CF6D0
+ 320253BAAAF10AFF2632A096
+ 34806C231B93725D655DF10A
+ 020A86FC5030088AFEEEE30A
+ EBC89C845AF5008924C44E0D
+ 8B725CA2CF42E03F9EC163CF
+ 419C10DC9250C56BFF343942
+ 1669396AA05D1985F406511E
+ D9C15EE25B5043EE7AC5FCE4
+ 277C4E59A81286D53EDFFB4B
+ E31B6C2DD7E1D2EC71925741
+ 7F01CD28D01DC9B20DD59D80
+ FE71A5F39CB799D7E61C9835
+ D2961279BC6A024A0C93C399
+ D299D5B226073520478B9FC2
+ 67CB9FF5369DEBCE419636F5
+ 99409F6EAD53682F3372E8EA
+ E1924B9D4230D02625049065
+ CE110F95A860AD1D10B861DC
+ 51E8718D52926A6748A2F975
+ 009C5C70F1B76D1B75CC42E9
+ C4F0C885DEEBE1ED1FE96B0B
+ A40BEF411D9EC7AE9BAAF469
+ 646F1F8B03768C8293B15781
+ 40C0F6D9B8DB943D0FD4C766
+ B3B42522B4E7F10CE07CB76C
+ 9F908A4AEB6BB7727554C205
+ 5166B40474011931659B2DCC
+ F904623222DE0033AFF8FFB2
+ 1BDC06249338A4E101A707DE
+ 4576399C54A5190A3FEC5353
+ 969E4EE8123C45CD7D142F25
+ 83BA0F8AE14136581490AD73
+ 914C7760F28B0716CE38F6FD
+ EE1BD262EEB26B6F34F3C322
+ 21D75679CA765E0E6CE9D96C
+ 534AF39F32FF34AEFB9C94C3
+ BF09181CCDE4EF972EEA8E21
+ 37563C09A4A242AE79967377
+ 76666FC3B8522196736265D6
+ 0AFFA05D4F30A1864ED14C12
+ 98E8A1C0E1B8E4F82A3C0503
+ E6E3B5D8795633D5F7A8CBB6
+ 344F798C5B8255F9A9E7009F
+ F5932759741E61398AA1B210
+ D918FA7A8254E76635E78C6F
+ B959E24192BB6A6AA394F661
+ 0AD8B83C86C8474334E8696E
+ 1EB0D3050CA70371FD096D3E
+ F80CF583EF643F697B7C6BBE
+ E1DE8230FC771A72C21DB843
+ A3B27D005ECD3B9CA6994F52
+ D08D168D9C6EC9685F61B566
+ 9190EAC494DB5CDD2D6D8445
+ A5704A72FE11C026EDE66417
+ 84A24B11E91E45DE05D38E08
+ 0CCBC143A0E8457C77DE0A60
+ C310A28E674163CC8E6F92EB
+ D9C259437447E8F8281E2592
+ 8590B2A8DBEB1A55F165B0A4
+ DA3B28F8CFEF17CF5AE52BF0
+ A3C0DE4D0BADF4D6728318A7
+ DF17495F4AE0936624BEC43C
+ D0ABFD946620CFFBF8B8F9BC
+ DAB619D5E5C2477A8D30612A
+ EF6F90CE8E300CCD74FFB251
+ FDF1BFA6812EF6407C86C7B5
+ 0B550DB43C24C0A9B054F6FC
+ 02FCE677E6C06C68C0D4B894
+ CCD7EFE0D0C49498EC1EE8C8
+ CF0541BEE9CD1117BABE5BD5
+ 7D1FD0A2AC6FE33D776735A4
+ 3ACB05DAD3E4EAC512D067F2
+ 4A80BDF113544553DB3BF330
+ B14176EFB1D8B658CCC1354E
+ 2C5C8F04E48B98B54147FB26
+ 3F31082A45C4EB51A377E9B6
+ B7D34EF00D42173442CEF857
+ D1756E8E1AD3BF6E87FE9E95
+ 276FB8F3E10CF44F42043747
+
isa
- PBXBuildFile
+ PBXSourcesBuildPhase
+ runOnlyForDeploymentPostprocessing
+ 0
- F7935B65919F5C6869C1B934
+ F8325E8A77C5DE637DCB0152
fileRef
- A27E3985A84EC14A2A77AFE0
+ 9C7BD80C3AB23D7B78804471
isa
PBXBuildFile
settings
COMPILER_FLAGS
- -fobjc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+ -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
- F7B5C3C585DECB34F8F544E1
+ F8547103DB0E3DC1B25FA844
+
+ fileRef
+ 44CF7A8979027D26A337D1D7
+ isa
+ PBXBuildFile
+
+ F8EA4D74634221FD814CF13D
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.objc
+ sourcecode.c.h
name
- HCIntReturnGetter.m
+ MKTCharArgumentGetter.h
path
- Source/Core/Helpers/ReturnValueGetters/HCIntReturnGetter.m
+ Source/OCMockito/Helpers/ArgumentGetters/MKTCharArgumentGetter.h
sourceTree
<group>
- F7CD0E6065F02777EDADF8BE
-
- fileRef
- 720EFE45B0C344FE510CDBF1
- isa
- PBXBuildFile
-
- F7F550626161192E1D883DA9
-
- fileRef
- 17E4A8C41BB959CCF9421128
- isa
- PBXBuildFile
-
- F82F99F5C815DDBBD5894DA2
+ F904623222DE0033AFF8FFB2
fileRef
- 57EC6BC20BE76B96A6D9C342
+ 80650359D62505EFEF728469
isa
PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
- F871F5A9A5574AD41FD7EE1C
+ F9086A3A687C031C9F2A8986
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.objc
+ sourcecode.c.h
name
- HCIsDictionaryContainingValue.m
+ TyphoonBundledImageTypeConverter.h
path
- Source/Library/Collection/HCIsDictionaryContainingValue.m
+ Source/ios/TypeConversion/Converters/TyphoonBundledImageTypeConverter.h
sourceTree
<group>
- F8AA5E1E5D1E05B4E81C371D
+ F945A234D2146936D52B77EA
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.h
+ sourcecode.c.objc
name
- EXPMatcherHelpers.h
+ HCReturnValueGetter.m
path
- src/matchers/EXPMatcherHelpers.h
+ Source/Core/Helpers/ReturnValueGetters/HCReturnValueGetter.m
sourceTree
<group>
- F8D2D87E8358A400578B0E43
+ F9EB834AB55586A9FBB57367
+
+ fileRef
+ E8F3299E8BA2FCF623377989
+ isa
+ PBXBuildFile
+
+ FA11123747D43128F83F5A94
+
+ fileRef
+ 6BE5AE1EF8098619C2041DE1
+ isa
+ PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
+
+ FA39FA7B903FD549AC7E2EC7
+
+ baseConfigurationReference
+ BC13FD69D58C7A7727D473D9
+ buildSettings
+
+ ALWAYS_SEARCH_USER_PATHS
+ NO
+ COPY_PHASE_STRIP
+ NO
+ DSTROOT
+ /tmp/xcodeproj.dst
+ GCC_DYNAMIC_NO_PIC
+ NO
+ GCC_OPTIMIZATION_LEVEL
+ 0
+ GCC_PRECOMPILE_PREFIX_HEADER
+ YES
+ GCC_PREFIX_HEADER
+ Target Support Files/Pods-PocketForecast-OCLogTemplate/Pods-PocketForecast-OCLogTemplate-prefix.pch
+ GCC_PREPROCESSOR_DEFINITIONS
+
+ DEBUG=1
+ $(inherited)
+
+ GCC_SYMBOLS_PRIVATE_EXTERN
+ NO
+ INSTALL_PATH
+ $(BUILT_PRODUCTS_DIR)
+ IPHONEOS_DEPLOYMENT_TARGET
+ 7.0
+ OTHER_LDFLAGS
+
+ OTHER_LIBTOOLFLAGS
+
+ PRODUCT_NAME
+ $(TARGET_NAME)
+ PUBLIC_HEADERS_FOLDER_PATH
+ $(TARGET_NAME)
+ SDKROOT
+ iphoneos
+ SKIP_INSTALL
+ YES
+
+ isa
+ XCBuildConfiguration
+ name
+ Debug
+
+ FA5DA5FF4AF0B77C5C977BF1
fileRef
- 2700AD2EFDC0E3E04420CC92
+ 139A7223A16BFDA373871224
isa
PBXBuildFile
- F8EE4AEDB0524AF74BA512E5
+ FA6D3992DAF52A76117A783E
includeInIndex
1
@@ -18247,27 +18796,27 @@
lastKnownFileType
sourcecode.c.objc
name
- TyphoonAssemblySelectorAdviser.m
+ PaperFoldSwipeHintView.m
path
- Source/Factory/Block/TyphoonAssemblySelectorAdviser.m
+ PaperFold/PaperFold/PaperFold/PaperFoldSwipeHintView.m
sourceTree
<group>
- F932E0D9D86878BDB68D1C30
+ FA7434F33E0C67C5A58BF864
fileRef
- 7F8FE144EF3E051077997C03
+ F3807A03256B8148E31EFDB5
isa
PBXBuildFile
- F93DA90BEFDE0A525288C4C9
+ FACB52DBD523DB631DF0A754
fileRef
- BA7EEF024786D7059B4A775C
+ 47DA9F41D15B28D8F359D710
isa
PBXBuildFile
- F96874B365DB6A7E4A715CA1
+ FAD83CB323EF4D19A9EBDAE7
includeInIndex
1
@@ -18276,137 +18825,120 @@
lastKnownFileType
sourcecode.c.h
name
- HCSubstringMatcher.h
+ MKTShortArgumentGetter.h
path
- Source/Library/Text/HCSubstringMatcher.h
+ Source/OCMockito/Helpers/ArgumentGetters/MKTShortArgumentGetter.h
sourceTree
<group>
- F994A026196B0EC88180787C
+ FB50E11062C2AA335BBF26DB
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.objc
+ sourcecode.c.h
name
- TyphoonParentReferenceHydratingPostProcessor.m
+ TyphoonResource.h
path
- Source/Factory/Internal/TyphoonParentReferenceHydratingPostProcessor.m
+ Source/Configuration/Resource/TyphoonResource.h
sourceTree
<group>
- F9A4BCF2E3C4B9603335B76B
-
- containerPortal
- 66C2EBDD522B033360138729
- isa
- PBXContainerItemProxy
- proxyType
- 1
- remoteGlobalIDString
- 93183C63F70194245E89842F
- remoteInfo
- Pods-PocketForecastTests-OCHamcrest
-
- F9AC5614FD3513F2D8FB89AD
-
- fileRef
- 01ED7A5FF63AE73B84E11B60
- isa
- PBXBuildFile
- settings
-
- COMPILER_FLAGS
- -fobjc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
-
-
- F9D4140CB91CD60C6D290EE2
-
- fileRef
- 1BEB62B801A829E7CF670C3D
- isa
- PBXBuildFile
- settings
-
- COMPILER_FLAGS
- -fobjc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
-
-
- F9E17C4B230CEFEECE6E4113
-
- fileRef
- 10FDFE09CAC966C73296867A
- isa
- PBXBuildFile
- settings
-
- COMPILER_FLAGS
- -fobjc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
-
-
- F9F8597D97017EBD64F78D08
-
- fileRef
- 41A3CCFD7E9D808957358EB3
- isa
- PBXBuildFile
- settings
-
- COMPILER_FLAGS
- -fobjc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
-
-
- FA21587F5813ED1B82B5DDD4
-
- fileRef
- F5D8DD66A27F38A912EA4E5C
- isa
- PBXBuildFile
-
- FA287D20CCA90007F83A4947
+ FB53ADF4D8A72579757DBD58
- fileRef
- AE0C6F70D0EF4F98D8BC24B0
- isa
- PBXBuildFile
- settings
+ baseConfigurationReference
+ 12301405A0573E317933D8E9
+ buildSettings
- COMPILER_FLAGS
- -fobjc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+ ALWAYS_SEARCH_USER_PATHS
+ NO
+ COPY_PHASE_STRIP
+ YES
+ DSTROOT
+ /tmp/xcodeproj.dst
+ GCC_PRECOMPILE_PREFIX_HEADER
+ YES
+ GCC_PREFIX_HEADER
+ Target Support Files/Pods-PocketForecastTests-OCHamcrest/Pods-PocketForecastTests-OCHamcrest-prefix.pch
+ INSTALL_PATH
+ $(BUILT_PRODUCTS_DIR)
+ IPHONEOS_DEPLOYMENT_TARGET
+ 7.0
+ OTHER_CFLAGS
+
+ -DNS_BLOCK_ASSERTIONS=1
+ $(inherited)
+
+ OTHER_CPLUSPLUSFLAGS
+
+ -DNS_BLOCK_ASSERTIONS=1
+ $(inherited)
+
+ OTHER_LDFLAGS
+
+ OTHER_LIBTOOLFLAGS
+
+ PRODUCT_NAME
+ $(TARGET_NAME)
+ PUBLIC_HEADERS_FOLDER_PATH
+ $(TARGET_NAME)
+ SDKROOT
+ iphoneos
+ SKIP_INSTALL
+ YES
+ VALIDATE_PRODUCT
+ YES
-
- FA640B7630A48626A6C91B38
-
- fileRef
- 8D9A20E44C8CA3C57F6453A3
isa
- PBXBuildFile
+ XCBuildConfiguration
+ name
+ Release
- FAA917D277C6C5D0F6333B58
+ FB5F15783B63BED737DA2D41
fileRef
- D724E75E502F7D54B8B99BE1
+ 53F81F15A70AB367D784767E
isa
PBXBuildFile
- FAE8C75671510D0893C0CEB7
+ FB6B4E2037C4D5DF17178D99
- includeInIndex
- 1
+ children
+
+ FBE30BC77C408880AAE4EC6A
+ 7AD165E94CF5E5B76CCFBD88
+ E269FBB06D257E77BF201018
+ 67AD1568617B95A7E4E85255
+ 8568F5A08E380B977BC5A625
+ A42D8EEE1BD84EF236BEF98D
+ 4411D27145A3A7B0E4E5CD5F
+ 892C45F1C9975BD9A5272957
+ 6BE5AE1EF8098619C2041DE1
+ CDCFB898275F2B233DAF6F13
+ FA6D3992DAF52A76117A783E
+ 054B6A50EB3842CDD704E585
+ 69C77328E58528F7E73100E6
+ E5ADB3F6A930E64F39B1CD9D
+ 4FD311B391E1266CC6B9E3E5
+ 732EE5E3250175DB03A50EF6
+ 784F6DD6044561272E022D22
+ 50CD55CF984304F96FAF73D4
+ 3CA31DB26D4A4D7C85C35E60
+ 5109B9A5F7960EC4EA68747F
+ 4629E0B11A6E6E18C122E921
+
isa
- PBXFileReference
- lastKnownFileType
- sourcecode.c.objc
+ PBXGroup
name
- EXPMatchers+raise.m
+ PaperFold
path
- src/matchers/EXPMatchers+raise.m
+ PaperFold
sourceTree
<group>
- FB293E7DC88E5CF65C965917
+ FB849AD7B3E47DC26E89D461
includeInIndex
1
@@ -18415,25 +18947,20 @@
lastKnownFileType
sourcecode.c.objc
name
- EXPMatchers+beSupersetOf.m
+ EXPMatchers+endWith.m
path
- src/matchers/EXPMatchers+beSupersetOf.m
+ src/matchers/EXPMatchers+endWith.m
sourceTree
<group>
- FB77F5DED231F328FB3A5BC3
+ FBC655D2438DEC1BAD2FF8D4
fileRef
- 6D4477A5B9ED125ED9DA4CB1
+ A9E527AC46EB6F998C82BA65
isa
PBXBuildFile
- settings
-
- COMPILER_FLAGS
- -fobjc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
-
- FB87F09D372E8323A261837C
+ FBE30BC77C408880AAE4EC6A
includeInIndex
1
@@ -18442,70 +18969,47 @@
lastKnownFileType
sourcecode.c.h
name
- TyphoonAssembly.h
+ FacingView.h
path
- Source/Factory/Block/TyphoonAssembly.h
+ PaperFold/PaperFold/PaperFold/FacingView.h
sourceTree
<group>
- FC062B77B6156F5E3D75DE59
+ FC180576E9E7B51C8984E928
- buildActionMask
- 2147483647
- files
-
- F8D2D87E8358A400578B0E43
-
+ fileRef
+ 3C48E4C5CF2B9E562A631981
isa
- PBXHeadersBuildPhase
- runOnlyForDeploymentPostprocessing
- 0
+ PBXBuildFile
- FC3D656487F189864A101E18
+ FC47F0D761096F2844441A06
- fileRef
- A56DFE8FF4E4B0DEF8E47B3C
+ includeInIndex
+ 1
isa
- PBXBuildFile
+ PBXFileReference
+ lastKnownFileType
+ sourcecode.c.objc
+ name
+ EXPMatchers+respondTo.m
+ path
+ src/matchers/EXPMatchers+respondTo.m
+ sourceTree
+ <group>
- FCAF1890710D57030EE4EAF6
+ FC5AAE47502B8016E5C76DC0
fileRef
- 984A8DCC35CAE69C9CCB62DE
+ 704F0128607CD6F3F343B835
isa
PBXBuildFile
settings
COMPILER_FLAGS
- -fobjc-arc -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+ -fno-objc-arc -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
- FCC0C743343AEB4749672241
-
- buildConfigurationList
- B378F6DD6356EE23C71BBD7D
- buildPhases
-
- 024F5AFA7F8DB6749B98B6F5
- 8EEE6BD6592E42D1882F9EBA
- DFA6B39D1FDA29EE8462F027
-
- buildRules
-
- dependencies
-
- isa
- PBXNativeTarget
- name
- Pods-PocketForecastTests-Expecta
- productName
- Pods-PocketForecastTests-Expecta
- productReference
- 5D1031FAB01BE6A31D911D3C
- productType
- com.apple.product-type.library.static
-
- FD2A6C64C8356D0EAB346B8E
+ FCB68589EBD59E267CBB0501
includeInIndex
1
@@ -18514,63 +19018,60 @@
lastKnownFileType
sourcecode.c.h
name
- HCIsEqualToNumber.h
+ TyphoonUIColorTypeConverter.h
path
- Source/Library/Number/HCIsEqualToNumber.h
+ Source/ios/TypeConversion/Converters/TyphoonUIColorTypeConverter.h
sourceTree
<group>
- FE39F0327F8630A5A83C4D4D
+ FCDCB8CBFD72298C8F65D5A3
- buildConfigurationList
- E1560B53971BE3ADC068F09C
- buildPhases
-
- 76A9B78012E51AE893F74A93
- F0A150A1B997D25F9158E000
- 857FB3DA714DA7BC8A3D9DB9
-
- buildRules
-
- dependencies
-
+ includeInIndex
+ 1
isa
- PBXNativeTarget
+ PBXFileReference
+ lastKnownFileType
+ sourcecode.c.h
name
- Pods-PocketForecast-NGAParallaxMotion
- productName
- Pods-PocketForecast-NGAParallaxMotion
- productReference
- 4C60E890F1570AE222F7AD4E
- productType
- com.apple.product-type.library.static
+ HCIntReturnGetter.h
+ path
+ Source/Core/Helpers/ReturnValueGetters/HCIntReturnGetter.h
+ sourceTree
+ <group>
- FE9FFB8BAE08BCFDCBF66310
+ FCFD3678B4E443D056D4316B
includeInIndex
1
isa
PBXFileReference
lastKnownFileType
- sourcecode.c.h
+ sourcecode.c.objc
name
- HCIsEmptyCollection.h
+ TyphoonPlistStyleConfiguration.m
path
- Source/Library/Collection/HCIsEmptyCollection.h
+ Source/Configuration/ConfigPostProcessor/TyphoonConfiguration/TyphoonPlistStyleConfiguration.m
sourceTree
<group>
- FED445A7B31D9A4FF97FC12D
+ FD0E4D3FEB6DA97E4B0A71E6
+
+ fileRef
+ 285EC3F1F192572CCF89114C
+ isa
+ PBXBuildFile
+
+ FD4567742E2E60D27B8CB871
fileRef
- E943B4A482B94F93A5CB1CD9
+ FCB68589EBD59E267CBB0501
isa
PBXBuildFile
- FF0F68BEF388D2732C5DD2AB
+ FDAEC4D8BDF87D03C0FF3D51
baseConfigurationReference
- A480D1210E9AE0BDB415105E
+ 75419293C6DB588FFB58278A
buildSettings
ALWAYS_SEARCH_USER_PATHS
@@ -18586,7 +19087,7 @@
GCC_PRECOMPILE_PREFIX_HEADER
YES
GCC_PREFIX_HEADER
- Target Support Files/Pods-PocketForecastTests-OCHamcrest/Pods-PocketForecastTests-OCHamcrest-prefix.pch
+ Target Support Files/Pods-PocketForecastTests-OCMockito/Pods-PocketForecastTests-OCMockito-prefix.pch
GCC_PREPROCESSOR_DEFINITIONS
DEBUG=1
@@ -18616,87 +19117,111 @@
name
Debug
- FF153D68EFF9400EB1101A5C
+ FDF1BFA6812EF6407C86C7B5
- includeInIndex
- 1
+ fileRef
+ D8011340954CBBE98102AD9B
isa
- PBXFileReference
- lastKnownFileType
- sourcecode.c.h
- name
- TyphoonUIColorTypeConverter.h
- path
- Source/ios/TypeConversion/Converters/TyphoonUIColorTypeConverter.h
- sourceTree
- <group>
+ PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
- FF3CA988B5B1BA86FB5419CF
+ FE329AD53CA5D762393F3592
fileRef
- 064744FD5A78C86AF17EE5B6
+ 63B30F9583DED9A1C670E3D5
isa
PBXBuildFile
- FF4BC052D37CF479F5D1FBC4
+ FE71A5F39CB799D7E61C9835
- includeInIndex
- 1
+ fileRef
+ 546CDAF4A0AB4C56ED1EA4D4
isa
- PBXFileReference
- lastKnownFileType
- sourcecode.c.objc
- name
- TyphoonCollaboratingAssemblyPropertyEnumerator.m
- path
- Source/Factory/Block/TyphoonCollaboratingAssemblyPropertyEnumerator.m
- sourceTree
- <group>
+ PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
- FF7C4665F59EFDB4C55E065F
+ FE78EB808629488C5C84A1AD
- buildActionMask
- 2147483647
- files
-
- 66F69EC206D4D1ABFAB2C358
-
+ baseConfigurationReference
+ D4CBB02D22D2F4F5C29F3205
+ buildSettings
+
+ ALWAYS_SEARCH_USER_PATHS
+ NO
+ COPY_PHASE_STRIP
+ NO
+ DSTROOT
+ /tmp/xcodeproj.dst
+ GCC_DYNAMIC_NO_PIC
+ NO
+ GCC_OPTIMIZATION_LEVEL
+ 0
+ GCC_PRECOMPILE_PREFIX_HEADER
+ YES
+ GCC_PREFIX_HEADER
+ Target Support Files/Pods-PocketForecast-ICLoader/Pods-PocketForecast-ICLoader-prefix.pch
+ GCC_PREPROCESSOR_DEFINITIONS
+
+ DEBUG=1
+ $(inherited)
+
+ GCC_SYMBOLS_PRIVATE_EXTERN
+ NO
+ INSTALL_PATH
+ $(BUILT_PRODUCTS_DIR)
+ IPHONEOS_DEPLOYMENT_TARGET
+ 7.0
+ OTHER_LDFLAGS
+
+ OTHER_LIBTOOLFLAGS
+
+ PRODUCT_NAME
+ $(TARGET_NAME)
+ PUBLIC_HEADERS_FOLDER_PATH
+ $(TARGET_NAME)
+ SDKROOT
+ iphoneos
+ SKIP_INSTALL
+ YES
+
isa
- PBXFrameworksBuildPhase
- runOnlyForDeploymentPostprocessing
- 0
+ XCBuildConfiguration
+ name
+ Debug
- FF8A08EC2915AAE6FEA34C19
+ FEB6AC2B36F26FF2BB77897D
fileRef
- D694F36F707976BEFA93D77B
+ A03621938ABF30851F225A8D
isa
PBXBuildFile
+ settings
+
+ COMPILER_FLAGS
+ -w -Xanalyzer -analyzer-disable-checker -Xanalyzer deadcode
+
- FFB61FBE36692251DD62683E
+ FF2C4D717CBCBDDE993C119E
- includeInIndex
- 1
isa
- PBXFileReference
- lastKnownFileType
- sourcecode.c.objc
+ PBXTargetDependency
name
- MKTOngoingStubbing.m
- path
- Source/OCMockito/MKTOngoingStubbing.m
- sourceTree
- <group>
-
- FFB8E37DD52C7D24412B8399
-
- fileRef
- 7F8FE144EF3E051077997C03
- isa
- PBXBuildFile
+ Pods-PocketForecast-ICLoader
+ target
+ 31446349C693FD4C940D7E04
+ targetProxy
+ 828A4F784B80034CE5B4A7EF
rootObject
- 66C2EBDD522B033360138729
+ 94AF5A4F363AA9649B0CD69F
diff --git a/Pods/Target Support Files/Pods-PocketForecast/Pods-PocketForecast-environment.h b/Pods/Target Support Files/Pods-PocketForecast/Pods-PocketForecast-environment.h
index a1eb551..ddd09d4 100644
--- a/Pods/Target Support Files/Pods-PocketForecast/Pods-PocketForecast-environment.h
+++ b/Pods/Target Support Files/Pods-PocketForecast/Pods-PocketForecast-environment.h
@@ -46,11 +46,11 @@
#define COCOAPODS_POD_AVAILABLE_Typhoon
#define COCOAPODS_VERSION_MAJOR_Typhoon 2
#define COCOAPODS_VERSION_MINOR_Typhoon 3
-#define COCOAPODS_VERSION_PATCH_Typhoon 2
+#define COCOAPODS_VERSION_PATCH_Typhoon 3
// Typhoon/no-arc
#define COCOAPODS_POD_AVAILABLE_Typhoon_no_arc
#define COCOAPODS_VERSION_MAJOR_Typhoon_no_arc 2
#define COCOAPODS_VERSION_MINOR_Typhoon_no_arc 3
-#define COCOAPODS_VERSION_PATCH_Typhoon_no_arc 2
+#define COCOAPODS_VERSION_PATCH_Typhoon_no_arc 3
diff --git a/Pods/Target Support Files/Pods-PocketForecast/Pods-PocketForecast-resources.sh b/Pods/Target Support Files/Pods-PocketForecast/Pods-PocketForecast-resources.sh
index 860e2d0..1e3aa36 100755
--- a/Pods/Target Support Files/Pods-PocketForecast/Pods-PocketForecast-resources.sh
+++ b/Pods/Target Support Files/Pods-PocketForecast/Pods-PocketForecast-resources.sh
@@ -31,6 +31,10 @@ install_resource()
echo "xcrun momc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodeld`.momd\""
xcrun momc "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodeld`.momd"
;;
+ *.xcmappingmodel)
+ echo "xcrun mapc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcmappingmodel`.cdm\""
+ xcrun mapc "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcmappingmodel`.cdm"
+ ;;
*.xcassets)
;;
/*)
diff --git a/Pods/Target Support Files/Pods-PocketForecastTests/Pods-PocketForecastTests-acknowledgements.markdown b/Pods/Target Support Files/Pods-PocketForecastTests/Pods-PocketForecastTests-acknowledgements.markdown
index 48590f4..371d65e 100644
--- a/Pods/Target Support Files/Pods-PocketForecastTests/Pods-PocketForecastTests-acknowledgements.markdown
+++ b/Pods/Target Support Files/Pods-PocketForecastTests/Pods-PocketForecastTests-acknowledgements.markdown
@@ -26,41 +26,25 @@ THE SOFTWARE.
## OCHamcrest
-BSD License
-
+OCHamcrest by Jon Reid, http://qualitycoding.org/about/
Copyright 2014 hamcrest.org
All rights reserved.
-Redistribution and use in source and binary forms, with or without
-modification, are permitted provided that the following conditions are met:
+Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
-Redistributions of source code must retain the above copyright notice, this list of
-conditions and the following disclaimer. Redistributions in binary form must reproduce
-the above copyright notice, this list of conditions and the following disclaimer in
-the documentation and/or other materials provided with the distribution.
+Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
-Neither the name of Hamcrest nor the names of its contributors may be used to endorse
-or promote products derived from this software without specific prior written
-permission.
+Neither the name of Hamcrest nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
-THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
-EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
-OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
-SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
-INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
-TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
-BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY
-WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
-DAMAGE.
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+(BSD License)
-## OCMockito
-OCMockito:
+## OCMockito
+OCMockito by Jon Reid, http://qualitycoding.org/about/
Copyright 2014 Jonathan M. Reid
-All rights reserved.
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
diff --git a/Pods/Target Support Files/Pods-PocketForecastTests/Pods-PocketForecastTests-acknowledgements.plist b/Pods/Target Support Files/Pods-PocketForecastTests/Pods-PocketForecastTests-acknowledgements.plist
index 7f57e5c..232e65d 100644
--- a/Pods/Target Support Files/Pods-PocketForecastTests/Pods-PocketForecastTests-acknowledgements.plist
+++ b/Pods/Target Support Files/Pods-PocketForecastTests/Pods-PocketForecastTests-acknowledgements.plist
@@ -41,33 +41,19 @@ THE SOFTWARE.
FooterText
- BSD License
-
+ OCHamcrest by Jon Reid, http://qualitycoding.org/about/
Copyright 2014 hamcrest.org
All rights reserved.
-Redistribution and use in source and binary forms, with or without
-modification, are permitted provided that the following conditions are met:
-
-Redistributions of source code must retain the above copyright notice, this list of
-conditions and the following disclaimer. Redistributions in binary form must reproduce
-the above copyright notice, this list of conditions and the following disclaimer in
-the documentation and/or other materials provided with the distribution.
-
-Neither the name of Hamcrest nor the names of its contributors may be used to endorse
-or promote products derived from this software without specific prior written
-permission.
-
-THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
-EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
-OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
-SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
-INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
-TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
-BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY
-WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
-DAMAGE.
+Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
+
+Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
+
+Neither the name of Hamcrest nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+(BSD License)
Title
OCHamcrest
@@ -76,10 +62,8 @@ DAMAGE.
FooterText
- OCMockito:
-
+ OCMockito by Jon Reid, http://qualitycoding.org/about/
Copyright 2014 Jonathan M. Reid
-All rights reserved.
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
diff --git a/Pods/Target Support Files/Pods-PocketForecastTests/Pods-PocketForecastTests-environment.h b/Pods/Target Support Files/Pods-PocketForecastTests/Pods-PocketForecastTests-environment.h
index bcf3995..84f9e0a 100644
--- a/Pods/Target Support Files/Pods-PocketForecastTests/Pods-PocketForecastTests-environment.h
+++ b/Pods/Target Support Files/Pods-PocketForecastTests/Pods-PocketForecastTests-environment.h
@@ -15,12 +15,12 @@
// OCHamcrest
#define COCOAPODS_POD_AVAILABLE_OCHamcrest
#define COCOAPODS_VERSION_MAJOR_OCHamcrest 4
-#define COCOAPODS_VERSION_MINOR_OCHamcrest 0
+#define COCOAPODS_VERSION_MINOR_OCHamcrest 1
#define COCOAPODS_VERSION_PATCH_OCHamcrest 1
// OCMockito
#define COCOAPODS_POD_AVAILABLE_OCMockito
#define COCOAPODS_VERSION_MAJOR_OCMockito 1
-#define COCOAPODS_VERSION_MINOR_OCMockito 3
-#define COCOAPODS_VERSION_PATCH_OCMockito 1
+#define COCOAPODS_VERSION_MINOR_OCMockito 4
+#define COCOAPODS_VERSION_PATCH_OCMockito 0
diff --git a/Pods/Target Support Files/Pods-PocketForecastTests/Pods-PocketForecastTests-resources.sh b/Pods/Target Support Files/Pods-PocketForecastTests/Pods-PocketForecastTests-resources.sh
index 216f0cf..e149064 100755
--- a/Pods/Target Support Files/Pods-PocketForecastTests/Pods-PocketForecastTests-resources.sh
+++ b/Pods/Target Support Files/Pods-PocketForecastTests/Pods-PocketForecastTests-resources.sh
@@ -31,6 +31,10 @@ install_resource()
echo "xcrun momc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodeld`.momd\""
xcrun momc "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodeld`.momd"
;;
+ *.xcmappingmodel)
+ echo "xcrun mapc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcmappingmodel`.cdm\""
+ xcrun mapc "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcmappingmodel`.cdm"
+ ;;
*.xcassets)
;;
/*)
diff --git a/Pods/Typhoon/README.md b/Pods/Typhoon/README.md
index c65a899..b44c3f2 100644
--- a/Pods/Typhoon/README.md
+++ b/Pods/Typhoon/README.md
@@ -1,87 +1,50 @@
-# Typhoon! (www.typhoonframework.org)
+![Typhoon](http://www.typhoonframework.org/typhoon-splash.png)
+# typhoonframework.org
+
+![Build Status](http://typhoonframework.org/build-status/build-status.png?q=z)
+
Powerful dependency injection for Cocoa and CocoaTouch. Lightweight, yet full-featured and super-easy to use.
## Not familiar with Dependency Injection?
-Visit the Typhoon website for an introduction. Otherwise. . .
+Visit the Typhoon website for an introduction.
-## Design Goals / Features
+## Is Typhoon the right DI framework for you?
-*Typhoon is a DI library that makes good use of the runtime's (ObjC or Swift) late binding nature in order to perform method interception and forwarding. This makes for a very compelling feature list.*
-
-
-* Non-invasive. ***No macros or XML required*** . . . Uses powerful Objective-C runtime approach.
-
-* Its not necessary to change ***any*** of your classes to use the framework. ***Can be introduced into legacy applications.***
-
-* No magic strings - ***supports IDE refactoring, code-completion and compile-time checking.***
-
-* Provides ***full-modularization and encapsulation of configuration*** - grouping the application assembly
-details into a single document, with chapters. ***Let your architecture tell a story.***
-
-* ***Dependencies declared in any order.*** (The order that makes sense to humans).
-
-* Makes it easy to have multiple configurations of the same base-class or protocol.
-
-* Allows both dependency injection (injection of classes defined in the DI context) as well as configuration
- management (values that get converted to the required type at runtime). Because this allows. . .
-
-* . . . ability to configure components for use in eg ___Test___ vs ___Production___ scenarios. This faciliates a
-good compromise between integration testing and pure unit testing. (Biggest testing bang-for-your-buck).
-
-* Supports ***injection of view controllers*** and ***storyboard integration.***
-
-* Supports both ***initializer***, ***property*** and ***method injection***. For the latter two, it has customizable call-backs to ensure that the class is in the required state before and after injection.
-
-* Supports a mixture of static dependencies along with run-time arguments to create factories on the fly. This greatly reduces the amount of boiler-plate code that you would normally write.
-
-* Excellent ***support for circular dependencies.***
-
-* ***Powerful memory management features***. Provides pre-configured objects, without the memory overhead of singletons.
-
-* ***Lightweight***. It has a very low footprint, so is appropriate for CPU and memory constrained devices. Weighs in at just 2500 lines of code in total!
-
-* ***Battle-tested*** - used in all kinds of Appstore-featured apps.
-
-# Installing
-
-Typhoon is available through CocoaPods (recommended). Alternatively, add the source files to your project's target or set up an Xcode workspace.
+Checkout out the feature list.
# Usage
* Read the Quick Start or User Guide.
-* Try the Swift Sample Application or the Objective-C Sample Application.
-* By popular demand, there's also an sample that features setting up Typhoon with Core Data and Reactive Cocoa.
+* Try the Swift Sample Application or the Objective-C Sample Application. Also, here's a sample that shows how to set up Typhoon with Core Data and Reactive Cocoa.
* Here are the API Docs. Generally googling a Typhoon class name will return the correct page as the first hit.
+* 日本のドキュメンテーション
+# Installing
-# Build Status
-![Build Status](http://www.typhoonframework.org/docs/latest/build-status/build-status.png?q=zz)
+Typhoon is available through CocoaPods (recommended). Alternatively, add the source files to your project's target or set up an Xcode workspace.
+# Feedback
-The following reports are published by our build server after each commit. Note that the status of the CI build is not related to tagged releases that are published and pushed to CocoaPods - these are stable.
+### I'm not sure how to do [xyz]
-Test Failures typically indicate a bug that has been flagged, but not yet fixed. By policy we maintain more than 90% test coverage.
+If you can't find what you need in the Quick Start or User Guides above, then Typhoon users and contributors monitor the Typhoon tag on Stack Overflow. Chances are your question can be answered there.
+### I've found a bug, or have a feature request
-* API
-* Test Results
-* Test Coverage
+Please raise a GitHub issue.
+### I'm blown away!
-# Feedback
+Typhoon is a non-profit, community driven project. We only ask that if you've found it useful to star us on Github or send a tweet mentioning us (@appsquickly). If you've written Typhoon related blog or tutorial, or published a new Typhoon powered app, we'd certainly be happy to hear about that too.
-Interested in contributing? Contribution Guide.
+Typhoon is sponsored and lead by AppsQuick.ly with contributions from around the world.
-| I need help because | Action |
-| :---------- | :------ |
-I'm not sure how to do [xyz] | Typhoon users and contributors monitor the Typhoon tag on Stack Overflow. Chances are your question can be answered there.
-Bugs and new feature requests | Please raise a GitHub issue.
-I'll take all the help I can get | While Typhoon is free, open-source and volunteer based, if you're interested in professional consultation/support we do maintain a list of experts and companies that can provide services. Get in touch with us, and we'll do our best to connect you.
+# Interested in contributing?
-**Typhoon is a free and community driven project. We only ask that if you've found it useful to please let us know by starring us on Github, sending a tweet mentioning us or emailing info@typhoonframework.org! And if not, please let us know what you would like improved.**
+ Great! Here's the contribution guide.
# LICENSE
diff --git a/Pods/Typhoon/Source/Configuration/ConfigPostProcessor/TyphoonConfigPostProcessor.h b/Pods/Typhoon/Source/Configuration/ConfigPostProcessor/TyphoonConfigPostProcessor.h
index 3299818..a6eb3e7 100644
--- a/Pods/Typhoon/Source/Configuration/ConfigPostProcessor/TyphoonConfigPostProcessor.h
+++ b/Pods/Typhoon/Source/Configuration/ConfigPostProcessor/TyphoonConfigPostProcessor.h
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////////////////////////
//
// TYPHOON FRAMEWORK
-// Copyright 2013, Jasper Blues & Contributors
+// Copyright 2013, Typhoon Framework Contributors
// All Rights Reserved.
//
// NOTICE: The authors permit you to use, modify, and distribute this file
@@ -11,14 +11,14 @@
#import
-#import "TyphoonComponentFactoryPostProcessor.h"
+#import "TyphoonDefinitionPostProcessor.h"
@protocol TyphoonResource;
/**
* @ingroup Configuration
*/
-@interface TyphoonConfigPostProcessor : NSObject
+@interface TyphoonConfigPostProcessor : NSObject
/**
* You can manage TyphoonConfigPostProcessor registry by mapping configuration classes for file extensions
diff --git a/Pods/Typhoon/Source/Configuration/ConfigPostProcessor/TyphoonConfigPostProcessor.m b/Pods/Typhoon/Source/Configuration/ConfigPostProcessor/TyphoonConfigPostProcessor.m
index 07ca10a..fcb9fef 100644
--- a/Pods/Typhoon/Source/Configuration/ConfigPostProcessor/TyphoonConfigPostProcessor.m
+++ b/Pods/Typhoon/Source/Configuration/ConfigPostProcessor/TyphoonConfigPostProcessor.m
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////////////////////////
//
// TYPHOON FRAMEWORK
-// Copyright 2013, Jasper Blues & Contributors
+// Copyright 2013, Typhoon Framework Contributors
// All Rights Reserved.
//
// NOTICE: The authors permit you to use, modify, and distribute this file
@@ -130,7 +130,7 @@ - (id)configurationValueForKey:(NSString *)key
//-------------------------------------------------------------------------------------------
#pragma mark - Protocol Methods
-- (void)postProcessComponentFactory:(TyphoonComponentFactory *)factory
+- (void)postProcessDefinitionsInFactory:(TyphoonComponentFactory *)factory
{
for (TyphoonDefinition *definition in [factory registry]) {
[self configureInjectionsInDefinition:definition];
diff --git a/Pods/Typhoon/Source/Configuration/ConfigPostProcessor/TyphoonConfiguration/TyphoonConfiguration.h b/Pods/Typhoon/Source/Configuration/ConfigPostProcessor/TyphoonConfiguration/TyphoonConfiguration.h
index 65773f8..a3ba799 100644
--- a/Pods/Typhoon/Source/Configuration/ConfigPostProcessor/TyphoonConfiguration/TyphoonConfiguration.h
+++ b/Pods/Typhoon/Source/Configuration/ConfigPostProcessor/TyphoonConfiguration/TyphoonConfiguration.h
@@ -1,7 +1,13 @@
+////////////////////////////////////////////////////////////////////////////////
//
-// Created by Aleksey Garbarev on 22.05.14.
-// Copyright (c) 2014 Jasper Blues. All rights reserved.
+// TYPHOON FRAMEWORK
+// Copyright 2013, Typhoon Framework Contributors
+// All Rights Reserved.
//
+// NOTICE: The authors permit you to use, modify, and distribute this file
+// in accordance with the terms of the license agreement accompanying it.
+//
+////////////////////////////////////////////////////////////////////////////////
@protocol TyphoonResource;
diff --git a/Pods/Typhoon/Source/Configuration/ConfigPostProcessor/TyphoonConfiguration/TyphoonJsonStyleConfiguration.h b/Pods/Typhoon/Source/Configuration/ConfigPostProcessor/TyphoonConfiguration/TyphoonJsonStyleConfiguration.h
index 08a58b1..cf02620 100644
--- a/Pods/Typhoon/Source/Configuration/ConfigPostProcessor/TyphoonConfiguration/TyphoonJsonStyleConfiguration.h
+++ b/Pods/Typhoon/Source/Configuration/ConfigPostProcessor/TyphoonConfiguration/TyphoonJsonStyleConfiguration.h
@@ -1,7 +1,13 @@
+////////////////////////////////////////////////////////////////////////////////
//
-// Created by Aleksey Garbarev on 22.05.14.
-// Copyright (c) 2014 Jasper Blues. All rights reserved.
+// TYPHOON FRAMEWORK
+// Copyright 2013, Typhoon Framework Contributors
+// All Rights Reserved.
//
+// NOTICE: The authors permit you to use, modify, and distribute this file
+// in accordance with the terms of the license agreement accompanying it.
+//
+////////////////////////////////////////////////////////////////////////////////
#import
#import "TyphoonConfiguration.h"
diff --git a/Pods/Typhoon/Source/Configuration/ConfigPostProcessor/TyphoonConfiguration/TyphoonJsonStyleConfiguration.m b/Pods/Typhoon/Source/Configuration/ConfigPostProcessor/TyphoonConfiguration/TyphoonJsonStyleConfiguration.m
index 204f043..ed994fb 100644
--- a/Pods/Typhoon/Source/Configuration/ConfigPostProcessor/TyphoonConfiguration/TyphoonJsonStyleConfiguration.m
+++ b/Pods/Typhoon/Source/Configuration/ConfigPostProcessor/TyphoonConfiguration/TyphoonJsonStyleConfiguration.m
@@ -1,7 +1,13 @@
+////////////////////////////////////////////////////////////////////////////////
//
-// Created by Aleksey Garbarev on 22.05.14.
-// Copyright (c) 2014 Jasper Blues. All rights reserved.
+// TYPHOON FRAMEWORK
+// Copyright 2013, Typhoon Framework Contributors
+// All Rights Reserved.
//
+// NOTICE: The authors permit you to use, modify, and distribute this file
+// in accordance with the terms of the license agreement accompanying it.
+//
+////////////////////////////////////////////////////////////////////////////////
#import "TyphoonJsonStyleConfiguration.h"
#import "TyphoonResource.h"
diff --git a/Pods/Typhoon/Source/Configuration/ConfigPostProcessor/TyphoonConfiguration/TyphoonPlistStyleConfiguration.h b/Pods/Typhoon/Source/Configuration/ConfigPostProcessor/TyphoonConfiguration/TyphoonPlistStyleConfiguration.h
index 3126ef3..d0855cc 100644
--- a/Pods/Typhoon/Source/Configuration/ConfigPostProcessor/TyphoonConfiguration/TyphoonPlistStyleConfiguration.h
+++ b/Pods/Typhoon/Source/Configuration/ConfigPostProcessor/TyphoonConfiguration/TyphoonPlistStyleConfiguration.h
@@ -1,7 +1,14 @@
+////////////////////////////////////////////////////////////////////////////////
//
-// Created by Aleksey Garbarev on 27.05.14.
-// Copyright (c) 2014 Jasper Blues. All rights reserved.
+// TYPHOON FRAMEWORK
+// Copyright 2013, Typhoon Framework Contributors
+// All Rights Reserved.
//
+// NOTICE: The authors permit you to use, modify, and distribute this file
+// in accordance with the terms of the license agreement accompanying it.
+//
+////////////////////////////////////////////////////////////////////////////////
+
#import
diff --git a/Pods/Typhoon/Source/Configuration/ConfigPostProcessor/TyphoonConfiguration/TyphoonPlistStyleConfiguration.m b/Pods/Typhoon/Source/Configuration/ConfigPostProcessor/TyphoonConfiguration/TyphoonPlistStyleConfiguration.m
index 8a023b3..ba30838 100644
--- a/Pods/Typhoon/Source/Configuration/ConfigPostProcessor/TyphoonConfiguration/TyphoonPlistStyleConfiguration.m
+++ b/Pods/Typhoon/Source/Configuration/ConfigPostProcessor/TyphoonConfiguration/TyphoonPlistStyleConfiguration.m
@@ -1,7 +1,14 @@
+////////////////////////////////////////////////////////////////////////////////
//
-// Created by Aleksey Garbarev on 27.05.14.
-// Copyright (c) 2014 Jasper Blues. All rights reserved.
+// TYPHOON FRAMEWORK
+// Copyright 2013, Typhoon Framework Contributors
+// All Rights Reserved.
//
+// NOTICE: The authors permit you to use, modify, and distribute this file
+// in accordance with the terms of the license agreement accompanying it.
+//
+////////////////////////////////////////////////////////////////////////////////
+
#import "TyphoonPlistStyleConfiguration.h"
#import "TyphoonResource.h"
@@ -23,19 +30,33 @@ - (id)init
- (void)appendResource:(id)resource
{
- NSError *error = nil;
- NSDictionary *dictionary = [NSPropertyListSerialization propertyListWithData:[resource data]
- options:NSPropertyListImmutable
- format:NULL
- error:&error];
+ NSString *errorString = nil;
+ NSDictionary *dictionary = nil;
+
+ // remove deprecated warning when targeting iOS 8 + and OSX 10.6 +
+#if (TARGET_OS_IPHONE && __IPHONE_OS_VERSION_MAX_ALLOWED >= __IPHONE_8) || (TARGET_OS_MAC && MAC_OS_X_VERSION_MIN_REQUIRED >= MAC_OS_X_VERSION_10_10)
+ NSError * error = nil;
+ dictionary = [NSPropertyListSerialization propertyListWithData:[resource data]
+ options:NSPropertyListImmutable
+ format:NULL
+ error:&error];
+ if (error != nil) {
+ errorString = [error localizedDescription];
+ }
+#else
+ dictionary = [NSPropertyListSerialization propertyListFromData:[resource data]
+ mutabilityOption:NSPropertyListImmutable
+ format:NULL
+ errorDescription:&errorString];
+#endif
if (![dictionary isKindOfClass:[NSDictionary class]]) {
[NSException raise:NSInvalidArgumentException format:@"Root plist object must be a dictionary"];
}
- if (!error) {
+ if (!errorString) {
[_properties addEntriesFromDictionary:dictionary];
} else {
- [NSException raise:NSInvalidArgumentException format:@"Can't parse plist configuration file: %@", error.localizedDescription];
+ [NSException raise:NSInvalidArgumentException format:@"Can't prase plist configuration file: %@", errorString];
}
}
@@ -44,4 +65,4 @@ - (id)objectForKey:(NSString *)key
return [_properties valueForKeyPath:key];
}
-@end
+@end
\ No newline at end of file
diff --git a/Pods/Typhoon/Source/Configuration/ConfigPostProcessor/TyphoonConfiguration/TyphoonPropertyStyleConfiguration.h b/Pods/Typhoon/Source/Configuration/ConfigPostProcessor/TyphoonConfiguration/TyphoonPropertyStyleConfiguration.h
index a2f0ca8..776a239 100644
--- a/Pods/Typhoon/Source/Configuration/ConfigPostProcessor/TyphoonConfiguration/TyphoonPropertyStyleConfiguration.h
+++ b/Pods/Typhoon/Source/Configuration/ConfigPostProcessor/TyphoonConfiguration/TyphoonPropertyStyleConfiguration.h
@@ -1,7 +1,13 @@
+////////////////////////////////////////////////////////////////////////////////
//
-// Created by Aleksey Garbarev on 22.05.14.
-// Copyright (c) 2014 Jasper Blues. All rights reserved.
+// TYPHOON FRAMEWORK
+// Copyright 2013, Typhoon Framework Contributors
+// All Rights Reserved.
//
+// NOTICE: The authors permit you to use, modify, and distribute this file
+// in accordance with the terms of the license agreement accompanying it.
+//
+////////////////////////////////////////////////////////////////////////////////
#import
#import "TyphoonConfiguration.h"
diff --git a/Pods/Typhoon/Source/Configuration/ConfigPostProcessor/TyphoonConfiguration/TyphoonPropertyStyleConfiguration.m b/Pods/Typhoon/Source/Configuration/ConfigPostProcessor/TyphoonConfiguration/TyphoonPropertyStyleConfiguration.m
index 7d11bb8..99a874b 100644
--- a/Pods/Typhoon/Source/Configuration/ConfigPostProcessor/TyphoonConfiguration/TyphoonPropertyStyleConfiguration.m
+++ b/Pods/Typhoon/Source/Configuration/ConfigPostProcessor/TyphoonConfiguration/TyphoonPropertyStyleConfiguration.m
@@ -1,7 +1,14 @@
+////////////////////////////////////////////////////////////////////////////////
//
-// Created by Aleksey Garbarev on 22.05.14.
-// Copyright (c) 2014 Jasper Blues. All rights reserved.
+// TYPHOON FRAMEWORK
+// Copyright 2013, Typhoon Framework Contributors
+// All Rights Reserved.
//
+// NOTICE: The authors permit you to use, modify, and distribute this file
+// in accordance with the terms of the license agreement accompanying it.
+//
+////////////////////////////////////////////////////////////////////////////////
+
#import "TyphoonPropertyStyleConfiguration.h"
#import "TyphoonResource.h"
diff --git a/Pods/Typhoon/Source/Configuration/DefinitionOptionConfiguration/Matcher/TyphoonOptionMatcher+Internal.h b/Pods/Typhoon/Source/Configuration/DefinitionOptionConfiguration/Matcher/TyphoonOptionMatcher+Internal.h
index c6eaa96..4d9b5cd 100644
--- a/Pods/Typhoon/Source/Configuration/DefinitionOptionConfiguration/Matcher/TyphoonOptionMatcher+Internal.h
+++ b/Pods/Typhoon/Source/Configuration/DefinitionOptionConfiguration/Matcher/TyphoonOptionMatcher+Internal.h
@@ -1,7 +1,14 @@
+////////////////////////////////////////////////////////////////////////////////
//
-// Created by Aleksey Garbarev on 22.05.14.
-// Copyright (c) 2014 Jasper Blues. All rights reserved.
+// TYPHOON FRAMEWORK
+// Copyright 2013, Typhoon Framework Contributors
+// All Rights Reserved.
//
+// NOTICE: The authors permit you to use, modify, and distribute this file
+// in accordance with the terms of the license agreement accompanying it.
+//
+////////////////////////////////////////////////////////////////////////////////
+
#import
#import "TyphoonOptionMatcher.h"
diff --git a/Pods/Typhoon/Source/Configuration/DefinitionOptionConfiguration/Matcher/TyphoonOptionMatcher.h b/Pods/Typhoon/Source/Configuration/DefinitionOptionConfiguration/Matcher/TyphoonOptionMatcher.h
index bb23c13..81cfa98 100644
--- a/Pods/Typhoon/Source/Configuration/DefinitionOptionConfiguration/Matcher/TyphoonOptionMatcher.h
+++ b/Pods/Typhoon/Source/Configuration/DefinitionOptionConfiguration/Matcher/TyphoonOptionMatcher.h
@@ -1,7 +1,14 @@
+////////////////////////////////////////////////////////////////////////////////
//
-// Created by Aleksey Garbarev on 22.05.14.
-// Copyright (c) 2014 Jasper Blues. All rights reserved.
+// TYPHOON FRAMEWORK
+// Copyright 2013, Typhoon Framework Contributors
+// All Rights Reserved.
//
+// NOTICE: The authors permit you to use, modify, and distribute this file
+// in accordance with the terms of the license agreement accompanying it.
+//
+////////////////////////////////////////////////////////////////////////////////
+
#import "TyphoonDefinition.h"
diff --git a/Pods/Typhoon/Source/Configuration/DefinitionOptionConfiguration/Matcher/TyphoonOptionMatcher.m b/Pods/Typhoon/Source/Configuration/DefinitionOptionConfiguration/Matcher/TyphoonOptionMatcher.m
index fa08358..3d87658 100644
--- a/Pods/Typhoon/Source/Configuration/DefinitionOptionConfiguration/Matcher/TyphoonOptionMatcher.m
+++ b/Pods/Typhoon/Source/Configuration/DefinitionOptionConfiguration/Matcher/TyphoonOptionMatcher.m
@@ -1,14 +1,15 @@
+////////////////////////////////////////////////////////////////////////////////
//
-// Created by Aleksey Garbarev on 22.05.14.
-// Copyright (c) 2014 Jasper Blues. All rights reserved.
+// TYPHOON FRAMEWORK
+// Copyright 2013, Typhoon Framework Contributors
+// All Rights Reserved.
//
+// NOTICE: The authors permit you to use, modify, and distribute this file
+// in accordance with the terms of the license agreement accompanying it.
+//
+////////////////////////////////////////////////////////////////////////////////
#import "TyphoonDefinition+Option.h"
-#import "TyphoonOptionMatcher.h"
-#import "TyphoonOptionMatcher+Internal.h"
-#import "TyphoonComponentFactory.h"
-#import "TyphoonComponentFactory+TyphoonDefinitionRegisterer.h"
-#import "TyphoonDefinition+Infrastructure.h"
#import "TyphoonInjections.h"
#import "TyphoonInjection.h"
diff --git a/Pods/Typhoon/Source/Configuration/DefinitionOptionConfiguration/TyphoonDefinition+Option.h b/Pods/Typhoon/Source/Configuration/DefinitionOptionConfiguration/TyphoonDefinition+Option.h
index 8d94396..961f096 100644
--- a/Pods/Typhoon/Source/Configuration/DefinitionOptionConfiguration/TyphoonDefinition+Option.h
+++ b/Pods/Typhoon/Source/Configuration/DefinitionOptionConfiguration/TyphoonDefinition+Option.h
@@ -1,7 +1,14 @@
+////////////////////////////////////////////////////////////////////////////////
//
-// Created by Aleksey Garbarev on 22.05.14.
-// Copyright (c) 2014 Jasper Blues. All rights reserved.
+// TYPHOON FRAMEWORK
+// Copyright 2013, Typhoon Framework Contributors
+// All Rights Reserved.
//
+// NOTICE: The authors permit you to use, modify, and distribute this file
+// in accordance with the terms of the license agreement accompanying it.
+//
+////////////////////////////////////////////////////////////////////////////////
+
#import "TyphoonDefinition.h"
#import "TyphoonOptionMatcher.h"
diff --git a/Pods/Typhoon/Source/Configuration/DefinitionOptionConfiguration/TyphoonDefinition+Option.m b/Pods/Typhoon/Source/Configuration/DefinitionOptionConfiguration/TyphoonDefinition+Option.m
index 1f8429f..7a762d6 100644
--- a/Pods/Typhoon/Source/Configuration/DefinitionOptionConfiguration/TyphoonDefinition+Option.m
+++ b/Pods/Typhoon/Source/Configuration/DefinitionOptionConfiguration/TyphoonDefinition+Option.m
@@ -1,7 +1,14 @@
+////////////////////////////////////////////////////////////////////////////////
//
-// Created by Aleksey Garbarev on 22.05.14.
-// Copyright (c) 2014 Jasper Blues. All rights reserved.
+// TYPHOON FRAMEWORK
+// Copyright 2013, Typhoon Framework Contributors
+// All Rights Reserved.
//
+// NOTICE: The authors permit you to use, modify, and distribute this file
+// in accordance with the terms of the license agreement accompanying it.
+//
+////////////////////////////////////////////////////////////////////////////////
+
#import "TyphoonDefinition+Option.h"
#import "TyphoonOptionMatcher+Internal.h"
@@ -16,17 +23,18 @@
@interface TyphoonOptionDefinition : TyphoonFactoryDefinition
-@property (nonatomic, strong) id optionInjection;
-@property (nonatomic, strong) TyphoonOptionMatcher *matcher;
+@property(nonatomic, strong) id optionInjection;
+@property(nonatomic, strong) TyphoonOptionMatcher* matcher;
@end
@implementation TyphoonOptionDefinition
-- (instancetype)initWithOptionValue:(id)value matcher:(TyphoonOptionMatcher *)matcher
+- (instancetype)initWithOptionValue:(id)value matcher:(TyphoonOptionMatcher*)matcher
{
self = [super initWithClass:[NSObject class] key:nil];
- if (self) {
+ if (self)
+ {
self.optionInjection = TyphoonMakeInjectionFromObjectIfNeeded(value);
self.matcher = matcher;
self.scope = TyphoonScopePrototype;
@@ -34,12 +42,9 @@ - (instancetype)initWithOptionValue:(id)value matcher:(TyphoonOptionMatcher *)ma
return self;
}
-- (id)targetForInitializerWithFactory:(TyphoonComponentFactory *)factory args:(TyphoonRuntimeArguments *)args
+- (id)targetForInitializerWithFactory:(TyphoonComponentFactory*)factory args:(TyphoonRuntimeArguments*)args
{
- TyphoonInjectionContext *context = [TyphoonInjectionContext new];
- context.args = args;
- context.factory = factory;
- context.raiseExceptionIfCircular = YES;
+ TyphoonInjectionContext* context = [[TyphoonInjectionContext alloc] initWithFactory:factory args:args raiseExceptionIfCircular:YES];
context.destinationType = [TyphoonTypeDescriptor descriptorWithEncodedType:@encode(id)];
__block id optionValue = nil;
@@ -47,7 +52,7 @@ - (id)targetForInitializerWithFactory:(TyphoonComponentFactory *)factory args:(T
optionValue = value;
}];
- idinjection = [self.matcher injectionMatchedValue:optionValue];
+ id injection = [self.matcher injectionMatchedValue:optionValue];
__block id result = nil;
[injection valueToInjectWithContext:context completion:^(id value) {
@@ -57,22 +62,27 @@ - (id)targetForInitializerWithFactory:(TyphoonComponentFactory *)factory args:(T
return result;
}
-- (TyphoonMethod *)initializer
+- (TyphoonMethod*)initializer
{
return nil;
}
-- (void)enumerateInjectionsOfKind:(Class)injectionClass options:(TyphoonInjectionsEnumerationOption)options usingBlock:(TyphoonInjectionsEnumerationBlock)block
+- (void)enumerateInjectionsOfKind:(Class)injectionClass options:(TyphoonInjectionsEnumerationOption)options
+ usingBlock:(TyphoonInjectionsEnumerationBlock)block
{
- if (options & TyphoonInjectionsEnumerationOptionProperties) {
- if ([self.optionInjection isKindOfClass:injectionClass]) {
+ if (options & TyphoonInjectionsEnumerationOptionProperties)
+ {
+ if ([self.optionInjection isKindOfClass:injectionClass])
+ {
id injectionToReplace = nil;
BOOL stop = NO;
block(self.optionInjection, &injectionToReplace, &stop);
- if (injectionToReplace) {
+ if (injectionToReplace)
+ {
self.optionInjection = injectionToReplace;
}
- if (stop) {
+ if (stop)
+ {
return;
}
}
@@ -88,7 +98,7 @@ @implementation TyphoonDefinition (Option)
+ (id)withOption:(id)option yes:(id)yesDefinition no:(id)noDefinition
{
- return [self withOption:option matcher:^(TyphoonOptionMatcher *matcher) {
+ return [self withOption:option matcher:^(TyphoonOptionMatcher* matcher) {
[matcher caseEqual:@YES use:yesDefinition];
[matcher caseEqual:@"YES" use:yesDefinition];
[matcher caseEqual:@"1" use:yesDefinition];
@@ -100,18 +110,20 @@ + (id)withOption:(id)option yes:(id)yesDefinition no:(id)noDefinition
+ (id)withOption:(id)option matcher:(TyphoonMatcherBlock)matcherBlock
{
- TyphoonOptionMatcher *matcher = [[TyphoonOptionMatcher alloc] initWithBlock:matcherBlock];
+ TyphoonOptionMatcher* matcher = [[TyphoonOptionMatcher alloc] initWithBlock:matcherBlock];
return [[TyphoonOptionDefinition alloc] initWithOptionValue:option matcher:matcher];
}
-+ (id)withOption:(id)option matcher:(TyphoonMatcherBlock)matcherBlock autoInjectionConfig:(void (^)(id config))configBlock
++ (id)withOption:(id)option matcher:(TyphoonMatcherBlock)matcherBlock
+ autoInjectionConfig:(void (^)(id config))configBlock
{
- TyphoonOptionMatcher *matcher = [[TyphoonOptionMatcher alloc] initWithBlock:matcherBlock];
+ TyphoonOptionMatcher* matcher = [[TyphoonOptionMatcher alloc] initWithBlock:matcherBlock];
- TyphoonOptionDefinition *definition = [[TyphoonOptionDefinition alloc] initWithOptionValue:option matcher:matcher];
+ TyphoonOptionDefinition* definition = [[TyphoonOptionDefinition alloc] initWithOptionValue:option matcher:matcher];
- if (configBlock) {
+ if (configBlock)
+ {
configBlock(definition);
}
diff --git a/Pods/Typhoon/Source/Configuration/Resource/TyphoonBundleResource.h b/Pods/Typhoon/Source/Configuration/Resource/TyphoonBundleResource.h
index 0b57b4b..4a77ecd 100644
--- a/Pods/Typhoon/Source/Configuration/Resource/TyphoonBundleResource.h
+++ b/Pods/Typhoon/Source/Configuration/Resource/TyphoonBundleResource.h
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////////////////////////
//
// TYPHOON FRAMEWORK
-// Copyright 2013, Jasper Blues & Contributors
+// Copyright 2013, Typhoon Framework Contributors
// All Rights Reserved.
//
// NOTICE: The authors permit you to use, modify, and distribute this file
@@ -10,7 +10,6 @@
////////////////////////////////////////////////////////////////////////////////
-
#import
#import "TyphoonResource.h"
#import "TyphoonPathResource.h"
diff --git a/Pods/Typhoon/Source/Configuration/Resource/TyphoonBundleResource.m b/Pods/Typhoon/Source/Configuration/Resource/TyphoonBundleResource.m
index ddba652..5a6bcaf 100644
--- a/Pods/Typhoon/Source/Configuration/Resource/TyphoonBundleResource.m
+++ b/Pods/Typhoon/Source/Configuration/Resource/TyphoonBundleResource.m
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////////////////////////
//
// TYPHOON FRAMEWORK
-// Copyright 2013, Jasper Blues & Contributors
+// Copyright 2013, Typhoon Framework Contributors
// All Rights Reserved.
//
// NOTICE: The authors permit you to use, modify, and distribute this file
diff --git a/Pods/Typhoon/Source/Configuration/Resource/TyphoonPathResource.h b/Pods/Typhoon/Source/Configuration/Resource/TyphoonPathResource.h
index a8a464b..6f4fe75 100644
--- a/Pods/Typhoon/Source/Configuration/Resource/TyphoonPathResource.h
+++ b/Pods/Typhoon/Source/Configuration/Resource/TyphoonPathResource.h
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////////////////////////
//
// TYPHOON FRAMEWORK
-// Copyright 2013, Jasper Blues & Contributors
+// Copyright 2013, Typhoon Framework Contributors
// All Rights Reserved.
//
// NOTICE: The authors permit you to use, modify, and distribute this file
diff --git a/Pods/Typhoon/Source/Configuration/Resource/TyphoonPathResource.m b/Pods/Typhoon/Source/Configuration/Resource/TyphoonPathResource.m
index 5fcf992..3db2ee0 100644
--- a/Pods/Typhoon/Source/Configuration/Resource/TyphoonPathResource.m
+++ b/Pods/Typhoon/Source/Configuration/Resource/TyphoonPathResource.m
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////////////////////////
//
// TYPHOON FRAMEWORK
-// Copyright 2013, Jasper Blues & Contributors
+// Copyright 2013, Typhoon Framework Contributors
// All Rights Reserved.
//
// NOTICE: The authors permit you to use, modify, and distribute this file
@@ -15,6 +15,7 @@
@implementation TyphoonPathResource
{
+ NSString *_path;
NSData *_data;
}
@@ -27,6 +28,7 @@ - (instancetype)initWithContentsOfFile:(NSString *)filePath
{
self = [super init];
if (self) {
+ _path = filePath;
_data = [[NSData alloc] initWithContentsOfFile:filePath];
}
return self;
@@ -47,4 +49,10 @@ - (NSData *)data
return _data;
}
+- (NSURL *)url
+{
+ return [NSURL fileURLWithPath:_path];
+}
+
+
@end
\ No newline at end of file
diff --git a/Pods/Typhoon/Source/Configuration/Resource/TyphoonResource.h b/Pods/Typhoon/Source/Configuration/Resource/TyphoonResource.h
index ba0d79e..11df7fb 100644
--- a/Pods/Typhoon/Source/Configuration/Resource/TyphoonResource.h
+++ b/Pods/Typhoon/Source/Configuration/Resource/TyphoonResource.h
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////////////////////////
//
// TYPHOON FRAMEWORK
-// Copyright 2013, Jasper Blues & Contributors
+// Copyright 2013, Typhoon Framework Contributors
// All Rights Reserved.
//
// NOTICE: The authors permit you to use, modify, and distribute this file
@@ -20,12 +20,14 @@
/**
* Returns the resource as data.
*/
-@property(nonatomic, readonly) NSData* data;
+@property(nonatomic, readonly) NSData *data;
/**
* Returns the resource with the given name, as an NSString using NSUTF8String encoding.
*/
-@property(nonatomic, readonly, getter=asString) NSString* string;
+@property(nonatomic, readonly, getter=asString) NSString *string;
+
+@property(nonatomic, readonly) NSURL *url;
/**
* Returns the resource with the given name, using the specified encoding.
@@ -33,6 +35,4 @@
- (NSString *)asStringWithEncoding:(NSStringEncoding)encoding;
-
-
@end
diff --git a/Pods/Typhoon/Source/Configuration/Startup/TyphoonStartup.h b/Pods/Typhoon/Source/Configuration/Startup/TyphoonStartup.h
index 0a07fa0..ab3db2a 100644
--- a/Pods/Typhoon/Source/Configuration/Startup/TyphoonStartup.h
+++ b/Pods/Typhoon/Source/Configuration/Startup/TyphoonStartup.h
@@ -1,7 +1,14 @@
+////////////////////////////////////////////////////////////////////////////////
//
-// Created by Aleksey Garbarev on 05.06.14.
-// Copyright (c) 2014 typhoonframework.org. All rights reserved.
+// TYPHOON FRAMEWORK
+// Copyright 2013, Typhoon Framework Contributors
+// All Rights Reserved.
//
+// NOTICE: The authors permit you to use, modify, and distribute this file
+// in accordance with the terms of the license agreement accompanying it.
+//
+////////////////////////////////////////////////////////////////////////////////
+
#import
@@ -10,7 +17,6 @@
@interface TyphoonStartup : NSObject
-
+ (TyphoonComponentFactory *)initialFactory;
@end
\ No newline at end of file
diff --git a/Pods/Typhoon/Source/Configuration/Startup/TyphoonStartup.m b/Pods/Typhoon/Source/Configuration/Startup/TyphoonStartup.m
index e283ec6..5d4c638 100644
--- a/Pods/Typhoon/Source/Configuration/Startup/TyphoonStartup.m
+++ b/Pods/Typhoon/Source/Configuration/Startup/TyphoonStartup.m
@@ -1,7 +1,13 @@
+////////////////////////////////////////////////////////////////////////////////
//
-// Created by Aleksey Garbarev on 05.06.14.
-// Copyright (c) 2014 typhoonframework.org. All rights reserved.
+// TYPHOON FRAMEWORK
+// Copyright 2013, Typhoon Framework Contributors
+// All Rights Reserved.
//
+// NOTICE: The authors permit you to use, modify, and distribute this file
+// in accordance with the terms of the license agreement accompanying it.
+//
+////////////////////////////////////////////////////////////////////////////////
#import "TyphoonStartup.h"
#import "TyphoonComponentFactory.h"
@@ -9,6 +15,8 @@
#import "TyphoonBlockComponentFactory.h"
#import "TyphoonComponentFactory+InstanceBuilder.h"
#import "TyphoonIntrospectionUtils.h"
+
+
#import
#if TARGET_OS_IPHONE
@@ -18,6 +26,7 @@
#endif
#if TARGET_OS_IPHONE
+#import
#define ApplicationDidFinishLaunchingNotification UIApplicationDidFinishLaunchingNotification
#elif TARGET_OS_MAC
#define ApplicationDidFinishLaunchingNotification NSApplicationDidFinishLaunchingNotification
@@ -28,61 +37,22 @@ @implementation TyphoonStartup
+ (void)load
{
- __weak __typeof (self) weakSelf = self;
+ __weak __typeof(self) weakSelf = self;
[[NSNotificationCenter defaultCenter]
- addObserverForName:ApplicationDidFinishLaunchingNotification object:nil queue:[NSOperationQueue mainQueue] usingBlock:^(NSNotification *note) {
- [weakSelf releaseInitialFactory];
- }];
+ addObserverForName:ApplicationDidFinishLaunchingNotification object:nil queue:[NSOperationQueue mainQueue]
+ usingBlock:^(NSNotification* note) {
+ [weakSelf releaseInitialFactory];
+ }];
[self swizzleSetDelegateMethodOnApplicationClass];
}
-+ (TyphoonComponentFactory *)factoryFromPlist
-{
- TyphoonComponentFactory *result = nil;
-
- NSArray *assemblyNames = [self plistAssemblyNames];
- NSAssert(!assemblyNames || [assemblyNames isKindOfClass:[NSArray class]], @"Value for 'TyphoonInitialAssemblies' key must be array");
-
- if ([assemblyNames count] > 0) {
- NSMutableArray *assemblies = [[NSMutableArray alloc] initWithCapacity:[assemblyNames count]];
- for (NSString *assemblyName in assemblyNames) {
- Class cls = TyphoonClassFromString(assemblyName);
- if (!cls) {
- [NSException raise:NSInvalidArgumentException format:@"Can't resolve assembly for name %@", assemblyName];
- }
- [assemblies addObject:[cls assembly]];
- }
- result = [TyphoonBlockComponentFactory factoryWithAssemblies:assemblies];
- }
-
- return result;
-}
-
-+ (NSArray *)plistAssemblyNames
-{
- NSArray *names = nil;
-
- NSDictionary *bundleInfoDictionary = [[NSBundle mainBundle] infoDictionary];
-#if TARGET_OS_IPHONE
- if ([[UIDevice currentDevice] userInterfaceIdiom] == UIUserInterfaceIdiomPad) {
- names = bundleInfoDictionary[@"TyphoonInitialAssemblies(iPad)"];
- } else {
- names = bundleInfoDictionary[@"TyphoonInitialAssemblies(iPhone)"];
- }
-#endif
- if (!names) {
- names = bundleInfoDictionary[@"TyphoonInitialAssemblies"];
- }
-
- return names;
-}
-
-+ (TyphoonComponentFactory *)factoryFromAppDelegate:(id)appDelegate
++ (TyphoonComponentFactory*)factoryFromAppDelegate:(id)appDelegate
{
- TyphoonComponentFactory *result = nil;
+ TyphoonComponentFactory* result = nil;
- if ([appDelegate respondsToSelector:@selector(initialFactory)]) {
+ if ([appDelegate respondsToSelector:@selector(initialFactory)])
+ {
result = [appDelegate initialFactory];
}
@@ -91,14 +61,14 @@ + (TyphoonComponentFactory *)factoryFromAppDelegate:(id)appDelegate
#pragma mark -
-static TyphoonComponentFactory *initialFactory;
+static TyphoonComponentFactory* initialFactory;
+ (void)loadInitialFactory
{
- initialFactory = [self factoryFromPlist];
+ initialFactory = [TyphoonBlockComponentFactory factoryFromPlistInBundle:[NSBundle mainBundle]];
}
-+ (TyphoonComponentFactory *)initialFactory
++ (TyphoonComponentFactory*)initialFactory
{
return initialFactory;
}
@@ -107,26 +77,32 @@ + (void)swizzleSetDelegateMethodOnApplicationClass
{
SEL sel = @selector(setDelegate:);
Method method = class_getInstanceMethod(ApplicationClass, sel);
-
- void(*originalImp)(id,SEL,id) = (void(*)(id,SEL,id))method_getImplementation(method);
-
+
+ void(* originalImp)(id, SEL, id) = (void (*)(id, SEL, id)) method_getImplementation(method);
+
IMP adjustedImp = imp_implementationWithBlock(^(id instance, id delegate) {
[self loadInitialFactory];
id factoryFromDelegate = [self factoryFromAppDelegate:delegate];
- if (factoryFromDelegate && initialFactory) {
- [NSException raise:NSInternalInconsistencyException format:@"The method 'initialFactory' is implemented on %@, also Info.plist"
- " has 'TyphoonInitialAssemblies' key. Typhoon can't decide which factory to use.", [delegate class]];
+ if (factoryFromDelegate && initialFactory)
+ {
+ [NSException raise:NSInternalInconsistencyException
+ format:@"The method 'initialFactory' is implemented on %@, also Info.plist"
+ " has 'TyphoonInitialAssemblies' key. Typhoon can't decide which factory to use.",
+ [delegate class]];
}
- if (factoryFromDelegate) {
+ if (factoryFromDelegate)
+ {
initialFactory = factoryFromDelegate;
}
- if (initialFactory) {
+ if (initialFactory)
+ {
[self injectInitialFactoryIntoDelegate:delegate];
+ [TyphoonComponentFactory setFactoryForResolvingFromXibs:initialFactory];
}
originalImp(instance, sel, delegate);
});
-
+
method_setImplementation(method, adjustedImp);
}
@@ -140,7 +116,7 @@ + (void)releaseInitialFactory
+ (void)injectInitialFactoryIntoDelegate:(id)appDelegate
{
[initialFactory load];
- TyphoonDefinition *definition = [[initialFactory allDefinitionsForType:[appDelegate class]] lastObject];
+ TyphoonDefinition* definition = [[initialFactory allDefinitionsForType:[appDelegate class]] lastObject];
[initialFactory doInjectionEventsOn:appDelegate withDefinition:definition args:nil];
[initialFactory registerInstance:appDelegate asSingletonForDefinition:definition];
}
diff --git a/Pods/Typhoon/Source/Configuration/TyphoonAbstractDetachableComponentFactoryPostProcessor.h b/Pods/Typhoon/Source/Configuration/TyphoonAbstractDetachableComponentFactoryPostProcessor.h
index d3ce53f..91d7184 100644
--- a/Pods/Typhoon/Source/Configuration/TyphoonAbstractDetachableComponentFactoryPostProcessor.h
+++ b/Pods/Typhoon/Source/Configuration/TyphoonAbstractDetachableComponentFactoryPostProcessor.h
@@ -1,20 +1,20 @@
////////////////////////////////////////////////////////////////////////////////
//
-// Copyright 2014 ibipit
+// TYPHOON FRAMEWORK
+// Copyright 2013, Typhoon Framework Contributors
// All Rights Reserved.
//
-// NOTICE: This software is the proprietary information of ibipit
-// Use is subject to license terms.
+// NOTICE: The authors permit you to use, modify, and distribute this file
+// in accordance with the terms of the license agreement accompanying it.
//
////////////////////////////////////////////////////////////////////////////////
-
#import
-#import "TyphoonComponentFactoryPostProcessor.h"
+#import "TyphoonDefinitionPostProcessor.h"
-@interface TyphoonAbstractDetachableComponentFactoryPostProcessor : NSObject
+@interface TyphoonAbstractDetachableComponentFactoryPostProcessor : NSObject
{
TyphoonComponentFactory* _factory;
NSMutableArray *_rollbackDefinitions;
diff --git a/Pods/Typhoon/Source/Configuration/TyphoonAbstractDetachableComponentFactoryPostProcessor.m b/Pods/Typhoon/Source/Configuration/TyphoonAbstractDetachableComponentFactoryPostProcessor.m
index 3e25a7e..a2ccf7e 100644
--- a/Pods/Typhoon/Source/Configuration/TyphoonAbstractDetachableComponentFactoryPostProcessor.m
+++ b/Pods/Typhoon/Source/Configuration/TyphoonAbstractDetachableComponentFactoryPostProcessor.m
@@ -1,15 +1,14 @@
////////////////////////////////////////////////////////////////////////////////
//
-// Copyright 2014 ibipit
+// TYPHOON FRAMEWORK
+// Copyright 2013, Typhoon Framework Contributors
// All Rights Reserved.
//
-// NOTICE: This software is the proprietary information of ibipit
-// Use is subject to license terms.
+// NOTICE: The authors permit you to use, modify, and distribute this file
+// in accordance with the terms of the license agreement accompanying it.
//
////////////////////////////////////////////////////////////////////////////////
-
-
#import "TyphoonAbstractDetachableComponentFactoryPostProcessor.h"
#import "TyphoonComponentFactory.h"
#import "TyphoonDefinition.h"
@@ -26,7 +25,7 @@ - (void)setRegistry:(NSMutableArray *)registry
@implementation TyphoonAbstractDetachableComponentFactoryPostProcessor
-- (void)postProcessComponentFactory:(TyphoonComponentFactory *)factory
+- (void)postProcessDefinitionsInFactory:(TyphoonComponentFactory *)factory
{
_factory = factory;
[self cacheDefinitionsIn:_factory];
diff --git a/Pods/Typhoon/Source/Configuration/TyphoonComponentFactoryPostProcessor.h b/Pods/Typhoon/Source/Configuration/TyphoonComponentFactoryPostProcessor.h
deleted file mode 100644
index f688101..0000000
--- a/Pods/Typhoon/Source/Configuration/TyphoonComponentFactoryPostProcessor.h
+++ /dev/null
@@ -1,38 +0,0 @@
-////////////////////////////////////////////////////////////////////////////////
-//
-// TYPHOON FRAMEWORK
-// Copyright 2013, Jasper Blues & Contributors
-// All Rights Reserved.
-//
-// NOTICE: The authors permit you to use, modify, and distribute this file
-// in accordance with the terms of the license agreement accompanying it.
-//
-////////////////////////////////////////////////////////////////////////////////
-
-
-#import
-
-@class TyphoonComponentFactory;
-
-/**
-* @ingroup Factory
-*
- Allows for custom modification of a component factory's definitions.
-
- Component factories can auto-detect TyphoonComponentFactoryPostProcessor components in their definitions and apply them before any other
- components get created.
-
- @see TyphoonConfigPostProcessor for an example implementation.
- @see TyphoonComponentPostProcessor which modifies instances after they've been built, rather than the definitions
- */
-@protocol TyphoonComponentFactoryPostProcessor
-
-/**
- Post process a component factory after its initialization.
-
- May be called more than once, if a PostProcessor is added to a ComponentFactory after a component has been retrieved from that factory.
- @param factory The component factory
- */
-- (void)postProcessComponentFactory:(TyphoonComponentFactory *)factory;
-
-@end
diff --git a/Pods/Typhoon/Source/Configuration/TyphoonComponentPostProcessor.h b/Pods/Typhoon/Source/Configuration/TyphoonComponentPostProcessor.h
deleted file mode 100644
index ac18645..0000000
--- a/Pods/Typhoon/Source/Configuration/TyphoonComponentPostProcessor.h
+++ /dev/null
@@ -1,29 +0,0 @@
-////////////////////////////////////////////////////////////////////////////////
-//
-// TYPHOON FRAMEWORK
-// Copyright 2014, Jasper Blues & Contributors
-// All Rights Reserved.
-//
-// NOTICE: The authors permit you to use, modify, and distribute this file
-// in accordance with the terms of the license agreement accompanying it.
-//
-////////////////////////////////////////////////////////////////////////////////
-
-#import
-
-/**
-* @ingroup Factory
-*
- Allows for custom modification of a component after its instantiation.
-
- Component factories can auto-detect TyphoonComponentPostProcessor components in their definitions and will apply them to components created
- by the factory.
- */
-@protocol TyphoonComponentPostProcessor
-
-/**
- Post process a component after its initialization and return the processed component.
-*/
-- (id)postProcessComponent:(id)component;
-
-@end
\ No newline at end of file
diff --git a/Pods/Typhoon/Source/Configuration/TyphoonOrdered.h b/Pods/Typhoon/Source/Configuration/TyphoonOrdered.h
index fafc1fa..905b56b 100644
--- a/Pods/Typhoon/Source/Configuration/TyphoonOrdered.h
+++ b/Pods/Typhoon/Source/Configuration/TyphoonOrdered.h
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////////////////////////
//
// TYPHOON FRAMEWORK
-// Copyright 2014, Jasper Blues & Contributors
+// Copyright 2014, Typhoon Framework Contributors
// All Rights Reserved.
//
// NOTICE: The authors permit you to use, modify, and distribute this file
diff --git a/Pods/Typhoon/Source/Definition/AutoInjection/TyphoonAutoInjection.h b/Pods/Typhoon/Source/Definition/AutoInjection/TyphoonAutoInjection.h
index c9c961d..cdfcfd5 100644
--- a/Pods/Typhoon/Source/Definition/AutoInjection/TyphoonAutoInjection.h
+++ b/Pods/Typhoon/Source/Definition/AutoInjection/TyphoonAutoInjection.h
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////////////////////////
//
// TYPHOON FRAMEWORK
-// Copyright 2013, Jasper Blues & Contributors
+// Copyright 2013, Typhoon Framework Contributors
// All Rights Reserved.
//
// NOTICE: The authors permit you to use, modify, and distribute this file
diff --git a/Pods/Typhoon/Source/Definition/AutoInjection/TyphoonFactoryAutoInjectionPostProcessor.h b/Pods/Typhoon/Source/Definition/AutoInjection/TyphoonFactoryAutoInjectionPostProcessor.h
index 76a2eff..fa55bcf 100644
--- a/Pods/Typhoon/Source/Definition/AutoInjection/TyphoonFactoryAutoInjectionPostProcessor.h
+++ b/Pods/Typhoon/Source/Definition/AutoInjection/TyphoonFactoryAutoInjectionPostProcessor.h
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////////////////////////
//
// TYPHOON FRAMEWORK
-// Copyright 2013, Jasper Blues & Contributors
+// Copyright 2013, Typhoon Framework Contributors
// All Rights Reserved.
//
// NOTICE: The authors permit you to use, modify, and distribute this file
@@ -10,12 +10,12 @@
////////////////////////////////////////////////////////////////////////////////
#import
-#import "TyphoonComponentFactoryPostProcessor.h"
+#import "TyphoonDefinitionPostProcessor.h"
@class TyphoonDefinition;
-@interface TyphoonFactoryAutoInjectionPostProcessor : NSObject
+@interface TyphoonFactoryAutoInjectionPostProcessor : NSObject
- (void)postProcessDefinition:(TyphoonDefinition *)definition;
diff --git a/Pods/Typhoon/Source/Definition/AutoInjection/TyphoonFactoryAutoInjectionPostProcessor.m b/Pods/Typhoon/Source/Definition/AutoInjection/TyphoonFactoryAutoInjectionPostProcessor.m
index 980122f..4091c8d 100644
--- a/Pods/Typhoon/Source/Definition/AutoInjection/TyphoonFactoryAutoInjectionPostProcessor.m
+++ b/Pods/Typhoon/Source/Definition/AutoInjection/TyphoonFactoryAutoInjectionPostProcessor.m
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////////////////////////
//
// TYPHOON FRAMEWORK
-// Copyright 2013, Jasper Blues & Contributors
+// Copyright 2013, Typhoon Framework Contributors
// All Rights Reserved.
//
// NOTICE: The authors permit you to use, modify, and distribute this file
@@ -25,7 +25,7 @@
@implementation TyphoonFactoryAutoInjectionPostProcessor
-- (void)postProcessComponentFactory:(TyphoonComponentFactory *)factory
+- (void)postProcessDefinitionsInFactory:(TyphoonComponentFactory *)factory
{
for (TyphoonDefinition *definition in [factory registry]) {
[self postProcessDefinition:definition];
diff --git a/Pods/Typhoon/Source/Definition/AutoInjection/TyphoonInjectedObject.h b/Pods/Typhoon/Source/Definition/AutoInjection/TyphoonInjectedObject.h
index 5d17282..902e640 100644
--- a/Pods/Typhoon/Source/Definition/AutoInjection/TyphoonInjectedObject.h
+++ b/Pods/Typhoon/Source/Definition/AutoInjection/TyphoonInjectedObject.h
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////////////////////////
//
// TYPHOON FRAMEWORK
-// Copyright 2013, Jasper Blues & Contributors
+// Copyright 2013, Typhoon Framework Contributors
// All Rights Reserved.
//
// NOTICE: The authors permit you to use, modify, and distribute this file
diff --git a/Pods/Typhoon/Source/Definition/AutoInjection/TyphoonInjectedObject.m b/Pods/Typhoon/Source/Definition/AutoInjection/TyphoonInjectedObject.m
index 66822d5..bc110ef 100644
--- a/Pods/Typhoon/Source/Definition/AutoInjection/TyphoonInjectedObject.m
+++ b/Pods/Typhoon/Source/Definition/AutoInjection/TyphoonInjectedObject.m
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////////////////////////
//
// TYPHOON FRAMEWORK
-// Copyright 2013, Jasper Blues & Contributors
+// Copyright 2013, Typhoon Framework Contributors
// All Rights Reserved.
//
// NOTICE: The authors permit you to use, modify, and distribute this file
diff --git a/Pods/Typhoon/Source/Definition/Injections/TyphoonAbstractInjection.h b/Pods/Typhoon/Source/Definition/Injections/TyphoonAbstractInjection.h
index 7922a28..04cdddd 100644
--- a/Pods/Typhoon/Source/Definition/Injections/TyphoonAbstractInjection.h
+++ b/Pods/Typhoon/Source/Definition/Injections/TyphoonAbstractInjection.h
@@ -1,10 +1,14 @@
+////////////////////////////////////////////////////////////////////////////////
//
-// TyphoonAbstractInjection.h
-// A-Typhoon
+// TYPHOON FRAMEWORK
+// Copyright 2013, Typhoon Framework Contributors
+// All Rights Reserved.
//
-// Created by Aleksey Garbarev on 11.03.14.
-// Copyright (c) 2014 Jasper Blues. All rights reserved.
+// NOTICE: The authors permit you to use, modify, and distribute this file
+// in accordance with the terms of the license agreement accompanying it.
//
+////////////////////////////////////////////////////////////////////////////////
+
#import "TyphoonPropertyInjection.h"
#import "TyphoonParameterInjection.h"
diff --git a/Pods/Typhoon/Source/Definition/Injections/TyphoonAbstractInjection.m b/Pods/Typhoon/Source/Definition/Injections/TyphoonAbstractInjection.m
index 3c1895d..25be0a5 100644
--- a/Pods/Typhoon/Source/Definition/Injections/TyphoonAbstractInjection.m
+++ b/Pods/Typhoon/Source/Definition/Injections/TyphoonAbstractInjection.m
@@ -1,10 +1,14 @@
+////////////////////////////////////////////////////////////////////////////////
//
-// TyphoonAbstractInjection.m
-// A-Typhoon
+// TYPHOON FRAMEWORK
+// Copyright 2013, Typhoon Framework Contributors
+// All Rights Reserved.
//
-// Created by Aleksey Garbarev on 11.03.14.
-// Copyright (c) 2014 Jasper Blues. All rights reserved.
+// NOTICE: The authors permit you to use, modify, and distribute this file
+// in accordance with the terms of the license agreement accompanying it.
//
+////////////////////////////////////////////////////////////////////////////////
+
#import "TyphoonAbstractInjection.h"
#import "TyphoonMethod+InstanceBuilder.h"
diff --git a/Pods/Typhoon/Source/Definition/Injections/TyphoonInjection.h b/Pods/Typhoon/Source/Definition/Injections/TyphoonInjection.h
index 8f579de..40985a1 100644
--- a/Pods/Typhoon/Source/Definition/Injections/TyphoonInjection.h
+++ b/Pods/Typhoon/Source/Definition/Injections/TyphoonInjection.h
@@ -1,10 +1,14 @@
+////////////////////////////////////////////////////////////////////////////////
//
-// TyphoonInjection.h
-// A-Typhoon
+// TYPHOON FRAMEWORK
+// Copyright 2013, Typhoon Framework Contributors
+// All Rights Reserved.
//
-// Created by Aleksey Garbarev on 25.03.14.
-// Copyright (c) 2014 Jasper Blues. All rights reserved.
+// NOTICE: The authors permit you to use, modify, and distribute this file
+// in accordance with the terms of the license agreement accompanying it.
//
+////////////////////////////////////////////////////////////////////////////////
+
#import "TyphoonInjectionContext.h"
diff --git a/Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByCollection.h b/Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByCollection.h
index 0ae119c..f4dd95e 100644
--- a/Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByCollection.h
+++ b/Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByCollection.h
@@ -1,10 +1,13 @@
+////////////////////////////////////////////////////////////////////////////////
//
-// TyphoonInjectionByCollection.h
-// A-Typhoon
+// TYPHOON FRAMEWORK
+// Copyright 2013, Typhoon Framework Contributors
+// All Rights Reserved.
//
-// Created by Aleksey Garbarev on 12.03.14.
-// Copyright (c) 2014 Jasper Blues. All rights reserved.
+// NOTICE: The authors permit you to use, modify, and distribute this file
+// in accordance with the terms of the license agreement accompanying it.
//
+////////////////////////////////////////////////////////////////////////////////
#import "TyphoonAbstractInjection.h"
diff --git a/Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByCollection.m b/Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByCollection.m
index a65e1c0..cc58f84 100644
--- a/Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByCollection.m
+++ b/Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByCollection.m
@@ -1,10 +1,14 @@
+////////////////////////////////////////////////////////////////////////////////
//
-// TyphoonInjectionByCollection.m
-// A-Typhoon
+// TYPHOON FRAMEWORK
+// Copyright 2013, Typhoon Framework Contributors
+// All Rights Reserved.
//
-// Created by Aleksey Garbarev on 12.03.14.
-// Copyright (c) 2014 Jasper Blues. All rights reserved.
+// NOTICE: The authors permit you to use, modify, and distribute this file
+// in accordance with the terms of the license agreement accompanying it.
//
+////////////////////////////////////////////////////////////////////////////////
+
#import "TyphoonInjectionByCollection.h"
#import "TyphoonIntrospectionUtils.h"
diff --git a/Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByComponentFactory.h b/Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByComponentFactory.h
index 0b04bd9..b869804 100644
--- a/Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByComponentFactory.h
+++ b/Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByComponentFactory.h
@@ -1,10 +1,13 @@
+////////////////////////////////////////////////////////////////////////////////
//
-// TyphoonInjectionByComponentFactory.h
-// A-Typhoon
+// TYPHOON FRAMEWORK
+// Copyright 2013, Typhoon Framework Contributors
+// All Rights Reserved.
//
-// Created by Aleksey Garbarev on 12.03.14.
-// Copyright (c) 2014 Jasper Blues. All rights reserved.
+// NOTICE: The authors permit you to use, modify, and distribute this file
+// in accordance with the terms of the license agreement accompanying it.
//
+////////////////////////////////////////////////////////////////////////////////
#import "TyphoonAbstractInjection.h"
diff --git a/Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByComponentFactory.m b/Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByComponentFactory.m
index 375b459..cafa42b 100644
--- a/Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByComponentFactory.m
+++ b/Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByComponentFactory.m
@@ -1,10 +1,14 @@
+////////////////////////////////////////////////////////////////////////////////
//
-// TyphoonInjectionByComponentFactory.m
-// A-Typhoon
+// TYPHOON FRAMEWORK
+// Copyright 2013, Typhoon Framework Contributors
+// All Rights Reserved.
//
-// Created by Aleksey Garbarev on 12.03.14.
-// Copyright (c) 2014 Jasper Blues. All rights reserved.
+// NOTICE: The authors permit you to use, modify, and distribute this file
+// in accordance with the terms of the license agreement accompanying it.
//
+////////////////////////////////////////////////////////////////////////////////
+
#import "TyphoonInjectionByComponentFactory.h"
#import "NSInvocation+TCFUnwrapValues.h"
diff --git a/Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByConfig.h b/Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByConfig.h
index fbbd9d6..3145808 100644
--- a/Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByConfig.h
+++ b/Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByConfig.h
@@ -1,7 +1,13 @@
+////////////////////////////////////////////////////////////////////////////////
//
-// Created by Aleksey Garbarev on 27.05.14.
-// Copyright (c) 2014 Jasper Blues. All rights reserved.
+// TYPHOON FRAMEWORK
+// Copyright 2013, Typhoon Framework Contributors
+// All Rights Reserved.
//
+// NOTICE: The authors permit you to use, modify, and distribute this file
+// in accordance with the terms of the license agreement accompanying it.
+//
+////////////////////////////////////////////////////////////////////////////////
#import
#import "TyphoonAbstractInjection.h"
diff --git a/Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByConfig.m b/Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByConfig.m
index 8fdee2a..4c8b83c 100644
--- a/Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByConfig.m
+++ b/Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByConfig.m
@@ -1,7 +1,13 @@
+////////////////////////////////////////////////////////////////////////////////
//
-// Created by Aleksey Garbarev on 27.05.14.
-// Copyright (c) 2014 Jasper Blues. All rights reserved.
+// TYPHOON FRAMEWORK
+// Copyright 2013, Typhoon Framework Contributors
+// All Rights Reserved.
//
+// NOTICE: The authors permit you to use, modify, and distribute this file
+// in accordance with the terms of the license agreement accompanying it.
+//
+////////////////////////////////////////////////////////////////////////////////
#import "TyphoonInjectionByConfig.h"
#import "TyphoonInjection.h"
diff --git a/Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByCurrentRuntimeArguments.h b/Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByCurrentRuntimeArguments.h
index 5d496bd..ee2d02d 100644
--- a/Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByCurrentRuntimeArguments.h
+++ b/Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByCurrentRuntimeArguments.h
@@ -1,7 +1,13 @@
+////////////////////////////////////////////////////////////////////////////////
//
-// Created by Aleksey Garbarev on 31.07.14.
-// Copyright (c) 2014 typhoonframework.org. All rights reserved.
+// TYPHOON FRAMEWORK
+// Copyright 2013, Typhoon Framework Contributors
+// All Rights Reserved.
//
+// NOTICE: The authors permit you to use, modify, and distribute this file
+// in accordance with the terms of the license agreement accompanying it.
+//
+////////////////////////////////////////////////////////////////////////////////
#import
#import "TyphoonAbstractInjection.h"
diff --git a/Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByCurrentRuntimeArguments.m b/Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByCurrentRuntimeArguments.m
index 129b710..f661086 100644
--- a/Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByCurrentRuntimeArguments.m
+++ b/Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByCurrentRuntimeArguments.m
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////////////////////////
//
// TYPHOON FRAMEWORK
-// Copyright 2013, Jasper Blues & Contributors
+// Copyright 2013, Typhoon Framework Contributors
// All Rights Reserved.
//
// NOTICE: The authors permit you to use, modify, and distribute this file
diff --git a/Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByDictionary.h b/Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByDictionary.h
index df5fda3..3950209 100644
--- a/Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByDictionary.h
+++ b/Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByDictionary.h
@@ -1,10 +1,14 @@
+////////////////////////////////////////////////////////////////////////////////
//
-// TyphoonInjectionDictionary.h
-// A-Typhoon
+// TYPHOON FRAMEWORK
+// Copyright 2013, Typhoon Framework Contributors
+// All Rights Reserved.
//
-// Created by Aleksey Garbarev on 14.03.14.
-// Copyright (c) 2014 Jasper Blues. All rights reserved.
+// NOTICE: The authors permit you to use, modify, and distribute this file
+// in accordance with the terms of the license agreement accompanying it.
//
+////////////////////////////////////////////////////////////////////////////////
+
#import "TyphoonAbstractInjection.h"
diff --git a/Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByDictionary.m b/Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByDictionary.m
index 3e4bf25..41f602b 100644
--- a/Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByDictionary.m
+++ b/Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByDictionary.m
@@ -1,10 +1,14 @@
+////////////////////////////////////////////////////////////////////////////////
//
-// TyphoonInjectionDictionary.m
-// A-Typhoon
+// TYPHOON FRAMEWORK
+// Copyright 2013, Typhoon Framework Contributors
+// All Rights Reserved.
//
-// Created by Aleksey Garbarev on 14.03.14.
-// Copyright (c) 2014 Jasper Blues. All rights reserved.
+// NOTICE: The authors permit you to use, modify, and distribute this file
+// in accordance with the terms of the license agreement accompanying it.
//
+////////////////////////////////////////////////////////////////////////////////
+
#import "TyphoonInjectionByDictionary.h"
#import "TyphoonInjections.h"
diff --git a/Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByFactoryReference.h b/Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByFactoryReference.h
index 2b6a587..aff4c73 100644
--- a/Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByFactoryReference.h
+++ b/Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByFactoryReference.h
@@ -1,10 +1,13 @@
+////////////////////////////////////////////////////////////////////////////////
//
-// TyphoonInjectionByFactoryReference.h
-// A-Typhoon
+// TYPHOON FRAMEWORK
+// Copyright 2013, Typhoon Framework Contributors
+// All Rights Reserved.
//
-// Created by Aleksey Garbarev on 12.03.14.
-// Copyright (c) 2014 Jasper Blues. All rights reserved.
+// NOTICE: The authors permit you to use, modify, and distribute this file
+// in accordance with the terms of the license agreement accompanying it.
//
+////////////////////////////////////////////////////////////////////////////////
#import "TyphoonAbstractInjection.h"
#import "TyphoonInjectionByReference.h"
diff --git a/Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByFactoryReference.m b/Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByFactoryReference.m
index 9dbda07..e9eb998 100644
--- a/Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByFactoryReference.m
+++ b/Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByFactoryReference.m
@@ -1,10 +1,14 @@
+////////////////////////////////////////////////////////////////////////////////
//
-// TyphoonInjectionByFactoryReference.m
-// A-Typhoon
+// TYPHOON FRAMEWORK
+// Copyright 2013, Typhoon Framework Contributors
+// All Rights Reserved.
//
-// Created by Aleksey Garbarev on 12.03.14.
-// Copyright (c) 2014 Jasper Blues. All rights reserved.
+// NOTICE: The authors permit you to use, modify, and distribute this file
+// in accordance with the terms of the license agreement accompanying it.
//
+////////////////////////////////////////////////////////////////////////////////
+
#import "TyphoonInjectionByFactoryReference.h"
#import "TyphoonComponentFactory+InstanceBuilder.h"
diff --git a/Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByObjectFromString.h b/Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByObjectFromString.h
index 83c2547..a72c20c 100644
--- a/Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByObjectFromString.h
+++ b/Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByObjectFromString.h
@@ -1,10 +1,14 @@
+////////////////////////////////////////////////////////////////////////////////
//
-// TyphoonInjectionByObjectFromString.h
-// A-Typhoon
+// TYPHOON FRAMEWORK
+// Copyright 2013, Typhoon Framework Contributors
+// All Rights Reserved.
//
-// Created by Aleksey Garbarev on 12.03.14.
-// Copyright (c) 2014 Jasper Blues. All rights reserved.
+// NOTICE: The authors permit you to use, modify, and distribute this file
+// in accordance with the terms of the license agreement accompanying it.
//
+////////////////////////////////////////////////////////////////////////////////
+
#import "TyphoonAbstractInjection.h"
diff --git a/Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByObjectFromString.m b/Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByObjectFromString.m
index 04ef728..0f920a3 100644
--- a/Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByObjectFromString.m
+++ b/Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByObjectFromString.m
@@ -1,10 +1,14 @@
+////////////////////////////////////////////////////////////////////////////////
//
-// TyphoonInjectionByObjectFromString.m
-// A-Typhoon
+// TYPHOON FRAMEWORK
+// Copyright 2013, Typhoon Framework Contributors
+// All Rights Reserved.
//
-// Created by Aleksey Garbarev on 12.03.14.
-// Copyright (c) 2014 Jasper Blues. All rights reserved.
+// NOTICE: The authors permit you to use, modify, and distribute this file
+// in accordance with the terms of the license agreement accompanying it.
//
+////////////////////////////////////////////////////////////////////////////////
+
#import "TyphoonInjectionByObjectFromString.h"
#import "TyphoonComponentFactory.h"
diff --git a/Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByObjectInstance.h b/Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByObjectInstance.h
index fa77267..8920f69 100644
--- a/Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByObjectInstance.h
+++ b/Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByObjectInstance.h
@@ -1,10 +1,14 @@
+////////////////////////////////////////////////////////////////////////////////
//
-// TyphoonInjectionByObjectInstance.h
-// A-Typhoon
+// TYPHOON FRAMEWORK
+// Copyright 2013, Typhoon Framework Contributors
+// All Rights Reserved.
//
-// Created by Aleksey Garbarev on 12.03.14.
-// Copyright (c) 2014 Jasper Blues. All rights reserved.
+// NOTICE: The authors permit you to use, modify, and distribute this file
+// in accordance with the terms of the license agreement accompanying it.
//
+////////////////////////////////////////////////////////////////////////////////
+
#import "TyphoonAbstractInjection.h"
diff --git a/Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByObjectInstance.m b/Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByObjectInstance.m
index 1d17fa3..0afb482 100644
--- a/Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByObjectInstance.m
+++ b/Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByObjectInstance.m
@@ -1,10 +1,14 @@
+////////////////////////////////////////////////////////////////////////////////
//
-// TyphoonInjectionByObjectInstance.m
-// A-Typhoon
+// TYPHOON FRAMEWORK
+// Copyright 2013, Typhoon Framework Contributors
+// All Rights Reserved.
//
-// Created by Aleksey Garbarev on 12.03.14.
-// Copyright (c) 2014 Jasper Blues. All rights reserved.
+// NOTICE: The authors permit you to use, modify, and distribute this file
+// in accordance with the terms of the license agreement accompanying it.
//
+////////////////////////////////////////////////////////////////////////////////
+
#import "TyphoonInjectionByObjectInstance.h"
#import "NSInvocation+TCFUnwrapValues.h"
diff --git a/Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByReference.h b/Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByReference.h
index a661d56..26dfd62 100644
--- a/Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByReference.h
+++ b/Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByReference.h
@@ -1,10 +1,14 @@
+////////////////////////////////////////////////////////////////////////////////
//
-// TyphoonInjectionByReference.h
-// A-Typhoon
+// TYPHOON FRAMEWORK
+// Copyright 2013, Typhoon Framework Contributors
+// All Rights Reserved.
//
-// Created by Aleksey Garbarev on 11.03.14.
-// Copyright (c) 2014 Jasper Blues. All rights reserved.
+// NOTICE: The authors permit you to use, modify, and distribute this file
+// in accordance with the terms of the license agreement accompanying it.
//
+////////////////////////////////////////////////////////////////////////////////
+
#import "TyphoonAbstractInjection.h"
diff --git a/Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByReference.m b/Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByReference.m
index 5148062..49d42c0 100644
--- a/Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByReference.m
+++ b/Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByReference.m
@@ -1,10 +1,14 @@
+////////////////////////////////////////////////////////////////////////////////
//
-// TyphoonInjectionByReference.m
-// A-Typhoon
+// TYPHOON FRAMEWORK
+// Copyright 2013, Typhoon Framework Contributors
+// All Rights Reserved.
//
-// Created by Aleksey Garbarev on 11.03.14.
-// Copyright (c) 2014 Jasper Blues. All rights reserved.
+// NOTICE: The authors permit you to use, modify, and distribute this file
+// in accordance with the terms of the license agreement accompanying it.
//
+////////////////////////////////////////////////////////////////////////////////
+
#import "TyphoonInjectionByReference.h"
#import "TyphoonComponentFactory+InstanceBuilder.h"
diff --git a/Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByRuntimeArgument.h b/Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByRuntimeArgument.h
index e165acf..b58c2c4 100644
--- a/Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByRuntimeArgument.h
+++ b/Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByRuntimeArgument.h
@@ -1,10 +1,13 @@
+////////////////////////////////////////////////////////////////////////////////
//
-// TyphoonInjectionByRuntimeArgument.h
-// A-Typhoon
+// TYPHOON FRAMEWORK
+// Copyright 2013, Typhoon Framework Contributors
+// All Rights Reserved.
//
-// Created by Aleksey Garbarev on 12.03.14.
-// Copyright (c) 2014 Jasper Blues. All rights reserved.
+// NOTICE: The authors permit you to use, modify, and distribute this file
+// in accordance with the terms of the license agreement accompanying it.
//
+////////////////////////////////////////////////////////////////////////////////
#import "TyphoonAbstractInjection.h"
diff --git a/Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByRuntimeArgument.m b/Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByRuntimeArgument.m
index 5f25314..d2fc003 100644
--- a/Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByRuntimeArgument.m
+++ b/Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByRuntimeArgument.m
@@ -1,10 +1,13 @@
+////////////////////////////////////////////////////////////////////////////////
//
-// TyphoonInjectionByRuntimeArgument.m
-// A-Typhoon
+// TYPHOON FRAMEWORK
+// Copyright 2013, Typhoon Framework Contributors
+// All Rights Reserved.
//
-// Created by Aleksey Garbarev on 12.03.14.
-// Copyright (c) 2014 Jasper Blues. All rights reserved.
+// NOTICE: The authors permit you to use, modify, and distribute this file
+// in accordance with the terms of the license agreement accompanying it.
//
+////////////////////////////////////////////////////////////////////////////////
#import "TyphoonInjectionByRuntimeArgument.h"
#import "TyphoonRuntimeArguments.h"
diff --git a/Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByType.h b/Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByType.h
index b0f8aa6..ac86ec9 100644
--- a/Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByType.h
+++ b/Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByType.h
@@ -1,10 +1,14 @@
+////////////////////////////////////////////////////////////////////////////////
//
-// TyphoonInjectionByType.h
-// A-Typhoon
+// TYPHOON FRAMEWORK
+// Copyright 2013, Typhoon Framework Contributors
+// All Rights Reserved.
//
-// Created by Aleksey Garbarev on 12.03.14.
-// Copyright (c) 2014 Jasper Blues. All rights reserved.
+// NOTICE: The authors permit you to use, modify, and distribute this file
+// in accordance with the terms of the license agreement accompanying it.
//
+////////////////////////////////////////////////////////////////////////////////
+
#import "TyphoonAbstractInjection.h"
diff --git a/Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByType.m b/Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByType.m
index 5914cb4..34fb0cf 100644
--- a/Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByType.m
+++ b/Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByType.m
@@ -1,10 +1,14 @@
+////////////////////////////////////////////////////////////////////////////////
//
-// TyphoonInjectionByType.m
-// A-Typhoon
+// TYPHOON FRAMEWORK
+// Copyright 2013, Typhoon Framework Contributors
+// All Rights Reserved.
//
-// Created by Aleksey Garbarev on 12.03.14.
-// Copyright (c) 2014 Jasper Blues. All rights reserved.
+// NOTICE: The authors permit you to use, modify, and distribute this file
+// in accordance with the terms of the license agreement accompanying it.
//
+////////////////////////////////////////////////////////////////////////////////
+
#import "TyphoonInjectionByType.h"
#import "TyphoonComponentFactory.h"
@@ -40,7 +44,9 @@ - (void)valueToInjectWithContext:(TyphoonInjectionContext *)context completion:(
if (!classOrProtocol) {
if (self.type == TyphoonInjectionTypeProperty) {
- [NSException raise:NSInternalInconsistencyException format:@"Can't recognize type for property '%@' of class '%@'. Make sure that @property exists and has correct type.", self.propertyName, context.destinationInstanceClass];
+ [NSException raise:NSInternalInconsistencyException
+ format:@"Can't recognize type for property '%@' of class '%@'. Make sure that @property exists and has correct type.",
+ self.propertyName, context.classUnderConstruction];
} else {
[NSException raise:NSInternalInconsistencyException format:@"Only property injection support InjectionByType"];
diff --git a/Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionContext.h b/Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionContext.h
index 3fc9800..8e59c30 100644
--- a/Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionContext.h
+++ b/Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionContext.h
@@ -1,26 +1,34 @@
+////////////////////////////////////////////////////////////////////////////////
//
-// TyphoonInjectionContext.h
-// A-Typhoon
+// TYPHOON FRAMEWORK
+// Copyright 2013, Typhoon Framework Contributors
+// All Rights Reserved.
//
-// Created by Aleksey Garbarev on 25.03.14.
-// Copyright (c) 2014 Jasper Blues. All rights reserved.
+// NOTICE: The authors permit you to use, modify, and distribute this file
+// in accordance with the terms of the license agreement accompanying it.
//
+////////////////////////////////////////////////////////////////////////////////
#import
#import "TyphoonTypeDescriptor.h"
#import "TyphoonComponentFactory.h"
+@class TyphoonRuntimeArguments;
+
typedef void(^TyphoonInjectionValueBlock)(id value);
-@interface TyphoonInjectionContext : NSObject
+@interface TyphoonInjectionContext : NSObject
-@property(nonatomic, strong) TyphoonTypeDescriptor *destinationType;
-@property(nonatomic, strong) TyphoonComponentFactory *factory;
-@property(nonatomic, strong) TyphoonRuntimeArguments *args;
+@property(nonatomic, strong, readonly) TyphoonComponentFactory* factory;
+@property(nonatomic, strong, readonly) TyphoonRuntimeArguments* args;
+@property(nonatomic, readonly) BOOL raiseExceptionIfCircular;
/** Class of destination instance, - used only for better exception description */
-@property(nonatomic, assign) Class destinationInstanceClass;
+@property(nonatomic, assign, readwrite) Class classUnderConstruction;
+@property(nonatomic, strong, readwrite) TyphoonTypeDescriptor* destinationType;
+
+- (instancetype)initWithFactory:(TyphoonComponentFactory*)factory args:(TyphoonRuntimeArguments*)args
+ raiseExceptionIfCircular:(BOOL)raiseExceptionIfCircular;
-@property(nonatomic) BOOL raiseExceptionIfCircular;
@end
diff --git a/Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionContext.m b/Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionContext.m
index dc8fce8..0516b27 100644
--- a/Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionContext.m
+++ b/Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionContext.m
@@ -1,22 +1,54 @@
+////////////////////////////////////////////////////////////////////////////////
//
-// TyphoonInjectionContext.m
-// A-Typhoon
+// TYPHOON FRAMEWORK
+// Copyright 2013, Typhoon Framework Contributors
+// All Rights Reserved.
//
-// Created by Aleksey Garbarev on 25.03.14.
-// Copyright (c) 2014 Jasper Blues. All rights reserved.
+// NOTICE: The authors permit you to use, modify, and distribute this file
+// in accordance with the terms of the license agreement accompanying it.
//
+////////////////////////////////////////////////////////////////////////////////
#import "TyphoonInjectionContext.h"
+#import "TyphoonRuntimeArguments.h"
+
+@interface TyphoonInjectionContext ()
+
+@property(nonatomic, strong, readwrite) TyphoonComponentFactory* factory;
+@property(nonatomic, strong, readwrite) TyphoonRuntimeArguments* args;
+@property(nonatomic, readwrite) BOOL raiseExceptionIfCircular;
+
+@end
@implementation TyphoonInjectionContext
-- (id)copyWithZone:(NSZone *)zone
+//-------------------------------------------------------------------------------------------
+#pragma mark - Initialization & Destruction
+
+- (instancetype)initWithFactory:(TyphoonComponentFactory*)factory args:(TyphoonRuntimeArguments*)args
+ raiseExceptionIfCircular:(BOOL)raiseExceptionIfCircular
+{
+ self = [super init];
+ if (self)
+ {
+ _factory = factory;
+ _args = args;
+ _raiseExceptionIfCircular = raiseExceptionIfCircular;
+ }
+ return self;
+}
+
+//-------------------------------------------------------------------------------------------
+
+
+
+- (id)copyWithZone:(NSZone*)zone
{
- TyphoonInjectionContext *copied = [[TyphoonInjectionContext allocWithZone:zone] init];
+ TyphoonInjectionContext* copied = [[TyphoonInjectionContext allocWithZone:zone] init];
copied.factory = self.factory;
copied.args = self.args;
copied.destinationType = self.destinationType;
- copied.destinationInstanceClass = self.destinationInstanceClass;
+ copied.classUnderConstruction = self.classUnderConstruction;
copied.raiseExceptionIfCircular = self.raiseExceptionIfCircular;
return copied;
}
diff --git a/Pods/Typhoon/Source/Definition/Injections/TyphoonInjections.h b/Pods/Typhoon/Source/Definition/Injections/TyphoonInjections.h
index b508fa6..9131475 100644
--- a/Pods/Typhoon/Source/Definition/Injections/TyphoonInjections.h
+++ b/Pods/Typhoon/Source/Definition/Injections/TyphoonInjections.h
@@ -1,14 +1,14 @@
////////////////////////////////////////////////////////////////////////////////
//
// TYPHOON FRAMEWORK
-// Copyright 2013, Jasper Blues & Contributors
+// Copyright 2013, Typhoon Framework Contributors
// All Rights Reserved.
//
// NOTICE: The authors permit you to use, modify, and distribute this file
// in accordance with the terms of the license agreement accompanying it.
//
////////////////////////////////////////////////////////////////////////////////
-
+#import
id TyphoonInjectionMatchedByType(void);
diff --git a/Pods/Typhoon/Source/Definition/Injections/TyphoonInjections.m b/Pods/Typhoon/Source/Definition/Injections/TyphoonInjections.m
index 3cbdf41..cf644ec 100644
--- a/Pods/Typhoon/Source/Definition/Injections/TyphoonInjections.m
+++ b/Pods/Typhoon/Source/Definition/Injections/TyphoonInjections.m
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////////////////////////
//
// TYPHOON FRAMEWORK
-// Copyright 2013, Jasper Blues & Contributors
+// Copyright 2013, Typhoon Framework Contributors
// All Rights Reserved.
//
// NOTICE: The authors permit you to use, modify, and distribute this file
diff --git a/Pods/Typhoon/Source/Definition/Injections/TyphoonParameterInjection.h b/Pods/Typhoon/Source/Definition/Injections/TyphoonParameterInjection.h
index 518aeb8..f60ad2a 100644
--- a/Pods/Typhoon/Source/Definition/Injections/TyphoonParameterInjection.h
+++ b/Pods/Typhoon/Source/Definition/Injections/TyphoonParameterInjection.h
@@ -1,10 +1,14 @@
+////////////////////////////////////////////////////////////////////////////////
//
-// TyphoonParameterInjection.h
-// A-Typhoon
+// TYPHOON FRAMEWORK
+// Copyright 2013, Typhoon Framework Contributors
+// All Rights Reserved.
//
-// Created by Aleksey Garbarev on 11.03.14.
-// Copyright (c) 2014 Jasper Blues. All rights reserved.
+// NOTICE: The authors permit you to use, modify, and distribute this file
+// in accordance with the terms of the license agreement accompanying it.
//
+////////////////////////////////////////////////////////////////////////////////
+
#import "TyphoonInjection.h"
diff --git a/Pods/Typhoon/Source/Definition/Injections/TyphoonPropertyInjection.h b/Pods/Typhoon/Source/Definition/Injections/TyphoonPropertyInjection.h
index 8e48655..349fefb 100644
--- a/Pods/Typhoon/Source/Definition/Injections/TyphoonPropertyInjection.h
+++ b/Pods/Typhoon/Source/Definition/Injections/TyphoonPropertyInjection.h
@@ -1,10 +1,13 @@
+////////////////////////////////////////////////////////////////////////////////
//
-// TyphoonPropertyInjection.h
-// A-Typhoon
+// TYPHOON FRAMEWORK
+// Copyright 2013, Typhoon Framework Contributors
+// All Rights Reserved.
//
-// Created by Aleksey Garbarev on 11.03.14.
-// Copyright (c) 2014 Jasper Blues. All rights reserved.
+// NOTICE: The authors permit you to use, modify, and distribute this file
+// in accordance with the terms of the license agreement accompanying it.
//
+////////////////////////////////////////////////////////////////////////////////
#import "TyphoonInjection.h"
diff --git a/Pods/Typhoon/Source/Definition/Internal/Collections+CustomInjection.h b/Pods/Typhoon/Source/Definition/Internal/Collections+CustomInjection.h
index 62b56bc..d55473f 100644
--- a/Pods/Typhoon/Source/Definition/Internal/Collections+CustomInjection.h
+++ b/Pods/Typhoon/Source/Definition/Internal/Collections+CustomInjection.h
@@ -1,10 +1,14 @@
+////////////////////////////////////////////////////////////////////////////////
//
-// Collections+CustomInjection.h
-// A-Typhoon
+// TYPHOON FRAMEWORK
+// Copyright 2013, Typhoon Framework Contributors
+// All Rights Reserved.
//
-// Created by Aleksey Garbarev on 13.03.14.
-// Copyright (c) 2014 Jasper Blues. All rights reserved.
+// NOTICE: The authors permit you to use, modify, and distribute this file
+// in accordance with the terms of the license agreement accompanying it.
//
+////////////////////////////////////////////////////////////////////////////////
+
#import "TyphoonObjectWithCustomInjection.h"
diff --git a/Pods/Typhoon/Source/Definition/Internal/Collections+CustomInjection.m b/Pods/Typhoon/Source/Definition/Internal/Collections+CustomInjection.m
index d429b99..4195aab 100644
--- a/Pods/Typhoon/Source/Definition/Internal/Collections+CustomInjection.m
+++ b/Pods/Typhoon/Source/Definition/Internal/Collections+CustomInjection.m
@@ -1,10 +1,14 @@
+////////////////////////////////////////////////////////////////////////////////
//
-// Collections+CustomInjection.m
-// A-Typhoon
+// TYPHOON FRAMEWORK
+// Copyright 2013, Typhoon Framework Contributors
+// All Rights Reserved.
//
-// Created by Aleksey Garbarev on 13.03.14.
-// Copyright (c) 2014 Jasper Blues. All rights reserved.
+// NOTICE: The authors permit you to use, modify, and distribute this file
+// in accordance with the terms of the license agreement accompanying it.
//
+////////////////////////////////////////////////////////////////////////////////
+
#import "Collections+CustomInjection.h"
#import "TyphoonInjectionByCollection.h"
diff --git a/Pods/Typhoon/Source/Definition/Internal/NSDictionary+CustomInjection.h b/Pods/Typhoon/Source/Definition/Internal/NSDictionary+CustomInjection.h
index 0b4b8d4..960026c 100644
--- a/Pods/Typhoon/Source/Definition/Internal/NSDictionary+CustomInjection.h
+++ b/Pods/Typhoon/Source/Definition/Internal/NSDictionary+CustomInjection.h
@@ -1,10 +1,14 @@
+////////////////////////////////////////////////////////////////////////////////
//
-// NSDictionary+CustomInjection.h
-// A-Typhoon
+// TYPHOON FRAMEWORK
+// Copyright 2013, Typhoon Framework Contributors
+// All Rights Reserved.
//
-// Created by Aleksey Garbarev on 14.03.14.
-// Copyright (c) 2014 Jasper Blues. All rights reserved.
+// NOTICE: The authors permit you to use, modify, and distribute this file
+// in accordance with the terms of the license agreement accompanying it.
//
+////////////////////////////////////////////////////////////////////////////////
+
#import
#import "TyphoonObjectWithCustomInjection.h"
diff --git a/Pods/Typhoon/Source/Definition/Internal/NSDictionary+CustomInjection.m b/Pods/Typhoon/Source/Definition/Internal/NSDictionary+CustomInjection.m
index 3cdc685..de79409 100644
--- a/Pods/Typhoon/Source/Definition/Internal/NSDictionary+CustomInjection.m
+++ b/Pods/Typhoon/Source/Definition/Internal/NSDictionary+CustomInjection.m
@@ -1,10 +1,14 @@
+////////////////////////////////////////////////////////////////////////////////
//
-// NSDictionary+CustomInjection.m
-// A-Typhoon
+// TYPHOON FRAMEWORK
+// Copyright 2013, Typhoon Framework Contributors
+// All Rights Reserved.
//
-// Created by Aleksey Garbarev on 14.03.14.
-// Copyright (c) 2014 Jasper Blues. All rights reserved.
+// NOTICE: The authors permit you to use, modify, and distribute this file
+// in accordance with the terms of the license agreement accompanying it.
//
+////////////////////////////////////////////////////////////////////////////////
+
#import "NSDictionary+CustomInjection.h"
#import "TyphoonInjectionByDictionary.h"
diff --git a/Pods/Typhoon/Source/Definition/Internal/TyphoonDefinition+Infrastructure.h b/Pods/Typhoon/Source/Definition/Internal/TyphoonDefinition+Infrastructure.h
index d066076..b8a0e65 100644
--- a/Pods/Typhoon/Source/Definition/Internal/TyphoonDefinition+Infrastructure.h
+++ b/Pods/Typhoon/Source/Definition/Internal/TyphoonDefinition+Infrastructure.h
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////////////////////////
//
// TYPHOON FRAMEWORK
-// Copyright 2013, Jasper Blues & Contributors
+// Copyright 2013, Typhoon Framework Contributors
// All Rights Reserved.
//
// NOTICE: The authors permit you to use, modify, and distribute this file
diff --git a/Pods/Typhoon/Source/Definition/Internal/TyphoonDefinition+Infrastructure.m b/Pods/Typhoon/Source/Definition/Internal/TyphoonDefinition+Infrastructure.m
index 5b12cc4..243c3a9 100644
--- a/Pods/Typhoon/Source/Definition/Internal/TyphoonDefinition+Infrastructure.m
+++ b/Pods/Typhoon/Source/Definition/Internal/TyphoonDefinition+Infrastructure.m
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////////////////////////
//
// TYPHOON FRAMEWORK
-// Copyright 2013, Jasper Blues & Contributors
+// Copyright 2013, Typhoon Framework Contributors
// All Rights Reserved.
//
// NOTICE: The authors permit you to use, modify, and distribute this file
diff --git a/Pods/Typhoon/Source/Definition/Internal/TyphoonDefinition+InstanceBuilder.h b/Pods/Typhoon/Source/Definition/Internal/TyphoonDefinition+InstanceBuilder.h
index 2bbdeae..6cb29d8 100644
--- a/Pods/Typhoon/Source/Definition/Internal/TyphoonDefinition+InstanceBuilder.h
+++ b/Pods/Typhoon/Source/Definition/Internal/TyphoonDefinition+InstanceBuilder.h
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////////////////////////
//
// TYPHOON FRAMEWORK
-// Copyright 2013, Jasper Blues & Contributors
+// Copyright 2013, Typhoon Framework Contributors
// All Rights Reserved.
//
// NOTICE: The authors permit you to use, modify, and distribute this file
diff --git a/Pods/Typhoon/Source/Definition/Internal/TyphoonDefinition+InstanceBuilder.m b/Pods/Typhoon/Source/Definition/Internal/TyphoonDefinition+InstanceBuilder.m
index 382e61f..fd9b1b4 100644
--- a/Pods/Typhoon/Source/Definition/Internal/TyphoonDefinition+InstanceBuilder.m
+++ b/Pods/Typhoon/Source/Definition/Internal/TyphoonDefinition+InstanceBuilder.m
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////////////////////////
//
// TYPHOON FRAMEWORK
-// Copyright 2013, Jasper Blues & Contributors
+// Copyright 2013, Typhoon Framework Contributors
// All Rights Reserved.
//
// NOTICE: The authors permit you to use, modify, and distribute this file
diff --git a/Pods/Typhoon/Source/Definition/Internal/TyphoonFactoryDefinition.h b/Pods/Typhoon/Source/Definition/Internal/TyphoonFactoryDefinition.h
index b0fb521..dbbb352 100644
--- a/Pods/Typhoon/Source/Definition/Internal/TyphoonFactoryDefinition.h
+++ b/Pods/Typhoon/Source/Definition/Internal/TyphoonFactoryDefinition.h
@@ -1,7 +1,14 @@
+////////////////////////////////////////////////////////////////////////////////
//
-// Created by Aleksey Garbarev on 13.09.14.
-// Copyright (c) 2014 typhoonframework.org. All rights reserved.
+// TYPHOON FRAMEWORK
+// Copyright 2013, Typhoon Framework Contributors
+// All Rights Reserved.
//
+// NOTICE: The authors permit you to use, modify, and distribute this file
+// in accordance with the terms of the license agreement accompanying it.
+//
+////////////////////////////////////////////////////////////////////////////////
+
#import
#import "TyphoonDefinition.h"
diff --git a/Pods/Typhoon/Source/Definition/Internal/TyphoonFactoryDefinition.m b/Pods/Typhoon/Source/Definition/Internal/TyphoonFactoryDefinition.m
index 67a8914..781453e 100644
--- a/Pods/Typhoon/Source/Definition/Internal/TyphoonFactoryDefinition.m
+++ b/Pods/Typhoon/Source/Definition/Internal/TyphoonFactoryDefinition.m
@@ -1,7 +1,14 @@
+////////////////////////////////////////////////////////////////////////////////
//
-// Created by Aleksey Garbarev on 13.09.14.
-// Copyright (c) 2014 typhoonframework.org. All rights reserved.
+// TYPHOON FRAMEWORK
+// Copyright 2013, Typhoon Framework Contributors
+// All Rights Reserved.
//
+// NOTICE: The authors permit you to use, modify, and distribute this file
+// in accordance with the terms of the license agreement accompanying it.
+//
+////////////////////////////////////////////////////////////////////////////////
+
#import "TyphoonFactoryDefinition.h"
#import "TyphoonIntrospectionUtils.h"
diff --git a/Pods/Typhoon/Source/Definition/Internal/TyphoonObjectWithCustomInjection.h b/Pods/Typhoon/Source/Definition/Internal/TyphoonObjectWithCustomInjection.h
index 2c3fbbf..a111b16 100644
--- a/Pods/Typhoon/Source/Definition/Internal/TyphoonObjectWithCustomInjection.h
+++ b/Pods/Typhoon/Source/Definition/Internal/TyphoonObjectWithCustomInjection.h
@@ -1,10 +1,14 @@
+////////////////////////////////////////////////////////////////////////////////
//
-// TyphoonObjectWithCustomInjection.h
-// A-Typhoon
+// TYPHOON FRAMEWORK
+// Copyright 2013, Typhoon Framework Contributors
+// All Rights Reserved.
//
-// Created by Aleksey Garbarev on 12.03.14.
-// Copyright (c) 2014 Jasper Blues. All rights reserved.
+// NOTICE: The authors permit you to use, modify, and distribute this file
+// in accordance with the terms of the license agreement accompanying it.
//
+////////////////////////////////////////////////////////////////////////////////
+
#import "TyphoonPropertyInjection.h"
#import "TyphoonParameterInjection.h"
diff --git a/Pods/Typhoon/Source/Definition/Internal/TyphoonReferenceDefinition.h b/Pods/Typhoon/Source/Definition/Internal/TyphoonReferenceDefinition.h
index 068c9ab..6198f63 100644
--- a/Pods/Typhoon/Source/Definition/Internal/TyphoonReferenceDefinition.h
+++ b/Pods/Typhoon/Source/Definition/Internal/TyphoonReferenceDefinition.h
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////////////////////////
//
// TYPHOON FRAMEWORK
-// Copyright 2014, Jasper Blues & Contributors
+// Copyright 2014, Typhoon Framework Contributors
// All Rights Reserved.
//
// NOTICE: The authors permit you to use, modify, and distribute this file
diff --git a/Pods/Typhoon/Source/Definition/Internal/TyphoonReferenceDefinition.m b/Pods/Typhoon/Source/Definition/Internal/TyphoonReferenceDefinition.m
index 8750537..371a3f2 100644
--- a/Pods/Typhoon/Source/Definition/Internal/TyphoonReferenceDefinition.m
+++ b/Pods/Typhoon/Source/Definition/Internal/TyphoonReferenceDefinition.m
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////////////////////////
//
// TYPHOON FRAMEWORK
-// Copyright 2014, Jasper Blues & Contributors
+// Copyright 2014, Typhoon Framework Contributors
// All Rights Reserved.
//
// NOTICE: The authors permit you to use, modify, and distribute this file
diff --git a/Pods/Typhoon/Source/Definition/Method/Internal/TyphoonMethod+InstanceBuilder.h b/Pods/Typhoon/Source/Definition/Method/Internal/TyphoonMethod+InstanceBuilder.h
index f8bae28..063dad5 100644
--- a/Pods/Typhoon/Source/Definition/Method/Internal/TyphoonMethod+InstanceBuilder.h
+++ b/Pods/Typhoon/Source/Definition/Method/Internal/TyphoonMethod+InstanceBuilder.h
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////////////////////////
//
// TYPHOON FRAMEWORK
-// Copyright 2013, Jasper Blues & Contributors
+// Copyright 2013, Typhoon Framework Contributors
// All Rights Reserved.
//
// NOTICE: The authors permit you to use, modify, and distribute this file
@@ -18,7 +18,7 @@
- (NSArray *)injectedParameters;
-- (void)createInvocationOnClass:(Class)clazz withContext:(TyphoonInjectionContext *)context completion:(void(^)(NSInvocation *invocation))result;
+- (void)createInvocationWithContext:(TyphoonInjectionContext *)context completion:(void(^)(NSInvocation *invocation))result;
- (BOOL)isClassMethodOnClass:(Class)clazz;
diff --git a/Pods/Typhoon/Source/Definition/Method/Internal/TyphoonMethod+InstanceBuilder.m b/Pods/Typhoon/Source/Definition/Method/Internal/TyphoonMethod+InstanceBuilder.m
index 0bfe259..7ea0f3e 100644
--- a/Pods/Typhoon/Source/Definition/Method/Internal/TyphoonMethod+InstanceBuilder.m
+++ b/Pods/Typhoon/Source/Definition/Method/Internal/TyphoonMethod+InstanceBuilder.m
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////////////////////////
//
// TYPHOON FRAMEWORK
-// Copyright 2013, Jasper Blues & Contributors
+// Copyright 2013, Typhoon Framework Contributors
// All Rights Reserved.
//
// NOTICE: The authors permit you to use, modify, and distribute this file
@@ -43,11 +43,11 @@ - (NSArray *)injectedParameters
return [_injectedParameters copy];
}
-- (void)createInvocationOnClass:(Class)clazz withContext:(TyphoonInjectionContext *)context completion:(void(^)(NSInvocation *invocation))result
+- (void)createInvocationWithContext:(TyphoonInjectionContext *)context completion:(void(^)(NSInvocation *invocation))result
{
- BOOL isClassMethod = [self isClassMethodOnClass:clazz];
+ BOOL isClassMethod = [self isClassMethodOnClass:context.classUnderConstruction];
- NSMethodSignature *signature = [self methodSignatureWithTarget:clazz isClassMethod:isClassMethod];
+ NSMethodSignature *signature = [self methodSignatureWithTarget:context.classUnderConstruction isClassMethod:isClassMethod];
NSInvocation *invocation = [NSInvocation invocationWithMethodSignature:signature];
[invocation retainArguments];
[invocation setSelector:_selector];
diff --git a/Pods/Typhoon/Source/Definition/Method/TyphoonMethod.h b/Pods/Typhoon/Source/Definition/Method/TyphoonMethod.h
index 189d638..9fdf460 100644
--- a/Pods/Typhoon/Source/Definition/Method/TyphoonMethod.h
+++ b/Pods/Typhoon/Source/Definition/Method/TyphoonMethod.h
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////////////////////////
//
// TYPHOON FRAMEWORK
-// Copyright 2013, Jasper Blues & Contributors
+// Copyright 2013, Typhoon Framework Contributors
// All Rights Reserved.
//
// NOTICE: The authors permit you to use, modify, and distribute this file
diff --git a/Pods/Typhoon/Source/Definition/Method/TyphoonMethod.m b/Pods/Typhoon/Source/Definition/Method/TyphoonMethod.m
index 73b5fff..f32a7db 100644
--- a/Pods/Typhoon/Source/Definition/Method/TyphoonMethod.m
+++ b/Pods/Typhoon/Source/Definition/Method/TyphoonMethod.m
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////////////////////////
//
// TYPHOON FRAMEWORK
-// Copyright 2013, Jasper Blues & Contributors
+// Copyright 2013, Typhoon Framework Contributors
// All Rights Reserved.
//
// NOTICE: The authors permit you to use, modify, and distribute this file
diff --git a/Pods/Typhoon/Source/Definition/TyphoonDefinition.h b/Pods/Typhoon/Source/Definition/TyphoonDefinition.h
index c5f1ede..831a783 100644
--- a/Pods/Typhoon/Source/Definition/TyphoonDefinition.h
+++ b/Pods/Typhoon/Source/Definition/TyphoonDefinition.h
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////////////////////////
//
// TYPHOON FRAMEWORK
-// Copyright 2013, Jasper Blues & Contributors
+// Copyright 2013, Typhoon Framework Contributors
// All Rights Reserved.
//
// NOTICE: The authors permit you to use, modify, and distribute this file
diff --git a/Pods/Typhoon/Source/Definition/TyphoonDefinition.m b/Pods/Typhoon/Source/Definition/TyphoonDefinition.m
index 372aa60..4e48eaf 100644
--- a/Pods/Typhoon/Source/Definition/TyphoonDefinition.m
+++ b/Pods/Typhoon/Source/Definition/TyphoonDefinition.m
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////////////////////////
//
// TYPHOON FRAMEWORK
-// Copyright 2013, Jasper Blues & Contributors
+// Copyright 2013, Typhoon Framework Contributors
// All Rights Reserved.
//
// NOTICE: The authors permit you to use, modify, and distribute this file
diff --git a/Pods/Typhoon/Source/Factory/Block/TyphoonAssembly+TyphoonAssemblyFriend.h b/Pods/Typhoon/Source/Factory/Block/TyphoonAssembly+TyphoonAssemblyFriend.h
index 56af231..5ed5dd6 100644
--- a/Pods/Typhoon/Source/Factory/Block/TyphoonAssembly+TyphoonAssemblyFriend.h
+++ b/Pods/Typhoon/Source/Factory/Block/TyphoonAssembly+TyphoonAssemblyFriend.h
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////////////////////////
//
// TYPHOON FRAMEWORK
-// Copyright 2013, Jasper Blues & Contributors
+// Copyright 2013, Typhoon Framework Contributors
// All Rights Reserved.
//
// NOTICE: The authors permit you to use, modify, and distribute this file
diff --git a/Pods/Typhoon/Source/Factory/Block/TyphoonAssembly.h b/Pods/Typhoon/Source/Factory/Block/TyphoonAssembly.h
index aec8762..69a9a76 100644
--- a/Pods/Typhoon/Source/Factory/Block/TyphoonAssembly.h
+++ b/Pods/Typhoon/Source/Factory/Block/TyphoonAssembly.h
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////////////////////////
//
// TYPHOON FRAMEWORK
-// Copyright 2014, Jasper Blues & Contributors
+// Copyright 2014, Typhoon Framework Contributors
// All Rights Reserved.
//
// NOTICE: The authors permit you to use, modify, and distribute this file
diff --git a/Pods/Typhoon/Source/Factory/Block/TyphoonAssembly.m b/Pods/Typhoon/Source/Factory/Block/TyphoonAssembly.m
index 8694c6d..5f11e8f 100644
--- a/Pods/Typhoon/Source/Factory/Block/TyphoonAssembly.m
+++ b/Pods/Typhoon/Source/Factory/Block/TyphoonAssembly.m
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////////////////////////
//
// TYPHOON FRAMEWORK
-// Copyright 2014, Jasper Blues & Contributors
+// Copyright 2014, Typhoon Framework Contributors
// All Rights Reserved.
//
// NOTICE: The authors permit you to use, modify, and distribute this file
diff --git a/Pods/Typhoon/Source/Factory/Block/TyphoonAssemblyAdviser.h b/Pods/Typhoon/Source/Factory/Block/TyphoonAssemblyAdviser.h
index 4ca2cad..9573581 100644
--- a/Pods/Typhoon/Source/Factory/Block/TyphoonAssemblyAdviser.h
+++ b/Pods/Typhoon/Source/Factory/Block/TyphoonAssemblyAdviser.h
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////////////////////////
//
// TYPHOON FRAMEWORK
-// Copyright 2013, Jasper Blues & Contributors
+// Copyright 2013, Typhoon Framework Contributors
// All Rights Reserved.
//
// NOTICE: The authors permit you to use, modify, and distribute this file
diff --git a/Pods/Typhoon/Source/Factory/Block/TyphoonAssemblyAdviser.m b/Pods/Typhoon/Source/Factory/Block/TyphoonAssemblyAdviser.m
index 3e93677..a757e17 100644
--- a/Pods/Typhoon/Source/Factory/Block/TyphoonAssemblyAdviser.m
+++ b/Pods/Typhoon/Source/Factory/Block/TyphoonAssemblyAdviser.m
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////////////////////////
//
// TYPHOON FRAMEWORK
-// Copyright 2013, Jasper Blues & Contributors
+// Copyright 2013, Typhoon Framework Contributors
// All Rights Reserved.
//
// NOTICE: The authors permit you to use, modify, and distribute this file
diff --git a/Pods/Typhoon/Source/Factory/Block/TyphoonAssemblyDefinitionBuilder.h b/Pods/Typhoon/Source/Factory/Block/TyphoonAssemblyDefinitionBuilder.h
index 62786da..61193c3 100644
--- a/Pods/Typhoon/Source/Factory/Block/TyphoonAssemblyDefinitionBuilder.h
+++ b/Pods/Typhoon/Source/Factory/Block/TyphoonAssemblyDefinitionBuilder.h
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////////////////////////
//
// TYPHOON FRAMEWORK
-// Copyright 2013, Jasper Blues & Contributors
+// Copyright 2013, Typhoon Framework Contributors
// All Rights Reserved.
//
// NOTICE: The authors permit you to use, modify, and distribute this file
diff --git a/Pods/Typhoon/Source/Factory/Block/TyphoonAssemblyDefinitionBuilder.m b/Pods/Typhoon/Source/Factory/Block/TyphoonAssemblyDefinitionBuilder.m
index fef2c98..88043a0 100644
--- a/Pods/Typhoon/Source/Factory/Block/TyphoonAssemblyDefinitionBuilder.m
+++ b/Pods/Typhoon/Source/Factory/Block/TyphoonAssemblyDefinitionBuilder.m
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////////////////////////
//
// TYPHOON FRAMEWORK
-// Copyright 2013, Jasper Blues & Contributors
+// Copyright 2013, Typhoon Framework Contributors
// All Rights Reserved.
//
// NOTICE: The authors permit you to use, modify, and distribute this file
@@ -23,6 +23,8 @@
#import "TyphoonInjections.h"
#import "TyphoonUtils.h"
+#import
+
static id InjectionForArgumentType(const char *argumentType, NSUInteger index);
static id objc_msgSend_InjectionArguments(id target, SEL selector, NSMethodSignature *signature);
static void AssertArgumentType(id target, SEL selector, const char *argumentType, NSUInteger index);
@@ -195,7 +197,7 @@ static id objc_msgSend_InjectionArguments(id target, SEL selector, NSMethodSigna
return (__bridge id) result;
}
else {
- return objc_msgSend(target, selector);
+ return ((id (*)(id, SEL))objc_msgSend)(target, selector);
}
}
diff --git a/Pods/Typhoon/Source/Factory/Block/TyphoonAssemblyPropertyInjectionPostProcessor.h b/Pods/Typhoon/Source/Factory/Block/TyphoonAssemblyPropertyInjectionPostProcessor.h
index dbbfcd0..745a12e 100644
--- a/Pods/Typhoon/Source/Factory/Block/TyphoonAssemblyPropertyInjectionPostProcessor.h
+++ b/Pods/Typhoon/Source/Factory/Block/TyphoonAssemblyPropertyInjectionPostProcessor.h
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////////////////////////
//
// TYPHOON FRAMEWORK
-// Copyright 2013, Jasper Blues & Contributors
+// Copyright 2013, Typhoon Framework Contributors
// All Rights Reserved.
//
// NOTICE: The authors permit you to use, modify, and distribute this file
diff --git a/Pods/Typhoon/Source/Factory/Block/TyphoonAssemblyPropertyInjectionPostProcessor.m b/Pods/Typhoon/Source/Factory/Block/TyphoonAssemblyPropertyInjectionPostProcessor.m
index c52939a..e975193 100644
--- a/Pods/Typhoon/Source/Factory/Block/TyphoonAssemblyPropertyInjectionPostProcessor.m
+++ b/Pods/Typhoon/Source/Factory/Block/TyphoonAssemblyPropertyInjectionPostProcessor.m
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////////////////////////
//
// TYPHOON FRAMEWORK
-// Copyright 2013, Jasper Blues & Contributors
+// Copyright 2013, Typhoon Framework Contributors
// All Rights Reserved.
//
// NOTICE: The authors permit you to use, modify, and distribute this file
diff --git a/Pods/Typhoon/Source/Factory/Block/TyphoonAssemblySelectorAdviser.h b/Pods/Typhoon/Source/Factory/Block/TyphoonAssemblySelectorAdviser.h
index 216a8f2..8d882ac 100644
--- a/Pods/Typhoon/Source/Factory/Block/TyphoonAssemblySelectorAdviser.h
+++ b/Pods/Typhoon/Source/Factory/Block/TyphoonAssemblySelectorAdviser.h
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////////////////////////
//
// TYPHOON FRAMEWORK
-// Copyright 2013, Jasper Blues & Contributors
+// Copyright 2013, Typhoon Framework Contributors
// All Rights Reserved.
//
// NOTICE: The authors permit you to use, modify, and distribute this file
diff --git a/Pods/Typhoon/Source/Factory/Block/TyphoonAssemblySelectorAdviser.m b/Pods/Typhoon/Source/Factory/Block/TyphoonAssemblySelectorAdviser.m
index 59980b3..b586ef8 100644
--- a/Pods/Typhoon/Source/Factory/Block/TyphoonAssemblySelectorAdviser.m
+++ b/Pods/Typhoon/Source/Factory/Block/TyphoonAssemblySelectorAdviser.m
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////////////////////////
//
// TYPHOON FRAMEWORK
-// Copyright 2013, Jasper Blues & Contributors
+// Copyright 2013, Typhoon Framework Contributors
// All Rights Reserved.
//
// NOTICE: The authors permit you to use, modify, and distribute this file
diff --git a/Pods/Typhoon/Source/Factory/Block/TyphoonBlockComponentFactory.h b/Pods/Typhoon/Source/Factory/Block/TyphoonBlockComponentFactory.h
index 06e388a..77ca357 100644
--- a/Pods/Typhoon/Source/Factory/Block/TyphoonBlockComponentFactory.h
+++ b/Pods/Typhoon/Source/Factory/Block/TyphoonBlockComponentFactory.h
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////////////////////////
//
// TYPHOON FRAMEWORK
-// Copyright 2013, Jasper Blues & Contributors
+// Copyright 2013, Typhoon Framework Contributors
// All Rights Reserved.
//
// NOTICE: The authors permit you to use, modify, and distribute this file
@@ -27,6 +27,11 @@
+ (id)factoryWithAssemblies:(NSArray *)assemblies;
+/**
+* Returns a factory by loading the assemblies specified in the bundle's plist.
+*/
++ (id)factoryFromPlistInBundle:(NSBundle*)bundle;
+
- (id)initWithAssembly:(TyphoonAssembly *)assembly;
- (id)initWithAssemblies:(NSArray *)assemblies;
diff --git a/Pods/Typhoon/Source/Factory/Block/TyphoonBlockComponentFactory.m b/Pods/Typhoon/Source/Factory/Block/TyphoonBlockComponentFactory.m
index bf3fcbf..0917054 100644
--- a/Pods/Typhoon/Source/Factory/Block/TyphoonBlockComponentFactory.m
+++ b/Pods/Typhoon/Source/Factory/Block/TyphoonBlockComponentFactory.m
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////////////////////////
//
// TYPHOON FRAMEWORK
-// Copyright 2013, Jasper Blues & Contributors
+// Copyright 2013, Typhoon Framework Contributors
// All Rights Reserved.
//
// NOTICE: The authors permit you to use, modify, and distribute this file
@@ -11,19 +11,17 @@
-#import
#import "TyphoonMethod+InstanceBuilder.h"
#import "TyphoonBlockComponentFactory.h"
#import "TyphoonAssembly.h"
#import "OCLogTemplate.h"
#import "TyphoonAssembly+TyphoonAssemblyFriend.h"
#import "TyphoonAssemblyPropertyInjectionPostProcessor.h"
-#import "TyphoonInjection.h"
#import "TyphoonIntrospectionUtils.h"
@interface TyphoonComponentFactory (Private)
-- (TyphoonDefinition *)definitionForKey:(NSString *)key;
+- (TyphoonDefinition*)definitionForKey:(NSString*)key;
- (void)loadIfNeeded;
@@ -36,45 +34,96 @@ - (id)asAssembly
return self;
}
-- (TyphoonComponentFactory *)asFactory
+- (TyphoonComponentFactory*)asFactory
{
return self;
}
//-------------------------------------------------------------------------------------------
#pragma mark - Class Methods
+//-------------------------------------------------------------------------------------------
-+ (id)factoryWithAssembly:(TyphoonAssembly *)assembly
++ (id)factoryWithAssembly:(TyphoonAssembly*)assembly
{
return [[self alloc] initWithAssemblies:@[assembly]];
}
-+ (id)factoryWithAssemblies:(NSArray *)assemblies
++ (id)factoryWithAssemblies:(NSArray*)assemblies
{
return [[self alloc] initWithAssemblies:assemblies];
}
++ (id)factoryFromPlistInBundle:(NSBundle*)bundle
+{
+ TyphoonComponentFactory* result = nil;
+
+ NSArray* assemblyNames = [self plistAssemblyNames:bundle];
+ NSAssert(!assemblyNames || [assemblyNames isKindOfClass:[NSArray class]],
+ @"Value for 'TyphoonInitialAssemblies' key must be array");
+
+ if ([assemblyNames count] > 0)
+ {
+ NSMutableArray* assemblies = [[NSMutableArray alloc] initWithCapacity:[assemblyNames count]];
+ for (NSString* assemblyName in assemblyNames)
+ {
+ Class cls = TyphoonClassFromString(assemblyName);
+ if (!cls)
+ {
+ [NSException raise:NSInvalidArgumentException format:@"Can't resolve assembly for name %@",
+ assemblyName];
+ }
+ [assemblies addObject:[cls assembly]];
+ }
+ result = [TyphoonBlockComponentFactory factoryWithAssemblies:assemblies];
+ }
+
+ return result;
+}
+
++ (NSArray*)plistAssemblyNames:(NSBundle*)bundle
+{
+ NSArray* names = nil;
+
+ NSDictionary* bundleInfoDictionary = [bundle infoDictionary];
+#if TARGET_OS_IPHONE
+ if ([[UIDevice currentDevice] userInterfaceIdiom] == UIUserInterfaceIdiomPad) {
+ names = bundleInfoDictionary[@"TyphoonInitialAssemblies(iPad)"];
+ } else {
+ names = bundleInfoDictionary[@"TyphoonInitialAssemblies(iPhone)"];
+ }
+#endif
+ if (!names)
+ {
+ names = bundleInfoDictionary[@"TyphoonInitialAssemblies"];
+ }
+
+ return names;
+}
+
//-------------------------------------------------------------------------------------------
#pragma mark - Initialization & Destruction
+//-------------------------------------------------------------------------------------------
-- (id)initWithAssembly:(TyphoonAssembly *)assembly
+- (id)initWithAssembly:(TyphoonAssembly*)assembly
{
return [self initWithAssemblies:@[assembly]];
}
-- (id)initWithAssemblies:(NSArray *)assemblies
+- (id)initWithAssemblies:(NSArray*)assemblies
{
self = [super init];
- if (self) {
+ if (self)
+ {
[self attachPostProcessor:[TyphoonAssemblyPropertyInjectionPostProcessor new]];
- for (TyphoonAssembly *assembly in assemblies) {
+ for (TyphoonAssembly* assembly in assemblies)
+ {
[self buildAssembly:assembly];
}
}
return self;
}
-- (void)buildAssembly:(TyphoonAssembly *)assembly
+- (void)buildAssembly:(TyphoonAssembly*)assembly
{
LogTrace(@"Building assembly: %@", NSStringFromClass([assembly class]));
[self assertIsAssembly:assembly];
@@ -84,19 +133,21 @@ - (void)buildAssembly:(TyphoonAssembly *)assembly
[self registerAllDefinitions:assembly];
}
-- (void)assertIsAssembly:(TyphoonAssembly *)assembly
+- (void)assertIsAssembly:(TyphoonAssembly*)assembly
{
if (![assembly isKindOfClass:[TyphoonAssembly class]]) //
{
- [NSException raise:NSInvalidArgumentException format:@"Class '%@' is not a sub-class of %@", NSStringFromClass([assembly class]),
+ [NSException raise:NSInvalidArgumentException format:@"Class '%@' is not a sub-class of %@",
+ NSStringFromClass([assembly class]),
NSStringFromClass([TyphoonAssembly class])];
}
}
-- (void)registerAllDefinitions:(TyphoonAssembly *)assembly
+- (void)registerAllDefinitions:(TyphoonAssembly*)assembly
{
- NSArray *definitions = [assembly definitions];
- for (TyphoonDefinition *definition in definitions) {
+ NSArray* definitions = [assembly definitions];
+ for (TyphoonDefinition* definition in definitions)
+ {
[self registerDefinition:definition];
}
}
@@ -104,32 +155,35 @@ - (void)registerAllDefinitions:(TyphoonAssembly *)assembly
//-------------------------------------------------------------------------------------------
#pragma mark - Overridden Methods
+//-------------------------------------------------------------------------------------------
-- (void)forwardInvocation:(NSInvocation *)invocation
+- (void)forwardInvocation:(NSInvocation*)invocation
{
- NSString *componentKey = NSStringFromSelector([invocation selector]);
+ NSString* componentKey = NSStringFromSelector([invocation selector]);
LogTrace(@"Component key: %@", componentKey);
- TyphoonRuntimeArguments *args = [TyphoonRuntimeArguments argumentsFromInvocation:invocation];
+ TyphoonRuntimeArguments* args = [TyphoonRuntimeArguments argumentsFromInvocation:invocation];
- NSInvocation *internalInvocation =
+ NSInvocation* internalInvocation =
[NSInvocation invocationWithMethodSignature:[self methodSignatureForSelector:@selector(componentForKey:args:)]];
[internalInvocation setSelector:@selector(componentForKey:args:)];
[internalInvocation setArgument:&componentKey atIndex:2];
[internalInvocation setArgument:&args atIndex:3];
[internalInvocation invokeWithTarget:self];
- void *returnValue;
+ void* returnValue;
[internalInvocation getReturnValue:&returnValue];
[invocation setReturnValue:&returnValue];
}
-- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector
+- (NSMethodSignature*)methodSignatureForSelector:(SEL)aSelector
{
- if ([self respondsToSelector:aSelector]) {
+ if ([self respondsToSelector:aSelector])
+ {
return [[self class] instanceMethodSignatureForSelector:aSelector];
}
- else {
+ else
+ {
return [TyphoonIntrospectionUtils methodSignatureWithArgumentsAndReturnValueAsObjectsFromSelector:aSelector];
}
}
diff --git a/Pods/Typhoon/Source/Factory/Block/TyphoonCircularDependencyTerminator.h b/Pods/Typhoon/Source/Factory/Block/TyphoonCircularDependencyTerminator.h
index d2d4a3b..720f05b 100644
--- a/Pods/Typhoon/Source/Factory/Block/TyphoonCircularDependencyTerminator.h
+++ b/Pods/Typhoon/Source/Factory/Block/TyphoonCircularDependencyTerminator.h
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////////////////////////
//
// TYPHOON FRAMEWORK
-// Copyright 2013, Jasper Blues & Contributors
+// Copyright 2013, Typhoon Framework Contributors
// All Rights Reserved.
//
// NOTICE: The authors permit you to use, modify, and distribute this file
diff --git a/Pods/Typhoon/Source/Factory/Block/TyphoonCircularDependencyTerminator.m b/Pods/Typhoon/Source/Factory/Block/TyphoonCircularDependencyTerminator.m
index 4580c52..d6c2e3b 100644
--- a/Pods/Typhoon/Source/Factory/Block/TyphoonCircularDependencyTerminator.m
+++ b/Pods/Typhoon/Source/Factory/Block/TyphoonCircularDependencyTerminator.m
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////////////////////////
//
// TYPHOON FRAMEWORK
-// Copyright 2013, Jasper Blues & Contributors
+// Copyright 2013, Typhoon Framework Contributors
// All Rights Reserved.
//
// NOTICE: The authors permit you to use, modify, and distribute this file
diff --git a/Pods/Typhoon/Source/Factory/Block/TyphoonCollaboratingAssemblyPropertyEnumerator.h b/Pods/Typhoon/Source/Factory/Block/TyphoonCollaboratingAssemblyPropertyEnumerator.h
index 76b718b..0fc2c00 100644
--- a/Pods/Typhoon/Source/Factory/Block/TyphoonCollaboratingAssemblyPropertyEnumerator.h
+++ b/Pods/Typhoon/Source/Factory/Block/TyphoonCollaboratingAssemblyPropertyEnumerator.h
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////////////////////////
//
// TYPHOON FRAMEWORK
-// Copyright 2014, Jasper Blues & Contributors
+// Copyright 2014, Typhoon Framework Contributors
// All Rights Reserved.
//
// NOTICE: The authors permit you to use, modify, and distribute this file
diff --git a/Pods/Typhoon/Source/Factory/Block/TyphoonCollaboratingAssemblyPropertyEnumerator.m b/Pods/Typhoon/Source/Factory/Block/TyphoonCollaboratingAssemblyPropertyEnumerator.m
index f83090e..27a01c2 100644
--- a/Pods/Typhoon/Source/Factory/Block/TyphoonCollaboratingAssemblyPropertyEnumerator.m
+++ b/Pods/Typhoon/Source/Factory/Block/TyphoonCollaboratingAssemblyPropertyEnumerator.m
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////////////////////////
//
// TYPHOON FRAMEWORK
-// Copyright 2014, Jasper Blues & Contributors
+// Copyright 2014, Typhoon Framework Contributors
// All Rights Reserved.
//
// NOTICE: The authors permit you to use, modify, and distribute this file
diff --git a/Pods/Typhoon/Source/Factory/Block/TyphoonCollaboratingAssemblyProxy.h b/Pods/Typhoon/Source/Factory/Block/TyphoonCollaboratingAssemblyProxy.h
index 4dc918f..d899a25 100644
--- a/Pods/Typhoon/Source/Factory/Block/TyphoonCollaboratingAssemblyProxy.h
+++ b/Pods/Typhoon/Source/Factory/Block/TyphoonCollaboratingAssemblyProxy.h
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////////////////////////
//
// TYPHOON FRAMEWORK
-// Copyright 2013, Jasper Blues & Contributors
+// Copyright 2013, Typhoon Framework Contributors
// All Rights Reserved.
//
// NOTICE: The authors permit you to use, modify, and distribute this file
diff --git a/Pods/Typhoon/Source/Factory/Block/TyphoonCollaboratingAssemblyProxy.m b/Pods/Typhoon/Source/Factory/Block/TyphoonCollaboratingAssemblyProxy.m
index c3a3f84..a710b8c 100644
--- a/Pods/Typhoon/Source/Factory/Block/TyphoonCollaboratingAssemblyProxy.m
+++ b/Pods/Typhoon/Source/Factory/Block/TyphoonCollaboratingAssemblyProxy.m
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////////////////////////
//
// TYPHOON FRAMEWORK
-// Copyright 2014, Jasper Blues & Contributors
+// Copyright 2014, Typhoon Framework Contributors
// All Rights Reserved.
//
// NOTICE: The authors permit you to use, modify, and distribute this file
diff --git a/Pods/Typhoon/Source/Factory/Block/TyphoonRuntimeArguments.h b/Pods/Typhoon/Source/Factory/Block/TyphoonRuntimeArguments.h
index da7c46c..5a8d469 100644
--- a/Pods/Typhoon/Source/Factory/Block/TyphoonRuntimeArguments.h
+++ b/Pods/Typhoon/Source/Factory/Block/TyphoonRuntimeArguments.h
@@ -1,10 +1,14 @@
+////////////////////////////////////////////////////////////////////////////////
//
-// TyphoonRuntimeArguments.h
-// A-Typhoon
+// TYPHOON FRAMEWORK
+// Copyright 2013, Typhoon Framework Contributors
+// All Rights Reserved.
//
-// Created by Aleksey Garbarev on 10.03.14.
-// Copyright (c) 2014 Jasper Blues. All rights reserved.
+// NOTICE: The authors permit you to use, modify, and distribute this file
+// in accordance with the terms of the license agreement accompanying it.
//
+////////////////////////////////////////////////////////////////////////////////
+
#import
diff --git a/Pods/Typhoon/Source/Factory/Block/TyphoonRuntimeArguments.m b/Pods/Typhoon/Source/Factory/Block/TyphoonRuntimeArguments.m
index ca4f235..6482922 100644
--- a/Pods/Typhoon/Source/Factory/Block/TyphoonRuntimeArguments.m
+++ b/Pods/Typhoon/Source/Factory/Block/TyphoonRuntimeArguments.m
@@ -1,10 +1,14 @@
+////////////////////////////////////////////////////////////////////////////////
//
-// TyphoonRuntimeArguments.m
-// A-Typhoon
+// TYPHOON FRAMEWORK
+// Copyright 2013, Typhoon Framework Contributors
+// All Rights Reserved.
//
-// Created by Aleksey Garbarev on 10.03.14.
-// Copyright (c) 2014 Jasper Blues. All rights reserved.
+// NOTICE: The authors permit you to use, modify, and distribute this file
+// in accordance with the terms of the license agreement accompanying it.
//
+////////////////////////////////////////////////////////////////////////////////
+
#import "TyphoonRuntimeArguments.h"
#import "TyphoonIntrospectionUtils.h"
diff --git a/Pods/Typhoon/Source/Factory/Hooks/NSObject+FactoryHooks.h b/Pods/Typhoon/Source/Factory/Hooks/NSObject+FactoryHooks.h
index d01f4ce..c87d71b 100644
--- a/Pods/Typhoon/Source/Factory/Hooks/NSObject+FactoryHooks.h
+++ b/Pods/Typhoon/Source/Factory/Hooks/NSObject+FactoryHooks.h
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////////////////////////
//
// TYPHOON FRAMEWORK
-// Copyright 2013, Jasper Blues & Contributors
+// Copyright 2013, Typhoon Framework Contributors
// All Rights Reserved.
//
// NOTICE: The authors permit you to use, modify, and distribute this file
diff --git a/Pods/Typhoon/Source/Factory/Internal/NSInvocation+TCFInstanceBuilder.h b/Pods/Typhoon/Source/Factory/Internal/NSInvocation+TCFInstanceBuilder.h
index 79aaa71..7233993 100644
--- a/Pods/Typhoon/Source/Factory/Internal/NSInvocation+TCFInstanceBuilder.h
+++ b/Pods/Typhoon/Source/Factory/Internal/NSInvocation+TCFInstanceBuilder.h
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////////////////////////
//
// TYPHOON FRAMEWORK
-// Copyright 2014, Jasper Blues & Contributors
+// Copyright 2014, Typhoon Framework Contributors
// All Rights Reserved.
//
// NOTICE: The authors permit you to use, modify, and distribute this file
diff --git a/Pods/Typhoon/Source/Factory/Internal/NSInvocation+TCFInstanceBuilder.m b/Pods/Typhoon/Source/Factory/Internal/NSInvocation+TCFInstanceBuilder.m
index 880161d..b132a34 100644
--- a/Pods/Typhoon/Source/Factory/Internal/NSInvocation+TCFInstanceBuilder.m
+++ b/Pods/Typhoon/Source/Factory/Internal/NSInvocation+TCFInstanceBuilder.m
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////////////////////////
//
// TYPHOON FRAMEWORK
-// Copyright 2014, Jasper Blues & Contributors
+// Copyright 2014, Typhoon Framework Contributors
// All Rights Reserved.
//
// NOTICE: The authors permit you to use, modify, and distribute this file
diff --git a/Pods/Typhoon/Source/Factory/Internal/NSInvocation+TCFUnwrapValues.h b/Pods/Typhoon/Source/Factory/Internal/NSInvocation+TCFUnwrapValues.h
index 1e76b18..64271f0 100644
--- a/Pods/Typhoon/Source/Factory/Internal/NSInvocation+TCFUnwrapValues.h
+++ b/Pods/Typhoon/Source/Factory/Internal/NSInvocation+TCFUnwrapValues.h
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////////////////////////
//
// TYPHOON FRAMEWORK
-// Copyright 2014, Jasper Blues & Contributors
+// Copyright 2014, Typhoon Framework Contributors
// All Rights Reserved.
//
// NOTICE: The authors permit you to use, modify, and distribute this file
diff --git a/Pods/Typhoon/Source/Factory/Internal/NSInvocation+TCFUnwrapValues.m b/Pods/Typhoon/Source/Factory/Internal/NSInvocation+TCFUnwrapValues.m
index 8e0e09d..8ed72cf 100644
--- a/Pods/Typhoon/Source/Factory/Internal/NSInvocation+TCFUnwrapValues.m
+++ b/Pods/Typhoon/Source/Factory/Internal/NSInvocation+TCFUnwrapValues.m
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////////////////////////
//
// TYPHOON FRAMEWORK
-// Copyright 2014, Jasper Blues & Contributors
+// Copyright 2014, Typhoon Framework Contributors
// All Rights Reserved.
//
// NOTICE: The authors permit you to use, modify, and distribute this file
diff --git a/Pods/Typhoon/Source/Factory/Internal/NSMethodSignature+TCFUnwrapValues.h b/Pods/Typhoon/Source/Factory/Internal/NSMethodSignature+TCFUnwrapValues.h
index 4d97bd7..75a1b13 100644
--- a/Pods/Typhoon/Source/Factory/Internal/NSMethodSignature+TCFUnwrapValues.h
+++ b/Pods/Typhoon/Source/Factory/Internal/NSMethodSignature+TCFUnwrapValues.h
@@ -1,10 +1,13 @@
+////////////////////////////////////////////////////////////////////////////////
//
-// NSMethodSignature+TCFUnwrapValues.h
-// A-Typhoon
+// TYPHOON FRAMEWORK
+// Copyright 2013, Typhoon Framework Contributors
+// All Rights Reserved.
//
-// Created by Aleksey Garbarev on 23.03.14.
-// Copyright (c) 2014 Jasper Blues. All rights reserved.
+// NOTICE: The authors permit you to use, modify, and distribute this file
+// in accordance with the terms of the license agreement accompanying it.
//
+////////////////////////////////////////////////////////////////////////////////
#import
diff --git a/Pods/Typhoon/Source/Factory/Internal/NSMethodSignature+TCFUnwrapValues.m b/Pods/Typhoon/Source/Factory/Internal/NSMethodSignature+TCFUnwrapValues.m
index 95edf27..f88faa2 100644
--- a/Pods/Typhoon/Source/Factory/Internal/NSMethodSignature+TCFUnwrapValues.m
+++ b/Pods/Typhoon/Source/Factory/Internal/NSMethodSignature+TCFUnwrapValues.m
@@ -1,10 +1,14 @@
+////////////////////////////////////////////////////////////////////////////////
//
-// NSMethodSignature+TCFUnwrapValues.m
-// A-Typhoon
+// TYPHOON FRAMEWORK
+// Copyright 2013, Typhoon Framework Contributors
+// All Rights Reserved.
//
-// Created by Aleksey Garbarev on 23.03.14.
-// Copyright (c) 2014 Jasper Blues. All rights reserved.
+// NOTICE: The authors permit you to use, modify, and distribute this file
+// in accordance with the terms of the license agreement accompanying it.
//
+////////////////////////////////////////////////////////////////////////////////
+
#import "NSMethodSignature+TCFUnwrapValues.h"
#import "TyphoonUtils.h"
diff --git a/Pods/Typhoon/Source/Factory/Internal/NSValue+TCFUnwrapValues.h b/Pods/Typhoon/Source/Factory/Internal/NSValue+TCFUnwrapValues.h
index f757cca..e20e65a 100644
--- a/Pods/Typhoon/Source/Factory/Internal/NSValue+TCFUnwrapValues.h
+++ b/Pods/Typhoon/Source/Factory/Internal/NSValue+TCFUnwrapValues.h
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////////////////////////
//
// TYPHOON FRAMEWORK
-// Copyright 2013, Jasper Blues & Contributors
+// Copyright 2013, Typhoon Framework Contributors
// All Rights Reserved.
//
// NOTICE: The authors permit you to use, modify, and distribute this file
diff --git a/Pods/Typhoon/Source/Factory/Internal/NSValue+TCFUnwrapValues.m b/Pods/Typhoon/Source/Factory/Internal/NSValue+TCFUnwrapValues.m
index ff7881b..52cba91 100644
--- a/Pods/Typhoon/Source/Factory/Internal/NSValue+TCFUnwrapValues.m
+++ b/Pods/Typhoon/Source/Factory/Internal/NSValue+TCFUnwrapValues.m
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////////////////////////
//
// TYPHOON FRAMEWORK
-// Copyright 2013, Jasper Blues & Contributors
+// Copyright 2013, Typhoon Framework Contributors
// All Rights Reserved.
//
// NOTICE: The authors permit you to use, modify, and distribute this file
diff --git a/Pods/Typhoon/Source/Factory/Internal/TyphoonCallStack.h b/Pods/Typhoon/Source/Factory/Internal/TyphoonCallStack.h
index 3164487..a211067 100644
--- a/Pods/Typhoon/Source/Factory/Internal/TyphoonCallStack.h
+++ b/Pods/Typhoon/Source/Factory/Internal/TyphoonCallStack.h
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////////////////////////
//
// TYPHOON FRAMEWORK
-// Copyright 2013, Jasper Blues & Contributors
+// Copyright 2013, Typhoon Framework Contributors
// All Rights Reserved.
//
// NOTICE: The authors permit you to use, modify, and distribute this file
diff --git a/Pods/Typhoon/Source/Factory/Internal/TyphoonCallStack.m b/Pods/Typhoon/Source/Factory/Internal/TyphoonCallStack.m
index 8539dd9..2ce97b1 100644
--- a/Pods/Typhoon/Source/Factory/Internal/TyphoonCallStack.m
+++ b/Pods/Typhoon/Source/Factory/Internal/TyphoonCallStack.m
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////////////////////////
//
// TYPHOON FRAMEWORK
-// Copyright 2013, Jasper Blues & Contributors
+// Copyright 2013, Typhoon Framework Contributors
// All Rights Reserved.
//
// NOTICE: The authors permit you to use, modify, and distribute this file
@@ -46,16 +46,18 @@ - (id)init
- (void)push:(TyphoonStackElement *)stackItem
{
+#if DEBUG
if (![stackItem isKindOfClass:[TyphoonStackElement class]]) {
[NSException raise:NSInvalidArgumentException format:@"Not a TyphoonStackItem: %@", stackItem];
}
+#endif
[_storage addObject:stackItem];
}
- (TyphoonStackElement *)pop
{
id element = [_storage lastObject];
- if ([self isEmpty] == NO) {
+ if (![self isEmpty]) {
[_storage removeLastObject];
}
return element;
diff --git a/Pods/Typhoon/Source/Factory/Internal/TyphoonComponentFactory+InstanceBuilder.h b/Pods/Typhoon/Source/Factory/Internal/TyphoonComponentFactory+InstanceBuilder.h
index 281e2c2..501b793 100644
--- a/Pods/Typhoon/Source/Factory/Internal/TyphoonComponentFactory+InstanceBuilder.h
+++ b/Pods/Typhoon/Source/Factory/Internal/TyphoonComponentFactory+InstanceBuilder.h
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////////////////////////
//
// TYPHOON FRAMEWORK
-// Copyright 2013, Jasper Blues & Contributors
+// Copyright 2013, Typhoon Framework Contributors
// All Rights Reserved.
//
// NOTICE: The authors permit you to use, modify, and distribute this file
diff --git a/Pods/Typhoon/Source/Factory/Internal/TyphoonComponentFactory+InstanceBuilder.m b/Pods/Typhoon/Source/Factory/Internal/TyphoonComponentFactory+InstanceBuilder.m
index e885fa5..a665f12 100644
--- a/Pods/Typhoon/Source/Factory/Internal/TyphoonComponentFactory+InstanceBuilder.m
+++ b/Pods/Typhoon/Source/Factory/Internal/TyphoonComponentFactory+InstanceBuilder.m
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////////////////////////
//
// TYPHOON FRAMEWORK
-// Copyright 2013, Jasper Blues & Contributors
+// Copyright 2013, Typhoon Framework Contributors
// All Rights Reserved.
//
// NOTICE: The authors permit you to use, modify, and distribute this file
@@ -10,29 +10,22 @@
////////////////////////////////////////////////////////////////////////////////
+#import
+#import
#import "TyphoonLinkerCategoryBugFix.h"
+#import "TyphoonInjectionContext.h"
+#import "TyphoonDefinition+InstanceBuilder.h"
TYPHOON_LINK_CATEGORY(TyphoonComponentFactory_InstanceBuilder)
-#import "TyphoonDefinition+Infrastructure.h"
-#import "TyphoonComponentFactory+InstanceBuilder.h"
-#import "TyphoonDefinition.h"
-#import "TyphoonDefinition+InstanceBuilder.h"
#import "TyphoonCallStack.h"
-#import "TyphoonTypeDescriptor.h"
-#import "NSObject+FactoryHooks.h"
#import "TyphoonMethod+InstanceBuilder.h"
-#import "TyphoonIntrospectionUtils.h"
-#import "OCLogTemplate.h"
-#import "TyphoonComponentPostProcessor.h"
#import "TyphoonStackElement.h"
#import "NSObject+PropertyInjection.h"
#import "NSInvocation+TCFInstanceBuilder.h"
-#import "TyphoonInjectionContext.h"
#import "TyphoonPropertyInjection.h"
#import "NSObject+TyphoonIntrospectionUtils.h"
#import "TyphoonFactoryAutoInjectionPostProcessor.h"
-#import "TyphoonFactoryDefinition.h"
@implementation TyphoonComponentFactory (InstanceBuilder)
@@ -60,54 +53,31 @@ - (id)buildInstanceWithDefinition:(TyphoonDefinition *)definition args:(TyphoonR
- (id)initializeInstanceWithDefinition:(TyphoonDefinition *)definition args:(TyphoonRuntimeArguments *)args
{
- id instance = [definition targetForInitializerWithFactory:self args:args];
+ __block id instance = [definition targetForInitializerWithFactory:self args:args];
if (definition.initializer) {
- instance = [self resultOfInvocationInitializer:definition.initializer on:instance withArgs:args];
- }
- return instance;
-}
+ BOOL isClass = IsClass(instance);
-- (id)resultOfInvocationInitializer:(TyphoonMethod *)initializer on:(id)instanceOrClass withArgs:(TyphoonRuntimeArguments *)args
-{
- id result;
-
- BOOL isClass = IsClass(instanceOrClass);
- Class instanceClass = isClass ? (Class) instanceOrClass : [instanceOrClass class];
-
- NSInvocation *invocation = [self invocationToInit:instanceClass with:initializer args:args];
+ TyphoonInjectionContext *context = [[TyphoonInjectionContext alloc] initWithFactory:self args:args raiseExceptionIfCircular:YES];
+ context.classUnderConstruction = isClass ? (Class)instance : [instance class];;
- BOOL isClassMethod = [initializer isClassMethodOnClass:instanceClass];
+ [definition.initializer createInvocationWithContext:context completion:^(NSInvocation *invocation) {
+ if (isClass && ![definition.initializer isClassMethodOnClass:context.classUnderConstruction]) {
+ instance = [invocation typhoon_resultOfInvokingOnAllocationForClass:context.classUnderConstruction];
+ }
+ else {
+ instance = [invocation typhoon_resultOfInvokingOnInstance:instance];
+ }
+ }];
- if (isClass && !isClassMethod) {
- result = [invocation typhoon_resultOfInvokingOnAllocationForClass:instanceClass];
}
- else {
- result = [invocation typhoon_resultOfInvokingOnInstance:instanceOrClass];
- }
-
- return result;
-}
-
-- (NSInvocation *)invocationToInit:(Class)clazz with:(TyphoonMethod *)method args:(TyphoonRuntimeArguments *)args
-{
- TyphoonInjectionContext *context = [TyphoonInjectionContext new];
- context.factory = self;
- context.args = args;
- context.raiseExceptionIfCircular = YES;
- context.destinationInstanceClass = clazz;
-
- __block NSInvocation *result;
- [method createInvocationOnClass:clazz withContext:context completion:^(NSInvocation *invocation) {
- result = invocation;
- }];
- return result;
+ return instance;
}
- (id)postProcessInstance:(id)instance
{
- if (![instance conformsToProtocol:@protocol(TyphoonComponentPostProcessor)]) {
- for (id postProcessor in _componentPostProcessors) {
- instance = [postProcessor postProcessComponent:instance];
+ if (![instance conformsToProtocol:@protocol(TyphoonInstancePostProcessor)]) {
+ for (id postProcessor in _componentPostProcessors) {
+ instance = [postProcessor postProcessInstance:instance];
}
}
return instance;
@@ -116,7 +86,7 @@ - (id)postProcessInstance:(id)instance
- (void)injectAssemblyOnInstanceIfTyphoonAware:(id)instance
{
if ([instance respondsToSelector:@selector(typhoonSetFactory:)]) {
- [(NSObject *) instance typhoonSetFactory:self];
+ [(NSObject *)instance typhoonSetFactory:self];
}
}
@@ -133,7 +103,8 @@ - (void)registerInstance:(id)instance asSingletonForDefinition:(TyphoonDefinitio
{
if (definition.scope == TyphoonScopeSingleton || definition.scope == TyphoonScopeLazySingleton) {
[_singletons setObject:instance forKey:definition.key];
- } else if (definition.scope == TyphoonScopeWeakSingleton) {
+ }
+ else if (definition.scope == TyphoonScopeWeakSingleton) {
[_weakSingletons setObject:instance forKey:definition.key];
}
}
@@ -146,7 +117,7 @@ - (void)doInjectionEventsOn:(id)instance withDefinition:(TyphoonDefinition *)def
{
[self doBeforeInjectionsOn:instance withDefinition:definition args:args];
- for (id property in [definition injectedProperties]) {
+ for (id property in [definition injectedProperties]) {
[self doPropertyInjectionOn:instance property:property args:args];
}
@@ -189,13 +160,10 @@ - (void)doAfterInjectionsOn:(id)instance withDefinition:(TyphoonDefinition *)def
- (void)doMethodInjection:(TyphoonMethod *)method onInstance:(id)instance args:(TyphoonRuntimeArguments *)args
{
- TyphoonInjectionContext *context = [TyphoonInjectionContext new];
- context.destinationInstanceClass = [instance class];
- context.factory = self;
- context.args = args;
- context.raiseExceptionIfCircular = NO;
+ TyphoonInjectionContext *context = [[TyphoonInjectionContext alloc] initWithFactory:self args:args raiseExceptionIfCircular:NO];
+ context.classUnderConstruction = [instance class];
- [method createInvocationOnClass:[instance class] withContext:context completion:^(NSInvocation *invocation) {
+ [method createInvocationWithContext:context completion:^(NSInvocation *invocation) {
[invocation invokeWithTarget:instance];
}];
}
@@ -204,14 +172,11 @@ - (void)doMethodInjection:(TyphoonMethod *)method onInstance:(id)instance args:(
#pragma mark - Property Injection
//-------------------------------------------------------------------------------------------
-- (void)doPropertyInjectionOn:(id)instance property:(id )property args:(TyphoonRuntimeArguments *)args
+- (void)doPropertyInjectionOn:(id)instance property:(id)property args:(TyphoonRuntimeArguments *)args
{
- TyphoonInjectionContext *context = [TyphoonInjectionContext new];
+ TyphoonInjectionContext *context = [[TyphoonInjectionContext alloc] initWithFactory:self args:args raiseExceptionIfCircular:NO];
context.destinationType = [instance typhoon_typeForPropertyWithName:property.propertyName];
- context.destinationInstanceClass = [instance class];
- context.factory = self;
- context.args = args;
- context.raiseExceptionIfCircular = NO;
+ context.classUnderConstruction = [instance class];
[property valueToInjectWithContext:context completion:^(id value) {
[instance typhoon_injectValue:value forPropertyName:property.propertyName];
@@ -222,8 +187,7 @@ - (void)doPropertyInjectionOn:(id)instance property:(id 1) {
@@ -313,7 +279,7 @@ - (TyphoonDefinition *)autoInjectionDefinitionForClass:(Class)clazz
- (TyphoonFactoryAutoInjectionPostProcessor *)autoInjectionPostProcessor
{
TyphoonFactoryAutoInjectionPostProcessor *postProcessor = nil;
- for (id item in _factoryPostProcessors) {
+ for (id