This commit is contained in:
Kevin Renskers
2012-12-18 22:27:36 +00:00
parent b55e1ebce4
commit 1f5f9dcbc0
23 changed files with 837 additions and 3 deletions

13
GVUserDefaults.podspec Normal file
View File

@@ -0,0 +1,13 @@
Pod::Spec.new do |s|
s.name = "GVUserDefaults"
s.version = "0.1.0"
s.summary = "NSUserDefaults access via properties."
s.homepage = "https://github.com/gangverk/GVUserDefaults"
s.license = 'MIT'
s.author = { "Kevin Renskers" => "info@mixedcase.nl" }
s.source = { :git => "https://github.com/gangverk/GVUserDefaults.git", :tag => s.version.to_s }
s.ios.deployment_target = '4.0'
s.osx.deployment_target = '10.6'
s.source_files = 'GVUserDefaults/*.{h,m}'
s.requires_arc = true
end