rack-simple_user_agent 1.1.0 → 1.1.1
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 +4 -4
- data/.github/workflows/coverage.yml +3 -3
- data/.github/workflows/rubocop.yml +2 -2
- data/.github/workflows/test.yml +2 -2
- data/LICENSE.txt +1 -1
- data/lib/rack/simple_user_agent/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ed510daae5e05b0dd2e9a7d3f923e02451beb396838c5505c198f41a18957cbc
|
|
4
|
+
data.tar.gz: 9d1da0026e44def13b62bfd2b73a386dd5610b5e8fe643b08cc68d574c561f95
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1f4c640c10aa503d1bfe830df47edf2db7bda641add8e4e717a7e5aad1a45179ad039d65243ed95986ac2757d3294a0dc3c209fd652fe53594c4ff0ceb7cd82b
|
|
7
|
+
data.tar.gz: a369e065f9823be41ececf3accce15b0d547e67bc90722d3bb754e1149dff4d0616dd94b3efe9176a3d74fd38eb03f61c26cdabf1b2b2da527967c52812d89c7
|
|
@@ -10,13 +10,13 @@ jobs:
|
|
|
10
10
|
coverage:
|
|
11
11
|
runs-on: ubuntu-latest
|
|
12
12
|
steps:
|
|
13
|
-
- uses: actions/checkout@
|
|
13
|
+
- uses: actions/checkout@v4
|
|
14
14
|
- name: Set up Ruby
|
|
15
15
|
uses: ruby/setup-ruby@v1
|
|
16
16
|
with:
|
|
17
|
-
ruby-version: 3.
|
|
17
|
+
ruby-version: 3.3
|
|
18
18
|
bundler-cache: true
|
|
19
|
-
- uses: paambaati/codeclimate-action@
|
|
19
|
+
- uses: paambaati/codeclimate-action@v8.0.0
|
|
20
20
|
env:
|
|
21
21
|
CC_TEST_REPORTER_ID: 40cc6409f7d531fa06fe880b7d7e4bd81ff89efcaa4dee782e03fb8fb3cdb902
|
|
22
22
|
with:
|
|
@@ -6,10 +6,10 @@ jobs:
|
|
|
6
6
|
rubocop:
|
|
7
7
|
runs-on: ubuntu-latest
|
|
8
8
|
steps:
|
|
9
|
-
- uses: actions/checkout@
|
|
9
|
+
- uses: actions/checkout@v4
|
|
10
10
|
- name: Set up Ruby
|
|
11
11
|
uses: ruby/setup-ruby@v1
|
|
12
12
|
with:
|
|
13
|
-
ruby-version: 3.
|
|
13
|
+
ruby-version: 3.3
|
|
14
14
|
bundler-cache: true
|
|
15
15
|
- run: bundle exec rubocop
|
data/.github/workflows/test.yml
CHANGED
|
@@ -10,10 +10,10 @@ jobs:
|
|
|
10
10
|
test:
|
|
11
11
|
strategy:
|
|
12
12
|
matrix:
|
|
13
|
-
ruby: ['2.7', '3.0', '3.1', '3.2']
|
|
13
|
+
ruby: ['2.7', '3.0', '3.1', '3.2', '3.3']
|
|
14
14
|
runs-on: ubuntu-latest
|
|
15
15
|
steps:
|
|
16
|
-
- uses: actions/checkout@
|
|
16
|
+
- uses: actions/checkout@v4
|
|
17
17
|
- name: Set up Ruby
|
|
18
18
|
uses: ruby/setup-ruby@v1
|
|
19
19
|
with:
|
data/LICENSE.txt
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rack-simple_user_agent
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.1.
|
|
4
|
+
version: 1.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- toshimaru
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2024-07-03 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: Rack::SimpleUserAgent is Rack::Request extension which detects user-agent
|
|
14
14
|
from user-agent string. No complicated logic for the detection, it simply(stupidly)
|
|
@@ -63,7 +63,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
63
63
|
- !ruby/object:Gem::Version
|
|
64
64
|
version: '0'
|
|
65
65
|
requirements: []
|
|
66
|
-
rubygems_version: 3.
|
|
66
|
+
rubygems_version: 3.5.11
|
|
67
67
|
signing_key:
|
|
68
68
|
specification_version: 4
|
|
69
69
|
summary: Rack::SimpleUserAgent is stupidly simple UA detector
|