movie-renamer 0.0.11 → 0.0.12
Sign up to get free protection for your applications and to get access to all the features.
- data/README.rdoc +17 -6
- metadata +2 -2
data/README.rdoc
CHANGED
@@ -5,17 +5,29 @@ A simple command line interface to rename movies in a folder
|
|
5
5
|
|
6
6
|
Uses imdb gem to query imdb about current movie trying to obtain useful infos
|
7
7
|
|
8
|
-
play function is going to be added...
|
9
|
-
|
10
8
|
to see the usage type
|
11
9
|
|
12
|
-
$movie-renamer -h
|
10
|
+
$ movie-renamer -h
|
11
|
+
|
12
|
+
== How it works
|
13
|
+
|
14
|
+
Default behavior is to scan the current working directory
|
15
|
+
For each movie in the folder a question about what to do is asked.
|
16
|
+
|
17
|
+
Then movie is renamed using input provided by the user
|
18
|
+
|
19
|
+
Each renamed movie is moved into a tmp/ subfolder of the current working directory.
|
20
|
+
Movies are renamed like this:
|
21
|
+
|
22
|
+
YEAR - DIRECTOR - TITLE - optionalPART.extension
|
23
|
+
|
24
|
+
There are plans to add the rename pattern like an optional parameter
|
25
|
+
|
13
26
|
|
14
27
|
|
15
|
-
wait for a deeper description
|
16
28
|
|
17
29
|
== Note on Patches/Pull Requests
|
18
|
-
|
30
|
+
You are encouraged to provide help in developing this simple but useful (I hope) application!
|
19
31
|
* Fork the project.
|
20
32
|
* Make your feature addition or bug fix.
|
21
33
|
* Add tests for it. This is important so I don't break it in a
|
@@ -29,7 +41,6 @@ wait for a deeper description
|
|
29
41
|
Copyright (c) 2010 ghedamat. See LICENSE for details.
|
30
42
|
|
31
43
|
Feel free to send me suggestions :)
|
32
|
-
|
33
44
|
Please drop me a line if you find this useful
|
34
45
|
|
35
46
|
Mail me at: thamayor [at] gmail [dot] com
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: movie-renamer
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.12
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- ghedamat
|
@@ -9,7 +9,7 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2010-07-
|
12
|
+
date: 2010-07-06 00:00:00 +02:00
|
13
13
|
default_executable: movie-renamer
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|