-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathXFUtils.podspec
More file actions
25 lines (20 loc) · 980 Bytes
/
XFUtils.podspec
File metadata and controls
25 lines (20 loc) · 980 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
25
Pod::Spec.new do |s|
s.name = "XFUtils"
s.version = "0.13"
s.summary = "Utility methods used in XForge projects"
s.description = <<-DESC
This project provides commonly used classes & methods from projects we made.
* Some networking helpers, like a lightweight implementation of futures and promises
* Creating and modifying UIImages from different sources
* Core Data helpers
* Runtime functions
DESC
s.homepage = "https://github.com/xforge-at/XFUtils"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "XForge Software Development GmbH" => "contact@xforge.at" }
s.social_media_url = "http://twitter.com/xforge_at"
s.platform = :ios, "7.0"
s.source = { :git => "https://github.com/xforge-at/XFUtils.git", :tag => "0.13" }
s.source_files = "XFUtils", "XFUtils/**/*.{h,m}"
s.requires_arc = true
end