m3u8 1.3.0 → 1.3.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/CHANGELOG.md +6 -0
- data/lib/m3u8/version.rb +1 -1
- data/m3u8.gemspec +1 -0
- metadata +1 -3
- data/AGENTS.md +0 -27
- data/CLAUDE.md +0 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7112d267f1f0b5e6f89f4c5b54392b02dc3d37d39d9cbda88d2125b69b89ca37
|
|
4
|
+
data.tar.gz: 6755f10b8de1fbb8d06f881b29973623fa48e53347b54f3093c37ff794817090
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 635a0727ca10232fd961568d72210bbf96ed1a52c64ed0326a98f275ed1948f2d6016abd1edc774972365f459508e92bd0048e5fa511e4864683d196a2eaddbe
|
|
7
|
+
data.tar.gz: 6afceffd0ce2b396737e1963ce89b7d1e31177d12d1226c4f705feff4e3625110de05fb108973eac0203566e018f9aa8ac470a0825ee7c581b86753687320009
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
**1.3.1**
|
|
2
|
+
|
|
3
|
+
* Excluded CLAUDE.md and AGENTS.md from gem package.
|
|
4
|
+
|
|
5
|
+
***
|
|
6
|
+
|
|
1
7
|
**1.3.0**
|
|
2
8
|
|
|
3
9
|
* Added CLI tool (`bin/m3u8`) with `inspect` and `validate` subcommands for inspecting playlist metadata and checking validity from the command line. Supports file arguments and stdin piping.
|
data/lib/m3u8/version.rb
CHANGED
data/m3u8.gemspec
CHANGED
|
@@ -15,6 +15,7 @@ Gem::Specification.new do |spec|
|
|
|
15
15
|
spec.required_ruby_version = '>= 3.0'
|
|
16
16
|
|
|
17
17
|
spec.files = `git ls-files -z`.split("\x0")
|
|
18
|
+
.grep_v(/\A(CLAUDE|AGENTS)\.md\z/)
|
|
18
19
|
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
|
19
20
|
spec.require_paths = ['lib']
|
|
20
21
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: m3u8
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.3.
|
|
4
|
+
version: 1.3.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Seth Deckard
|
|
@@ -135,9 +135,7 @@ files:
|
|
|
135
135
|
- ".hound.yml"
|
|
136
136
|
- ".rspec"
|
|
137
137
|
- ".rubocop.yml"
|
|
138
|
-
- AGENTS.md
|
|
139
138
|
- CHANGELOG.md
|
|
140
|
-
- CLAUDE.md
|
|
141
139
|
- Gemfile
|
|
142
140
|
- Guardfile
|
|
143
141
|
- LICENSE.txt
|
data/AGENTS.md
DELETED
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
# AGENTS.md
|
|
2
|
-
|
|
3
|
-
## Development Workflow
|
|
4
|
-
|
|
5
|
-
- Git workflow: GitHub flow
|
|
6
|
-
- Small (but logical) commits that can each be deployed independently
|
|
7
|
-
- Each commit must not break CI
|
|
8
|
-
- Prefer incremental changes over large feature branches
|
|
9
|
-
|
|
10
|
-
### Commit Messages
|
|
11
|
-
|
|
12
|
-
**Subject:** Max 50 chars, capitalized, no period, imperative mood ("Add" not "Added")
|
|
13
|
-
|
|
14
|
-
**Body:** Wrap at 72 chars, explain what/why not how, blank line after subject
|
|
15
|
-
|
|
16
|
-
**Leading verbs:** Add, Remove, Fix, Upgrade, Refactor, Reformat, Document, Reword
|
|
17
|
-
|
|
18
|
-
## Development Standards
|
|
19
|
-
|
|
20
|
-
- README updated with API changes
|
|
21
|
-
- **Tests must cover all behavior** - check with `coverage/index.html` after running specs
|
|
22
|
-
- RuboCop enforces 80-char line limit and other style
|
|
23
|
-
|
|
24
|
-
## Deployment
|
|
25
|
-
|
|
26
|
-
- Kicking off PR: `ghprcw`
|
|
27
|
-
- Never deploy anything
|
data/CLAUDE.md
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
AGENTS.md
|