Renamer 0.4.3 → 0.4.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/doc/ChangeLog +12 -1
- data/doc/HACKING +4 -3
- data/doc/TODO +3 -5
- data/lib/const.rb +1 -1
- data/locale/fr/LC_MESSAGES/renamer.mo +0 -0
- metadata +9 -5
data/doc/ChangeLog
CHANGED
@@ -3,6 +3,14 @@
|
|
3
3
|
|
4
4
|
=== Renamer 0.5.0
|
5
5
|
|
6
|
+
=== Renamer 0.4.4
|
7
|
+
|
8
|
+
2006-07-14 Nicolas Cavigneaux <nico@bounga.org>
|
9
|
+
|
10
|
+
* Added forgotten .mo files in packages
|
11
|
+
|
12
|
+
=== Renamer 0.4.3
|
13
|
+
|
6
14
|
2006-05-17 Nicolas Cavigneaux <nico@bounga.org>
|
7
15
|
|
8
16
|
* Corrected bug with constants in Rakefile
|
@@ -11,7 +19,8 @@
|
|
11
19
|
* Updated documentation
|
12
20
|
* Updated POT file
|
13
21
|
* Updated french translation
|
14
|
-
|
22
|
+
|
23
|
+
=== Renamer 0.4.2
|
15
24
|
|
16
25
|
2006-04-27 Nicolas Cavigneaux <nico@bounga.org>
|
17
26
|
|
@@ -50,6 +59,8 @@
|
|
50
59
|
* Updated french translation
|
51
60
|
* Corrected typo in french translation
|
52
61
|
|
62
|
+
=== Renamer 0.4.1
|
63
|
+
|
53
64
|
2006-01-13 Nicolas Cavigneaux <nico@bounga.org>
|
54
65
|
|
55
66
|
* Improved "rename_fs" method (now use Tempfile class)
|
data/doc/HACKING
CHANGED
@@ -13,9 +13,8 @@ need to stick to in order to get your patches accepted.
|
|
13
13
|
|
14
14
|
== Coding Style
|
15
15
|
|
16
|
-
It can be a little annoying to change your coding style if you're used to
|
17
|
-
|
18
|
-
the code and understand it easily.
|
16
|
+
It can be a little annoying to change your coding style if you're used to something else, but we need to use only one style
|
17
|
+
to allow people to read the code and understand it easily.
|
19
18
|
|
20
19
|
* Use 4-space tabs for indentation and expand tabs to spaces (if you use VIM, <tt>set ts=4</tt> and <tt>set et</tt>). Don't use tabs at all.
|
21
20
|
* Join words of class names by capitalizing the first letter of each word (CamelCase)
|
@@ -28,9 +27,11 @@ the code and understand it easily.
|
|
28
27
|
* For code blocks, use <tt>{ ... }</tt> when they can be written into a single line, otherwise use <tt>do ... end</tt>
|
29
28
|
* When setting properties of objects, always use foo= instead of set_foo
|
30
29
|
* When a method returns a boolean, always use foo?
|
30
|
+
* Comment your code using RDoc style
|
31
31
|
|
32
32
|
== Patches
|
33
33
|
|
34
34
|
* Always provide patches in unified form (diff -u) and with a ChangeLog entry
|
35
|
+
* Always provide Unit Test for all the functionnalities you've added
|
35
36
|
|
36
37
|
If you think that your patch sticks these requirements you can send it using: http://gna.org/patch/?func=additem&group=renamer
|
data/doc/TODO
CHANGED
@@ -8,13 +8,11 @@ the mailto:renamer-dev@gna.org mailing list.
|
|
8
8
|
|
9
9
|
=== Before next release
|
10
10
|
|
11
|
-
*
|
12
|
-
*
|
13
|
-
|
11
|
+
* Add a method to rename files using current date/time
|
12
|
+
* Add a method to delete the "n" first/last characters
|
14
13
|
|
15
14
|
=== Future releases
|
16
15
|
|
17
|
-
*
|
18
|
-
* Add a method to delete the "n" first/last characters
|
16
|
+
* Any idea ? Feel free to contact developers
|
19
17
|
|
20
18
|
(Doned items are moved to ChangeLog file)
|
data/lib/const.rb
CHANGED
Binary file
|
metadata
CHANGED
@@ -1,10 +1,10 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
|
-
rubygems_version: 0.
|
2
|
+
rubygems_version: 0.9.0
|
3
3
|
specification_version: 1
|
4
4
|
name: Renamer
|
5
5
|
version: !ruby/object:Gem::Version
|
6
|
-
version: 0.4.
|
7
|
-
date: 2006-
|
6
|
+
version: 0.4.4
|
7
|
+
date: 2006-07-14 00:00:00 +02:00
|
8
8
|
summary: A fast and light utility to massively rename your files
|
9
9
|
require_paths:
|
10
10
|
- lib
|
@@ -25,24 +25,28 @@ required_ruby_version: !ruby/object:Gem::Version::Requirement
|
|
25
25
|
platform: ruby
|
26
26
|
signing_key:
|
27
27
|
cert_chain:
|
28
|
+
post_install_message:
|
28
29
|
authors:
|
29
30
|
- Nicolas Cavigneaux
|
30
31
|
files:
|
31
32
|
- bin/renamer
|
32
33
|
- doc/AUTHORS
|
33
34
|
- doc/BUGS
|
34
|
-
- doc/COPYING
|
35
35
|
- doc/ChangeLog
|
36
|
+
- doc/COPYING
|
36
37
|
- doc/FAQ
|
37
38
|
- doc/HACKING
|
38
|
-
- doc/TODO
|
39
39
|
- doc/renamer
|
40
40
|
- doc/renamer.1.gz
|
41
|
+
- doc/TODO
|
41
42
|
- lib/const.rb
|
42
43
|
- lib/renamer.rb
|
43
44
|
- po/fr
|
44
45
|
- po/renamer.pot
|
45
46
|
- po/fr/renamer.po
|
47
|
+
- locale/fr
|
48
|
+
- locale/fr/LC_MESSAGES
|
49
|
+
- locale/fr/LC_MESSAGES/renamer.mo
|
46
50
|
- test/tc_renamer.rb
|
47
51
|
- test/ts_renamer.rb
|
48
52
|
- README
|