culler 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG.md +5 -0
- data/Manifest.txt +7 -0
- data/README.md +55 -0
- data/Rakefile +22 -0
- data/bin/culler +3 -0
- data/lib/culler.rb +3 -0
- data/test/test_culler.rb +8 -0
- metadata +173 -0
data/CHANGELOG.md
ADDED
data/Manifest.txt
ADDED
data/README.md
ADDED
@@ -0,0 +1,55 @@
|
|
1
|
+
# culler
|
2
|
+
|
3
|
+
* http://rubygems.org/gems/culler
|
4
|
+
* http://github.com/bleything/culler
|
5
|
+
|
6
|
+
## DESCRIPTION:
|
7
|
+
|
8
|
+
Culler is a tool for finding and removing duplicate files on disk. It
|
9
|
+
offers a number of comparison techniques and is pluggable to allow for
|
10
|
+
custom comparison.
|
11
|
+
|
12
|
+
## FEATURES:
|
13
|
+
|
14
|
+
Coming soon.
|
15
|
+
|
16
|
+
## REQUIREMENTS:
|
17
|
+
|
18
|
+
RubyGems (which you should have gotten when you installed):
|
19
|
+
|
20
|
+
* isolate
|
21
|
+
* mongoid
|
22
|
+
* thor
|
23
|
+
|
24
|
+
Other stuff:
|
25
|
+
|
26
|
+
* MongoDB
|
27
|
+
|
28
|
+
## INSTALL:
|
29
|
+
|
30
|
+
$ [sudo] gem install culler
|
31
|
+
|
32
|
+
## LICENSE:
|
33
|
+
|
34
|
+
(The MIT License)
|
35
|
+
|
36
|
+
Copyright (c) 2010 Ben Bleything <ben@bleything.net>
|
37
|
+
|
38
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
39
|
+
a copy of this software and associated documentation files (the
|
40
|
+
'Software'), to deal in the Software without restriction, including
|
41
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
42
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
43
|
+
permit persons to whom the Software is furnished to do so, subject to
|
44
|
+
the following conditions:
|
45
|
+
|
46
|
+
The above copyright notice and this permission notice shall be included
|
47
|
+
in all copies or substantial portions of the Software.
|
48
|
+
|
49
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
50
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
51
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
52
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
53
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
54
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
55
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/Rakefile
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
require 'rubygems'
|
2
|
+
require 'hoe'
|
3
|
+
|
4
|
+
Hoe.plugin :isolate
|
5
|
+
|
6
|
+
Hoe.spec 'culler' do
|
7
|
+
developer 'Ben Bleything', 'ben@bleything.net'
|
8
|
+
|
9
|
+
### Use markdown for changelog and readme
|
10
|
+
self.history_file = 'CHANGELOG.md'
|
11
|
+
self.readme_file = 'README.md'
|
12
|
+
|
13
|
+
### Install thor and mongoid
|
14
|
+
self.extra_deps << [ 'thor', '0.14.4' ]
|
15
|
+
|
16
|
+
self.extra_deps << [ 'bson', '~> 1.0.1' ]
|
17
|
+
self.extra_deps << [ 'mongoid', '1.9.2' ]
|
18
|
+
|
19
|
+
### Use minitest for testing
|
20
|
+
self.extra_dev_deps << ['minitest', '>= 1.7.0']
|
21
|
+
self.testlib = :minitest
|
22
|
+
end
|
data/bin/culler
ADDED
data/lib/culler.rb
ADDED
data/test/test_culler.rb
ADDED
metadata
ADDED
@@ -0,0 +1,173 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: culler
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
hash: 29
|
5
|
+
prerelease: false
|
6
|
+
segments:
|
7
|
+
- 0
|
8
|
+
- 0
|
9
|
+
- 1
|
10
|
+
version: 0.0.1
|
11
|
+
platform: ruby
|
12
|
+
authors:
|
13
|
+
- Ben Bleything
|
14
|
+
autorequire:
|
15
|
+
bindir: bin
|
16
|
+
cert_chain: []
|
17
|
+
|
18
|
+
date: 2010-11-09 00:00:00 -08:00
|
19
|
+
default_executable:
|
20
|
+
dependencies:
|
21
|
+
- !ruby/object:Gem::Dependency
|
22
|
+
name: thor
|
23
|
+
prerelease: false
|
24
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
26
|
+
requirements:
|
27
|
+
- - "="
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
hash: 47
|
30
|
+
segments:
|
31
|
+
- 0
|
32
|
+
- 14
|
33
|
+
- 4
|
34
|
+
version: 0.14.4
|
35
|
+
type: :runtime
|
36
|
+
version_requirements: *id001
|
37
|
+
- !ruby/object:Gem::Dependency
|
38
|
+
name: bson
|
39
|
+
prerelease: false
|
40
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
41
|
+
none: false
|
42
|
+
requirements:
|
43
|
+
- - ~>
|
44
|
+
- !ruby/object:Gem::Version
|
45
|
+
hash: 21
|
46
|
+
segments:
|
47
|
+
- 1
|
48
|
+
- 0
|
49
|
+
- 1
|
50
|
+
version: 1.0.1
|
51
|
+
type: :runtime
|
52
|
+
version_requirements: *id002
|
53
|
+
- !ruby/object:Gem::Dependency
|
54
|
+
name: mongoid
|
55
|
+
prerelease: false
|
56
|
+
requirement: &id003 !ruby/object:Gem::Requirement
|
57
|
+
none: false
|
58
|
+
requirements:
|
59
|
+
- - "="
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
hash: 55
|
62
|
+
segments:
|
63
|
+
- 1
|
64
|
+
- 9
|
65
|
+
- 2
|
66
|
+
version: 1.9.2
|
67
|
+
type: :runtime
|
68
|
+
version_requirements: *id003
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: rubyforge
|
71
|
+
prerelease: false
|
72
|
+
requirement: &id004 !ruby/object:Gem::Requirement
|
73
|
+
none: false
|
74
|
+
requirements:
|
75
|
+
- - ">="
|
76
|
+
- !ruby/object:Gem::Version
|
77
|
+
hash: 7
|
78
|
+
segments:
|
79
|
+
- 2
|
80
|
+
- 0
|
81
|
+
- 4
|
82
|
+
version: 2.0.4
|
83
|
+
type: :development
|
84
|
+
version_requirements: *id004
|
85
|
+
- !ruby/object:Gem::Dependency
|
86
|
+
name: minitest
|
87
|
+
prerelease: false
|
88
|
+
requirement: &id005 !ruby/object:Gem::Requirement
|
89
|
+
none: false
|
90
|
+
requirements:
|
91
|
+
- - ">="
|
92
|
+
- !ruby/object:Gem::Version
|
93
|
+
hash: 11
|
94
|
+
segments:
|
95
|
+
- 1
|
96
|
+
- 7
|
97
|
+
- 0
|
98
|
+
version: 1.7.0
|
99
|
+
type: :development
|
100
|
+
version_requirements: *id005
|
101
|
+
- !ruby/object:Gem::Dependency
|
102
|
+
name: hoe
|
103
|
+
prerelease: false
|
104
|
+
requirement: &id006 !ruby/object:Gem::Requirement
|
105
|
+
none: false
|
106
|
+
requirements:
|
107
|
+
- - ">="
|
108
|
+
- !ruby/object:Gem::Version
|
109
|
+
hash: 19
|
110
|
+
segments:
|
111
|
+
- 2
|
112
|
+
- 6
|
113
|
+
- 2
|
114
|
+
version: 2.6.2
|
115
|
+
type: :development
|
116
|
+
version_requirements: *id006
|
117
|
+
description: |-
|
118
|
+
Culler is a tool for finding and removing duplicate files on disk. It
|
119
|
+
offers a number of comparison techniques and is pluggable to allow for
|
120
|
+
custom comparison.
|
121
|
+
email:
|
122
|
+
- ben@bleything.net
|
123
|
+
executables:
|
124
|
+
- culler
|
125
|
+
extensions: []
|
126
|
+
|
127
|
+
extra_rdoc_files:
|
128
|
+
- Manifest.txt
|
129
|
+
files:
|
130
|
+
- CHANGELOG.md
|
131
|
+
- Manifest.txt
|
132
|
+
- README.md
|
133
|
+
- Rakefile
|
134
|
+
- bin/culler
|
135
|
+
- lib/culler.rb
|
136
|
+
- test/test_culler.rb
|
137
|
+
has_rdoc: true
|
138
|
+
homepage: http://rubygems.org/gems/culler
|
139
|
+
licenses: []
|
140
|
+
|
141
|
+
post_install_message:
|
142
|
+
rdoc_options:
|
143
|
+
- --main
|
144
|
+
- README.md
|
145
|
+
require_paths:
|
146
|
+
- lib
|
147
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
148
|
+
none: false
|
149
|
+
requirements:
|
150
|
+
- - ">="
|
151
|
+
- !ruby/object:Gem::Version
|
152
|
+
hash: 3
|
153
|
+
segments:
|
154
|
+
- 0
|
155
|
+
version: "0"
|
156
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
157
|
+
none: false
|
158
|
+
requirements:
|
159
|
+
- - ">="
|
160
|
+
- !ruby/object:Gem::Version
|
161
|
+
hash: 3
|
162
|
+
segments:
|
163
|
+
- 0
|
164
|
+
version: "0"
|
165
|
+
requirements: []
|
166
|
+
|
167
|
+
rubyforge_project: culler
|
168
|
+
rubygems_version: 1.3.7
|
169
|
+
signing_key:
|
170
|
+
specification_version: 3
|
171
|
+
summary: Culler is a tool for finding and removing duplicate files on disk
|
172
|
+
test_files:
|
173
|
+
- test/test_culler.rb
|