-
Notifications
You must be signed in to change notification settings - Fork 38
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
Andres Canal
committed
Nov 5, 2015
1 parent
b0fb302
commit 61a7b3f
Showing
1 changed file
with
18 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
Pod::Spec.new do |s| | ||
s.name = "SwiftCop" | ||
s.version = "0.0.1" | ||
s.summary = "SwiftCop is a validation library fully written in Swift and inspired by the verbosity and clarity of Ruby On Rails Active Record validations" | ||
s.description = <<-DESC | ||
Build a standard drop-in library for validations in Swift while making it easily extensible for users to create custom validations. And avoid developers from writting over and over again the same code and validations for different projects. | ||
DESC | ||
|
||
s.homepage = "https://github.com/andresinaka/SwiftCop/tree/master" | ||
s.screenshots = "https://github.com/andresinaka/SwiftCop/raw/master/swiftCop.png", "https://github.com/andresinaka/SwiftCop/raw/master/swiftCopExample.gif" | ||
|
||
s.license = 'MIT' | ||
s.author = "Andres Canal" | ||
s.social_media_url = "http://twitter.com/andangc" | ||
s.platform = :ios, "8.0" | ||
s.source = { :git => "https://github.com/andresinaka/SwiftCop.git", :tag => s.version } | ||
s.source_files = "SwiftCop/**/*.swift" | ||
end |