audio_addict 0.0.2 → 0.1.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/README.md +68 -3
- data/lib/audio_addict/cache.rb +14 -2
- data/lib/audio_addict/commands/status.rb +1 -1
- data/lib/audio_addict/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 42a20c9ff92ff9420328e3fad7fc6bd027a639b9cdd8603deb8586584e1b2dbb
|
|
4
|
+
data.tar.gz: b3dd3ac2feaf72ce4d90b8f870541c13df60cb22c9d8b0ba7e8575a533ccb61c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b1bfca5b36d0a563882a7ac014b6ba5b32a7b78ace57183a286958b020ebe8bd1f056083803ddca02e3b5ab592abefa8722e553521c27dcbfa43c096f548ec3e
|
|
7
|
+
data.tar.gz: 660c35babd95d6fb25e14825d07cbbb2535dc365603352df155256fdfedc778eed8278d986df0fad5b209fd6784ff43d96b6594f3e9b70a14e9cb492d2acebff
|
data/README.md
CHANGED
|
@@ -1,8 +1,73 @@
|
|
|
1
1
|
AudioAddict Command Line
|
|
2
2
|
==================================================
|
|
3
3
|
|
|
4
|
-
|
|
4
|
+
[](https://badge.fury.io/rb/audio_addict)
|
|
5
|
+
[](https://travis-ci.com/DannyBen/audio_addict)
|
|
6
|
+
[](https://codeclimate.com/github/DannyBen/audio_addict/maintainability)
|
|
5
7
|
|
|
6
|
-
|
|
8
|
+
---
|
|
7
9
|
|
|
8
|
-
|
|
10
|
+
Command line utility for performing various operations on the AudioAddict
|
|
11
|
+
radio network.
|
|
12
|
+
|
|
13
|
+
**This gem is not affiliated with AudioAddict.**
|
|
14
|
+
|
|
15
|
+
---
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
Install
|
|
19
|
+
--------------------------------------------------
|
|
20
|
+
|
|
21
|
+
Please note that in order to use this gem you need to have a premium account
|
|
22
|
+
at one of the AudioAddict networks.
|
|
23
|
+
|
|
24
|
+
```
|
|
25
|
+
$ gem install audio_addict
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
Features
|
|
30
|
+
--------------------------------------------------
|
|
31
|
+
|
|
32
|
+
- Easy to use command line interface
|
|
33
|
+
- Support for all the networks on the [AudioAddict Platform]:
|
|
34
|
+
- [Digitally Imported]
|
|
35
|
+
- [RockRadio]
|
|
36
|
+
- [RadioTunes]
|
|
37
|
+
- [JazzRadio]
|
|
38
|
+
- [ClassicalRadio]
|
|
39
|
+
- View list of channels
|
|
40
|
+
- View currently playing track
|
|
41
|
+
- Vote on the currently playing track
|
|
42
|
+
- Generate playlists
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
Usage
|
|
46
|
+
--------------------------------------------------
|
|
47
|
+
|
|
48
|
+
- Run the `radio` command to see a list of available subcommands.
|
|
49
|
+
- To see additional help, run `radio <subcommand> --help`
|
|
50
|
+
|
|
51
|
+
```
|
|
52
|
+
$ radio
|
|
53
|
+
AudioAddict Radio Utilities
|
|
54
|
+
|
|
55
|
+
Commands:
|
|
56
|
+
login Save login credentials
|
|
57
|
+
status Show configuration status
|
|
58
|
+
set Set the radio network and channel
|
|
59
|
+
channels Show list of channels
|
|
60
|
+
now Show network, channel and playing track
|
|
61
|
+
vote Vote on the currently playing track
|
|
62
|
+
playlist Generate playlists
|
|
63
|
+
|
|
64
|
+
```
|
|
65
|
+
|
|
66
|
+
---
|
|
67
|
+
|
|
68
|
+
[AudioAddict Platform]: http://www.audioaddict.com
|
|
69
|
+
[Digitally Imported]: http://di.fm
|
|
70
|
+
[RockRadio]: http://www.rockradio.com
|
|
71
|
+
[RadioTunes]: http://www.radiotunes.com
|
|
72
|
+
[JazzRadio]: http://www.jazzradio.com
|
|
73
|
+
[ClassicalRadio]: http://www.classicalradio.com
|
data/lib/audio_addict/cache.rb
CHANGED
|
@@ -4,11 +4,23 @@ module AudioAddict
|
|
|
4
4
|
module Cache
|
|
5
5
|
|
|
6
6
|
def cache
|
|
7
|
-
@cache ||= Lightly.new life:
|
|
7
|
+
@cache ||= Lightly.new life: cache_life, dir: cache_dir
|
|
8
|
+
end
|
|
9
|
+
|
|
10
|
+
def cache_life
|
|
11
|
+
@cache_life ||= cache_life!
|
|
12
|
+
end
|
|
13
|
+
|
|
14
|
+
def cache_life!
|
|
15
|
+
Config.cache_life || '6h'
|
|
8
16
|
end
|
|
9
17
|
|
|
10
18
|
def cache_dir
|
|
11
|
-
@cache_dir ||=
|
|
19
|
+
@cache_dir ||= cache_dir!
|
|
20
|
+
end
|
|
21
|
+
|
|
22
|
+
def cache_dir!
|
|
23
|
+
Config.cache_dir || "#{Dir.home}/.audio_addict/cache"
|
|
12
24
|
end
|
|
13
25
|
|
|
14
26
|
end
|
data/lib/audio_addict/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: audio_addict
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0
|
|
4
|
+
version: 0.1.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Danny Ben Shitrit
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2018-11-
|
|
11
|
+
date: 2018-11-30 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: colsole
|