Sha256: ee09d2545c7b677c81df712f44a5a93c480e0f743e15f42c539068ef7b9e4f8e

Contents?: true

Size: 1.27 KB

Versions: 1

Compression:

Stored size: 1.27 KB

Contents

# frozen_string_literal: true

require_relative "lib/file_scanner/version"

Gem::Specification.new do |spec|
  spec.name          = "file_scan"
  spec.version       = FileScanner::VERSION
  spec.authors       = ["c477y"]
  spec.email         = ["c477y@pm.me"]

  spec.summary       = "A utility gem which scan files recursively inside a directory and performs actions with each file"
  spec.description   = spec.summary
  spec.homepage      = "https://github.com/c477y/file_scanner"
  spec.license       = "MIT"
  spec.required_ruby_version = ">= 2.4.0"

  spec.metadata["homepage_uri"] = spec.homepage
  spec.metadata["source_code_uri"] = spec.homepage

  # Specify which files should be added to the gem when it is released.
  # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
  spec.files = Dir.chdir(File.expand_path(__dir__)) do
    `git ls-files -z`.split("\x0").reject do |f|
      (f == __FILE__) || f.match(%r{\A(?:(?:test|spec|features)/|\.(?:git|travis|circleci)|appveyor)})
    end
  end
  spec.bindir        = "exe"
  spec.executables   = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
  spec.require_paths = ["lib"]

  spec.add_dependency "colorize", "~> 0.8.1"
  spec.add_dependency "rake", "~> 13.0"
  spec.add_dependency "rubocop", "~> 1.7"
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
file_scan-0.1.1 file_scanner.gemspec