public_suffix 5.0.0 → 5.0.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5b1625010ec369824aa7c3dd4e4b8aa63cf7f87566d7bcfc2a9784f0ff5fca09
4
- data.tar.gz: 4bbc75c106415e2d8500d208d347bb0ccdd05c1f5d3a45f2f0f46a8e8793540c
3
+ metadata.gz: 4e1af6bf3459567ad50f3e92f35193b0950f65126fb70eefb3b996857e27355b
4
+ data.tar.gz: 37035f8608cf236276841847274d5a44ae6e648de84a682fbf4d6b3b0e55911e
5
5
  SHA512:
6
- metadata.gz: f55456d5f1c4e679b99339578d4da0c3f5462dfdf9969fcabca658748d3d72acf6036ae79db13d6db6a3b04b78be94ee079d1f28d065c2b416ec7bf21fb6ba7d
7
- data.tar.gz: 0b2705ab2b6e8d743d54b6bb4cf22d306d215dcac11a4b49d1dd0ac1c04332ae80dcb87f305c2a2ebf7a554b24ad31dd31525f5be6fb7858e67e5ebfcc53d8ff
6
+ metadata.gz: e9e211288208da6264e7ea5cb66098a19a07a26754d9c9f3a038c2a557306fb697ce4e325fb70e3d3806771e84491b3e6f35861670f6582b3ea0ed901234eef8
7
+ data.tar.gz: f01180755194f5c30dd49025dac3794c7ad5287dc5ef49129b27521aba03361efc1e6ab4f7f0e9474a391db83dd8498455b5e2537f78f64158a52de12e518065
@@ -1,8 +1,19 @@
1
1
  version: 2
2
2
  updates:
3
- - package-ecosystem: bundler
4
- directory: "/"
5
- schedule:
6
- interval: daily
7
- time: "04:00"
8
- open-pull-requests-limit: 10
3
+ - package-ecosystem: bundler
4
+ directory: "/"
5
+ schedule:
6
+ interval: daily
7
+ time: "04:00"
8
+ open-pull-requests-limit: 10
9
+ labels:
10
+ - dependencies
11
+
12
+ - package-ecosystem: "github-actions"
13
+ directory: "/"
14
+ schedule:
15
+ interval: "daily"
16
+ time: "04:00"
17
+ open-pull-requests-limit: 10
18
+ labels:
19
+ - dependencies
@@ -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@8f9e0538302643309e4e43bf48cd34173ca48cfc
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,24 @@
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
+
17
+ ## 5.0.1
18
+
19
+ ### Changed
20
+
21
+ - Updated definitions.
22
+
5
23
 
6
24
  ## 5.0.0
7
25
 
data/Gemfile CHANGED
@@ -9,6 +9,6 @@ gem "rake"
9
9
  gem "memory_profiler", require: false
10
10
  gem "minitest"
11
11
  gem "minitest-reporters"
12
- gem "mocha"
12
+ gem "mocha", "~> 2.0.1"
13
13
  gem "rubocop", require: false
14
14
  gem "yard"
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]`.