Sha256: 687418101cc4c29bff5b8f3bad59c2f2c91e12c266d543d19dfc6992f0387f08
Contents?: true
Size: 1.39 KB
Versions: 1
Compression:
Stored size: 1.39 KB
Contents
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 = 'djberg96@gmail.com' 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/master/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' } 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.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
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
file-find-0.5.0 | file-find.gemspec |