-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathOgra.podspec
More file actions
17 lines (16 loc) · 776 Bytes
/
Ogra.podspec
File metadata and controls
17 lines (16 loc) · 776 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Pod::Spec.new do |s|
s.name = "Ogra"
s.version = "4.1.2"
s.summary = "Provides the ability to convert from a model object into an Argo JSON representation."
s.description = "A companion project for the Argo library that facilitates converting back from model objects into JSON"
s.homepage = "https://github.com/edwardaux/Ogra"
s.license = 'MIT'
s.author = "Craig Edwards"
s.source = { :git => "https://github.com/edwardaux/Ogra.git", :tag => "#{s.version.to_s}" }
s.dependency 'Argo', '= 4.1.2'
s.source_files = 'Sources/**/*.{h,swift}'
s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.9'
s.tvos.deployment_target = '9.0'
s.watchos.deployment_target = '2.0'
end