-
Notifications
You must be signed in to change notification settings - Fork 3.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,17 @@ | ||
Pod::Spec.new do |s| | ||
s.name = 'Masonry' | ||
s.version = '0.0.1' | ||
s.version = '0.0.2' | ||
s.license = 'MIT' | ||
s.summary = 'A light-weight layout framework which makes creating iOS AutoLayout NSLayoutConstraints in code quick, readable and descriptive.' | ||
s.homepage = 'https://github.com/cloudkite/Masonry' | ||
s.author = { 'Jonas Budelmann' => '[email protected]' } | ||
|
||
s.source = { :git => 'https://github.com/cloudkite/Masonry.git', :tag => 'v0.0.1' } | ||
s.source = { :git => 'https://github.com/cloudkite/Masonry.git', :tag => 'v0.0.2' } | ||
|
||
s.description = %{ | ||
Masonary is a light-weight layout framework which wraps AutoLayout with a nicer syntax. | ||
Masonary has its own layout DSL which provides a chainable way of describing your | ||
NSLayoutConstraints which results layout code which is more concise and readable. | ||
NSLayoutConstraints which results in layout code which is more concise and readable. | ||
} | ||
|
||
s.source_files = 'Masonry/*.{h,m}' | ||
|