Sha256: f48e36ca149595156b5b704b2fcfd33555602e9aece54d7aef170337795dd8ce

Contents?: true

Size: 1.76 KB

Versions: 1

Compression:

Stored size: 1.76 KB

Contents

# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'filter_rename/version'

Gem::Specification.new do |spec|
  spec.name          = "filter_rename"
  spec.version       = FilterRename::VERSION
  spec.authors       = ["Fabio Mucciante"]
  spec.email         = ["fabio.mucciante@gmail.com"]

  spec.summary       = %q{Rename filenames through a chain of filter.}
  spec.description   = %q{Rename filenames applying a cascade of commands called filters in specified portion of it called targets.}
  spec.homepage      = "https://github.com/fabiomux/filter_rename"
  spec.license       = "GPL-3.0"

  spec.metadata      = {
    "bug_tracker_uri"   => "https://github.com/fabiomux/filter_rename/issues",
    #"changelog_uri"     => "",
    "documentation_uri" => "https://www.rubydoc.info/gems/filter_rename/#{spec.version}",
    "homepage_uri"      => "https://github.com/fabiomux/filter_rename",
    #"mailing_list_uri"  => "",
    "source_code_uri"   => "https://github.com/fabiomux/filter_rename",
    "wiki_uri"          => "https://github.com/fabiomux/filter_rename/wiki"
  }

  spec.files         = `git ls-files -z`.split("\x0").reject do |f|
    f.match(%r{^(test|spec|features)/})
  end
  spec.bindir        = "exe"
  spec.executables   = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
  spec.require_paths = ["lib"]

  spec.add_development_dependency "bundler", "~> 2.0"
  spec.add_development_dependency "rake", "~> 13.0"
  spec.add_development_dependency "rspec", "~> 3.0"

  spec.add_runtime_dependency "mp3info"
  spec.add_runtime_dependency "mimemagic"
  spec.add_runtime_dependency "differ"
  spec.add_runtime_dependency "exiv2"
  spec.add_runtime_dependency "fastimage"
  spec.add_runtime_dependency "pdf-reader"
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
filter_rename-1.0.0 filter_rename.gemspec