aucast 0.2.0 → 0.2.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -2
- data/Gemfile.lock +3 -3
- data/aucast.gemspec +1 -1
- data/lib/aucast/version.rb +1 -1
- data/lib/aucast/youtube_dl.rb +1 -0
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 837a2ea2dce686ae7f13a572a5e8fc7af53e88a5a356f09cc21da328b8a9fbe9
|
4
|
+
data.tar.gz: 7f1de7d1faff24e3a434f09342f165f2ef7f90712fb105540a64e20ab2fb30a3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: db87a420defe2ba29721046ae84cd3320746017d4a6a9c640f83a795949ae78ddfe05dbf3baa8f41f55453c7704239dbfb25ab22bef12256d314892254bc16f1
|
7
|
+
data.tar.gz: 4bb8f775580567c8f387072b041f8bdc6e96160d147796501c1b8b32e7bbe6cb214bc59a26cb97b09a1296898803a24b7099a1e39e108972d55c4fe14a5bc430
|
data/CHANGELOG.md
CHANGED
@@ -5,11 +5,14 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
5
5
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
6
6
|
|
7
7
|
## [Unreleased]
|
8
|
-
|
8
|
+
- Remove non ASCII characters from the filename when using youtube-dl
|
9
|
+
|
10
|
+
## [0.2.0] - 2019-08-09
|
11
|
+
### Changed
|
9
12
|
- Set audio metadata when using youtube-dl, including artist name, thumbnails and duration.
|
10
13
|
|
11
14
|
## [0.1.1] - 2019-08-05
|
12
|
-
###
|
15
|
+
### Changed
|
13
16
|
- Update CLI documentation
|
14
17
|
|
15
18
|
## [0.1.0] - 2019-08-05
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
aucast (0.2.
|
4
|
+
aucast (0.2.1)
|
5
5
|
rest-client (~> 2.0)
|
6
6
|
thor (~> 0.20)
|
7
7
|
|
@@ -20,9 +20,9 @@ GEM
|
|
20
20
|
hashdiff (0.3.7)
|
21
21
|
http-cookie (1.0.3)
|
22
22
|
domain_name (~> 0.5)
|
23
|
-
mime-types (3.
|
23
|
+
mime-types (3.3)
|
24
24
|
mime-types-data (~> 3.2015)
|
25
|
-
mime-types-data (3.2019.
|
25
|
+
mime-types-data (3.2019.0904)
|
26
26
|
minitest (5.11.3)
|
27
27
|
minitest-reporters (1.1.19)
|
28
28
|
ansi
|
data/aucast.gemspec
CHANGED
@@ -11,7 +11,7 @@ Gem::Specification.new do |spec|
|
|
11
11
|
|
12
12
|
spec.summary = %q{Upload audio file and video media URL to Aucast iOS app.}
|
13
13
|
spec.description = %q{The CLI for uploading audio and video URL to Aucast iOS app, that support youtube-dl.}
|
14
|
-
spec.homepage = "https://
|
14
|
+
spec.homepage = "https://github.com/brunow/aucast_cli"
|
15
15
|
spec.license = "MIT"
|
16
16
|
|
17
17
|
# Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
|
data/lib/aucast/version.rb
CHANGED
data/lib/aucast/youtube_dl.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aucast
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Bruno Wernimont
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-
|
11
|
+
date: 2019-09-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: thor
|
@@ -151,7 +151,7 @@ files:
|
|
151
151
|
- lib/aucast/file_upload.rb
|
152
152
|
- lib/aucast/version.rb
|
153
153
|
- lib/aucast/youtube_dl.rb
|
154
|
-
homepage: https://
|
154
|
+
homepage: https://github.com/brunow/aucast_cli
|
155
155
|
licenses:
|
156
156
|
- MIT
|
157
157
|
metadata:
|