makaroni4/img-lint

View on GitHub
img-lint.gemspec

Summary

Maintainability
Test Coverage
$LOAD_PATH << File.expand_path("lib", __dir__)

require "img_lint/version"

Gem::Specification.new do |spec|
  spec.name          = "img-lint"
  spec.version       = IMGLint::VERSION
  spec.authors       = ["Anatoli Makarevich"]
  spec.email         = ["makaroni4@gmail.com"]

  spec.summary       = "IMG linter"
  spec.description   = "img-lint detects big images in your project"
  spec.homepage      = "https://github.com/makaroni4/img-lint"
  spec.license       = "MIT"

  spec.files         = Dir["config/**/*.yml"] +
                       Dir["lib/**/*.rb"] +
                       ["LICENSE.txt"]

  spec.executables   = ["img-lint"]
  spec.require_paths = ["lib"]

  spec.add_development_dependency "bundler", "~> 1.12"
  spec.add_development_dependency "byebug"
  spec.add_development_dependency "rake", "~> 12.3"
  spec.add_development_dependency "rspec", "~> 3.0"
end