-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
file-find.gemspec
38 lines (34 loc) · 1.54 KB
/
file-find.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
require 'rubygems'
Gem::Specification.new do |spec|
spec.name = 'file-find'
spec.version = '0.5.0'
spec.author = 'Daniel Berger'
spec.license = 'Apache-2.0'
spec.summary = 'A better way to find files'
spec.email = '[email protected]'
spec.homepage = 'http://github.com/djberg96/file-find'
spec.test_file = 'spec/file_find_spec.rb'
spec.files = Dir['**/*'].reject{ |f| f.include?('git') }
spec.cert_chain = Dir['certs/*']
spec.metadata = {
'homepage_uri' => 'https://github.com/djberg96/file-find',
'bug_tracker_uri' => 'https://github.com/djberg96/file-find/issues',
'changelog_uri' => 'https://github.com/djberg96/file-find/blob/main/CHANGES.md',
'documentation_uri' => 'https://github.com/djberg96/file-find/wiki',
'source_code_uri' => 'https://github.com/djberg96/file-find',
'wiki_uri' => 'https://github.com/djberg96/file-find/wiki',
'rubygems_mfa_required' => 'true'
}
spec.add_dependency('sys-admin', '~> 1.7')
spec.add_development_dependency('rspec', '~> 3.9')
spec.add_development_dependency('fakefs', '~> 1.3')
spec.add_development_dependency('rake')
spec.add_development_dependency('rubocop')
spec.add_development_dependency('rubocop-rspec')
spec.description = <<-EOF
The file-find library provides a better, more object oriented approach
to finding files. It allows you to find files based on a variety of
properties, such as access time, size, owner, etc. You can also limit
directory depth.
EOF
end