where_to_cli 0.1.7 → 0.1.8
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 +8 -8
- data/Gemfile.lock +1 -1
- data/bin/whereto +6 -0
- data/lib/where_to_cli/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
---
|
|
2
2
|
!binary "U0hBMQ==":
|
|
3
3
|
metadata.gz: !binary |-
|
|
4
|
-
|
|
4
|
+
Yjk1OGQ1ZTdmYzEwZjQ0NjBhYjYyNWQ1OGYyMWI2ZWE3YTA4M2I4Yg==
|
|
5
5
|
data.tar.gz: !binary |-
|
|
6
|
-
|
|
6
|
+
ZDAwZjI5ZjNjNWIxOWZjMjc2M2M0OTY0OTM1MmNlZGY3OTVkYzA5Mg==
|
|
7
7
|
SHA512:
|
|
8
8
|
metadata.gz: !binary |-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
NjBiN2ZhZGU1N2JhYjU2NTkxYzBmMzMxYzc3ZTNmNzQyNjVlZmVkYzQxNmE2
|
|
10
|
+
OWQ2YjdkMGIwZDQwMTQ3ZGFkZGM1MzI0NzZiNTg5YTgzMzFlYTc5N2QwZTY5
|
|
11
|
+
ZWEzY2E1Nzc3NDcwOThiYjBmZWJjN2VhNTg5YjA5ZDZlMTdlMTc=
|
|
12
12
|
data.tar.gz: !binary |-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
MjQ5ZjVjZDliNTU0N2ViZjgyNTAyNTgwY2RlOGU0YmM0OWFlNmU2N2FiYTc0
|
|
14
|
+
NjNmMWI1ZWRmMDNlYTk2NzJiMWM1YWI3NDM0YjMwMWQ2NzEyOWY3ZTkzYTIz
|
|
15
|
+
ZmQ5Njg3NWI4YzZkNDVlYjkwMDRkNDAxOTk1MTg2NTE1MDNkYTU=
|
data/Gemfile.lock
CHANGED
data/bin/whereto
CHANGED
|
@@ -34,6 +34,11 @@ command :organize do |cmd|
|
|
|
34
34
|
cmd.default_value nil
|
|
35
35
|
cmd.flag [:n, :season]
|
|
36
36
|
|
|
37
|
+
cmd.desc 'Set the TVDB season id'
|
|
38
|
+
cmd.arg_name 'season_id'
|
|
39
|
+
cmd.default_value nil
|
|
40
|
+
cmd.flag [:id, :series_id]
|
|
41
|
+
|
|
37
42
|
# cmd.desc 'Set the series airdate'
|
|
38
43
|
# cmd.arg_name 'season_airdate'
|
|
39
44
|
# cmd.default_value nil
|
|
@@ -74,6 +79,7 @@ end
|
|
|
74
79
|
def process(files)
|
|
75
80
|
locator = WhereTo::Locator.new
|
|
76
81
|
locator.episode_number = 0
|
|
82
|
+
locator.season_id = @options[:season_id]
|
|
77
83
|
locator.series_title = prompt_for :series_title, default: locator.series_title
|
|
78
84
|
|
|
79
85
|
files.each do |file|
|
data/lib/where_to_cli/version.rb
CHANGED