Skip to content

Commit

Permalink
change repo name
Browse files Browse the repository at this point in the history
  • Loading branch information
zoonooz committed Apr 7, 2016
1 parent 50d717d commit e10015c
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<p align="center"><img src="https://raw.githubusercontent.com/zoonooz/Transit/master/Transit.jpg"/></p>
<p align="center"><img src="https://raw.githubusercontent.com/zoonooz/TransitKit/master/TransitKit.jpg"/></p>

# 🚃 Transit
# 🚃 TransitKit
[![Carthage compatible](https://img.shields.io/badge/Carthage-compatible-4BC51D.svg?style=flat)](https://github.com/Carthage/Carthage)


**Transit** is the library provide you an easiest way to customize the animation when you change from one ViewController to another. You can think of this library as transit system, travel from one station to other station with trains in various lines.
**TransitKit** is the library provide you an easiest way to customize the animation when you change from one ViewController to another. You can think of this library as transit system, travel from one station to other station with trains in various lines.

Besides custom transition, Transit also helps you move subviews to the next ViewController with your custom animation.

Expand Down Expand Up @@ -41,7 +41,7 @@ Line is the most important part here to create the animation. There are three Li

AnimationLine | ProgressLine | InteractionLine
---| --- | ---
![](https://raw.githubusercontent.com/zoonooz/Transit/master/line_animation.gif) | ![](https://raw.githubusercontent.com/zoonooz/Transit/master/line_progress.gif) | ![](https://raw.githubusercontent.com/zoonooz/Transit/master/line_interaction.gif)
![](https://raw.githubusercontent.com/zoonooz/TransitKit/master/line_animation.gif) | ![](https://raw.githubusercontent.com/zoonooz/TransitKit/master/line_progress.gif) | ![](https://raw.githubusercontent.com/zoonooz/TransitKit/master/line_interaction.gif)

## How to use
#### 1. Implement Line protocol
Expand Down Expand Up @@ -79,7 +79,7 @@ and Transit will call these functions in your implementation
- `func interactPassengerFinish(view:toFrame:duration:)`
- `func interactPassengerCancel(view:toFrame:duration:)`

See [this](https://github.com/zoonooz/Transit/tree/master/Example/Lines) for example of implementation
See [this](https://github.com/zoonooz/TransitKit/tree/master/Example/Lines) for example of implementation

#### 2. Travel!

Expand All @@ -104,7 +104,7 @@ travelBy(SlideInZoomOutAnimation(), to: vc!)
## Installation
#### Carthage
```
github "zoonooz/Transit"
github "zoonooz/TransitKit"
```
## Author
Amornchai Kanokpullwad, [@zoonref](https://twitter.com/zoonref)
File renamed without changes
8 changes: 4 additions & 4 deletions Transit.podspec → TransitKit.podspec
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
Pod::Spec.new do |s|
s.name = "Transit"
s.name = "TransitKit"
s.version = "0.0.1"
s.summary = "easy custom ios transition"
s.description = <<-DESC
Transit is the library provide you an easiest way to customize the animation when you change from one ViewController to another.
You can think of this library as transit system, travel from one station to other station with trains in various lines.
DESC
s.homepage = "https://github.com/zoonooz/Transit"
s.screenshots = "https://raw.githubusercontent.com/zoonooz/Transit/master/line_animation.gif"
s.homepage = "https://github.com/zoonooz/TransitKit"
s.screenshots = "https://raw.githubusercontent.com/zoonooz/TransitKit/master/line_animation.gif"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Amornchai Kanokpullwad" => "[email protected]" }
s.social_media_url = "http://twitter.com/zoonref"
s.platform = :ios, "8.0"
s.source = { :git => "https://github.com/zoonooz/Transit.git", :tag => "0.0.1" }
s.source = { :git => "https://github.com/zoonooz/TransitKit.git", :tag => "0.0.1" }
s.source_files = "Source"
end

0 comments on commit e10015c

Please sign in to comment.