Commit de7e9624 by Daniel Dahan

added layout constraints and added installation instructions to README

parent a944d77d
## 3.1.3
* Added installation instructions to README.
- [pr-1236](https://github.com/CosmicMind/Material/pull/1236): Added Layout relations.
- [issue-1220](https://github.com/CosmicMind/Material/issues/1220): Support all relations for Layout constraints.
## 3.1.2 ## 3.1.2
- [pr-1233](https://github.com/CosmicMind/Material/pull/1233): Fixed Layout breaks - subview ordering. - [pr-1233](https://github.com/CosmicMind/Material/pull/1233): Fixed Layout breaks - subview ordering.
......
Pod::Spec.new do |s| Pod::Spec.new do |s|
s.name = 'Material' s.name = 'Material'
s.version = '3.1.2' s.version = '3.1.3'
s.swift_version = '5.0' s.swift_version = '5.0'
s.license = 'BSD-3-Clause' s.license = 'BSD-3-Clause'
s.summary = 'A UI/UX framework for creating beautiful applications.' s.summary = 'A UI/UX framework for creating beautiful applications.'
......
...@@ -61,7 +61,47 @@ Take a look at [Sample Projects](https://github.com/CosmicMind/Samples) to get y ...@@ -61,7 +61,47 @@ Take a look at [Sample Projects](https://github.com/CosmicMind/Samples) to get y
> **Embedded frameworks require a minimum deployment target of iOS 8+.** > **Embedded frameworks require a minimum deployment target of iOS 8+.**
> - [Download Material](https://github.com/CosmicMind/Material/archive/master.zip) > - [Download Material](https://github.com/CosmicMind/Material/archive/master.zip)
Read [Material - It's time to download](https://www.cosmicmind.com/danieldahan/lesson/6) to learn how to install Material & Motion using [GitHub](http://github.com), [CocoaPods](http://cocoapods.org), and [Carthage](https://github.com/Carthage/Carthage). ## CocoaPods
[CocoaPods](http://cocoapods.org) is a dependency manager for Cocoa projects. You can install it with the following command:
```bash
$ gem install cocoapods
```
To integrate Material's core features into your Xcode project using CocoaPods, specify it in your `Podfile`:
```ruby
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '8.0'
use_frameworks!
pod 'Material', '~> 3.1.0'
```
Then, run the following command:
```bash
$ pod install
```
## Carthage
Carthage is a decentralized dependency manager that builds your dependencies and provides you with binary frameworks.
You can install Carthage with Homebrew using the following command:
```bash
$ brew update
$ brew install carthage
```
To integrate Material into your Xcode project using Carthage, specify it in your Cartfile:
```bash
github "CosmicMind/Material"
```
Run `carthage update` to build the framework and drag the built `Material.framework` into your Xcode project.
## Change Log ## Change Log
......
Subproject commit a5927ef45c99f57edcb18b48a80555659598046a Subproject commit cb489ea37adff56f805755b285e2e1721adaf9ea
...@@ -15,7 +15,7 @@ ...@@ -15,7 +15,7 @@
<key>CFBundlePackageType</key> <key>CFBundlePackageType</key>
<string>FMWK</string> <string>FMWK</string>
<key>CFBundleShortVersionString</key> <key>CFBundleShortVersionString</key>
<string>3.1.2</string> <string>3.1.3</string>
<key>CFBundleSignature</key> <key>CFBundleSignature</key>
<string>????</string> <string>????</string>
<key>CFBundleVersion</key> <key>CFBundleVersion</key>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment