yt-dlp.rb 0.4.0 → 0.6.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/auto_update.yml +5 -0
- data/.github/workflows/publish_gem.yml +16 -7
- data/CHANGELOG.md +12 -0
- data/lib/yt-dlp/version.rb +1 -1
- data/vendor/bin/yt-dlp +0 -0
- data/vendor/bin/yt-dlp.exe +0 -0
- metadata +6 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b6260863ce438e1a64082777248c2c5b1a4bd7430c02088b615f37eb4e2bff6a
|
|
4
|
+
data.tar.gz: d7949bf1f7baed8a456941b0681995d658add4ab0be1ce69538c5f394e63c593
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 33a2f9d3c722280b49652aaf6b67ac548c56e1468e94cd42a3b29a748c7522fc7991f54e6826fae78a7a1fe05ee89bde660825596c6060f84daa67c1650a645b
|
|
7
|
+
data.tar.gz: 1f3d2b6ee943ddf245fb1b7d7fb0762a8dbcbd14c370ca8c4491031bc4657f614342014f4bf92d28b3550bcc8c02c9c33b6313a76bf2a9a0ac3618dc5f12a18a
|
|
@@ -95,6 +95,11 @@ jobs:
|
|
|
95
95
|
git tag "v${{ steps.increment_version.outputs.version }}"
|
|
96
96
|
git push origin HEAD:master
|
|
97
97
|
git push origin "v${{ steps.increment_version.outputs.version }}"
|
|
98
|
+
- name: Trigger Publish Gem workflow
|
|
99
|
+
if: steps.version_check.outputs.changed == 'true'
|
|
100
|
+
run: gh workflow run "Publish Gem" --ref "v${{ steps.increment_version.outputs.version }}"
|
|
101
|
+
env:
|
|
102
|
+
GH_TOKEN: ${{ secrets.PAT_TOKEN }}
|
|
98
103
|
|
|
99
104
|
- name: No update needed
|
|
100
105
|
if: steps.version_check.outputs.changed == 'false'
|
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
name: Publish Gem
|
|
2
2
|
|
|
3
3
|
on:
|
|
4
|
+
workflow_dispatch:
|
|
4
5
|
push:
|
|
5
6
|
tags:
|
|
6
7
|
- v*
|
|
8
|
+
|
|
7
9
|
jobs:
|
|
8
10
|
build:
|
|
9
11
|
runs-on: ubuntu-latest
|
|
@@ -11,10 +13,17 @@ jobs:
|
|
|
11
13
|
steps:
|
|
12
14
|
- uses: actions/checkout@v5
|
|
13
15
|
|
|
14
|
-
- name:
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
16
|
+
- name: Configure Git
|
|
17
|
+
run: |
|
|
18
|
+
git config --local user.email "github-actions[bot]@users.noreply.github.com"
|
|
19
|
+
git config --local user.name "github-actions[bot]"
|
|
20
|
+
|
|
21
|
+
- name: Release gem
|
|
22
|
+
run: |
|
|
23
|
+
mkdir -p ~/.gem
|
|
24
|
+
echo ":rubygems_api_key: ${{ secrets.RUBYGEMS_API_KEY }}" > ~/.gem/credentials
|
|
25
|
+
chmod 600 ~/.gem/credentials
|
|
26
|
+
gem build yt-dlp.rb.gemspec
|
|
27
|
+
VERSION=$(ruby -e "puts Gem::Specification.load('yt-dlp.rb.gemspec').version")
|
|
28
|
+
gem push yt-dlp.rb-${VERSION}.gem
|
|
29
|
+
|
data/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,16 @@
|
|
|
1
1
|
# Changelog
|
|
2
|
+
## [0.6.0] - 2025-12-08
|
|
3
|
+
### Added
|
|
4
|
+
- Upgraded yt-dlp binary to version "2025.12.08"
|
|
5
|
+
|
|
6
|
+
## [0.5.0] - 2025-11-12
|
|
7
|
+
### Added
|
|
8
|
+
- Upgraded yt-dlp binary to version "2025.11.12"
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
## [0.4.0] - 2025-10-30
|
|
12
|
+
### Added
|
|
13
|
+
- Upgraded yt-dlp binary to version "2025.10.22"
|
|
2
14
|
|
|
3
15
|
## [0.3.0] - 2024-04-01
|
|
4
16
|
### Added
|
data/lib/yt-dlp/version.rb
CHANGED
data/vendor/bin/yt-dlp
CHANGED
|
Binary file
|
data/vendor/bin/yt-dlp.exe
CHANGED
|
Binary file
|
metadata
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: yt-dlp.rb
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.6.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- andrepcg
|
|
8
|
+
autorequire:
|
|
8
9
|
bindir: bin
|
|
9
10
|
cert_chain: []
|
|
10
|
-
date:
|
|
11
|
+
date: 2026-01-09 00:00:00.000000000 Z
|
|
11
12
|
dependencies:
|
|
12
13
|
- !ruby/object:Gem::Dependency
|
|
13
14
|
name: terrapin
|
|
@@ -112,6 +113,7 @@ homepage: https://github.com/andrepcg/yt-dlp.rb
|
|
|
112
113
|
licenses:
|
|
113
114
|
- MIT
|
|
114
115
|
metadata: {}
|
|
116
|
+
post_install_message:
|
|
115
117
|
rdoc_options: []
|
|
116
118
|
require_paths:
|
|
117
119
|
- lib
|
|
@@ -126,7 +128,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
126
128
|
- !ruby/object:Gem::Version
|
|
127
129
|
version: '0'
|
|
128
130
|
requirements: []
|
|
129
|
-
rubygems_version: 3.
|
|
131
|
+
rubygems_version: 3.4.20
|
|
132
|
+
signing_key:
|
|
130
133
|
specification_version: 4
|
|
131
134
|
summary: yt-dlp wrapper for Ruby
|
|
132
135
|
test_files: []
|