public_suffix 4.0.6 → 4.0.7

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: 48a2adc85da4aa3f989df90aab4b788c33f029def5daa425e1c78f2f996f457e
4
- data.tar.gz: 6b8fd93652f1eb725867dfc646f76f42524e3efecd758439ca0337e5717f7182
3
+ metadata.gz: 4ea7129dc0659a87fad96459afefddaafdb4280eac62895e036ce1e2bcf14d91
4
+ data.tar.gz: a335705e6ba76d959f52b3e4acea7be1f97c472af3b05a34cd15bae9a3301582
5
5
  SHA512:
6
- metadata.gz: 52c6c74121231ef5d99e165eec0fb460e4c286cbf0cf06fbe89a98272bc7ff2de68a7cf464676074f3851a0a4e2d7f842e3e34f7ddde32f480d2474bc6dd62c9
7
- data.tar.gz: 96cd0e0294cc31ca0176362938022d65782deec59ecb4e606119481a09e1906cccc05203ae4ba7ddb5bb20a2915cbea99d696c47335f250b1db8d512b41499d1
6
+ metadata.gz: 1d1a8d2f55e733e6f2ed7f7ed233cda997e55b0838b2926488c15e86586a72329ee2392af7ccc94dd3a5b04c60f3bbd0358fe38c0f4e82e0c13ae513a0dafdf4
7
+ data.tar.gz: aced9afff807ed3c71457871d68b56f7288cff8e5379da534f9deccea735ca1911074b7f300795f021e7b17a1ccf4ced27630efd3d1dd667c10a998b611fb71c
@@ -0,0 +1,8 @@
1
+ version: 2
2
+ updates:
3
+ - package-ecosystem: bundler
4
+ directory: "/"
5
+ schedule:
6
+ interval: daily
7
+ time: "04:00"
8
+ open-pull-requests-limit: 10
@@ -0,0 +1,16 @@
1
+ name: release
2
+
3
+ on:
4
+ push:
5
+ tags:
6
+ - v*.*.*
7
+ jobs:
8
+ release:
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - uses: actions/checkout@v2
12
+ - name: Release Gem
13
+ uses: cadwallion/publish-rubygems-action@8f9e0538302643309e4e43bf48cd34173ca48cfc
14
+ env:
15
+ RUBYGEMS_API_KEY: ${{ secrets.RUBYGEMS_API_KEY }}
16
+ RELEASE_COMMAND: rake release
@@ -2,35 +2,27 @@ name: Tests
2
2
 
3
3
  on:
4
4
  push:
5
- branches: [ master ]
6
5
  pull_request:
7
- branches: [ master ]
6
+ workflow_dispatch:
8
7
 
9
8
  jobs:
10
-
11
9
  build:
12
10
  strategy:
13
11
  matrix:
14
12
  ruby-version:
15
- # - "2.3"
16
- - "2.4"
17
- - "2.5"
18
13
  - "2.6"
19
14
  - "2.7"
15
+ - "3.0"
16
+ - "3.1"
20
17
  platform: [ubuntu-latest]
21
-
22
18
  runs-on: ${{ matrix.platform }}
23
19
  steps:
24
-
25
- - uses: actions/checkout@v2
26
-
27
- - name: Set up Ruby
28
- uses: ruby/setup-ruby@v1
29
- with:
30
- ruby-version: ${{ matrix.ruby-version }}
31
-
32
- - name: Install dependencies
33
- run: bundle install
34
-
35
- - name: Run tests
36
- run: bundle exec rake
20
+ - uses: actions/checkout@v2
21
+ - name: Set up Ruby
22
+ uses: ruby/setup-ruby@v1
23
+ with:
24
+ ruby-version: ${{ matrix.ruby-version }}
25
+ - name: Install dependencies
26
+ run: bundle install
27
+ - name: Run tests
28
+ run: bundle exec rake
@@ -15,6 +15,12 @@ Layout/LineLength:
15
15
  - 'test/**/*_test.rb'
16
16
  Max: 100
17
17
 
18
+ Lint/ConstantDefinitionInBlock:
19
+ Exclude:
20
+ - 'Rakefile'
21
+ - 'spec/**/*'
22
+ - 'test/**/*'
23
+
18
24
  # [codesmell]
19
25
  Metrics/AbcSize:
20
26
  Enabled: false
data/CHANGELOG.md CHANGED
@@ -3,6 +3,17 @@
3
3
  This project uses [Semantic Versioning 2.0.0](https://semver.org/).
4
4
 
5
5
 
6
+ ## 4.0.7
7
+
8
+ ### Fixes
9
+
10
+ - Fixed YARD rake task (GH-179)
11
+
12
+ ### Changed
13
+
14
+ - Updated definitions.
15
+
16
+
6
17
  ## 4.0.6
7
18
 
8
19
  ### Changed
data/Gemfile CHANGED
@@ -6,7 +6,6 @@ gemspec
6
6
 
7
7
  gem "rake"
8
8
 
9
- gem "codecov", require: false
10
9
  gem "memory_profiler", require: false
11
10
  gem "minitest"
12
11
  gem "minitest-reporters"
data/LICENSE.txt CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2009-2020 Simone Carletti <weppos@weppos.net>
1
+ Copyright (c) 2009-2022 Simone Carletti <weppos@weppos.net>
2
2
 
3
3
  MIT License
4
4
 
data/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  <tt>PublicSuffix</tt> is a Ruby domain name parser based on the [Public Suffix List](https://publicsuffix.org/).
4
4
 
5
- [![Build Status](https://travis-ci.com/weppos/publicsuffix-ruby.svg?branch=master)](https://travis-ci.com/weppos/publicsuffix-ruby)
5
+ [![Build Status](https://github.com/weppos/publicsuffix-ruby/actions/workflows/tests.yml/badge.svg)](https://github.com/weppos/publicsuffix-ruby/actions/workflows/tests.yml)
6
6
  [![Tidelift dependencies](https://tidelift.com/badges/package/rubygems/public_suffix)](https://tidelift.com/subscription/pkg/rubygems-public-suffix?utm_source=rubygems-public-suffix&utm_medium=referral&utm_campaign=enterprise)
7
7
 
8
8
 
@@ -202,6 +202,16 @@ See the [CHANGELOG.md](CHANGELOG.md) file for details.
202
202
 
203
203
  ## License
204
204
 
205
- Copyright (c) 2009-2020 Simone Carletti. This is Free Software distributed under the MIT license.
205
+ Copyright (c) 2009-2022 Simone Carletti. This is Free Software distributed under the MIT license.
206
206
 
207
207
  The [Public Suffix List source](https://publicsuffix.org/list/) is subject to the terms of the Mozilla Public License, v. 2.0.
208
+
209
+ ## Definitions
210
+
211
+ tld = Top level domain, this is in reference to the last segment of a domain, sometimes the part that is directly after the "dot" symbol. For example, `mozilla.org`, the `.org` portion is the tld.
212
+
213
+ sld = Second level domain, a domain that is directly below a top-level domain. For example, in `https://www.mozilla.org/en-US/`, `mozilla` is the second-level domain of the .org tld.
214
+
215
+ 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
+
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]`.
data/Rakefile CHANGED
@@ -20,6 +20,7 @@ require "rubocop/rake_task"
20
20
  RuboCop::RakeTask.new
21
21
 
22
22
 
23
+ require "yard"
23
24
  require "yard/rake/yardoc_task"
24
25
 
25
26
  YARD::Rake::YardocTask.new(:yardoc) do |y|