-
Notifications
You must be signed in to change notification settings - Fork 2
/
crf.gemspec
30 lines (27 loc) · 1.29 KB
/
crf.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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'crf/version'
require 'date'
Gem::Specification.new do |spec|
spec.name = 'crf'
spec.version = Crf::VERSION
spec.authors = ['Alejandro Bezdjian']
spec.email = '[email protected]'
spec.date = Date.today
spec.summary = 'Look for exact duplicated files.'
spec.description = 'Library that looks for exact duplicated files in a directory.'
spec.platform = Gem::Platform::RUBY
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec)/}) }
spec.require_paths = ['lib']
spec.homepage = 'https://github.com/alebian/crf'
spec.license = 'MIT'
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec)/})
spec.add_dependency 'concurrent-ruby', '~> 1.0', '>= 1.0.5'
spec.add_dependency 'colorize', '~> 0.8', '>= 0.8.1'
spec.add_dependency 'ruby-progressbar', '~> 1.8', '>= 1.8.1'
spec.add_development_dependency 'bundler', '>= 1.3.0', '< 3.0'
spec.add_development_dependency 'byebug', '>= 9.0.5', '~> 11.1' if RUBY_VERSION >= '2.0.0'
spec.add_development_dependency 'rubocop', '~> 0.47', '>= 0.47.1'
end