Skip to content
Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version: ['3.0', '3.1', '3.2', '3.3']
ruby-version: ['3.1', '3.2', '3.3', '3.4']
steps:
- uses: actions/checkout@v4
- name: Set up Ruby ${{ matrix.ruby-version }}
Expand Down
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
/coverage
/pkg
/tmp
.Gemfile.lock
Gemfile.lock
.ruby-version
3 changes: 0 additions & 3 deletions .hound.yml

This file was deleted.

2 changes: 1 addition & 1 deletion .rubocop.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
AllCops:
TargetRubyVersion: 3.0
TargetRubyVersion: 3.1
NewCops: enable
SuggestExtensions: false
Exclude:
Expand Down
2 changes: 1 addition & 1 deletion LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2016 Seth Deckard
Copyright (c) 2014-2026 Seth Deckard

MIT License

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ m3u8 provides easy generation and parsing of m3u8 playlists defined in [RFC 8216

## Requirements

Ruby 3.0+
Ruby 3.1+

## Installation

Expand Down
9 changes: 4 additions & 5 deletions m3u8.gemspec
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'm3u8/version'

Expand All @@ -8,11 +7,11 @@ Gem::Specification.new do |spec|
spec.version = M3u8::VERSION
spec.authors = ['Seth Deckard']
spec.email = ['seth@deckard.me']
spec.summary = %q{Generate and parse m3u8 playlists for HTTP Live Streaming (HLS).}
spec.description = %q{Generate and parse m3u8 playlists for HTTP Live Streaming (HLS).}
spec.summary = 'Generate and parse m3u8 playlists for HTTP Live Streaming (HLS).'
spec.description = 'Generate and parse m3u8 playlists for HTTP Live Streaming (HLS).'
spec.homepage = 'https://github.com/sethdeckard/m3u8'
spec.license = 'MIT'
spec.required_ruby_version = '>= 3.0'
spec.required_ruby_version = '>= 3.1'

spec.files = `git ls-files -z`.split("\x0")
.grep_v(/\A(CLAUDE|AGENTS)\.md\z/)
Expand Down