crawler_detect 1.2.8 → 1.2.9

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: 8e33adc9eecc0ba09d7342f9cb9257a3ac62851b085755431a5073d84422eb42
4
- data.tar.gz: e13acf42ad3e65673f421fcf74b4e502390976a4c833830db57759baed11f796
3
+ metadata.gz: 8bab7b535b1ee5914aad9459474400fafea8b68391dc02302ac49a91abfdb030
4
+ data.tar.gz: 546a7433c5378f34cb4feb89e502057328e78fa3c650e7268b81ef0fd42bbb05
5
5
  SHA512:
6
- metadata.gz: 4fb8043b013086730d0729838deedb2f32db8ff5a8fa722a52580be456659aaa7e0a0e25629e6586cf7847a238ecbaec599b27e80ce48a1d1aaa0982fcef76de
7
- data.tar.gz: 32274927bbc5e9351b910ed795421c43d37cac5cc53625ff04a520bb1037fa603c02bd3c2481e3fb502ad3f29288bcb79025f6e4b1f14c2de56f8da41939fe9a
6
+ metadata.gz: e7cd19cf0c1ac1c86d2c23afb128ddefeff0ca07c96045d7bce0b87ec551ed13d69f4f9f0577d8e4fd01d901acbe4dc2143071923f2f1586de856a43602419d6
7
+ data.tar.gz: d14d82d0a09a3d50663b25e10376f311c6647dd92e885906d5f0cde90c37b8222927f1691df2631aaff1411852258347baeb84f59d50fca7f106e4ec9be68b78
@@ -0,0 +1,50 @@
1
+ name: Update Raw Crawler Files
2
+
3
+ on:
4
+ schedule:
5
+ - cron: '0 10 * * *'
6
+ workflow_dispatch: {}
7
+
8
+ permissions:
9
+ contents: write
10
+ pull-requests: write
11
+
12
+ jobs:
13
+ update-raw-files:
14
+ name: Update Raw Files
15
+ runs-on: ubuntu-latest
16
+ timeout-minutes: 30
17
+
18
+ steps:
19
+ - name: Checkout
20
+ uses: actions/checkout@v5
21
+ with:
22
+ fetch-depth: 0
23
+
24
+ - name: Execute raw files update
25
+ run: |
26
+ set -euxo pipefail
27
+ bash ./bin/update_raw_files
28
+ timeout-minutes: 5
29
+
30
+ - name: Create Pull Request
31
+ uses: peter-evans/create-pull-request@v7
32
+ with:
33
+ base: ${{ github.event.repository.default_branch }}
34
+ branch: "update-raw-files"
35
+ delete-branch: true
36
+ labels: automated
37
+
38
+ commit-message: |
39
+ Update raw crawler files
40
+
41
+ Automated update of crawlers data from upstream source.
42
+
43
+ title: "Automated: Update raw crawlers files"
44
+ body: |
45
+ ## Update raw crawler files
46
+
47
+ This pull request contains automated update of crawlers data from upstream source.
48
+
49
+ ---
50
+ *This PR was created automatically by the `update_raw_files` GitHub Action.*
@@ -2,5 +2,5 @@
2
2
 
3
3
  # @since 0.1.0
4
4
  module CrawlerDetect
5
- VERSION = "1.2.8"
5
+ VERSION = "1.2.9"
6
6
  end
metadata CHANGED
@@ -1,13 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: crawler_detect
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.8
4
+ version: 1.2.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Pavel Kozlov
8
+ autorequire:
8
9
  bindir: exe
9
10
  cert_chain: []
10
- date: 1980-01-02 00:00:00.000000000 Z
11
+ date: 2025-11-06 00:00:00.000000000 Z
11
12
  dependencies:
12
13
  - !ruby/object:Gem::Dependency
13
14
  name: qonfig
@@ -130,6 +131,7 @@ extra_rdoc_files: []
130
131
  files:
131
132
  - ".dockerignore"
132
133
  - ".github/workflows/build.yml"
134
+ - ".github/workflows/update_raw_files.yml"
133
135
  - ".gitignore"
134
136
  - ".rspec"
135
137
  - ".rspec_status"
@@ -163,6 +165,7 @@ metadata:
163
165
  bug_tracker_uri: https://github.com/loadkpi/crawler_detect/issues
164
166
  source_code_uri: https://github.com/loadkpi/crawler_detect
165
167
  changelog_uri: https://github.com/loadkpi/crawler_detect/blob/master/CHANGELOG.md
168
+ post_install_message:
166
169
  rdoc_options: []
167
170
  require_paths:
168
171
  - lib
@@ -177,7 +180,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
177
180
  - !ruby/object:Gem::Version
178
181
  version: '0'
179
182
  requirements: []
180
- rubygems_version: 3.6.9
183
+ rubygems_version: 3.2.33
184
+ signing_key:
181
185
  specification_version: 4
182
186
  summary: 'CrawlerDetect: detect bots/crawlers'
183
187
  test_files: []