-
Notifications
You must be signed in to change notification settings - Fork 6
/
MYSCategoryProperties.podspec
23 lines (22 loc) · 1.25 KB
/
MYSCategoryProperties.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Pod::Spec.new do |s|
s.name = "MYSCategoryProperties"
s.version = "0.0.4"
s.summary = "Quickly add properties to categories using runtime associations."
s.description = <<-DESC
Quickly add properties to categories using runtime associations.
* Only implements getters and setters for dynamic properties.
* Only implements setters for properties not marked as `readonly`.
* Names getters and setters automatically unless the property declaration specifies customer getter/setter names.
* It is **highly** recommended that you prefix your category methods with a 3 letter prefix (e.g. 'mys').
DESC
s.homepage = "https://github.com/mysterioustrousers/MYSCategoryProperties"
s.license = 'MIT'
s.author = { "Adam Kirk" => "atomkirk@gmail.com" }
s.ios.deployment_target = '5.0'
s.osx.deployment_target = '10.6'
s.source = { :git => "https://github.com/mysterioustrousers/MYSCategoryProperties.git", :tag => "#{s.version}" }
s.source_files = 'MYSCategoryProperties/MYSCategoryProperties.{h,m}'
s.framework = 'Foundation'
s.requires_arc = true
s.dependency 'MYSRuntime', '~> 0.0.3'
end