-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHHStringAttributes.podspec
More file actions
24 lines (19 loc) · 969 Bytes
/
HHStringAttributes.podspec
File metadata and controls
24 lines (19 loc) · 969 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
Pod::Spec.new do |s|
s.name = "HHStringAttributes"
s.version = "0.1.0"
s.summary = "A simple Attributes Library."
s.description = <<-DESC
Makes it way easier to generate attribute dictionaries needed for NSAttributedString.
DESC
s.homepage = "https://github.com/WaterSource/HHStringAttributes"
# s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { "何源" => "jamehy@yeah.net"}
s.source = { :git => "https://github.com/WaterSource/HHStringAttributes.git", :tag => s.version.to_s }
s.ios.deployment_target = '8.0'
s.source_files = 'HHStringAttributes/Classes/*.{h,m}'
#s.resources = "YFPhotoAlbum/Assets/*.png"
# s.public_header_files = 'Pod/Classes/**/*.h'
s.frameworks = 'UIKit'
s.dependency 'Slash', '~> 0.1.4'
end