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.
@@ -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
- * Updated Renamer version constant
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)
@@ -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
- something else, but we need to use only one style to allow people to read
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
- * Clean-up code (refactor)
12
- * Improve execution speed (Benchmark and profile)
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
- * Add a method to rename files using current date/time
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)
@@ -19,7 +19,7 @@
19
19
 
20
20
  module Const
21
21
  NAME = "Renamer"
22
- VER = "0.4.3"
22
+ VER = "0.4.4"
23
23
  LICENSE = "
24
24
  Copyright (c) 2004-2006 by Nicolas Cavigneaux <nico@bounga.org>
25
25
  See COPIYNG for License detail.
metadata CHANGED
@@ -1,10 +1,10 @@
1
1
  --- !ruby/object:Gem::Specification
2
- rubygems_version: 0.8.11
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.3
7
- date: 2006-05-17 00:00:00 +02:00
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