forked from amrox/AMError
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathAMError.podspec
More file actions
20 lines (20 loc) · 884 Bytes
/
Copy pathAMError.podspec
File metadata and controls
20 lines (20 loc) · 884 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Pod::Spec.new do |s|
s.name = "AMError"
s.version = "0.2.7"
s.summary = "An enhanced NSError subclass."
s.description = <<-DESC
* Accessors for all common 'UserInfo' keys
* Adds a mutable subclasses, AMMutableError
* Easily add source (file, line) with provided macros
* Reads localizedDescriptions from strings tables
DESC
s.homepage = "https://github.com/amrox/AMError"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { "Andy Mroczkowski" => "andy@mrox.net" }
s.ios.deployment_target = '6.0'
s.osx.deployment_target = '10.8'
s.source = { :git => "https://github.com/amrox/AMError.git", :tag => "#{s.version}" }
s.source_files = 'AMError/AMError.{h,m}'
s.framework = 'Foundation'
s.requires_arc = true
end