Sha256: f28fbb97ac7956b0b1c105e2ffe3a5ea562c28f984332d5b50868646ad18e03f

Contents?: true

Size: 1.21 KB

Versions: 2

Compression:

Stored size: 1.21 KB

Contents

# frozen_string_literal: true

require_relative "lib/guard/codespell/version"

Gem::Specification.new do |spec|
  spec.name          = "guard-codespell"
  spec.version       = Guard::CodespellVersion::VERSION
  spec.authors       = ["Guillaume Loubier"]
  spec.email         = ["guillaume.loubier@hooktstudios.com"]

  spec.summary       = "Guard plugin for codespell"
  spec.description   = "Guard::Codespell uses codespell to automatically look for typos in your codebase."
  spec.homepage      = "https://github.com/hooktstudios/guard-codespell"
  spec.license       = "MIT"
  spec.required_ruby_version = ">= 2.6"

  spec.metadata["homepage_uri"] = spec.homepage
  spec.metadata["source_code_uri"] = "https://github.com/hooktstudios/guard-codespell"
  spec.metadata["changelog_uri"] = "https://github.com/hooktstudios/guard-codespell/CHANGELOG.md"
  spec.metadata["rubygems_mfa_required"] = "true"

  spec.files         = `git ls-files`.split($INPUT_RECORD_SEPARATOR)
  spec.executables   = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
  spec.test_files    = spec.files.grep(%r{^spec/})
  spec.require_paths = ["lib"]

  spec.add_runtime_dependency "guard", "~> 2.0"
  spec.add_runtime_dependency "guard-compat", "~> 1.1"
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
guard-codespell-0.1.1 guard-codespell.gemspec
guard-codespell-0.1.0 guard-codespell.gemspec