This repository was archived by the owner on Nov 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSHTextViewBlocks.podspec
More file actions
34 lines (25 loc) · 1.11 KB
/
SHTextViewBlocks.podspec
File metadata and controls
34 lines (25 loc) · 1.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
Pod::Spec.new do |s|
name = "SHTextViewBlocks"
url = "https://github.com/seivan/#{name}"
git_url = "#{url}.git"
version = "1.1.1"
source_files = "#{name}/**/*.{h,m}"
s.name = name
s.version = version
s.summary = "Prefixed UITextView category replacing delegate calls with blocks. without libffi and swizzling."
s.description = <<-DESC
Delegate callbacks via blocks.
Blocks are hold with a weak reference so you don't have to cleanup when your object is gone.
* Swizzle and junk free
* No need to clean up after - The blocks are self maintained.
* Prefixed selectors.
* Minimum clutter on top of the public interface.
DESC
s.homepage = url
s.license = 'MIT'
s.author = { "Seivan Heidari" => "seivan.heidari@icloud.com" }
s.source = { :git => git_url, :tag => version}
s.platform = :ios, "6.0"
s.source_files = source_files
s.requires_arc = true
end