-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWidgetorium.podspec
More file actions
32 lines (28 loc) · 1.49 KB
/
Widgetorium.podspec
File metadata and controls
32 lines (28 loc) · 1.49 KB
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
27
28
29
30
31
32
Pod::Spec.new do |s|
s.name = "Widgetorium"
s.version = "0.0.3"
s.summary = "A small set of widgets/controls that we usually reuse on several projects and we thought it was a good idea to make it a CocoaPod library."
s.description = <<-DESC
Widgetorium is not meant to be a big framework that will force you to work like
we like. On the other hand, we are deliverying a set of tools that you can use
individually which main goal is avoid having to re invent the wheel everytime
you start a new project.
Some examples are:
* A loading indicator
* Input validators
* NSArray & NSDictionary categories
DESC
s.homepage = "https://github.com/scvsoft/widgetorium_ios/blob/master/README.md"
s.license = 'GNU Lesser General Public License 3'
s.author = { "gomera" => "sebastian.mera@gmail.com" }
s.source = { :git => "https://github.com/scvsoft/widgetorium_ios.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/scvsoft'
s.platform = :ios, '6.1.3'
s.ios.deployment_target = '6.1.3'
s.requires_arc = true
s.libraries = 'sqlite3'
s.dependency 'NSObjectProperties', '~> 0.0.3'
s.source_files = 'Classes/ios/**/*.{h,m}', 'Categories/ios/**/*.{h,m}'
s.ios.exclude_files = 'Classes/osx', 'Categories/osx'
s.osx.exclude_files = 'Classes/ios', 'Categories/ios'
end