addic7ed 0.1.3 → 0.1.4
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.
- data/README.md +2 -1
- data/bin/addic7ed +1 -1
- data/lib/addic7ed.rb +6 -6
- data/lib/addic7ed/version.rb +1 -1
- metadata +1 -1
data/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Ruby command-line script to fetch subtitles on Addic7ed
|
|
4
4
|
|
|
5
|
-
Current version: **0.1.
|
|
5
|
+
Current version: **0.1.4**
|
|
6
6
|
|
|
7
7
|
### Is it working ?
|
|
8
8
|
|
|
@@ -67,6 +67,7 @@ There's some work remaining:
|
|
|
67
67
|
|
|
68
68
|
### Changelog
|
|
69
69
|
|
|
70
|
+
* 0.1.4: Fixed a bug in require paths which made 0.1.3 unusable
|
|
70
71
|
* 0.1.3: Fixed bugs with show names containing country code or production year
|
|
71
72
|
* 0.1.2: Fixed how the daily download limit reach is detected
|
|
72
73
|
* 0.1.1: This is now a _working_ gem
|
data/bin/addic7ed
CHANGED
data/lib/addic7ed.rb
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
require '
|
|
2
|
-
require '
|
|
3
|
-
require '
|
|
4
|
-
require '
|
|
5
|
-
require '
|
|
6
|
-
require '
|
|
1
|
+
require 'addic7ed/version'
|
|
2
|
+
require 'addic7ed/common'
|
|
3
|
+
require 'addic7ed/errors'
|
|
4
|
+
require 'addic7ed/filename'
|
|
5
|
+
require 'addic7ed/episode'
|
|
6
|
+
require 'addic7ed/subtitle'
|
data/lib/addic7ed/version.rb
CHANGED