forked from IdeasOnCanvas/Ashton
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAshton.podspec
More file actions
23 lines (18 loc) · 814 Bytes
/
Ashton.podspec
File metadata and controls
23 lines (18 loc) · 814 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Pod::Spec.new do |s|
s.name = "Ashton"
s.version = "0.1.5"
s.summary = "Converts NSAttributedStrings between AppKit, CoreText, UIKit and HTML."
s.homepage = "https://github.com/IdeasOnCanvas/Ashton"
s.license = { :type => 'MIT', :file => 'MIT-LICENSE.txt' }
s.author = { "Martin Schuerrer" => "martin@schuerrer.org" }
s.source = { :git => "https://github.com/IdeasOnCanvas/Ashton.git", :tag => "v#{s.version}" }
s.ios.deployment_target = '5.0'
s.ios.frameworks = 'CoreText'
s.ios.source_files = 'Ashton/*.{h,m}'
s.ios.exclude_files = 'Ashton/AshtonAppKit.{h,m}'
s.osx.deployment_target = '10.7'
s.osx.frameworks = 'CoreText'
s.osx.source_files = 'Ashton/*.{h,m}'
s.osx.exclude_files = 'Ashton/AshtonUIKit.{h,m}'
s.requires_arc = true
end