Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions .coditsu/ci.yml

This file was deleted.

15 changes: 2 additions & 13 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ jobs:
fail-fast: false
matrix:
ruby:
- '3.4'
- '3.3'
- '3.2'
- '3.1'
- '3.0'
include:
- ruby: '3.3'
- ruby: '3.4'
coverage: '1'
steps:
- uses: actions/checkout@v4
Expand All @@ -34,14 +34,3 @@ jobs:
SIMPLECOV: ${{ matrix.coverage }}
run: |
bundle exec rake test

# coditsu:
# runs-on: ubuntu-latest
# strategy:
# fail-fast: false
# steps:
# - uses: actions/checkout@v2
# with:
# fetch-depth: 0
# - name: Run Coditsu
# run: \curl -sSL https://api.coditsu.io/run/ci | bash
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
.bundle
coverage
vendor/bundle
.coditsu/local.yml
.tool-versions

pkg
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.3.6
3.4.4
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# master

# 2.20.0 (2025-07-15)
* Sync with https://github.com/ua-parser/uap-core/commit/432e95f6767cc8bab4c20c255784cd6f7e93bc15
* drop Ruby 3.0 support
* Add Ruby 3.4 support

# 2.19.0 (2024-12-10)
* Sync with https://github.com/ua-parser/uap-core/commit/d4cde4c565a7e588472fbf6667f01fc4c23fa60b

Expand Down
20 changes: 10 additions & 10 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,32 +1,32 @@
PATH
remote: .
specs:
user_agent_parser (2.19.0)
user_agent_parser (2.20.0)

GEM
remote: https://rubygems.org/
specs:
bigdecimal (3.1.8)
bigdecimal (3.1.8-java)
coveralls_reborn (0.28.0)
bigdecimal (3.2.2)
bigdecimal (3.2.2-java)
coveralls_reborn (0.29.0)
simplecov (~> 0.22.0)
term-ansicolor (~> 1.7)
thor (~> 1.2)
tins (~> 1.32)
docile (1.4.1)
minitest (5.25.4)
rake (13.2.1)
minitest (5.25.5)
rake (13.3.0)
simplecov (0.22.0)
docile (~> 1.1)
simplecov-html (~> 0.11)
simplecov_json_formatter (~> 0.1)
simplecov-html (0.13.1)
simplecov-html (0.13.2)
simplecov_json_formatter (0.1.4)
sync (0.5.0)
term-ansicolor (1.11.2)
tins (~> 1.0)
thor (1.3.2)
tins (1.37.0)
thor (1.4.0)
tins (1.38.0)
bigdecimal
sync

Expand All @@ -41,4 +41,4 @@ DEPENDENCIES
user_agent_parser!

BUNDLED WITH
2.5.23
2.6.9
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,10 @@ UserAgentParser is a simple, comprehensive Ruby gem for parsing user agent strin

## Supported Rubies

* Ruby 3.4
* Ruby 3.3
* Ruby 3.2
* Ruby 3.1
* Ruby 3.0
* JRuby

## Installation
Expand Down
2 changes: 1 addition & 1 deletion user_agent_parser.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Gem::Specification.new do |gem|
gem.name = 'user_agent_parser'
gem.version = '2.19.0'
gem.version = '2.20.0'

gem.authors = 'Tim Lucas'
gem.email = 't@toolmantim.com'
Expand Down