Renamer 0.4.0
Sign up to get free protection for your applications and to get access to all the features.
- data/README +46 -0
- data/bin/renamer +123 -0
- data/doc/AUTHORS +10 -0
- data/doc/BUGS +7 -0
- data/doc/COPYING +278 -0
- data/doc/ChangeLog +142 -0
- data/doc/FAQ +98 -0
- data/doc/HACKING +36 -0
- data/doc/TODO +23 -0
- data/doc/renamer +123 -0
- data/doc/renamer.1.gz +0 -0
- data/lib/const.rb +39 -0
- data/lib/renamer.rb +187 -0
- data/locale/fr/LC_MESSAGES/renamer.mo +0 -0
- data/po/fr/renamer.po +105 -0
- data/po/renamer.pot +101 -0
- data/test/tc_renamer.rb +256 -0
- data/test/ts_renamer.rb +24 -0
- metadata +84 -0
data/test/ts_renamer.rb
ADDED
@@ -0,0 +1,24 @@
|
|
1
|
+
#!/usr/bin/ruby -w
|
2
|
+
=begin
|
3
|
+
Copyright (c) 2004-2006 by Nicolas Cavigneaux <nico@bounga.org>
|
4
|
+
See COPYING for License detail.
|
5
|
+
|
6
|
+
This program is free software; you can redistribute it and/or modify
|
7
|
+
it under the terms of the GNU General Public License as published by
|
8
|
+
the Free Software Foundation; either version 2 of the License, or
|
9
|
+
(at your option) any later version.
|
10
|
+
|
11
|
+
This program is distributed in the hope that it will be useful,
|
12
|
+
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
13
|
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
14
|
+
GNU General Public License for more details.
|
15
|
+
|
16
|
+
You should have received a copy of the GNU General Public License
|
17
|
+
along with this program; if not, write to the Free Software
|
18
|
+
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
19
|
+
=end
|
20
|
+
|
21
|
+
$:.unshift(File.dirname(__FILE__))
|
22
|
+
|
23
|
+
require 'test/unit'
|
24
|
+
require 'tc_renamer'
|
metadata
ADDED
@@ -0,0 +1,84 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
rubygems_version: 0.8.11
|
3
|
+
specification_version: 1
|
4
|
+
name: Renamer
|
5
|
+
version: !ruby/object:Gem::Version
|
6
|
+
version: 0.4.0
|
7
|
+
date: 2006-01-07 00:00:00 +01:00
|
8
|
+
summary: A fast and light utility to massively rename your files
|
9
|
+
require_paths:
|
10
|
+
- lib
|
11
|
+
email: nico@bounga.org
|
12
|
+
homepage: http://renamer.bounga.org
|
13
|
+
rubyforge_project:
|
14
|
+
description: Renamer is a tool that makes it easy to rename any number of files on any filesystem without knowing anything about shell scripting or regular expressions (regexp).
|
15
|
+
autorequire:
|
16
|
+
default_executable:
|
17
|
+
bindir: bin
|
18
|
+
has_rdoc: true
|
19
|
+
required_ruby_version: !ruby/object:Gem::Version::Requirement
|
20
|
+
requirements:
|
21
|
+
- - ">="
|
22
|
+
- !ruby/object:Gem::Version
|
23
|
+
version: 1.8.1
|
24
|
+
version:
|
25
|
+
platform: ruby
|
26
|
+
signing_key:
|
27
|
+
cert_chain:
|
28
|
+
authors:
|
29
|
+
- Nicolas Cavigneaux
|
30
|
+
files:
|
31
|
+
- bin/renamer
|
32
|
+
- doc/FAQ
|
33
|
+
- doc/AUTHORS
|
34
|
+
- doc/BUGS
|
35
|
+
- doc/COPYING
|
36
|
+
- doc/HACKING
|
37
|
+
- doc/renamer
|
38
|
+
- doc/TODO
|
39
|
+
- doc/renamer.1.gz
|
40
|
+
- doc/ChangeLog
|
41
|
+
- lib/const.rb
|
42
|
+
- lib/renamer.rb
|
43
|
+
- po/renamer.pot
|
44
|
+
- po/fr
|
45
|
+
- po/fr/renamer.po
|
46
|
+
- locale/fr
|
47
|
+
- locale/fr/LC_MESSAGES
|
48
|
+
- locale/fr/LC_MESSAGES/renamer.mo
|
49
|
+
- test/ts_renamer.rb
|
50
|
+
- test/tc_renamer.rb
|
51
|
+
- README
|
52
|
+
test_files:
|
53
|
+
- test/ts_renamer.rb
|
54
|
+
rdoc_options:
|
55
|
+
- --title
|
56
|
+
- Renamer - The perfect tool to easily rename your files
|
57
|
+
- --main
|
58
|
+
- README
|
59
|
+
- --line-numbers
|
60
|
+
extra_rdoc_files:
|
61
|
+
- README
|
62
|
+
- doc/FAQ
|
63
|
+
- doc/renamer
|
64
|
+
- doc/HACKING
|
65
|
+
- doc/TODO
|
66
|
+
- doc/AUTHORS
|
67
|
+
- doc/BUGS
|
68
|
+
- doc/ChangeLog
|
69
|
+
executables:
|
70
|
+
- renamer
|
71
|
+
extensions: []
|
72
|
+
|
73
|
+
requirements: []
|
74
|
+
|
75
|
+
dependencies:
|
76
|
+
- !ruby/object:Gem::Dependency
|
77
|
+
name: gettext
|
78
|
+
version_requirement:
|
79
|
+
version_requirements: !ruby/object:Gem::Version::Requirement
|
80
|
+
requirements:
|
81
|
+
- - ">"
|
82
|
+
- !ruby/object:Gem::Version
|
83
|
+
version: 0.0.0
|
84
|
+
version:
|