Skip to content
This repository has been archived by the owner on Nov 21, 2017. It is now read-only.

Commit

Permalink
Update Podfile dependencies.
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeff Verkoeyen committed Aug 5, 2016
1 parent 101a41a commit b4a3012
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions Podfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PODS:
- MaterialMotionCoreAnimationFamily (1.0.0):
- MaterialMotionRuntime
- MaterialMotionRuntime (1.0.0)
- MaterialMotionRuntime (2.0.1)

DEPENDENCIES:
- MaterialMotionCoreAnimationFamily (from `./`)
Expand All @@ -16,12 +16,12 @@ EXTERNAL SOURCES:

CHECKOUT OPTIONS:
MaterialMotionRuntime:
:commit: c02df1600b820b14a4f1faf9a5941c14a05adf4f
:commit: 2a43053b22493659cec64c2a49d5d52212ab484f
:git: [email protected]:material-motion/material-motion-runtime-objc.git

SPEC CHECKSUMS:
MaterialMotionCoreAnimationFamily: 363b6b0343e46950478ab5487a38445cf966de57
MaterialMotionRuntime: c1baf57914298b91634d2089d09341e6cd9f65a1
MaterialMotionRuntime: 142f75ce2cf2682458aa9631541b8644b653ef34

PODFILE CHECKSUM: 8826d7b38972cc6eee2699702b8c1c5cc4ad1c21

Expand Down
2 changes: 1 addition & 1 deletion examples/apps/Catalog/Catalog/AppDelegate.swift
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class AppDelegate: UIResponder, UIApplicationDelegate {
var window: UIWindow?

func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool {
let window = UIWindow(frame: UIScreen.main().bounds)
let window = UIWindow(frame: UIScreen.main.bounds)
self.window = window
window.rootViewController = UINavigationController(rootViewController: UIViewController())
window.makeKeyAndVisible()
Expand Down
2 changes: 1 addition & 1 deletion src/CoreAnimationMotionFamily.swift
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ extension CAAnimation: Plan {
CATransaction.commit()
}

func setDelegatedPerformanceWillStart(_ willStart: DelegatedPerformanceTokenReturnBlock, didEnd: DelegatedPerformanceTokenArgBlock) {
func setDelegatedPerformance(willStart: DelegatedPerformanceTokenReturnBlock, didEnd: DelegatedPerformanceTokenArgBlock) {
self.willStart = willStart
self.didEnd = didEnd
}
Expand Down
4 changes: 2 additions & 2 deletions tests/unit/CoreAnimationTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class CoreAnimationTests: XCTestCase {
transaction.add(plan: animation, to: view)

let scheduler = Scheduler()
scheduler.commit(transaction)
scheduler.commit(transaction: transaction)

let delegate = TestableSchedulerDelegate()
delegate.didIdleExpectation = expectation(description: "Did idle")
Expand All @@ -55,7 +55,7 @@ class CoreAnimationTests: XCTestCase {
transaction.add(plan: animation, to: view.layer)

let scheduler = Scheduler()
scheduler.commit(transaction)
scheduler.commit(transaction: transaction)

let delegate = TestableSchedulerDelegate()
delegate.didIdleExpectation = expectation(description: "Did idle")
Expand Down

0 comments on commit b4a3012

Please sign in to comment.