mirror of
https://github.com/zhigang1992/RestKit.git
synced 2026-04-01 09:31:17 +08:00
* Replaces primary key with `RKEntityIdentifier` * Add support for use of compound keys for object identification * Refactor `RKConnectionMapping` to `RKConnectionDescription` and add support for connecting with multiple attributes * Clarify naming of representation key methods to better match naming conventions * Add type transformation support for object identification * Greatly expand test coverage for object identification * Drop the `NSEntityDescription` category * Simplify the `RKManagedObjectCaching` protocol * Add compound key support to the Fetch Request and In Memory Cache implementations * Replace Kiwi with Specta for tests where contexts are helpful for organization * Rename `defaultValueForMissingAttribute` to `defaultValueForAttribute`
9 lines
346 B
Ruby
9 lines
346 B
Ruby
platform :ios, '5.0'
|
|
link_with ['RestKitTests', 'RestKitFrameworkTests']
|
|
inhibit_all_warnings!
|
|
|
|
pod 'Specta', '0.1.6'
|
|
pod 'OCMock', '2.0.1.classmocks', :git => 'git@github.com:blakewatters/ocmock.git'
|
|
pod 'OCHamcrest', '1.9'
|
|
pod 'Expecta', '0.2.0', :git => 'git@github.com:blakewatters/expecta.git', :branch => 'feature/expect-raise-with-reason'
|