Skip to content

Commit

Permalink
Merge branch 'scinfu:master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
aehlke authored Jul 27, 2024
2 parents 64784c8 + e2d1120 commit 2b7104e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 20 deletions.
4 changes: 0 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
<img src="https://raw.githubusercontent.com/scinfu/SwiftSoup/master/swiftsoup.png" alt="SwiftSoup" title="SwiftSoup">
</p>

[![StandWithPalestine](https://github.com/Safouene1/support-palestine-banner/blob/master/StandWithPalestine.svg)](https://bdsmovement.net/)
![Platform OS X | iOS | tvOS | watchOS | Linux](https://img.shields.io/badge/platform-Linux%20%7C%20OS%20X%20%7C%20iOS%20%7C%20tvOS%20%7C%20watchOS-orange.svg)
[![SPM compatible](https://img.shields.io/badge/SPM-compatible-4BC51D.svg?style=flat)](https://github.com/apple/swift-package-manager)
![🐧 linux: ready](https://img.shields.io/badge/%F0%9F%90%A7%20linux-ready-red.svg)
Expand All @@ -12,9 +11,6 @@
[![License](https://img.shields.io/cocoapods/l/SwiftSoup.svg?style=flat)](http://cocoapods.org/pods/SwiftSoup)
[![Twitter](https://img.shields.io/badge/[email protected]?style=flat)](http://twitter.com/scinfu)

[![ReadMeSupportPalestine](https://github.com/Safouene1/support-palestine-banner/blob/master/banner-support.svg)](https://bdsmovement.net/)


`SwiftSoup` is a pure Swift library, cross-platform (macOS, iOS, tvOS, watchOS and Linux!), for working with real-world HTML. It provides a very convenient API for extracting and manipulating data, using the best of DOM, CSS, and jQuery-like methods.
`SwiftSoup` implements the WHATWG HTML5 specification, and parses HTML to the same DOM as modern browsers do.
* Scrape and parse HTML from a URL, file, or string
Expand Down
21 changes: 5 additions & 16 deletions SwiftSoup.podspec
Original file line number Diff line number Diff line change
@@ -1,14 +1,6 @@
#
# Be sure to run `pod lib lint SwiftSoup.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#

Pod::Spec.new do |s|
s.name = 'SwiftSoup'
s.version = '2.7.2'
s.version = '2.7.3'
s.summary = 'Swift HTML Parser / Reader, XML , with best of DOM, CSS, and jquery'
s.description = <<-DESC
SwiftSoup is a Swift library for working with real-world HTML. It provides a very convenient API for extracting and manipulating data, using the best of DOM, CSS, and jquery-like methods.
Expand All @@ -20,17 +12,14 @@ SwiftSoup is a Swift library for working with real-world HTML. It provides a ver
s.source = { :git => 'https://github.com/scinfu/SwiftSoup.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/scinfu'

s.ios.deployment_target = "11.0"
s.osx.deployment_target = "10.13"
s.watchos.deployment_target = "4.0"
s.tvos.deployment_target = "11.0"
s.ios.deployment_target = '12.0'
s.osx.deployment_target = '10.13'
s.watchos.deployment_target = '4.0'
s.tvos.deployment_target = '12.0'

s.source_files = 'Sources/**/*.swift'
s.swift_versions = ['4.0', '4.2', '5.0', '5.1']

#s.resource_bundles = {
# 'SwiftSoup' => ['Assets/*.properties']
#}
s.ios.resource_bundles = {'SwiftSoup' => ['Sources/PrivacyInfo.xcprivacy']}
s.osx.resource_bundles = {'SwiftSoup' => ['Sources/PrivacyInfo.xcprivacy']}
s.watchos.resource_bundles = {'SwiftSoup' => ['Sources/PrivacyInfo.xcprivacy']}
Expand Down

0 comments on commit 2b7104e

Please sign in to comment.