Skip to content

Commit

Permalink
Update to GEOS 3.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew Hershberger committed Oct 8, 2018
1 parent c588111 commit 4149465
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 28 deletions.
46 changes: 25 additions & 21 deletions GEOSwift.podspec
@@ -1,23 +1,27 @@
Pod::Spec.new do |s|

s.name = "GEOSwift"
s.version = "2.2.0"
s.summary = "The Swift Geographic Engine."

s.description = <<-DESC
Easily handle a geographical object model (points, linestrings, polygons etc.) and related topographical operations (intersections, overlapping etc.).
A type-safe, MIT-licensed Swift interface to the OSGeo's GEOS library routines, nicely integrated with MapKit and Quicklook.
DESC

s.homepage = "https://github.com/GEOSwift/GEOSwift"
# s.screenshots = "www.example.com/screenshots_1.gif", "www.example.com/screenshots_2.gif"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Andrea Cremaschi" => "andreacremaschi@libero.it" }
s.social_media_url = "http://twitter.com/andreacremaschi"
s.platform = :ios, "8.0"
s.source = { :git => "https://github.com/GEOSwift/GEOSwift.git", :tag => s.version }

s.source_files = "GEOSwift/*.{swift,h}"
s.dependency "geos", "3.5.0"

s.name = 'GEOSwift'
s.version = '3.0.0'
s.swift_version = '4.2'
s.cocoapods_version = '>= 1.4.0'
s.summary = 'The Swift Geographic Engine.'
s.description = <<~DESC
Easily handle a geographical object model (points, linestrings, polygons etc.) and related
topographical operations (intersections, overlapping etc.). A type-safe, MIT-licensed Swift
interface to the OSGeo's GEOS library routines, nicely integrated with MapKit and Quicklook.
DESC
s.homepage = 'https://github.com/GEOSwift/GEOSwift'
s.license = {
type: 'MIT',
file: 'LICENSE'
}
s.authors = {
'Andrea Cremaschi' => 'andreacremaschi@libero.it'
}
s.ios.deployment_target = '8.0'
s.source = {
git: 'https://github.com/GEOSwift/GEOSwift.git',
tag: s.version
}
s.source_files = 'GEOSwift/*.{swift,h}'
s.dependency 'geos', '3.7.0'
end
5 changes: 2 additions & 3 deletions Podfile
@@ -1,14 +1,13 @@
platform :ios, '8.0'

use_frameworks!
inhibit_all_warnings!

target 'GEOSwift' do
pod 'geos'
pod 'geos', '3.7.0'
end

target 'GEOSwiftTests' do
pod 'geos'
pod 'geos', '3.7.0'
end

# Workaround for Cocoapods issue #7606
Expand Down
8 changes: 4 additions & 4 deletions Podfile.lock
@@ -1,16 +1,16 @@
PODS:
- geos (3.5.0)
- geos (3.7.0)

DEPENDENCIES:
- geos
- geos (= 3.7.0)

SPEC REPOS:
https://github.com/cocoapods/specs.git:
- geos

SPEC CHECKSUMS:
geos: e96c6ca3f3ce02d20feaa8d90d4af383e11e7198
geos: de7d149482a5798a4b5cfda2f0dbabd5a23f2591

PODFILE CHECKSUM: 9197d373c58dbbe14ee536fe279eaebb1f46390d
PODFILE CHECKSUM: 0fae15ea1b7145e09f79103f06f7f8cd4b0c23c5

COCOAPODS: 1.5.3

0 comments on commit 4149465

Please sign in to comment.