forked from CocoaPods/Specs
-
Notifications
You must be signed in to change notification settings - Fork 0
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
34 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,34 @@ | ||
Pod::Spec.new do |s| | ||
name = "SHWebViewBlocks" | ||
url = "https://github.com/seivan/#{name}" | ||
git_url = "#{url}.git" | ||
s.name = name | ||
version = "1.0.0" | ||
source_files = "#{name}/**/*.{h,m}" | ||
|
||
s.version = version | ||
s.summary = "Request Blocks for UIWebView - swizzle and libffi free!" | ||
s.description = <<-DESC | ||
* Swizzle and junk free | ||
* No need to clean up after - The blocks are self maintained. | ||
* The UIWebView is referenced in a map with weak properties | ||
* Prefixed selectors. | ||
* Minimum clutter on top of the public interface. | ||
DESC | ||
|
||
s.homepage = url | ||
s.license = 'MIT' | ||
s.author = { "Seivan Heidari" => "[email protected]" } | ||
|
||
s.source = { :git => git_url, :tag => version} | ||
|
||
|
||
s.platform = :ios, "6.0" | ||
|
||
s.source_files = source_files | ||
s.requires_arc = true | ||
|
||
|
||
end |