forked from wordpress-mobile/WordPress-Editor-iOS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWordPress-iOS-Editor.podspec
26 lines (24 loc) · 1.19 KB
/
WordPress-iOS-Editor.podspec
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
Pod::Spec.new do |s|
s.name = "WordPress-iOS-Editor"
s.version = "0.6"
s.summary = "Reusable component rich text editor for WordPress.com in an iOS application."
s.description = <<-DESC
Reusable component for displaying the WordPress.com post editor in an iOS application
DESC
s.homepage = "http://apps.wordpress.org"
s.license = 'MIT'
s.author = { "Matt Bumgardner" => "matt.bumgardner@automattic.com" }
s.source = { :git => "https://github.com/wordpress-mobile/WordPress-iOS-Editor.git", :tag => s.version.to_s }
s.social_media_url = 'http://twitter.com/WordPressiOS'
s.platform = :ios, '7.0'
s.source_files = 'Classes'
s.resources = ["Assets/*.png", "Assets/*.html", "Assets/*.js", "Assets/*.svg", "Assets/*.css"]
s.prefix_header_file = "Classes/WordPress-iOS-Editor-Prefix.pch"
s.exclude_files = 'Classes/exclude'
s.requires_arc = true
s.dependency 'CocoaLumberjack', '~>1.9'
s.dependency 'UIAlertView+Blocks', '~>0.8.1'
s.dependency 'WordPress-iOS-Shared', '~>0.3.0'
s.dependency 'WordPressCom-Analytics-iOS', '~>0.0.30'
s.dependency 'NSObject-SafeExpectations', '~>0.0.2'
end