|
@@ -0,0 +1,19 @@
|
|
|
+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.org/XCAppCollection/YYText'
|
|
|
+ s.platform = :ios, '6.0'
|
|
|
+ s.ios.deployment_target = '6.0'
|
|
|
+ s.source = { :git => 'https://git.forgetive.org/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
|