AnimeDL 0.1.4 → 0.1.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (5) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +2 -2
  3. data/anime_dl.gemspec +1 -1
  4. data/bin/anime_dl +8 -2
  5. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 3d0492b981a8fec13af761f4aad16fb1f56e4b2e
4
- data.tar.gz: 4b4d0778dc4cbf907a3e38eaf0a552a79c21986b
3
+ metadata.gz: 442b8f7aef89fead7a481779590f8c4536071730
4
+ data.tar.gz: 7d3f93f2911d31c0d3c837ce86dca532a76947f7
5
5
  SHA512:
6
- metadata.gz: df971dc3b3c6e81f716675a55a27e2f91248b75c4106f9c77d7f028e1684c7b20c6f437be3dab7307264640110e135323ad3b3901e88667f3d1554ee563a4652
7
- data.tar.gz: 7d5976e3131a6f1b0ea9ec991f8df5d73e58f86fac65f5e8d2aa16b78c8175358cf5e9c3dd65951611cd929b1f3b5621691a765c6ac8d09ba230c3f6f147548b
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 '-e' option is not provided, the app asks for 'Episodes' after retrieving the user's anime choice.
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).
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |spec|
2
2
  spec.name = "AnimeDL"
3
- spec.version = "0.1.4"
3
+ spec.version = "0.1.6"
4
4
  spec.authors = ["Anirudh Sundar"]
5
5
  spec.email = "anirudhsundar@hotmail.com"
6
6
 
@@ -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[Show this message and exit.]
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 '-e' option is not provided, the app asks for 'Episodes' after retrieving the user's anime choice."
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)."
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: AnimeDL
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.4
4
+ version: 0.1.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Anirudh Sundar