Skip to content

Commit e7c71cc

Browse files
Fixed minor markdown errors and updated the podspec
1 parent 33761d8 commit e7c71cc

File tree

2 files changed

+16
-16
lines changed

2 files changed

+16
-16
lines changed

README.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -27,17 +27,17 @@ The library currently contains the following animations, which can be made inter
2727

2828
## Contents
2929

30-
* [A brief introduction to custom transitions](#intro)
31-
* [Adding custom transitions to your project](#adding)
32-
* [Grabbing the code](#grabbing)
33-
* [Using an animation controller](#animation)
34-
* [Custom present / dismiss transitions](#animationPresent)
35-
* [Custom navigation controller transitions](#animationNavigation)
36-
* [Custom tab bar controller transitions](#animationTab)
37-
* [Using an interaction controller](#interaction)
38-
* [Interactive dismiss transitions](#interactionDismiss)
39-
* [Interactive pop transitions](#interactionPop)
40-
* [Transitions Library](#library)
30+
* [A brief introduction to custom transitions](#intro)
31+
* [Adding custom transitions to your project](#adding)
32+
* [Grabbing the code](#grabbing)
33+
* [Using an animation controller](#animation)
34+
* [Custom present / dismiss transitions](#animationPresent)
35+
* [Custom navigation controller transitions](#animationNavigation)
36+
* [Custom tab bar controller transitions](#animationTab)
37+
* [Using an interaction controller](#interaction)
38+
* [Interactive dismiss transitions](#interactionDismiss)
39+
* [Interactive pop transitions](#interactionPop)
40+
* [Transitions Library](#library)
4141

4242

4343
## <a id="intro"></a>A brief introduction to custom transitions
@@ -59,7 +59,7 @@ This sections gives a brief overview of the steps required to add custom view co
5959

6060
There are a couple of ways you can incorporate transitions from this library into your code:
6161

62-
1. **Cocoapods** - simply execute `pod install View-Controller-Transitions-Library`.
62+
1. **Cocoapods** - simply add a reference to **VCTransitionsLibrary** to your pod file.
6363
2. **Manual file copy** - if you are not using Cocoapods, you can simply copy the required files into your project. The `AnimationControllers` and `InteractionControllers` folders contain all the code that is required.
6464

6565
### <a id="animation"></a>Using an animation controller
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
Pod::Spec.new do |s|
2-
s.name = 'View-Controller-Transitions-Library'
2+
s.name = 'VCTransitionsLibrary'
33
s.version = '1.0.0'
44
s.summary = 'A collection of interactive iOS 7 custom transitions, including flip, fold, cross-fade and more'
55
s.author = {
66
'Colin Eberhardt' => 'colin.eberhardt@gmail.com'
77
}
88
s.source = {
9-
:git => 'https://github.com/ColinEberhardt/View-Controller-Transitions-Library.git',
9+
:git => 'https://github.com/ColinEberhardt/VCTransitionsLibrary.git',
1010
:tag => '1.0.0'
1111
}
1212
s.license = {
1313
:type => 'MIT',
1414
:file => 'MIT-LICENSE.txt'
1515
}
16-
s.source_files = 'AnimationControllers/*.{h,m}'
17-
s.homepage = 'https://github.com/ColinEberhardt/View-Controller-Transitions-Library'
16+
s.source_files = 'AnimationControllers/*.{h,m}', 'InteractionControllers/*.{h,m}'
17+
s.homepage = 'https://github.com/ColinEberhardt/VCTransitionsLibrary'
1818
end

0 commit comments

Comments
 (0)