Skip to content
This repository was archived by the owner on Aug 13, 2021. It is now read-only.

Commit 49af8d6

Browse files
author
Jeff Verkoeyen
committed
Rename the library to ReactiveMotion.
Reviewers: O2 Material Motion, O4 Material Apple platform reviewers, #material_motion, chuga Reviewed By: O4 Material Apple platform reviewers, chuga Subscribers: chuga Tags: #material_motion Differential Revision: http://codereview.cc/D2845
1 parent 3ba0376 commit 49af8d6

29 files changed

+40
-40
lines changed

.arcconfig

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@
1414
"arc.feature.start.default": "origin/develop",
1515
"unit.xcode": {
1616
"build": {
17-
"workspace": "MaterialMotionStreams.xcworkspace",
17+
"workspace": "ReactiveMotion.xcworkspace",
1818
"scheme": "UnitTests",
1919
"configuration": "Debug",
2020
"destination": "platform=iOS Simulator,name=iPhone 6s"
2121
},
2222
"coverage": {
23-
"product": "MaterialMotionStreams.framework/MaterialMotionStreams"
23+
"product": "ReactiveMotion.framework/ReactiveMotion"
2424
},
2525
"pre-build": "pod install"
2626
}

Podfile

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
1-
workspace 'MaterialMotionStreams.xcworkspace'
1+
workspace 'ReactiveMotion.xcworkspace'
22
use_frameworks!
33

44
target "Catalog" do
55
pod 'CatalogByConvention'
6-
pod 'MaterialMotionStreams', :path => './'
6+
pod 'ReactiveMotion', :path => './'
77

88
project 'examples/apps/Catalog/Catalog.xcodeproj'
99
end
1010

1111
target "UnitTests" do
12-
pod 'MaterialMotionStreams', :path => './'
12+
pod 'ReactiveMotion', :path => './'
1313

1414
project 'examples/apps/Catalog/Catalog.xcodeproj'
1515
end

Podfile.lock

+6-6
Original file line numberDiff line numberDiff line change
@@ -3,25 +3,25 @@ PODS:
33
- IndefiniteObservable (3.1.0):
44
- IndefiniteObservable/lib (= 3.1.0)
55
- IndefiniteObservable/lib (3.1.0)
6-
- MaterialMotionStreams (1.0.0):
6+
- pop (1.0.9)
7+
- ReactiveMotion (1.0.0):
78
- IndefiniteObservable (~> 3.0)
89
- pop
9-
- pop (1.0.9)
1010

1111
DEPENDENCIES:
1212
- CatalogByConvention
13-
- MaterialMotionStreams (from `./`)
13+
- ReactiveMotion (from `./`)
1414

1515
EXTERNAL SOURCES:
16-
MaterialMotionStreams:
16+
ReactiveMotion:
1717
:path: "./"
1818

1919
SPEC CHECKSUMS:
2020
CatalogByConvention: be55c2263132e4f9f59299ac8a528ee8715b3275
2121
IndefiniteObservable: 2789d61f487d8d37fa2b9c3153cc44d4447ff744
22-
MaterialMotionStreams: 4853105d4a03dbd08af4a1a2a3379b6e3d2d4ab5
2322
pop: f667631a5108a2e60d9e8797c9b32ddaf2080bce
23+
ReactiveMotion: 9dd34c7c297f308fd09cf4ad6df4ab9924b372fe
2424

25-
PODFILE CHECKSUM: 43a37b1a7504afcf78a6d5c290a4d023c3cd60ca
25+
PODFILE CHECKSUM: 3351385be5c3c7626c357a5568b15c5faa6997ab
2626

2727
COCOAPODS: 1.2.0

MaterialMotionStreams.podspec renamed to ReactiveMotion.podspec

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
Pod::Spec.new do |s|
2-
s.name = "MaterialMotionStreams"
3-
s.summary = "Material Motion streams for Apple devices"
2+
s.name = "ReactiveMotion"
3+
s.summary = "Reactive motion for Apple devices"
44
s.version = "1.0.0"
55
s.authors = "The Material Motion Authors"
66
s.license = "Apache 2.0"
7-
s.homepage = "https://github.com/material-motion/streams-swift"
8-
s.source = { :git => "https://github.com/material-motion/streams-swift.git", :tag => "v" + s.version.to_s }
7+
s.homepage = "https://github.com/material-motion/reactive-motion-swift"
8+
s.source = { :git => "https://github.com/material-motion/reactive-motion-swift.git", :tag => "v" + s.version.to_s }
99
s.platform = :ios, "8.0"
1010
s.requires_arc = true
1111

examples/ArcMoveExample.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
*/
1616

1717
import UIKit
18-
import MaterialMotionStreams
18+
import ReactiveMotion
1919

2020
public class ArcMoveExampleViewController: UIViewController {
2121

examples/CarouselExample.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
*/
1616

1717
import UIKit
18-
import MaterialMotionStreams
18+
import ReactiveMotion
1919

2020
public class CarouselExampleViewController: UIViewController, UIScrollViewDelegate {
2121

examples/ContextualTransitionExample.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
*/
1616

1717
import UIKit
18-
import MaterialMotionStreams
18+
import ReactiveMotion
1919

2020
let numberOfImageAssets = 10
2121
let numberOfPhotosInAlbum = 30

examples/DirectlyManipulableExample.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
*/
1616

1717
import UIKit
18-
import MaterialMotionStreams
18+
import ReactiveMotion
1919

2020
public class DirectlyManipulableExampleViewController: UIViewController {
2121

examples/DragSourceExample.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
*/
1616

1717
import UIKit
18-
import MaterialMotionStreams
18+
import ReactiveMotion
1919

2020
@available(iOS 9.0, *)
2121
public class DragSourceExampleViewController: UIViewController {

examples/DraggableConstraintExample.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
*/
1616

1717
import UIKit
18-
import MaterialMotionStreams
18+
import ReactiveMotion
1919

2020
public class DraggableConstraintExampleViewController: UIViewController {
2121

examples/DraggableExample.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
*/
1616

1717
import UIKit
18-
import MaterialMotionStreams
18+
import ReactiveMotion
1919

2020
public class DraggableExampleViewController: UIViewController {
2121

examples/DraggableReactiveConstraintExample.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
*/
1616

1717
import UIKit
18-
import MaterialMotionStreams
18+
import ReactiveMotion
1919

2020
public class DraggableReactiveConstraintExampleViewController: UIViewController {
2121

examples/FabTransitionExample.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
*/
1616

1717
import UIKit
18-
import MaterialMotionStreams
18+
import ReactiveMotion
1919

2020
@available(iOS 9.0, *)
2121
public class FabTransitionExampleViewController: UIViewController, TransitionContextViewRetriever {

examples/InteractivePushBackTransitionExample.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
*/
1616

1717
import UIKit
18-
import MaterialMotionStreams
18+
import ReactiveMotion
1919

2020
@available(iOS 9.0, *)
2121
public class InteractivePushBackTransitionExampleViewController: UIViewController {

examples/ModalDialogExample.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
*/
1616

1717
import UIKit
18-
import MaterialMotionStreams
18+
import ReactiveMotion
1919

2020
public class ModalDialogExampleViewController: UIViewController {
2121

examples/PushBackTransitionExample.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
*/
1616

1717
import UIKit
18-
import MaterialMotionStreams
18+
import ReactiveMotion
1919

2020
@available(iOS 9.0, *)
2121
public class PushBackTransitionExampleViewController: UIViewController {

examples/StickerPickerExample.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
*/
1616

1717
import Foundation
18-
import MaterialMotionStreams
18+
import ReactiveMotion
1919

2020
@available(iOS 9.0, *)
2121
public class StickerPickerExampleViewController: UIViewController, StickerListViewControllerDelegate {

examples/SwipeExample.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
*/
1616

1717
import UIKit
18-
import MaterialMotionStreams
18+
import ReactiveMotion
1919

2020
enum TossDirection {
2121
case none

examples/apps/Catalog/Catalog/TableOfContents.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
// MARK: Catalog by convention
1818

19-
import MaterialMotionStreams
19+
import ReactiveMotion
2020

2121
extension DraggableExampleViewController {
2222
class func catalogBreadcrumbs() -> [String] { return ["Draggable"] }

examples/supplemental/TimelineView.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
*/
1616

1717
import UIKit
18-
import MaterialMotionStreams
18+
import ReactiveMotion
1919

2020
public class TimelineView: UIView {
2121

src/debugging/Metadata.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ public class Metadata: CustomDebugStringConvertible {
117117
}
118118
}
119119

120-
return description.joined(separator: "\n").replacingOccurrences(of: "MaterialMotionStreams.", with: "")
120+
return description.joined(separator: "\n").replacingOccurrences(of: "ReactiveMotion.", with: "")
121121
}
122122
}
123123

tests/unit/MotionObservableTests.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
import XCTest
1818
import CoreGraphics
1919
import IndefiniteObservable
20-
import MaterialMotionStreams
20+
import ReactiveMotion
2121

2222
// These tests aren't functionally exhaustive because we're depending on IndefiniteObservable's
2323
// tests to be more comprehensive.

tests/unit/ReactivePropertyTests.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
*/
1616

1717
import XCTest
18-
@testable import MaterialMotionStreams
18+
@testable import ReactiveMotion
1919

2020
class ReactivePropertyTests: XCTestCase {
2121

tests/unit/operator/CGPointTests.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
import XCTest
1818
import CoreGraphics
1919
import IndefiniteObservable
20-
@testable import MaterialMotionStreams
20+
@testable import ReactiveMotion
2121

2222
class CGPointTests: XCTestCase {
2323

tests/unit/operator/_filterTests.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
import XCTest
1818
import CoreGraphics
1919
import IndefiniteObservable
20-
@testable import MaterialMotionStreams
20+
@testable import ReactiveMotion
2121

2222
class _filterTests: XCTestCase {
2323

tests/unit/operator/_mapTests.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
import XCTest
1818
import CoreGraphics
1919
import IndefiniteObservable
20-
@testable import MaterialMotionStreams
20+
@testable import ReactiveMotion
2121

2222
class _mapTests: XCTestCase {
2323

tests/unit/operator/_operatorTests.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
import XCTest
1818
import CoreGraphics
1919
import IndefiniteObservable
20-
@testable import MaterialMotionStreams
20+
@testable import ReactiveMotion
2121

2222
class _nextOperatorTests: XCTestCase {
2323

tests/unit/plans/Spring.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
import XCTest
1818
import CoreGraphics
19-
import MaterialMotionStreams
19+
import ReactiveMotion
2020

2121
class SpringTests: XCTestCase {
2222

tests/unit/properties/PropertyObservation.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
*/
1616

1717
import XCTest
18-
@testable import MaterialMotionStreams
18+
@testable import ReactiveMotion
1919

2020
class PropertyObservation: XCTestCase {
2121

0 commit comments

Comments
 (0)