rbfind 1.3.1
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.
- checksums.yaml +15 -0
- data/LICENSE +34 -0
- data/Rakefile +18 -0
- data/bin/rbfind +474 -0
- data/lib/humansiz.rb +129 -0
- data/lib/rbfind.rb +895 -0
- metadata +65 -0
metadata
ADDED
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: rbfind
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 1.3.1
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Bertram Scharpf
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2013-08-30 00:00:00.000000000 Z
|
|
12
|
+
dependencies: []
|
|
13
|
+
description: ! 'A replacement for the standard UNIX command find.
|
|
14
|
+
|
|
15
|
+
Files may be examined using Ruby expressions.
|
|
16
|
+
|
|
17
|
+
Full ls-style output support including color.
|
|
18
|
+
|
|
19
|
+
Full grep-style output support.
|
|
20
|
+
|
|
21
|
+
'
|
|
22
|
+
email: <software@bertram-scharpf.de>
|
|
23
|
+
executables:
|
|
24
|
+
- rbfind
|
|
25
|
+
extensions:
|
|
26
|
+
- Rakefile
|
|
27
|
+
extra_rdoc_files:
|
|
28
|
+
- LICENSE
|
|
29
|
+
files:
|
|
30
|
+
- lib/rbfind.rb
|
|
31
|
+
- lib/humansiz.rb
|
|
32
|
+
- LICENSE
|
|
33
|
+
- bin/rbfind
|
|
34
|
+
- Rakefile
|
|
35
|
+
homepage: http://www.bertram-scharpf.de
|
|
36
|
+
licenses:
|
|
37
|
+
- BSD
|
|
38
|
+
metadata: {}
|
|
39
|
+
post_install_message:
|
|
40
|
+
rdoc_options:
|
|
41
|
+
- --charset
|
|
42
|
+
- utf-8
|
|
43
|
+
- --main
|
|
44
|
+
- README
|
|
45
|
+
- README
|
|
46
|
+
require_paths:
|
|
47
|
+
- lib
|
|
48
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
49
|
+
requirements:
|
|
50
|
+
- - ! '>='
|
|
51
|
+
- !ruby/object:Gem::Version
|
|
52
|
+
version: '0'
|
|
53
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
54
|
+
requirements:
|
|
55
|
+
- - ! '>='
|
|
56
|
+
- !ruby/object:Gem::Version
|
|
57
|
+
version: '0'
|
|
58
|
+
requirements:
|
|
59
|
+
- just Ruby
|
|
60
|
+
rubyforge_project: NONE
|
|
61
|
+
rubygems_version: 2.0.7
|
|
62
|
+
signing_key:
|
|
63
|
+
specification_version: 4
|
|
64
|
+
summary: Ruby replacement for the standard Unix find tool
|
|
65
|
+
test_files: []
|