12345678910111213141516171819 |
- Pod::Spec.new do |s|
- s.name = 'YYText'
- s.summary = 'Powerful text framework for iOS to display and edit rich text.'
- s.version = '1.0.7'
- s.license = { :type => 'MIT', :file => 'LICENSE' }
- s.authors = { 'ibireme' => 'ibireme@gmail.com' }
- s.social_media_url = 'http://blog.ibireme.com'
- s.homepage = 'https://git.forgetive.net/XCAppCollection/YYText'
- s.platform = :ios, '6.0'
- s.ios.deployment_target = '6.0'
- s.source = { :git => 'https://git.forgetive.net/XCAppCollection/YYText.git', :tag => s.version.to_s }
-
- s.requires_arc = true
- s.source_files = 'YYText/**/*.{h,m}'
- s.public_header_files = 'YYText/**/*.{h}'
-
- s.frameworks = 'UIKit', 'CoreFoundation','CoreText', 'QuartzCore', 'Accelerate', 'MobileCoreServices'
- end
|