rack-simple_user_agent 1.1.1 → 1.2.0
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 +2 -2
- data/.github/workflows/rubocop.yml +1 -1
- data/.github/workflows/test.yml +1 -1
- data/LICENSE.txt +1 -1
- data/README.md +1 -1
- data/lib/rack/simple_user_agent/version.rb +1 -1
- metadata +3 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2e673bdf75b3674e3e910f0b6a5ac7b4bb6fc37dce40e86b1c5731bacfb58ec9
|
4
|
+
data.tar.gz: 6fed5774ad907fb57ec9816f344c7f6d16cef66a7a050dc95e58c5c46e05ebdb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7613a2825326c139b3e05b1472a6b54bb64b4f3e0788d7f3c899d39a17e4a4ee1b2738b66a49aa97c8b77ba3784a4a20b2fc66c21f63e229471c8715b810d0ba
|
7
|
+
data.tar.gz: ddb3d728acb4b57ad82673ba01c06d330e8ee42a83e639a77dd4ec0b77e97970e4a6f75a3453e58cf49bf1a9a4607777afcebd81e977b76819a32ef981040a86
|
@@ -14,9 +14,9 @@ jobs:
|
|
14
14
|
- name: Set up Ruby
|
15
15
|
uses: ruby/setup-ruby@v1
|
16
16
|
with:
|
17
|
-
ruby-version: 3.
|
17
|
+
ruby-version: 3.4
|
18
18
|
bundler-cache: true
|
19
|
-
- uses: paambaati/codeclimate-action@
|
19
|
+
- uses: paambaati/codeclimate-action@v9.0.0
|
20
20
|
env:
|
21
21
|
CC_TEST_REPORTER_ID: 40cc6409f7d531fa06fe880b7d7e4bd81ff89efcaa4dee782e03fb8fb3cdb902
|
22
22
|
with:
|
data/.github/workflows/test.yml
CHANGED
data/LICENSE.txt
CHANGED
data/README.md
CHANGED
@@ -6,7 +6,7 @@
|
|
6
6
|
[](https://codeclimate.com/github/toshimaru/rack-simple_user_agent/test_coverage)
|
7
7
|
[](https://codeclimate.com/github/toshimaru/rack-simple_user_agent)
|
8
8
|
|
9
|
-
Rack::SimpleUserAgent is Rack::Request extension which detects user-agent from user-agent string. No complicated logic for the detection, it simply(stupidly) checks if user-agent includes particular string or not.
|
9
|
+
`Rack::SimpleUserAgent` is `Rack::Request` extension which detects user-agent from user-agent string. No complicated logic for the detection, it simply(stupidly) checks if user-agent includes particular string or not.
|
10
10
|
|
11
11
|
## Installation
|
12
12
|
|
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rack-simple_user_agent
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- toshimaru
|
8
|
-
autorequire:
|
9
8
|
bindir: exe
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 2025-03-04 00:00:00.000000000 Z
|
12
11
|
dependencies: []
|
13
12
|
description: Rack::SimpleUserAgent is Rack::Request extension which detects user-agent
|
14
13
|
from user-agent string. No complicated logic for the detection, it simply(stupidly)
|
@@ -48,7 +47,6 @@ homepage: https://github.com/toshimaru/rack-simple_user_agent
|
|
48
47
|
licenses:
|
49
48
|
- MIT
|
50
49
|
metadata: {}
|
51
|
-
post_install_message:
|
52
50
|
rdoc_options: []
|
53
51
|
require_paths:
|
54
52
|
- lib
|
@@ -63,8 +61,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
63
61
|
- !ruby/object:Gem::Version
|
64
62
|
version: '0'
|
65
63
|
requirements: []
|
66
|
-
rubygems_version: 3.
|
67
|
-
signing_key:
|
64
|
+
rubygems_version: 3.6.2
|
68
65
|
specification_version: 4
|
69
66
|
summary: Rack::SimpleUserAgent is stupidly simple UA detector
|
70
67
|
test_files: []
|