AnimeDL 0.1.4 → 0.1.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +2 -2
- data/anime_dl.gemspec +1 -1
- data/bin/anime_dl +8 -2
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 442b8f7aef89fead7a481779590f8c4536071730
|
4
|
+
data.tar.gz: 7d3f93f2911d31c0d3c837ce86dca532a76947f7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fa4a8feb712dbf6e08c971441272745125e34daa4b27bef079319bb467eeaf0ecad127ed5c4f59ac24cfee4d8e94c42942a0ec174a1b2b5186a40d0421d4243b
|
7
|
+
data.tar.gz: ae49f39942d5d67084f7a9fcf1af3590acfd94ff2cc0ac41ca924abbd13fb015dba5e07a2636ed613d753a71f80815b6ce79b63c529c1f2811b4e0b0dd0445a4
|
data/README.md
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
# AnimeDL
|
2
2
|
|
3
3
|
<p align='center' style="width: 75%">
|
4
|
-
<img src='fmab_anime_dl.jpg' alt='FMAB Stone'>
|
4
|
+
<img src='https://github.com/anirudhsundar98/AnimeDL/raw/master/fmab_anime_dl.jpg' alt='FMAB Stone'>
|
5
5
|
</p>
|
6
6
|
|
7
7
|
An app used to download anime episodes or get links to video sources of episodes without having to open your browser or go through annoying pop-up ads.
|
@@ -70,7 +70,7 @@ $ anime_dl -q
|
|
70
70
|
|
71
71
|
|
72
72
|
### Specifying Episodes:
|
73
|
-
When the '-
|
73
|
+
When the '-a' option is not provided, the app asks for 'Episodes' after retrieving the user's anime choice.
|
74
74
|
The user can provide induvidual space-seperated episodes.
|
75
75
|
The user can also provide multiple space-seperated ranges with each range having the format 'start-end'.
|
76
76
|
Below are a few examples (assuming anime has more than 18 episodes).
|
data/anime_dl.gemspec
CHANGED
data/bin/anime_dl
CHANGED
@@ -9,7 +9,8 @@ help_statements = {
|
|
9
9
|
episode: %Q[Prevents the app from asking for an Episodes prompt. Gets detals for all episodes.],
|
10
10
|
file: %Q[Provide location to store extracted details. Exits if path does not exist. (Usage Examples below).],
|
11
11
|
quiet: %Q[Suppresses large, in-program help statements.],
|
12
|
-
help: %Q[
|
12
|
+
help: %Q[Shows this message and exits.],
|
13
|
+
version: %Q[Prints version and exits.]
|
13
14
|
}
|
14
15
|
|
15
16
|
ARGV.options do |opts|
|
@@ -53,6 +54,11 @@ ARGV.options do |opts|
|
|
53
54
|
end
|
54
55
|
|
55
56
|
|
57
|
+
opts.on( "-v", "--version", help_statements[:version]) do
|
58
|
+
puts "AnimeDL: 0.1.5"
|
59
|
+
exit
|
60
|
+
end
|
61
|
+
|
56
62
|
opts.on( "-h", "--help", help_statements[:help]) do
|
57
63
|
puts opts
|
58
64
|
exit
|
@@ -84,7 +90,7 @@ ARGV.options do |opts|
|
|
84
90
|
|
85
91
|
opts.separator ""
|
86
92
|
opts.separator ""
|
87
|
-
opts.separator "When the '-
|
93
|
+
opts.separator "When the '-a' option is not provided, the app asks for 'Episodes' after retrieving the user's anime choice."
|
88
94
|
opts.separator "The user can provide induvidual space-seperated episodes."
|
89
95
|
opts.separator "The user can also provide multiple space-seperated ranges with each range having the format 'start-end'."
|
90
96
|
opts.separator "Below are a few examples (assuming anime has more than 18 episodes)."
|