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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: bbf61a694bdc2daf585ad9f405be821f09ba53289ef075e4342f267e674eb21b
4
- data.tar.gz: d599367f1344f9b1ad91c20590bc0b4c57a6d0369c71e3a34fd69325ae0c7f44
3
+ metadata.gz: 7112d267f1f0b5e6f89f4c5b54392b02dc3d37d39d9cbda88d2125b69b89ca37
4
+ data.tar.gz: 6755f10b8de1fbb8d06f881b29973623fa48e53347b54f3093c37ff794817090
5
5
  SHA512:
6
- metadata.gz: 9574b7ac1a95fe6b2fabe0bd28576b2b21713a1bed68e2a18d4ea9f644920a91a08e4696df69a19d7b8392eda87fc8fa14b090338ffebe31524cd5f3f4235539
7
- data.tar.gz: 2f34f676d931929f6671b4e3b3ba3efc0e49e73fc2dc54f6c3a64f499e8d2c1a20b974fcad3febcb0f17252d6aef1f9fb612b1c1ec9ad1911e41aa28314f8ea1
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
@@ -2,5 +2,5 @@
2
2
 
3
3
  # M3u8 provides parsing, generation, and validation of m3u8 playlists
4
4
  module M3u8
5
- VERSION = '1.3.0'
5
+ VERSION = '1.3.1'
6
6
  end
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.0
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