-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathTPFactory.podspec
More file actions
26 lines (23 loc) · 942 Bytes
/
TPFactory.podspec
File metadata and controls
26 lines (23 loc) · 942 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
26
Pod::Spec.new do |s|
s.name = "TPFactory"
s.version = "0.0.1"
s.summary = "Objective-C Factory using runtime reflection"
s.description = <<-DESC
The idea of a generic factory solution for Objective-C has been something
that has been tounting me for a while so i took a crack at it.
* No need to include headers into factory
* Protocol for all implementations in factory.
* No clutter
* Fast
* Elegant
* Tested
DESC
s.homepage = "https://github.com/mrevilme/TPFactory"
s.license = {:type => "MIT", :file => "LICENSE" }
s.author = { "Emil Palm" => "emil@x86.nu" }
s.social_media_url = "http://twitter.com/mrevilme"
s.platform = :ios
s.requires_arc = :true
s.source = { :git => "https://github.com/mrevilme/TPFactory.git", :tag => "0.0.1" }
s.source_files = "TPFactory/src/**/*.{h,m}"
end