yt-dlp.rb 0.1.0 → 0.3.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5376972dc27fa3ad59be7ba8c80c0ff9a5046854aefbdf3a33fca45433fc1c16
4
- data.tar.gz: e96a6c8677803fb682bb03c7add405dc0a20c38b49997696dac30b4f66cefa31
3
+ metadata.gz: be659a834134c03a31293f8ec71064793948135cd10290c73cd4a34ca4e0bb4f
4
+ data.tar.gz: 887269c8de379b14893702fedcf2883e84573e91f2571add6b417576734a81e0
5
5
  SHA512:
6
- metadata.gz: cf93abf7e6ece1e46dc3a116c2a8220b2018654c2d34c152379b690bb60fbe2f0aea0f557e60544fa1a4c415c8d7cdd11c1041fde5924163eefe0f1295eea971
7
- data.tar.gz: 8c4beb1285df288c15fe9b2cfb63c628f17ee77752ee82bd856f8faccaebc470ab6bd36203c574d708d2d89d09960a979cf391aa60d9a0fceaf0d8efc7bbd684
6
+ metadata.gz: a0ba8bd1d182389fe6aed98374178749eb894b99582588e9f6783b25df0e4a7036150f61c3bf49bab57c12db3b4cb3be63f2759b49aaec7d7139aa693797edc2
7
+ data.tar.gz: d6bb40fe2ec742dc57ed41751eafd4b1c7ed4d30ad83b3ef4db9b551687e341716013570329c2ea58f78c6e256517b5db7bc9d90e21e636f0bddf058cd1838e9
@@ -0,0 +1,20 @@
1
+ name: Publish Gem
2
+
3
+ on:
4
+ push:
5
+ tags:
6
+ - v*
7
+ jobs:
8
+ build:
9
+ runs-on: ubuntu-latest
10
+
11
+ steps:
12
+ - uses: actions/checkout@v1
13
+
14
+ - name: Release Gem
15
+ if: contains(github.ref, 'refs/tags/v')
16
+ uses: cadwallion/publish-rubygems-action@master
17
+ env:
18
+ GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
19
+ RUBYGEMS_API_KEY: ${{secrets.RUBYGEMS_API_KEY}}
20
+ RELEASE_COMMAND: rake release
data/CHANGELOG.md ADDED
@@ -0,0 +1,9 @@
1
+ # Changelog
2
+
3
+ ## [0.3.0] - 2024-04-01
4
+ ### Added
5
+ - Upgraded yt-dlp binary to version "2024.03.10"
6
+
7
+ ## [0.2.0] - 2022-03-06
8
+ ### Added
9
+ - Upgraded yt-dlp binary to version "2022.02.04"
@@ -7,5 +7,5 @@
7
7
  module YtDlp
8
8
  # Semantic Version as well as the bundled binary version.
9
9
  # "(major).(minor).(teeny).(pre-release).(binary-version)"
10
- VERSION = '0.1.0'
10
+ VERSION = '0.3.0'
11
11
  end
data/vendor/bin/yt-dlp CHANGED
Binary file
Binary file
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: yt-dlp.rb
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - andrepcg
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-11-08 00:00:00.000000000 Z
11
+ date: 2024-04-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: terrapin
@@ -102,11 +102,13 @@ extensions: []
102
102
  extra_rdoc_files: []
103
103
  files:
104
104
  - ".github/workflows/ci.yml"
105
+ - ".github/workflows/publish_gem.yml"
105
106
  - ".gitignore"
106
107
  - ".rubocop.yml"
107
108
  - ".rubocop_todo.yml"
108
109
  - ".ruby-version"
109
110
  - 1.0_RELEASE_GOALS.md
111
+ - CHANGELOG.md
110
112
  - Gemfile
111
113
  - LICENSE.txt
112
114
  - README.md
@@ -124,7 +126,7 @@ homepage: https://github.com/andrepcg/yt-dlp.rb
124
126
  licenses:
125
127
  - MIT
126
128
  metadata: {}
127
- post_install_message:
129
+ post_install_message:
128
130
  rdoc_options: []
129
131
  require_paths:
130
132
  - lib
@@ -139,8 +141,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
139
141
  - !ruby/object:Gem::Version
140
142
  version: '0'
141
143
  requirements: []
142
- rubygems_version: 3.1.4
143
- signing_key:
144
+ rubygems_version: 3.5.3
145
+ signing_key:
144
146
  specification_version: 4
145
147
  summary: yt-dlp wrapper for Ruby
146
148
  test_files: []