public_suffix 5.0.1 → 5.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e2d5eae634d5527c967fb66edc14fda9861075c30ba6101cbf8b315228b1dbea
4
- data.tar.gz: a88c678e28311664491be49296d5a349e89a1beb9039bf16ebca48b5c62ff8f1
3
+ metadata.gz: 4e1af6bf3459567ad50f3e92f35193b0950f65126fb70eefb3b996857e27355b
4
+ data.tar.gz: 37035f8608cf236276841847274d5a44ae6e648de84a682fbf4d6b3b0e55911e
5
5
  SHA512:
6
- metadata.gz: 2463aad10f4e27ecd886e0bbe566557a8048b325ea8d6f175467954dd8d0d808c5857847d4e9665ec2771eaef562220336686dc73c0b37f49caf2a15f1b121cc
7
- data.tar.gz: f5c5717c0cf2ff90a88899d6c026e61bb5b802350c9dcbab1e26db2abbb3a0b073b86ec0f1b9411acd742ccd2fdd69366fd0154839850f15203e0c2a1575b039
6
+ metadata.gz: e9e211288208da6264e7ea5cb66098a19a07a26754d9c9f3a038c2a557306fb697ce4e325fb70e3d3806771e84491b3e6f35861670f6582b3ea0ed901234eef8
7
+ data.tar.gz: f01180755194f5c30dd49025dac3794c7ad5287dc5ef49129b27521aba03361efc1e6ab4f7f0e9474a391db83dd8498455b5e2537f78f64158a52de12e518065
@@ -23,7 +23,7 @@ jobs:
23
23
  run: bundle exec rake update-list
24
24
 
25
25
  - name: Create Pull Request
26
- uses: peter-evans/create-pull-request@v4
26
+ uses: peter-evans/create-pull-request@v5
27
27
  with:
28
28
  title: PSL auto-update
29
29
  commit-message: Updated list from source
@@ -12,7 +12,7 @@ jobs:
12
12
  - name: Checkout
13
13
  uses: actions/checkout@v3
14
14
  - name: Release Gem
15
- uses: cadwallion/publish-rubygems-action@d9474d9633f4674e59afb0c343f2dafe25181328
15
+ uses: cadwallion/publish-rubygems-action@94a6f4cd5350581749c569b5001eecc864e3ad0b
16
16
  env:
17
17
  RUBYGEMS_API_KEY: ${{ secrets.RUBYGEMS_API_KEY }}
18
18
  RELEASE_COMMAND: rake release
@@ -14,6 +14,7 @@ jobs:
14
14
  - "2.7"
15
15
  - "3.0"
16
16
  - "3.1"
17
+ - "3.2"
17
18
  runs-on: ubuntu-latest
18
19
  steps:
19
20
  - name: Checkout
data/CHANGELOG.md CHANGED
@@ -2,6 +2,18 @@
2
2
 
3
3
  This project uses [Semantic Versioning 2.0.0](https://semver.org/).
4
4
 
5
+ ## 5.0.3
6
+
7
+ ### Fixed
8
+
9
+ - Fixed automated release workflow.
10
+
11
+ ## 5.0.2
12
+
13
+ ### Changed
14
+
15
+ - Updated definitions.
16
+
5
17
  ## 5.0.1
6
18
 
7
19
  ### Changed
data/LICENSE.txt CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2009-2022 Simone Carletti <weppos@weppos.net>
1
+ Copyright (c) 2009-2023 Simone Carletti <weppos@weppos.net>
2
2
 
3
3
  MIT License
4
4
 
data/README.md CHANGED
@@ -150,6 +150,13 @@ PublicSuffix.domain("something.blogspot.com")
150
150
  # => "blogspot.com"
151
151
  ```
152
152
 
153
+ ## Add domain to list
154
+
155
+ If you want to manually add a domain to the list just run:
156
+
157
+ ```ruby
158
+ PublicSuffix::List.default << PublicSuffix::Rule.factory('onmicrosoft.com')
159
+ ```
153
160
 
154
161
  ## What is the Public Suffix List?
155
162
 
@@ -202,7 +209,7 @@ See the [CHANGELOG.md](CHANGELOG.md) file for details.
202
209
 
203
210
  ## License
204
211
 
205
- Copyright (c) 2009-2022 Simone Carletti. This is Free Software distributed under the MIT license.
212
+ Copyright (c) 2009-2023 Simone Carletti. This is Free Software distributed under the MIT license.
206
213
 
207
214
  The [Public Suffix List source](https://publicsuffix.org/list/) is subject to the terms of the Mozilla Public License, v. 2.0.
208
215
 
@@ -214,4 +221,4 @@ sld = Second level domain, a domain that is directly below a top-level domain. F
214
221
 
215
222
  trd = Transit routing domain, or known as a subdomain. This is the part of the domain that is before the sld or root domain. For example, in `https://www.mozilla.org/en-US/`, `www` is the trd.
216
223
 
217
- FQDN = Fully Qualified Domain Names, are domain names that are written with the hostname and the domain name, and include the top-level domain, the format looks like `[hostname].[domain].[tld].` for ex. `[www].[mozilla].[org]`.
224
+ FQDN = Fully Qualified Domain Names, are domain names that are written with the hostname and the domain name, and include the top-level domain, the format looks like `[hostname].[domain].[tld].` for ex. `[www].[mozilla].[org]`.