forked from iZettle/Lift
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLift.podspec
More file actions
18 lines (16 loc) · 701 Bytes
/
Lift.podspec
File metadata and controls
18 lines (16 loc) · 701 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Pod::Spec.new do |s|
s.name = "Lift"
s.version = "2.0.1"
s.summary = "Working with JSON-like structures"
s.description = <<-DESC
Lift is a Swift library for generating and extracting values into and out of JSON-like structures.
DESC
s.homepage = "https://github.com/iZettle/Lift"
s.license = { :type => "MIT", :file => "LICENSE.md" }
s.author = { 'iZettle AB' => 'hello@izettle.com' }
s.osx.deployment_target = "10.9"
s.ios.deployment_target = "9.0"
s.source = { :git => "https://github.com/iZettle/Lift.git", :tag => "#{s.version}" }
s.source_files = "Lift/*.{swift}"
s.swift_version = '4.1'
end