Skip to content

Commit

Permalink
Adding SHWebViewBlocks 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
seivan committed Jul 17, 2013
1 parent 05ea8ca commit 84663be
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions SHWebViewBlocks/1.0.0/SHWebViewBlocks.podspec
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

0 comments on commit 84663be

Please sign in to comment.