colorls/colorls.gemspec

62 lines
2.2 KiB
Ruby
Raw Normal View History

2017-07-05 16:23:11 +02:00
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'colorls/version'
2017-10-20 23:28:18 +02:00
ColorLS::POST_INSTALL_MESSAGE = %(
*******************************************************************
Changes introduced in colorls
Sort by dirs : -sd flag has been renamed to --sd
Sort by files : -sf flag has been renamed to --sf
Git status : -gs flag has been renamed to --gs
Clubbed flags : `colorls -ald` works
Help menu : `colorls -h` provides all possible flag options
Tab completion enabled for flags
-t flag : Previously short for --tree, has been re-allocated to sort results by time
-r flag : Previously short for --report, has been re-allocated to reverse sort results
Man pages have been added. Checkout `man colorls`.
2017-10-20 23:28:18 +02:00
*******************************************************************
).freeze
2017-11-10 20:25:21 +01:00
# rubocop:disable Metrics/BlockLength
2017-07-05 16:23:11 +02:00
Gem::Specification.new do |spec|
spec.name = 'colorls'
spec.version = ColorLS::VERSION
2017-07-07 16:49:46 +02:00
spec.authors = ['Athitya Kumar']
2017-07-05 16:23:11 +02:00
spec.email = ['athityakumar@gmail.com']
spec.summary = "A Ruby CLI gem that beautifies the terminal's ls command, with color and font-awesome icons."
spec.homepage = 'https://github.com/athityakumar/colorls'
spec.license = 'MIT'
spec.files = `git ls-files -z`.split("\x0").reject do |f|
f.match(%r{^(test|spec|features)/})
2017-07-05 16:23:11 +02:00
end
2017-07-05 16:23:11 +02:00
spec.bindir = 'exe'
2017-07-07 16:49:46 +02:00
spec.executables = 'colorls'
2017-07-05 16:23:11 +02:00
spec.require_paths = ['lib']
2017-10-20 23:28:18 +02:00
spec.post_install_message = ColorLS::POST_INSTALL_MESSAGE
2017-11-30 01:01:57 +01:00
spec.add_runtime_dependency 'clocale'
spec.add_runtime_dependency 'filesize'
spec.add_runtime_dependency 'manpages'
spec.add_runtime_dependency 'rainbow'
2017-07-05 16:23:11 +02:00
spec.add_development_dependency 'bundler', '~> 1.15'
spec.add_development_dependency 'diffy'
2017-11-09 21:49:49 +01:00
spec.add_development_dependency 'rake'
2017-11-10 20:25:21 +01:00
spec.add_development_dependency 'ronn'
2017-07-05 16:23:11 +02:00
spec.add_development_dependency 'rspec'
2017-10-22 15:41:00 +02:00
spec.add_development_dependency 'rspec-its'
2017-07-05 16:23:11 +02:00
spec.add_development_dependency 'rubocop'
spec.add_development_dependency 'rubocop-rspec'
spec.add_development_dependency 'rubygems-tasks'
2017-07-05 16:23:11 +02:00
end
# rubocop:enable Metrics/BlockLength