Skip to content

Commit

Permalink
Ran yo mm-github.
Browse files Browse the repository at this point in the history
  • Loading branch information
jverkoey committed Oct 17, 2016
1 parent cdd9a6f commit c71e787
Show file tree
Hide file tree
Showing 4 changed files with 62 additions and 6 deletions.
2 changes: 1 addition & 1 deletion MaterialMotionTransitions.podspec
Expand Up @@ -5,7 +5,7 @@ Pod::Spec.new do |s|
s.authors = "The Material Motion Authors"
s.license = "Apache 2.0"
s.homepage = "https://github.com/material-motion/material-motion-transitions-objc"
s.source = { :path => "./" }
s.source = { :git => "https://github.com/material-motion/material-motion-transitions-objc.git", :tag => "v" + s.version.to_s }
s.platform = :ios, "8.0"
s.requires_arc = true

Expand Down
6 changes: 3 additions & 3 deletions Podfile
@@ -1,9 +1,9 @@
abstract_target 'MaterialMotionTransitions' do
pod 'MaterialMotionTransitions', :path => './'

pod 'MaterialMotionRuntime'
pod 'MaterialMotionCoreAnimationFamily'

pod 'MaterialMotionTransitions', :path => './'

workspace 'MaterialMotionTransitions.xcworkspace'
use_frameworks!

Expand All @@ -20,7 +20,7 @@ abstract_target 'MaterialMotionTransitions' do
target.build_configurations.each do |configuration|
configuration.build_settings['SWIFT_VERSION'] = "3.0"
if target.name.start_with?("Material")
configuration.build_settings['WARNING_CFLAGS'] ="$(inherited) -Wall -Wcast-align -Wconversion -Werror -Wextra -Wimplicit-atomic-properties -Wmissing-prototypes -Wno-error=deprecated -Wno-error=deprecated-implementations -Wno-sign-conversion -Wno-unused-parameter -Woverlength-strings -Wshadow -Wstrict-selector-match -Wundeclared-selector -Wunreachable-code"
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
end
Expand Down
4 changes: 2 additions & 2 deletions Podfile.lock
Expand Up @@ -17,8 +17,8 @@ EXTERNAL SOURCES:
SPEC CHECKSUMS:
MaterialMotionCoreAnimationFamily: e17b091eb7b9a77bc673695837260dac0d34a03b
MaterialMotionRuntime: 0542afcb0329e032f198d711941fc667f42cc0a2
MaterialMotionTransitions: 23bea5607154f355ae7c491815529e3223826356
MaterialMotionTransitions: 5b27f0fc9638b17e8de7c6702d2a6f7d7dfafbca

PODFILE CHECKSUM: 12fabd987c21d546b37d789baa99f4b57f9aff76
PODFILE CHECKSUM: 5f22ba6b04602e7f8fca613ec6756afe35b0fc18

COCOAPODS: 1.1.0.rc.3
56 changes: 56 additions & 0 deletions README.md
Expand Up @@ -3,6 +3,62 @@
[![Build Status](https://travis-ci.org/material-motion/material-motion-transitions-objc.svg?branch=develop)](https://travis-ci.org/material-motion/material-motion-transitions-objc)
[![codecov](https://codecov.io/gh/material-motion/material-motion-transitions-objc/branch/develop/graph/badge.svg)](https://codecov.io/gh/material-motion/material-motion-transitions-objc)

## Installation

### Installation with CocoaPods

> CocoaPods is a dependency manager for Objective-C and Swift libraries. CocoaPods automates the
> process of using third-party libraries in your projects. See
> [the Getting Started guide](https://guides.cocoapods.org/using/getting-started.html) for more
> information. You can install it with the following command:
>
> gem install cocoapods
Add `MaterialMotionTransitions` to your `Podfile`:

pod 'MaterialMotionTransitions'

Then run the following command:

pod install

### Usage

Import the framework:

@import MaterialMotionTransitions;

You will now have access to all of the APIs.

## Example apps/unit tests

Check out a local copy of the repo to access the Catalog application by running the following
commands:

git clone https://github.com/material-motion/material-motion-transitions-objc.git
cd material-motion-transitions-objc
pod install
open MaterialMotionTransitions.xcworkspace

## Guides

1. [Architecture](#architecture)
2. [How to ...](#how-to-...)

### Architecture

### How to ...

## Contributing

We welcome contributions!

Check out our [upcoming milestones](https://github.com/material-motion/material-motion-transitions-objc/milestones).

Learn more about [our team](https://material-motion.gitbooks.io/material-motion-team/content/),
[our community](https://material-motion.gitbooks.io/material-motion-team/content/community/), and
our [contributor essentials](https://material-motion.gitbooks.io/material-motion-team/content/essentials/).

## License

Licensed under the Apache 2.0 license. See LICENSE for details.

0 comments on commit c71e787

Please sign in to comment.