Skip to content
This repository has been archived by the owner on Aug 30, 2023. It is now read-only.

Commit

Permalink
Rename the library to MaterialMotionTransitioning.
Browse files Browse the repository at this point in the history
  • Loading branch information
jverkoey committed Jul 17, 2017
1 parent f643cd5 commit ce3e250
Show file tree
Hide file tree
Showing 9 changed files with 23 additions and 23 deletions.
@@ -1,5 +1,5 @@
Pod::Spec.new do |s|
s.name = "Transitioning"
s.name = "MaterialMotionTransitioning"
s.summary = "Light-weight API for building UIViewController transitions."
s.version = "1.1.1"
s.authors = "The Material Motion Authors"
Expand Down
8 changes: 4 additions & 4 deletions Podfile
@@ -1,15 +1,15 @@
workspace 'Transitioning.xcworkspace'
workspace 'MaterialMotionTransitioning.xcworkspace'
use_frameworks!

target "TransitionsCatalog" do
pod 'CatalogByConvention'
pod 'Transitioning', :path => './'
pod 'MaterialMotionTransitioning', :path => './'

project 'examples/apps/Catalog/TransitionsCatalog.xcodeproj'
end

target "UnitTests" do
pod 'Transitioning', :path => './'
pod 'MaterialMotionTransitioning', :path => './'

project 'examples/apps/Catalog/TransitionsCatalog.xcodeproj'
end
Expand All @@ -18,7 +18,7 @@ post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |configuration|
configuration.build_settings['SWIFT_VERSION'] = "3.0"
if target.name.start_with?("Transitioning")
if target.name.start_with?("MaterialMotion")
configuration.build_settings['WARNING_CFLAGS'] ="$(inherited) -Wall -Wcast-align -Wconversion -Werror -Wextra -Wimplicit-atomic-properties -Wmissing-prototypes -Wno-sign-conversion -Wno-unused-parameter -Woverlength-strings -Wshadow -Wstrict-selector-match -Wundeclared-selector -Wunreachable-code"
end
end
Expand Down
10 changes: 5 additions & 5 deletions Podfile.lock
@@ -1,19 +1,19 @@
PODS:
- CatalogByConvention (2.1.1)
- Transitioning (1.1.1)
- MaterialMotionTransitioning (1.1.1)

DEPENDENCIES:
- CatalogByConvention
- Transitioning (from `./`)
- MaterialMotionTransitioning (from `./`)

EXTERNAL SOURCES:
Transitioning:
MaterialMotionTransitioning:
:path: "./"

SPEC CHECKSUMS:
CatalogByConvention: c3a5319de04250a7cd4649127fcfca5fe3322a43
Transitioning: ea1a8225812799c7ff07630af17008ab5e306bf3
MaterialMotionTransitioning: 461f119955d874d31babb8331b4eea151504fd7e

PODFILE CHECKSUM: 1949e62e9d70d554783c0bb931d6b52780775cfb
PODFILE CHECKSUM: a339d385d38b29a0052f32984921c8567d0c57e5

COCOAPODS: 1.2.1
18 changes: 9 additions & 9 deletions README.md
@@ -1,12 +1,12 @@
# Transitioning
# Material Motion Transitioning

> Light-weight API for building UIViewController transitions.
[![Build Status](https://travis-ci.org/material-motion/transitioning-objc.svg?branch=develop)](https://travis-ci.org/material-motion/transitioning-objc)
[![codecov](https://codecov.io/gh/material-motion/transitioning-objc/branch/develop/graph/badge.svg)](https://codecov.io/gh/material-motion/transitioning-objc)
[![CocoaPods Compatible](https://img.shields.io/cocoapods/v/Transitioning.svg)](https://cocoapods.org/pods/Transitioning)
[![Platform](https://img.shields.io/cocoapods/p/Transitioning.svg)](http://cocoadocs.org/docsets/Transitioning)
[![Docs](https://img.shields.io/cocoapods/metrics/doc-percent/Transitioning.svg)](http://cocoadocs.org/docsets/Transitioning)
[![CocoaPods Compatible](https://img.shields.io/cocoapods/v/MaterialMotionTransitioning.svg)](https://cocoapods.org/pods/MaterialMotionTransitioning)
[![Platform](https://img.shields.io/cocoapods/p/MaterialMotionTransitioning.svg)](http://cocoadocs.org/docsets/MaterialMotionTransitioning)
[![Docs](https://img.shields.io/cocoapods/metrics/doc-percent/MaterialMotionTransitioning.svg)](http://cocoadocs.org/docsets/MaterialMotionTransitioning)

This library standardizes the way transitions are built on iOS so that with a single line of code
you can pick the custom transition you want to use:
Expand Down Expand Up @@ -73,9 +73,9 @@ final class CustomTransition: NSObject, Transition {
>
> gem install cocoapods
Add `Transitioning` to your `Podfile`:
Add `MaterialMotionTransitioning` to your `Podfile`:
pod 'Transitioning'
pod 'MaterialMotionTransitioning'
Then run the following command:
Expand All @@ -85,7 +85,7 @@ Then run the following command:
Import the framework:
@import Transitioning;
@import MaterialMotionTransitioning;
You will now have access to all of the APIs.
Expand All @@ -97,7 +97,7 @@ commands:
git clone https://github.com/material-motion/transitioning-objc.git
cd transitioning-objc
pod install
open Transitioning.xcworkspace
open MaterialMotionTransitioning.xcworkspace
## Guides
Expand All @@ -112,7 +112,7 @@ commands:
> animation, interaction, and presentation controller. These controllers are then expected to
> implement the transition's motion.
Transitioning provides a thin layer atop these protocols with the following advantages:
MaterialMotionTransitioning provides a thin layer atop these protocols with the following advantages:
- Every view controller has its own **transition controller**. This encourages choosing the
transition based on the context.
Expand Down
2 changes: 1 addition & 1 deletion examples/CustomPresentationExample.swift
Expand Up @@ -15,7 +15,7 @@
*/

import UIKit
import Transitioning
import MaterialMotionTransitioning

// This example demonstrates how to make use of presentation controllers to build a flexible modal
// transition that supports presenting view controllers at aribtrary frames on the screen.
Expand Down
2 changes: 1 addition & 1 deletion examples/FadeExample.swift
Expand Up @@ -15,7 +15,7 @@
*/

import UIKit
import Transitioning
import MaterialMotionTransitioning

// This example demonstrates the minimal path to building a custom transition using the Material
// Motion Transitioning APIs in Swift. The essential steps have been documented below.
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion tests/unit/TransitionTests.swift
Expand Up @@ -15,7 +15,7 @@
*/

import XCTest
import Transitioning
import MaterialMotionTransitioning

class TransitionTests: XCTestCase {

Expand Down
2 changes: 1 addition & 1 deletion tests/unit/TransitionWithPresentationTests.swift
Expand Up @@ -15,7 +15,7 @@
*/

import XCTest
import Transitioning
import MaterialMotionTransitioning

class TransitionWithPresentationTests: XCTestCase {

Expand Down

0 comments on commit ce3e250

Please sign in to comment.